* device/lib/pic/libdev/*.c,
[fw/sdcc] / ChangeLog
1 2006-04-11 Raphael Neider <rneider AT web.de>
2
3         * device/lib/pic/libdev/*.c,
4         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
5           fixes #1468739, enables compilation in --std-c99 mode
6         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
7
8 2006-04-11 Raphael Neider <rneider AT web.de>
9
10         * src/pic/device.c (find_device): removed debug output
11           (list_valid_pics): enabled verbose listing of supported devices
12         * device/include/stdbool.h: define bool as char for pic14/16 as well
13
14 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
15
16         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
17
18 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
19
20         * .version: bumped version to 2.5.6
21         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
22
23 2006-04-06 Raphael Neider <rneider AT web.de>
24
25         * .version: bumped version to 2.5.6 (pic14 ABI changed)
26         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
27         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
28           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
29             pic14_constructAbsMap
30           (pic14printPublics): declare absolute global symbols as global
31           (pic14createInterruptVect),
32         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
33           (newReg): assume new registers unused, use correct name in
34             hashtable (reg->name instead of name), more debugLog output
35         * src/pic/device.h (PIC_device): added fields for verbose output
36         * src/pic/device.c: moved device definition to pic14devices.txt,
37             added routines for runtime parsing of pic14devices.txt,
38             added support for second config word
39         * src/pic/main.c (_process_pragma): removed #pragma maxram,
40           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
41           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
42           (_pic14_parseOptions): moved pCodeInitRegisters here
43           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
44         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
45           (pCodeInitRegisters): rewrapped comments, perpared new approach to
46             handling the pseudo stack
47         * device/lib/Makefile.in: ignore failures in objects-pic16,
48         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
49         * device/lib/pic/NEWS: document new dependency on picXXX.lib
50         * device/lib/pic/Makefile.subdir,
51         * device/lib/pic16/Makefile.subdir: improved clean rules
52         * device/lib/pic/libdev/: NEW, pic14 device libraries
53         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
54         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
55         * device/include/Makefile.in: create subdir and install pic14 headers
56         * device/include/pic/p16f_common.inc: removed unused declarations
57         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
58             PICs from inc2h.pl v1.6,
59             replaced BIT_AT macros with struct declarations
60         * device/include/pic/pic14devices.txt: definition of supported devices,
61             all above improvements contributed by Zik Saleeba, thanks
62         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
63         * support/scripts/sdcc.nsi: also install pic14 device libraries and
64             headers
65
66 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
67
68         * device/include/mcs51/c8051f410.h: added interrupt numbers,
69         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
70           thanks to Charles Olds
71
72 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
73
74         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
75
76 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
77
78         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
79         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
80         * support/regression/bug1464657.c: added, new test
81
82 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
83
84         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
85           version number
86
87 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
88
89         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
90           --no-peep and --peep-file <file> are used don't use default rules but
91           do use the <file>
92
93 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
94
95         * src/mcs51/gen.c (genCall): fixed bug 1457608
96
97 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
98
99         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
100         changes seem to cause (trigger?) problems with the build system.
101
102 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
103
104         * src/SDCCpeeph.c (operandsLiteral): new, added,
105           (callFuncByName): inserted operandsLiteral
106         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
107
108 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
109
110         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
111         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
112
113 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
114
115         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
116           implemented patch 1120823 Thanks to Willy De la Court (normal
117           interrupts need an interrupt number now if they are made critical),
118           and enabled nesting of critical functions though not for gbz80
119           (genCritical, genEndCritical): added functions
120           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
121         * src/z80/mappings.i: added "ei" to all mappings
122
123 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
124
125         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
126         submitted by the Debian SDCC maintainer Aurelien Jarno:
127         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
128         archive with gcc 4.1 on mips and wrote the patch"
129
130 2006-03-16 Raphael Neider <rneider AT web.de>
131
132         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
133           the left operand is shorter than the result (c* = lit-c* + int),
134           fixes bug #1450796
135         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
136           OP_SYMBOL
137
138 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
139
140         * src/.version: increased version number to 2.5.5
141         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
142         linking is done manually in pic16 port's _linkEdit,
143         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
144         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
145         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
146         allocate asmop as AOP_ACC,
147         (aopForRemat): added parameter 'bool result' in function declaration,
148         (pic16_aopGet): return AOP_ACC when accessing WREG,
149         (pic16_popGetTempReg): minor modification,
150         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
151         'pic16_allocWithIdx',
152         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
153         calling function in absolute addresses,
154         (genAssign): take into account AOP_ACC asmop,
155         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
156         * src/pic16/pcoderegs.c: some debug functions and lines added,
157         * src/pic16/ralloc.c (decodeRegType): added but commented out,
158         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
159         register too,
160         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
161         call to allocReg, not by manually allocating a new one,
162         (pic16_assignRegisters): now before going through the register
163         allocating functions mark all registers as free. This eliminates some
164         side effects resulting from peephole parser done earlier in the backbone
165
166 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
167
168         * src/SDCCicode.c (geniCodeLogic),
169         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
170
171 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
172
173         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
174           (genSend): bugfix, do not allocate and free twice,
175           (shiftRLong): handle partially overlapping aops
176         * support/regression/tests/bitopcse.c: fixed warning redefined idata
177
178 2006-03-08 Borut Razem <borut.razem AT siol.net>
179
180         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
181           for pic16
182
183 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
184
185         * support/regression/tests/bug1409955.c: new, added
186         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
187         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
188           (aopForSym, aopOp): increment asmop.allocated if reused,
189           (freeAsmop): decrement asmop.allocated and check for zero instead of
190           using asmop.freed,
191           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
192           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
193            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
194            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
195            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
196            genSignedRightShift, genRightShift, genDataPointerGet,
197            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
198            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
199             in reverse order from allocation,
200           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
201             added swappedLR to keep track
202         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
203           pdata & code for GCC, z80, gbz80 & hc08
204         * support/regression/tests/zeropad.c: moved defines to testfwk.h
205
206 2006-03-08 Raphael Neider <rneider AT web.de>
207
208         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
209
210 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
211
212         * device/include/mcs51/c8051f410.h: new SiLabs mcu
213         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
214         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
215
216 2006-03-06 Borut Razem <borut.razem AT siol.net>
217
218         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
219           made the linker quiet
220
221 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
222
223         * src/pic16/gen.c (genPcall): fixed bug #1443644
224         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
225         which dumps before the function entry point a data byte which represents
226         the number of the local variables used by the specified function, added
227         'xinst' for initial support for Extended Instruction Support,
228         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
229         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
230         port->fun_prefix anymore (may change later),
231         (genFunction, genEndFunction): do not store/restore local registers for
232         _main (this should take care the --main-return command line option in
233         the future),
234         (genOr): removed some legacy pic-port instructions,
235         * src/pic16/genarith.c (genAddLit): re-enabled old code because
236         performing operations with SFR's causes data to be written more than
237         once to each SFR. Perhaps SFRs should be handled in special cases...
238         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
239         pcode.h
240         * src/pic16/main.c (_process_pragma): stack bound checking did not take
241         into account for stack starting position,
242         (struct OPTIONS pic16_optionsTable): added command line argument
243         --extended or -y for Extended Instruction Support,
244         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
245         (deassignLRs): *** perhaps the most important change, old 'for' code
246         (commented out for reference), didn't account for some registers which
247         were left marked 'not free' after a pointer operation. The change
248         reduces register usage a lot in some cases
249
250 2006-03-04 Borut Razem <borut.razem AT siol.net>
251
252         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
253           _clean
254         * support/regression/tests/bug-524697.c: decreased array size for
255           mcs51 to fit into the internal RAM
256         * support/regression/Makefile.in: a little bit more verbose
257
258 2006-03-03 Borut Razem <borut.razem AT siol.net>
259
260         * support/regression/fwk/lib/testfwk.c,
261           support/regression/fwk/include/testfwk.h: introduced function
262           _prints(), nonrecursive _printn(), call _initEmu() from main()
263         * support/regression/ports/gbz80/support.asm,
264           support/regression/ports/ucz80/support.asm,
265           support/regression/ports/z80/support.asm,
266           support/regression/ports/ds390/support.c,
267           support/regression/ports/hc08/support.c,
268           support/regression/ports/host/support.c,
269           support/regression/ports/mcs51/support.c,
270           support/regression/ports/xa51/support.c: added empty _initEmu()
271           function
272         * support/regression/ports/pic16/gpsim.cmd,
273           support/regression/ports/pic16/spec.mk,
274           support/regression/ports/pic16/support.c,
275           support/regression/Makefile.in: added pic16 regression test
276
277 2006-03-01 Raphael Neider <rneider AT web.de>
278
279         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
280           genConstPointerGet): use safe way of generating MOVFF to cover
281             literals as well as registers, fixes bug #1440527
282         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
283             dereference
284           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
285             more correctly, fixes bug #1232186
286           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
287         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
288             gplink guess the correct processor in more cases, applied patch
289             from Till Riedel attached to and fixing bug #1436552
290
291 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
292
293         * support/regression/tests/array.c: added, contains check for #1434401
294         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
295
296 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
297
298         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
299         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
300         * device/include/mcs51/c8051f326.h,
301         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
302         * device/include/mcs51/c8051f000.h,
303         * device/include/mcs51/c8051f018.h,
304         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
305           PCON_IDLE,PCON_STOP and added sfr16 definitions
306
307 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
308
309         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
310           genGetWord): fixed bug 1409955
311
312 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
313
314         * device/include/hc08/mc68hc908gp32.h,
315         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
316
317 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
318
319         * src/SDCCast.c (constExprValue): return NULL if not a value
320         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
321         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
322         * support/regression/tests/bitfields.c: enabled signed bitfield for all
323
324 2006-02-13 Borut Razem <borut.razem AT siol.net>
325
326         * src/regression/ptrarg.c: added, fails due to bug #1430967
327         * src/regression/Makefile: ptrarg.c added, ...
328
329 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
330
331         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
332         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
333
334 2006-02-11 Borut Razem <borut.razem AT siol.net>
335
336         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
337           print "Processor: xxx" message to stdout only if --verbose
338
339 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
340
341         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
342         * support/regression/tests/bug1426356.c: added
343         * support/regression/tests/bitfields.c: removed 2 tests
344
345 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
346
347         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
348         * device/include/mcs51/c8051f330.h,
349         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
350           PCON_IDLE,PCON_STOP and added sfr16 definitions
351         * device/lib/_divsint.c,
352         * device/lib/_divuint.c,
353         * device/lib/_divulong.c,
354         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
355           register bank bug for small stackauto
356
357 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
358
359         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
360
361 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
362
363         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
364         * all.dsp: corrected several bin paths
365         * device/include/mcs51/c8051f120.h,
366         * device/include/mcs51/c8051f300.h,
367         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
368           to PCON_IDLE,PCON_STOP
369         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
370         * device/lib/printf_large.c (output_float): fixed bug 1388703
371         * support/regression/tests/bug1057979.c: added test for bug 1388703
372
373 2006-02-08 Raphael Neider <rneider AT web.de>
374
375         * src/pic/pcode.c (pciTRIS): fixed typo,
376           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
377           (LinkFlow): fixed handling of flows that end in a call,
378           (ReuseReg): perform safety check earlier
379         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
380             to work with flows at the beginning of a pBlock,
381             fixes #1426557 (Symbol not previously defined),
382           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
383             usage information
384           (RemoveUnusedRegisters): update register usage info
385         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
386             created, reuse existing ones instead
387         * src/pic/gen.c (genPcall): fixed #1424719
388
389 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
390
391         * link/z80/lkmain.c,
392         * link/z80/lklex.c,
393         * link/z80/lkdata.c,
394         * link/z80/aslink.h: fixed build on current cygwin:
395         replaced getline() by lk_getline()
396
397 2006-02-01 Borut Razem <borut.razem AT siol.net>
398
399         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
400           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
401           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
402           src/regression/bool1.c, src/regression/bool2.c,
403           src/regression/bool3.c, src/regression/call1.c,
404           src/regression/compare.c, src/regression/compare10.c,
405           src/regression/compare2.c, src/regression/compare3.c,
406           src/regression/compare4.c, src/regression/compare5.c,
407           src/regression/compare6.c, src/regression/compare7.c,
408           src/regression/compare8.c, src/regression/compare9.c,
409           src/regression/configword.c, src/regression/for.c,
410           src/regression/inline.c, src/regression/mult1.c,
411           src/regression/nestfor.c, src/regression/or1.c,
412           src/regression/pointer1.c, src/regression/ptrfunc.c,
413           src/regression/rotate1.c, src/regression/rotate2.c,
414           src/regression/rotate3.c, src/regression/rotate4.c,
415           src/regression/rotate5.c, src/regression/rotate6.c,
416           src/regression/rotate7.c, src/regression/string1.c,
417           src/regression/struct1.c, src/regression/sub.c,
418           src/regression/sub2.c, src/regression/switch1.c,
419           src/regression/while.c, src/regression/xor.c,
420           src/regression/create_stc, src/regression/simulate,
421           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
422           regression tests
423         * src/regression/gpsim_assert.h: added
424
425 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
426
427         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
428         ((void (code *) (void)) 0) ();
429         * as/hc08/aslex.c,
430         * as/hc08/aslink.h,
431         * as/hc08/asm.h,
432         * as/hc08/asmain.c,
433         * as/hc08/lkdata.c,
434         * as/hc08/lklex.c,
435         * as/hc08/lkmain.c,
436         * as/mcs51/aslex.c,
437         * as/mcs51/aslink.h,
438         * as/mcs51/asm.h,
439         * as/mcs51/asmain.c,
440         * as/mcs51/lkdata.c,
441         * as/mcs51/lklex.c,
442         * as/mcs51/lkmain.c,
443         * as/z80/aslex.c,
444         * as/z80/asm.h,
445         * as/z80/asmain.c: fixed build on current cygwin:
446         replaced getline() by as_getline()
447
448 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
449
450         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
451         declarator in the symbol chain
452         * src/SDCCsymt.h,
453         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
454         parameter list for function pointers
455         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
456         * support/regression/tests/bug-716242.c: added
457
458 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
459
460         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
461         offset if possible
462         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
463
464 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
465
466         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
467         inifinitely recurseable, added static
468         * support/regression/tests/bug-1408066.c: added
469
470 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
471
472         * src/SDCCicode.h,
473         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
474         renamed, added possibility to create "postLoopLbl"-labels
475         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
476         newiTempLoopHeaderLabel
477         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
478         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
479         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
480         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
481         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
482         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
483         (basicInduction): fixed bug #136564, made static,
484         (loopInduction): changed parameter of basicInduction, made static,
485         (addPostLoopBlock): added
486         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
487         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
488         findLoopEndSeq
489         * support/regression/tests/bug-136564.c: added
490         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
491         --std-sdcc99 to LIBSDCCFLAGS
492
493 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
494
495         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
496         while loop
497         * support/regression/tests/bug-1406131.c: added
498
499 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
500
501         * src/SDCCast.c (decorateType): fix promotion of unary minus
502         * src/SDCCsymt.c (computeType): beautified
503         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
504         (valUnaryPM, valComplement): fix sign and promotion,
505         (valNot): ANSI: result type is int (SDCC: unsigned char)
506         * support/regression/tests/uminus.c: speedup by removing superflous
507         test case 'int'
508         * support/regression/tests/onebyte.c: added promotion and signedness
509         tests for unary minus
510         * support/regressions/tests/bug-477927.c: disable warning about
511         uninitialized variables
512         * support/regression/tests/not.c: added
513
514 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
515
516         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
517         * src/mcs51/gen.c (gen51Code): show final register usage after
518         fillGaps in asm with --i-code-in-asm
519         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
520         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
521         incUsed, rliveClear, adjustIChain): made static,
522         (setFromRange): excluded because it's unused,
523         (findPrevUseSym, markWholeLoop): added,
524         (findPrevUse): rewritten; fixes bug 895992; now a complete search
525         through all branches of predecessors enables sdcc to emit the warning
526         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
527         (rlivePoint): made static, added parameter emitWarnings which is only
528         true during the first run out of two,
529         (findRecursiveSucc, findRecursivePred): removed,
530         (computeLiveRanges): made static, added parameter emitWarnings,
531         (dumpIcRlive): added for debugging only
532         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
533         removed prototype of setFromRange()
534         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
535         in call of computeLiveRanges()
536         * support/regression/tests/bug-895992.c: added
537         * support/regression/tests/bug-971834.c: added
538         * support/valdiag/tests/bug-895992.c: added
539         * support/valdiag/tests/bug-971834.c: added
540
541 2005-12-18 Raphael Neider <rneider AT web.de>
542
543         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
544           (genUnpackBits): improved code for direct operands,
545           (genPackBits): improved code for literal assignment to bitfields
546             and for direct destination operands (no FSR indirection),
547             prevented redundant AND, fixes #1362800,
548           (AccLsh): added parameter to disable masking of the result
549         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
550           skip instructions with side-effects (like incfsz),
551           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
552         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
553         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
554           fixes #1375263
555
556 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
557
558         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
559         volatile variables as spill location
560
561 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
562
563         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
564         replacing literals
565         * support/regression/tests/bug-1376320.c: added
566
567 2005-12-08 Raphael Neider <rneider AT web.de>
568
569         * src/pic/device.c: renamed is_shared to pic14_is_shared
570         * src/pic/gen.c (genIfx): re-enabled handling of sbits
571         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
572           (is_valid_identifier): added for above workaround
573
574 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
575
576         * device/lib/Makefile.in: fixed to enable port-specific-objects
577         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
578           char, thanks Hubert Sack
579         * doc/sdccman.lyx: documented --xstack-loc,
580           elaborated a bit more on interrupts and pitfalls,
581           removed "setjmp/longjmp unsupported",
582           documented some unsupported C99 features
583         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
584         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
585           if, thanks Hubert Sack
586         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
587         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
588           make make_library
589         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
590           regression tests can report resource usage (rfe 700441)
591         * support/regression/collate-results.py: report resource usage
592         * support/regression/ports/ds390/spec.mk,
593         * support/regression/ports/hc08/spec.mk,
594         * support/regression/ports/mcs51/spec.mk,
595         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
596         * support/regression/ports/ds390/uCsim.cmd,
597         * support/regression/ports/hc08/uCsim.cmd,
598         * support/regression/ports/mcs51/uCsim.cmd,
599         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
600         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
601           library, use the default one
602         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
603           building the library
604
605 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
606
607         * config.dsp: added dependency on .version and configure_vc.awk
608         * device/include/setjmp.h: updated for --stack-auto and --xstack
609         * device/include/mcs51/at89c51snd1c.h: corrected line endings
610         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
611         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
612         * device/lib/libsdcc.lib: added _setjmp
613         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
614           (decorateType): fixed bug 1372851,
615           (optimizeGetHbit): fixed warning
616         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
617           array initialisation
618         * support/regression/tests/bug1057979.c: added test for bug 1358192
619         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
620
621 2005-12-03 Borut Razem <borut.razem AT siol.net>
622
623         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
624           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
625
626 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
627
628         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
629         createIval): implement symbol independant "flexible array member",
630         (createIvalCharPtr): implemented flexible array initialisation with a
631         string
632         * src/SDCCsymt.c (copyStruct): removed,
633         (getSize): fixed misleading comment,
634         (getAllocSize): removed, the additional allocation size is now in
635         sym->flexArrayLength,
636         (checkStructFlexArray): new, syntax checks for flexible array members,
637         (compStructSize): added syntax checks for "flexible array members"
638         (copyStruct): removed,
639         (copyLinkChain): removed inefficient fix for bug 770487
640         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
641         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
642         symbol->flexArrayLength
643         * src/SDCCerr.c,
644         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
645         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
646         * support/regression/tests/structflexarray.c: added
647         * support/valdiag/tests/structflexiblearray.c: added
648
649 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
650
651         * src/SDCCast.c (decorateType): fixed bug 1368489
652         * support/Util/SDCCerr.c,
653         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
654
655 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
656
657         * device/include/mcs51/at89c51snd1c.h: added file submitted by
658           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
659
660 2005-11-27 Borut Razem <borut.razem AT siol.net>
661
662         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
663           support/cpp2/mkdeps.h: added command line option
664           -obj-ext=<extension> to SDCPP to define object file externion, used
665           for generation of make dependencies (-M)
666         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
667
668 2005-11-26 Borut Razem <borut.razem AT siol.net>
669
670         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
671           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
672           added pic and pic16 libraries
673
674 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
675
676         * device/include/float.h: Corrected typo in prototype of __fsgt
677
678 2005-11-25 Borut Razem <borut.razem AT siol.net>
679
680         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
681           added creation of model-mcs51-stack-auto libraries
682
683 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
684
685         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
686         and fields-list too
687         * src/SDCCast.c (createIvalArray): removed obsolete comment
688
689 2005-11-24 Borut Razem <borut.razem AT siol.net>
690
691         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
692           added missing device/lib/mcs51/crt*.asm sources
693
694 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
695
696         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
697
698 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
699
700         * device/lib/_fs2schar.c,
701         * device/lib/_fs2sint.c,
702         * device/lib/_fs2slong.c: optimized inline asm
703
704 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
705
706         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
707           Better handling of floats between -1.0 and 0.0.
708
709 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
710
711         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
712           (the missing "if"s prohibited removal of redundant labels)
713
714 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
715
716         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
717           Properly convert floats between -1.0 and 0.0 to long, int, and char
718           types (max integer value of negative floats tends to zero).
719         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
720           Removed changes made so to work properly with floats between
721           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
722           and _fs2char.c
723
724 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
725
726         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
727         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
728         (genCast) cosmetic change
729         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
730         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
731         from mcs51
732         * support/regression/tests/bitfields (testSignedBitfields): added
733
734 2005-11-18 Borut Razem <borut.razem AT siol.net>
735
736         * sdcc/device/lib/Makefile.in: remove all unnecessary files
737         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
738           introduced SILENT option to make building of pic16 libraries less
739
740 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
741
742         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
743           Now they work properly with floats between -1.0 and 0.0
744         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
745
746 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
747
748         * src/SDCCicode.c (printOperand): added missing else
749
750 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
751
752         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
753         reformatted for better readability
754         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
755         signed bitfields
756
757 2005-11-17 Borut Razem <borut.razem AT siol.net>
758
759         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
760           introduced SILENT option to make building of pic16 libraries less
761           verbose - used for nightly snapshot build
762         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
763           available on Win32 platforms.
764         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
765           medium, large, pic and pic16
766
767 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
768
769         * device/lib/printf_large.c: Temporary patch for bug 1358192:
770           printf("%f"...) sets fraction to zero.
771
772 2005-11-16 Raphael Neider <rneider AT web.de>
773
774         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
775           fixes #1357221
776         * src/pic/gen.c (genIfx): implemented for CARRY bit
777         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
778           to generic pointers, fixes #1357332,
779           (pic16_movLit2f): NEW,
780           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
781
782 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
783
784         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
785
786 2005-11-11 Raphael Neider <rneider AT web.de>
787
788         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
789         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
790           compute pointer's type from operand,
791           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
792           improved single bit reads, fixes bug #1353379
793
794 2005-11-09 Borut Razem <borut.razem AT siol.net>
795
796         * support/scripts/sdcc.nsi: added lib/pic to the package
797
798 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
799
800         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
801
802 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
803
804         * support/regression/tests/bug1348008.c: added
805         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
806         * support/regression/tests/bug1337835.c: updated comment
807
808 2005-11-06 Borut Razem <borut.razem AT siol.net>
809
810         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
811           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
812           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
813           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
814           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
815           dynamic construction of cl_error_class and derivates - 2.nd try
816
817 2005-11-05 Borut Razem <borut.razem AT siol.net>
818
819         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
820           bug, which caused Bus Errors on sparc solaris
821
822 2005-11-04 Borut Razem <borut.razem AT siol.net>
823
824         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
825           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
826           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
827           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
828           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
829           and derivates to resolve the initialization problem on OSX
830
831 2005-11-02 Borut Razem <borut.razem AT siol.net>
832
833         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
834           corrected typo - #include <winsock2.h>
835
836 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
837
838         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
839           (_asxxxx_mapping): added org directive for future enhancements
840
841 2005-11-01 Borut Razem <borut.razem AT siol.net>
842
843         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
844           enabled sockets on WIN32
845         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
846
847 2005-10-31 Borut Razem <borut.razem AT siol.net>
848
849         * support/regression/generate-cases.py: escape backslashes in {testcase}:
850           WIN32 backslash path delimiters should be escaped when used in C strings
851         * support/regression/tests/bitfields.c: exclude failing assertions for
852           __CYGWIN32__ and __MINGW32__ hosts
853
854 2005-10-30 Borut Razem <borut.razem AT siol.net>
855
856         * src/SDCCutil.c: corrected double comparison typo
857
858 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
859
860         * device/lib/medium/Makefile: added for new memory model medium
861         * device/include/asm/mcs51/features.h: updated for medium/pdata
862         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
863           added Multiply & Accumulate sbit's and MAC0_PAGE define
864         * device/include/mcs51/c8051f300.h: added sfr16 definitions
865         * device/include/mcs51/c8051f310.h: added sfr16 definitions
866         * device/lib/_mullong.c: update for medium model
867         * device/lib/incl.mk: added medium model
868         * doc/sdccman.lyx: documented medium model
869         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
870         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
871         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
872         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
873           (allocParms): set SCLS and OCLS to pdata for medium model
874         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
875           for pdata,
876           (powof2): return <0 if not power of 2
877         * src/avr/gen.c (genBitWise): use updated powof2
878         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
879           (shiftR2Left2Result): small optimization in setup, save acc when storing,
880           (shiftLLeftOrResult): use B if necessary
881         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
882         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
883         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
884         * support/regression/Makefile.in: added test-mcs51-medium
885         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
886
887 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
888
889         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
890         specifier unsigned
891         * device/lib/time.c (mktime): fixed bug 1334315
892
893 2005-10-28 Raphael Neider <rneider AT web.de>
894
895         * device/include/pic/p16f_common.inc: added common declarations
896         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
897
898 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
899
900         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
901           (aopPutUsesAcc): added to predict accumulator use,
902           (assignResultValue): save acc if necessary,
903           (genMinusDec): store result if indirectly addressed,
904           (genDivOneByte):  save acc if necessary,
905           (movLeft2Result): bugfix if left already in acc,
906           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
907             attention to accumulator use (esp. pdata),
908           (genReceive): receive pdata correctly
909         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
910         * src/SDCCicode.h: added isOperandInPagedSpace prototype
911
912 2005-10-27 Raphael Neider <rneider AT web.de>
913
914         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
915
916 2005-10-27 Raphael Neider <rneider AT web.de>
917
918         * .version: changed version to 2.5.4
919         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
920         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
921           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
922             arithmetics support routines
923         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
924         * device/lib/Makefile.in: also create installdir for pic
925
926         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
927           pic14 port as well
928         * src/pic/device.c (dump_sfr): rewritten to delegate register
929           placement to the linker (use `extern sym' rather than sym EQU addr),
930           (validAddress): fixed to check last specified address
931         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
932           (popGetLit): truncate literal value to 8 bit,
933           (popGet): moved assert to more appropriate place
934           (popGetExternal): create pCode operand from and mark the according
935             symbol as being `extern'
936           (popGetAddr): added sanity check on immediate's offset, provide
937             GPOINTER tag on demand
938           (aopPut): fixed for immediates,
939           (mov2w_op): move operand's address or contents to WREG (depending on
940             operand type), safer variant of mov2w,
941           (movwf,call_libraryfunc): NEW, handy abbreviations,
942           (get_argument_pcop,get_return_val_pcop,pass_argument,
943           get_returnvalue): interface for accessing function parameters and
944             return values,
945           (assignResultValuei,genRet): use new parameter/return value interface
946           (pic14_getDataSize): back to old version handling generic pointers,
947           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
948             provided implementation and/or fixed old one,
949           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
950             calls, removed legacy 8051 reference code
951           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
952           (loadSignToC): NEW, move the operands sign bit to CARRY,
953           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
954             genRightShiftSigned, accepts negative shift counts,
955           (setup_fsr): load FSR and adjust IRP (indirect memory access),
956           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
957             generic pointers, __data pointers and __code pointers,
958           (genUnpackBits,genPackBits): rewritten to work with generic pointers
959             and signed bitfields, limit bitfields to 8 bit,
960           (genDataPointerGet): fixed number of bytes read,
961           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
962           (genPointerGet,genPointerSet): fixed handling of __code pointers,
963             pointers to constant data are no longer assumed to point to __code
964             space, removed invalid pointer types,
965           (bitpatternFromVal): retrieve the PICs representation of an integer
966             or float literal,
967           (genDataPointerSet): fixed assigning to po_immediate operands,
968           (genGenPointerSet): implemented as library call,
969           (genIfx): fixed incorrect condition,
970           (genAddrOf): limit generic pointers' addresses to 2 bytes,
971             provide GPOINTER tag according to destination's storage class,
972           (genCast): added code to handle casting to generic pointers, added
973             sign-/zero extension of the result
974           (aop_isLitLike,op_isLitLike): fixed handling of immediates
975         * src/pic/gen.h: added macros to access IRP bit in STATUS register
976         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
977           extend the result
978         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
979           address/register resides in the shared banks
980           (emitSymbolToFile): improved to handle global and `pinned' symbols,
981             put all variables into separate sections (have the linker arrange
982             them)
983           (picglue): put init code and interrupt handlers in separate sections
984         * src/pic/main.c: added port specific options table, modified to PORT
985           structure to make GPOINTERs 3 byte, added pic14_options
986           (_pic14_do_link): private linking routine (update paths to libraries,
987             add libsdcc.lib by default)
988         * src/pic/main.h: declare pic14_options
989         * src/pic/pcode.c: fixed instructions i/o relations,
990           (RegCond): reverted to correct version,
991           (newpCodeOpLit): truncate literals to 8 bit,
992           (genericPrint): added debug output,
993           (getRegFromInstruction): fixed for various operand types, simplified
994           (BuildFlow): fixed broken handling of isntructions with labels
995           (LinkFlow): start at last instruction in flow (skip trailing comments),
996             pass the flow on to the next instruction after CALL
997           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
998           (insertPCodeInstruction): fixed inserting after a skip instruction,
999           (DoBankSelect): fixed for labeled instructions
1000           (OptimizepBlock): honor --nopeep switch
1001           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1002         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1003         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1004           (pCodeOptime2pCodes): allow disabling this optimization via
1005             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1006             but is still buggy), started implementation of a dataflow based
1007             pCode optimization (CSE + dead code elimination)
1008           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1009         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1010           names are independant of the stack location and therefore portable across
1011           devices
1012
1013 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1014
1015         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1016           (selectSpil): fixed bug 1337835 by not spilling bit variables
1017         * support/regression/tests/bug1337835.c: added test for this bug
1018         * src/mcs51/peeph.def: restart after rule 3.c,
1019           addded rules 263.x to optimize loading constants
1020
1021 2005-10-26 Raphael Neider <rneider AT web.de>
1022
1023         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1024         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1025           (genAssign): emit warning when casting literals to generic pointer
1026             type, also applies when taking the address of a fixed variable,
1027           (genCast): improved casting to generic pointers
1028         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1029           extern variables, added verbose error message
1030         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1031
1032 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1033
1034         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1035         carry must be complemented too
1036         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1037         could be emitted by genMinus
1038         * src/SDCCval.c (constVal): fixed bug 1305065
1039
1040 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1041
1042         * src/SDCCast.c (addCast): added promotion for bit variables
1043         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1044         promotion casts + optimisation
1045         (optimizeGetWord): fix warning 'i' might be used uninitialized
1046         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1047         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1048
1049 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1050
1051         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1052         all chars are promoted to int; promotion should be handled in SDCCast.c
1053
1054 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1055
1056         * device/lib/_strcmp.c: Fixed bug 1326457
1057
1058 2005-10-11 Raphael Neider <rneider AT web.de>
1059
1060         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1061         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1062
1063 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1064
1065         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1066         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1067
1068 2005-10-04 Raphael Neider <rneider AT web.de>
1069
1070         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1071           device/lib/pic16/pics.all: added pic18f1320
1072         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1073
1074 2005-09-30 Raphael Neider <rneider AT web.de>
1075
1076         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1077         * src/pic16/devices.inc: NEW, provides device descriptions
1078         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1079
1080 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1081
1082         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1083           GETHBIT
1084
1085 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1086
1087         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1088           documented Any Order Bit, Higher Order Byte and Higher Order Word
1089         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1090         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1091           (optimizeGetAbit): new, to get any bit, not only the high bit,
1092           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1093           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1094           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1095           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1096             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1097             GETABIT, GETBYTE, GETWORD: decorate them,
1098           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1099           (ast_print): added GETABIT, GETBYTE, GETWORD
1100         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1101         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1102           (geniCodeBinary): new generic binary icode,
1103           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1104         * src/port.h: updated comment for PORT.hasExtBitOp
1105         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1106           (genGetByte): new, to get a single byte,
1107           (genGetWord): new, to get a word from a long,
1108           (gen51Code): added GETABIT, GETBYTE, GETWORD
1109         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1110
1111 2005-09-23 Raphael Neider <rneider AT web.de>
1112
1113         * configure.in, configure: have device/lib/pic configured
1114         * device/lib/Makefile.in: added model-pic14
1115         * device/lib/clean.mk: added pic/ to clean rule
1116         * device/lib/pic: added rudimentary pic14 library providing support
1117           functions for multiplication/division/generic pointer access
1118         * src/SDCCopt.c (convilong): mark support functions as extern
1119           for pic14 port as well
1120         * src/pic/gen.c (genMult): added assertions,
1121           (genpic14Code): emit warning on unhandled iCodes
1122         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1123         * src/pic/pcode.c (pCodeOpCopy),
1124         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1125           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1126           SFR_REGISTER}), made safe for future extensions
1127         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1128           instructions even if preceeded by SKIP instructions (also remove
1129           them); removed unused code
1130         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1131           prevents leaving parts of the structure uninitialized after copying
1132
1133 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1134
1135         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1136           ago by me
1137         * support/regression/tests/addsub.c: added test for the bug
1138
1139 2005-09-21 Raphael Neider <rneider AT web.de>
1140
1141         * device/include/pic16/pic18f1220.h,
1142           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1143         * device/lib/pic16/Makefile.rules: added missing opening paren
1144         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1145           are provided in genutils.c,
1146           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1147           operand/result sizes,
1148           (genCmp): assert on NULL pointers first, then check deref'ed values
1149         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1150           result size
1151
1152 2005-09-18 Raphael Neider <rneider AT web.de>
1153
1154         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1155           as these are now unused,
1156           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1157         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1158           local, avoids uninitialized pointer dereference on r->name
1159         * src/pic16/ralloc.c (newReg): fixed indentation
1160
1161 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1162
1163         * src/SDCCval.c (constVal): fixed bug 730366
1164         * support/Util/SDCCerr.c,
1165         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1166
1167 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1168
1169         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1170
1171 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1172
1173         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1174
1175 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1176
1177         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1178           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1179         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1180           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1181         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1182         * packihx/packihx.c (hexDigit): made c unsigned char
1183         * as/mcs51/lklibr.c (fndsym),
1184         * link/z80/lkgb.c (gb),
1185         * link/z80/lklibr.c (fndsym),
1186         * link/z80/lkrloc.c (relr),
1187         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1188         * src/SDCC.lex (checkCurrFile, process_pragma),
1189         * src/SDCCglue.c (spacesToUnderscores),
1190         * src/SDCCmain.c (setParseWithComma, processFile),
1191         * src/asm.c (tvsprintf, printCLine),
1192         * src/avr/gen.c (emitcode, aopPut),
1193         * src/ds390/gen.c (emitcode),
1194         * src/hc08/gen.c (emitcode, emitinline),
1195         * src/mcs51/gen.c (emitcode, genInline),
1196         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1197           tokenizeLineNode),
1198         * src/pic/ralloc.c (debugLog),
1199         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1200           tokenizeLineNode),
1201         * src/pic16/ralloc.c (debugLog),
1202         * src/z80/main.c (_process_pragma):
1203            made all ctype.h function calls safe
1204         * src/SDCCopt.c: include math.h for fabs
1205         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1206           and used them throughout the code to make ctype.h function calls safe
1207         * src/ds390/main.c (asmLineNodeFromLineNode),
1208         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1209         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1210            unsigned char*
1211         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1212           (newpCodeAsmDir): made ctype.h function calls safe
1213         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1214           pic16_emitcode):  made lbp unsigned char*
1215         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1216           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1217         * src/xa51/gen.c (emitcode),
1218         * src/z80/gen.c (_emit2): made lbp unsigned char*
1219         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1220            char*
1221
1222 2005-09-05 Raphael Neider <rneider AT web.de>
1223
1224         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1225           access bank splitpoint
1226
1227 2005-09-05 Raphael Neider <rneider AT web.de>
1228
1229         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1230
1231 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1232
1233         * .version: changed to version 2.5.3
1234         * doc/sdccman.lyx: changed version to 2.5.3,
1235           documented --codeseg and --constseg and pragma codeseg and constseg,
1236           documented bit parameters (reentrant) and bit returning
1237         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1238            currFunc->recvSize, but is this ok for all ports?
1239           (ast2iCode): result of ~ on unsigned char must be cast to int for
1240            bool to work
1241         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1242           function pointers in bit space
1243         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1244           (processFuncArgs): call port.reg_parm() with reentrancy info
1245         * src/port.h,
1246         * src/avr/main.c,
1247         * src/ds390/main.c,
1248         * src/hc08/main.c,
1249         * src/pic/main.c,
1250         * src/pic16/main.c,
1251         * src/xa51/main.c,
1252         * src/z80/main.c: port.reg_parm prototype extended with
1253           "bool reentrant" parameter
1254         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1255           options.stackAuto for allocating bit register parameters
1256         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1257           (genSend): set BitBankUsed if it is,
1258           (selectRegBank): factored out of genCall for use in genPcall,
1259           (genCall): removed redundant dtype assignmen, use selectRegBank,
1260           (genPcall): handle returning in Carry properly, save in F0 if needed,
1261           (genReceive): handle bit register parameters
1262         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1263           (mcs51_assignRegisters): enable bit registers for all reentrant
1264            functions and don't set BitBankUsed unconditionally
1265         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1266         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1267         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1268
1269 2005-08-27 Borut Razem <borut.razem AT siol.net>
1270
1271         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1272         ppc-osx (Darwin) does not support -u option. It seems that it is
1273         supported only on Linux - GNU cp
1274
1275 2005-08-25 Borut Razem <borut.razem AT siol.net>
1276
1277         * sim/ucsim/gui.src/serio.src/Makefile.in,
1278           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1279           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1280           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1281           install and strip, since the strip at /usr/ccs/bin should be used
1282           on solaris
1283
1284 2005-08-24 Borut Razem <borut.razem AT siol.net>
1285
1286         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1287
1288 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1289
1290         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1291         ffffffffu
1292
1293 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1294
1295         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1296         * as/mcs51/lkmain.c (link_main): fixed warning
1297         * device/include/stdbool.h: ds390 has no advanced bit support yet
1298         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1299         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1300         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1301           and updated their macros
1302         * src/SDCCval.c (constVal): updated comment for renamed b_long
1303
1304 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1305
1306         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1307         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1308           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1309           (oprio): set priority for '['
1310         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1311            and adb_24_bit
1312         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1313         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1314         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1315         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1316           added overlayable BIT_BANK area
1317         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1318           (summary2): explain 'T' in legenda
1319         * as/mcs51/lkrloc.c: replaced old K&R style,
1320           (relr): added R_BIT processing,
1321           (errmsg): added "Bit-addressable relocation error",
1322           (adb_bit): added for converting from byte- to bit-addressable space,
1323           (adb_24_bit): added for converting from byte- to bit-addressable space
1324         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1325            used in reentrant functions now even as return value
1326         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1327         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1328           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1329         * src/SDCCglobl.h: added indicator BitBankUsed
1330         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1331            the bit registers b0-b7
1332         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1333           (geniCodeCast): fixed bug 1263853,
1334           (geniCodeLogicAndOr): put result in bool or char,
1335           (geniCodeReceive): added parameter func for accessing the return type,
1336           (geniCodeFunctionBody): pass func to geniCodeReceive
1337         * src/SDCCmain.c: added indicator BitBankUsed
1338         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1339         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1340           (checkSClass): don't put automatic bool/bit on stack,
1341           (checkFunction): removed check on function cannot return bit
1342         * src/SDCCsymt.h: added newBoolLink prototype
1343         * src/mcs51/gen.c (rb1regs): added bit registers,
1344           (movc): created for assigning to carry,
1345           (pushReg, popReg): created for pushing registers,
1346           (sameRegs): check both AOP_REG and AOP_CRY types,
1347           (aopOp): handle bit registers,
1348           (aopPut): optimization no self-assign,
1349           (saveRegisters): push reg->base (bits) only once for bit registers,
1350            and use pushReg,
1351           (unsaveRegisters): pop reg->base only once and use popReg,
1352           (assignResultValue): added parameter func and return in carry for bits,
1353           (genIpush): optimization no reload in A if not changed,
1354           (genSend): bit parameters in reentrant functions are passed in bit
1355            registers by first assigning to bits in B, then save registers and
1356            copy B to bits,
1357           (genCall): handle returning in Carry properly, save it in F0 if needed,
1358           (genPcall): updated assignResultValue call, this is not safe yet for bit
1359            returning function !!!
1360           (genFunction): don't generate equ's for bit registers and use pushReg,
1361           (genEndFunction): take care of bit returning functions and use popReg,
1362           (genRet): return bit in Carry,
1363           (genIfx): optimize bit registers and other directly addressable bits,
1364           (genReceive): updated assignResultValue call
1365         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1366           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1367            registers when using stack-auto
1368         * src/mcs51/ralloc.c (_G): added allBitregs,
1369           (regs8051): added the bit registers,
1370           (createStackSpil): use macro IS_BIT,
1371           (getRegBit): added to allocate a bit register, else spill,
1372           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1373           (updateRegUsage): factored out to ease stepping while debugging,
1374           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1375            also allocate bit registers,
1376           (fillGaps): handle bit registers,
1377           (findAllBitregs): added to create bit vector with all bit registers,
1378           (mcs51_allBitregs): returns this bit vector,
1379           (mcs51_assignRegisters): when using stack-auto use bit registers for
1380            passing parameters and creating local variables
1381         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1382
1383 2005-08-22 Borut Razem <borut.razem AT siol.net>
1384
1385         * device/lib/Makefile.in: replaced find option -or with -o
1386           to make it run on solaris
1387
1388 2005-08-22 Raphael Neider <rneider AT web.de>
1389
1390         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1391           fixes #1265442 (crash on Solaris)
1392
1393 2005-08-20 Borut Razem <borut.razem AT siol.net>
1394
1395         * configure, configure.in: added tests for libsocket and libnsl libraries,
1396           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1397           from support/regression/Makefile.in
1398         * support/regression/Makefile.in: added
1399         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1400         * sim/ucsim/libtool: regenerated on sparc-solaris
1401         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1402           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1403           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1404           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1405           sparc-solaris, which doesn't use GNU ld linker
1406         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1407         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1408
1409 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1410
1411         * src/mcs51/peeph.def: updated comments
1412
1413 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1414
1415         * device/lib/_gptrget.c,
1416         * device/lib/_gptrput.c: slightly shorter
1417         * doc/sdccman.lyx: incremented version
1418         * src/mcs51/peeph.def: moved peephole comments to the line of first
1419           change to better keep line correlation, reanimated 186.e
1420         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1421
1422 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1423
1424         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1425           David Saxton with quotes around file name.
1426
1427 2005-08-15 Borut Razem <borut.razem AT siol.net>
1428
1429         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1430           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1431           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1432           make tests run on x86_64 platform
1433
1434 2005-08-13 Raphael Neider <rneider AT web.de>
1435
1436         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1437           as it might be executed DURING a build (parallel make is wonderful)
1438
1439 2005-08-13 Raphael Neider <rneider AT web.de>
1440
1441         * device/lib/Makefile.in (port-specific-objects-pic16):
1442           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1443         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1444           dependency
1445         * device/lib/pic16/Makefile.rules: build subdirs before creating
1446           the library, removed builddir rule, create $(builddir) early in
1447           recurse rule, use empty recurse rule for leaf directories
1448         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1449           mkdir errors (race condition), removed duplicate suffix "hex"
1450           from clean rules
1451         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1452         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1453           prevents mkdir -p from aborting on Alpha
1454
1455 2005-08-12 Raphael Neider <rneider AT web.de>
1456
1457         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1458           db-statements in order to allow for arrays of pointers in code
1459           sections to be placed without interspersed 0-padding, fixes
1460           bug #1256215
1461         * (emitStatistics): fixed division by zero for pic18f1220
1462         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1463           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1464         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1465         * (pic16_pCodeConstString): keep track of already emitted string
1466           literals to prevent "duplicate definitions of symbol _str_NR"
1467         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1468           debug message
1469         * device/lib/Makefile.in: ignore failing PIC16 library builds
1470         * device/lib/pic16/Makefile: do not build if gputils are missing
1471         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1472
1473 2005-08-10 Raphael Neider <rneider AT web.de>
1474
1475         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1476           my last commit)
1477
1478 2005-08-10 Raphael Neider <rneider AT web.de>
1479
1480         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1481           Rokas' patch to add the new fixed point type "__fixed16x16"
1482         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1483           functions for __fixed16x16 arithmetics
1484         * device/lib/pic16: reimplemented the build system to support
1485           a separate build directory, better handling of libio (create
1486           the library in a separate subdir for each architecture) and
1487           easier configuration (centralized in Makefile.common)
1488
1489 2005-08-07 Raphael Neider <rneider AT web.de>
1490
1491         * src/pic16/gen.c (genrshTwo): fixed sign extension
1492         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1493         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1494           added T0CONbits
1495         * device/include/pic16/pic18f4220.h: NEW, header for
1496           pic18f4220 and pic18f4320
1497         * device/include/pic16/pic18fregs.h: added new devices,
1498           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1499         * device/include/pic16/signal.h: resolved name clashes
1500           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1501           to also allow testing for interrupt enable bits, added
1502           comments on how to use the macros
1503         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1504         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1505           register definitions for the devices
1506         * device/lib/pic16/pics.all: added new devices
1507         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1508           allocated memory
1509         * device/lib/pic16/libc/stdlib/memfree: do not count
1510           the block header as free memory
1511         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1512           simplified and added missing end-of-blocklist-marker
1513           (reported by Peter Onion, fixes #1252814)
1514         * (_mergeHeapBlock): fixed loop condition
1515         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1516           len==0, restructured code
1517         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1518           up a bit, reduced bitfield accesses, prevent endless loops
1519           in case of heap corruption
1520         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1521           "unreferenced arguments/must return a value" warnings
1522         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1523           replaced BAUDREG with SPBRG
1524         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1525           device/lib/pic16/debug/gstack/gstack.c: replaced
1526           _naked, _asm, _endasm with __naked, __asm, __endasm
1527
1528 2005-08-05 Raphael Neider <rneider AT web.de>
1529
1530         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1531           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1532
1533 2005-08-05 Borut Razem <borut.razem AT siol.net>
1534
1535         * device/lib/Makefile.in: added missing ';'
1536         * configure: removed ^M characters
1537
1538 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1539
1540         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1541           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1542           License
1543
1544 2005-08-04 Borut Razem <borut.razem AT siol.net>
1545
1546         * configure.in: pic16 libraries build 2nd try - enable running
1547           configure in device/lib/pic16
1548         * configure: regenerated from configure.in
1549         * device/lib/Makefile.in: create $(PORT)/bin directory
1550
1551 2005-08-03 Raphael Neider <rneider AT web.de>
1552
1553         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1554           to get/set values via pointers
1555         * (genUnpackBits,genPackBits): changed detection of
1556           ptr->bitfield vs. sym.bitfield, fixed access via generic
1557           pointers, removed dead (wrong) code for multibyte bitfields
1558         * (genNearPointerGet, genGenPointerGet): removed useless code,
1559           fixed bitfield detection, fixes #1250594
1560         * (genNearPointerSet): removed useless code
1561         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1562           and introduced macro pic16_emitpcode that conditionally emits
1563           the origin of the following pCode (useful for debugging SDCC)
1564         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1565         * (createDefmap): fixed handling of LFSR for --optimize-df
1566
1567 2005-08-02 Borut Razem <borut.razem AT siol.net>
1568
1569         * device/lib/Makefile.in: pic16 libraries build enabled since
1570           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1571
1572 2005-08-02 Raphael Neider <rneider AT web.de>
1573
1574         * src/pic16/gen.c (genPackBits): removed deprecated warning
1575         * (genGenPointerSet): fixed bitfield detection
1576
1577 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1578
1579         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1580
1581 2005-07-31 Raphael Neider <rneider AT web.de>
1582
1583         * device/lib/pic16/libdev/pic18f458.c,
1584           device/include/pic16/pic18f458.h: added missing T0CONbits
1585
1586 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1587
1588         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1589
1590 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1591
1592         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1593
1594 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1595
1596         * device/include/mcs51/at89c51ed2.h: added.
1597
1598 2005-07-23 Raphael Neider <rneider AT web.de>
1599
1600         * src/pic/gen.h: added emitpcode macro for debugging
1601         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1602           and replace by macro adding debug information on demand
1603         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1604         * (gencjne): tried to fix; replaced with correct (slower) code
1605         * (gen{Unp,P}ackBits): fixed single bit access
1606         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1607         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1608           previous instruction
1609         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1610           register has to be handled with care (forbidding movement
1611           of assignments/uses, removing assignments completely, ...)
1612         * (pCodeOptime2pCodes): make use of regIsSpecial
1613         * added lots of debugging output (commented out)
1614         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1615           from being reused as result UNLESS it is known to work
1616
1617 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1618
1619         * support/Util/dbuf.h: include <stddef.h> for size_t
1620         * .version: changed to version 2.5.2
1621
1622 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1623
1624         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1625
1626 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1627
1628         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1629           (genModOneByte): removed needless psha/pula
1630
1631 2005-07-22 Raphael Neider <rneider AT web.de>
1632
1633         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1634           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1635         * src/pic/gen.c (resolveIfx): do not "invent" labels
1636         * (genSkipc): changed to positive logic
1637         * (genSkipCond): removed as no longer needed
1638         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1639           backport from PIC16
1640         * (genLeftShift): check operands are in different registers
1641         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1642           INCF does not update CARRY...
1643         * src/pic/main.c: fixed _linkCmd
1644         * src/pic/pcode.c (unlinkpCode): added inactive code
1645         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1646           alive (do not assign result and operand overlapping registers)
1647
1648 2005-07-22 Raphael Neider <rneider AT web.de>
1649
1650         * src/pic/device.c (dump_sfr): replaced register declaration with
1651           call to emitSymbolToFile() to avoid duplicate symbols
1652         * (assignRelocatableRegisters): do not declare external symbols
1653         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1654           right (take size of type, not etype)
1655         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1656         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1657         * (packRegsForAccUse): disabled assignment of WREG as
1658           the result reg to prevent occurence of just fixed #1235003,
1659           fixes #1242954
1660         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1661           symbols (avoids duplicate symbols in .asm file)
1662         * (pic14emitRegularMap): use emitSymbolToFile()
1663         * src/pic/gen.c (aopOp): fixed spillLocation handling
1664         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1665         * (genDataPointerSet): removed unneccessary variables/output
1666
1667 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1668
1669         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1670         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1671
1672 2005-07-21 Raphael Neider <rneider AT web.de>
1673
1674         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1675           architecture cannot handle them efficiently, fixes bug #1235003
1676         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1677           check for empty sets before using them (fixes bug #1232190)
1678
1679 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1680
1681         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1682           (lnksect2): generate warnings for memory overlap
1683         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1684           constseg to set the name of these segments so you can instruct the linker
1685           to place them in banks
1686         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1687         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1688           added code_seg and const_seg to options
1689         * src/SDCCglue.c (emitMaps): use options.const_seg,
1690           (createInterruptVect): put interrupt vectors in segment HOME,
1691           (glue): put HOME before static segment and put the main glue in HOME,
1692           (glue): use options.code_seg
1693         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1694         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1695           these segments so you can instruct the linker to place them in banks
1696           (linkEdit): use code_loc for HOME segment which should be the first
1697           segment in code memory now
1698         * src/SDCCmem.c: fixed more stuff like bug 1238386
1699         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1700           (changePointer): don't change function pointers to code pointers for
1701           banked functions,
1702           (compareType): added exceptional check for banked function pointers
1703         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1704         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1705           after static in code memory
1706         * src/mcs51/gen.c: added aopLiteralLong prototype,
1707           (aopForSym): use getSize for functions,
1708           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1709           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1710           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1711           the segment,
1712           (genPcall): use call for literal function pointers and generate banked
1713           calls over the one trampoline so there's only one place for the user to
1714           modify according to his/hers hardware,
1715           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1716           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1717         * src/mcs51/main.c: added keyword banked,
1718           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1719         * support/Util/SDCCerr.c,
1720         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1721           needed for passing the bank and address to the trampoline
1722         * device/lib/mcs51/crtbank.asm: added for bankswitching
1723         * device/lib/mcs51/Makefile: added crtbank
1724
1725 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1726
1727         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1728           for fields at offset 0 of a struct or union as reported
1729           on 2005-07-07 in the developer mailing list.
1730
1731 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1732
1733         * src/SDCCmem.c: fixed bug 1238386
1734
1735 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1736
1737         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1738           (patch #1144962), added peephole 300, enabled 259.x
1739         * doc/sdccman.lyx: removed screenshot and provided link instead
1740
1741 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1742
1743         * doc/sdccman.lyx: added section about debugging with ddd
1744         * doc/figures/ddd_example.eps: screenshot of debugging session
1745
1746 2005-07-04 Raphael Neider <rneider AT web.de>
1747
1748         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1749           like CODE pointers, fixes #1115683
1750         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1751           call, fixes bugs #1232211, #1228110,
1752           fixed wrong casts to pCodeFlow from pCodeInstructions
1753
1754 2005-07-04 Raphael Neider <rneider AT web.de>
1755
1756         * src/pic/gen.c (popGet): changed assert to allow for
1757           bit operands
1758         * (popGetAddr): changed signature to provide
1759           an additional index, patched all call sites
1760         * (genCmpEq): handle literal-like operands correctly
1761         * (genAddrOf): added sanity checks on __code/__data pointers
1762         * (genAssign): added handling of symbols from __code section
1763         * (gencjne): do not generate code for comparisons whose result
1764           is neither stored nor used, fixes bug #1171114
1765         * (AccLsh, AccRsh): operate on operand instead of WREG
1766         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1767           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1768           by known count
1769         * rewrote complete shift-by-literal logic, commented unused
1770           functions out
1771         * (genConstPointerGet): get multiple bytes (if result size > 1),
1772           fixed handling of non-immediate addresses
1773         * (genPointerGet): handle CODE pointers like CONST pointers
1774         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1775         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1776           operand is to be treated as a literal or not
1777         * (mov2w,genPcall,genCmpEq),
1778           src/pic/genarith.c: use aop_isLitLike() to decide between
1779           literal/register contents
1780         * (addSign): added missing offset
1781         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1782           only emit comment in debug-mode,
1783           use {aop,op}_isLitLike throughout the file
1784         * src/pic/glue.c: fix initializers for pointers (work in progress)
1785         * src/pic/pcode.c (get_op): honor index on _const symbols
1786         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1787         * (dumppBlock): added pCode size estimation
1788         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1789           check for IS_SYMOP before OP_SYMBOL'ing
1790         * fixed indentation, compacted switch-statements
1791         * (allocReg): find free register and allocate it instead of
1792           allocating new registers all the time
1793         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1794           registers as its operands (necessary only for multibyte GETs)
1795
1796 2005-07-01 Raphael Neider <rneider AT web.de>
1797
1798         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1799           debugging .asm-output macros FENTRY + FEXIT
1800         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1801           way... I wonder...
1802         * (emitpComment): NEW, printf to pCode
1803         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1804           offset handling
1805         * (popGetAddr): NEW, variant of popGet to access an immediates
1806           high(er) bytes instead of the n'th byte of memory they reference,
1807           replaced popGet with popGetAddr where neccessary
1808         * (genDataPointerGet): reactivated and fixed implementation
1809         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1810           accesses
1811         * (genDataPointerSet): fixed multibyte assignments
1812         * (genpic14Code): fixed --i-code-in-asm handling
1813         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1814         * (genPlus): fixed index-out-of-bounds error
1815         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1816         * src/pic/ralloc.c: added debugging output macro FENTRY2
1817         * (spillThis): fixed indentation, enbraced for-body for clarity
1818         * (rematStr): commented out as now unused
1819         * (regTypeNum): commented out special spill case (overwrites
1820           arbitrary values)
1821         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1822
1823 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1824
1825         * doc/sdccman.lyx: documented sfr16/sfr32,
1826           added example for using storage class with function pointers
1827         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1828
1829 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1830
1831         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1832         * device/lib/_itoa.c,
1833         * device/lib/_ltoa.c: optimized codesize
1834         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1835           but don't know how to suppress the double warning.
1836         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1837         * support/Util/SDCCerr.c,
1838         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1839
1840 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1841
1842         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1843           fixed old K&R prototypes
1844         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1845         * device/lib/_gptrget.c,
1846         * device/lib/_gptrgetc.c,
1847         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1848           also new versions for small generic pointers and banked generic pointers
1849         * src/port.h: added const_name
1850         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1851         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1852         * src/SDCCcse.c (findPrevIc): check all associative operators
1853         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1854         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1855         * src/SDCCmem.c: updated comments,
1856           set far-space to 0 for pdata, results in optimized code
1857         * src/SDCCmem.h: added macro CONST_NAME
1858         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1859           moving the info into the highest bits, see also gptrget/gptrput
1860         * src/src.dsp: added sdcc.ico to project files
1861         * src/avr/gen.c (genCast): fixed bug 0x%d
1862         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1863         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1864           relation between ptr_type and DCL_TYPE,
1865           (genCast): fixed bug 0x%d
1866         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1867           (CODE)" for const_name
1868         * src/hc08/gen.c (genCast): fixed bug 0x%d
1869         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1870           (hc08_port): added "CONST (CODE)" for const_name
1871         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1872           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1873           between ptr_type and DCL_TYPE,
1874           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1875           operand* and took AOP() inside function so sfr-ness can be checked,
1876           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1877           new prototype,
1878           (genFunction, genEndFunction): optimized stack setup,
1879           (genMinus): optimized for literals with ending zeroes (in bytes),
1880           (genCast): fixed bug 0x%d
1881         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1882           (mcs51_port): added "CONST (CODE)" for const_name
1883         * src/mcs51/peeph.def: made rule 226 more generic
1884         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1885         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1886         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1887         * src/z80/main.c (z80_port): added NULL for const_name,
1888           (gbz80_port): added NULL for const_name
1889         * support/regression/tests/bug663539.c,
1890         * support/regression/tests/sfr16.c: new tests
1891
1892 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1893
1894         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1895
1896 2005-06-24 Raphael Neider <rneider AT web.de>
1897
1898         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1899           corrected typos...
1900         * device/include/pic16/signal.h: added USBIF
1901           and SIG_USB
1902
1903 2005-06-24 Raphael Neider <rneider AT web.de>
1904
1905         * device/lib/pic16/libdev/pic18f2455.c,
1906           device/include/pic16/pic18f2455.h: NEW
1907         * device/include/pic16/pic18fregs.h,
1908           device/lib/pic16/pics.all,
1909           src/pic16/device.c: added 18f2455
1910         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1911           device/include/pic16/{pic18f[68][567].h,usart.h}:
1912           replaced MULTIPLE_USARTS define with more relaible
1913           compatibility sfrs (for USART access)
1914
1915 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1916
1917         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1918           and the output asm file line is printed on two lines.
1919
1920 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1921
1922         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1923           BGT, BLE, BHI, and BLS instructions
1924         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1925           genCmpEq): removed
1926         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1927           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1928           fixes bug #1216342
1929         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1930
1931 2005-06-15 Raphael Neider <rneider AT web.de>
1932
1933         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1934         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1935         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1936           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1937           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1938
1939 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1940
1941         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1942           Marcel Telka in bug #1215704
1943
1944 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1945
1946         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1947           located in shared memory bank.
1948
1949 2005-05-31 Raphael Neider <rneider AT web.de>
1950
1951         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1952           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1953           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1954
1955 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1956
1957         * device/lib/_strncpy.c: fixed the fix
1958
1959 2005-05-26 Raphael Neider <rneider AT web.de>
1960
1961         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1962           initializers with \0, bug #1208187
1963         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1964           intializers with \0, bug #1208187
1965
1966 2005-05-26 Raphael Neider <rneider AT web.de>
1967
1968         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1969           initializers with \0, bug #1208187
1970         * src/pic16/main.c (_process_pragma): added sanity checks
1971           for stack position and size, emit warnings when appropriate
1972
1973 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1974
1975         * device/lib/_strncpy.c: fixed not filling with \0
1976
1977 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1978
1979         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1980           createFunction),
1981         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1982           compound_statement),
1983         * src/SDCCsymt.h,
1984         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1985
1986 2005-05-24 Raphael Neider <rneider AT web.de>
1987
1988         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1989
1990 2005-05-24 Raphael Neider <rneider AT web.de>
1991
1992         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1993           TRISE definitions, closes bug #1162453
1994
1995 2005-05-22 Raphael Neider <rneider AT web.de>
1996
1997         * src/pic16/main.c (_process_pragma): check for missing
1998           arguments to pragmas code and udata
1999         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2000           consistency fixes to match other headers (thanks to Jim Paris)
2001         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2002
2003 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2004
2005         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2006
2007 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2008
2009         * support/regression/tests/bug1198642.c: new test
2010         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2011         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2012         * support/scripts/resource.h,
2013         * support/scripts/resource.rc,
2014         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2015         * support/scripts/sdcc.ico: added 32x32 icon
2016
2017 2005-05-18 Raphael Neider <rneider AT web.de>
2018
2019         * device/lib/pic16/libdev/pic18f*.c,
2020         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2021           keywords to "__sfr" and "__at (X)"
2022         * device/include/pic16/pic18fregs.h: added pic18f4520
2023         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2024           #1203088 (MPLAB compatibility)
2025
2026 2005-05-17 Raphael Neider <rneider AT web.de>
2027
2028         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2029         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2030         * device/lib/pic16/pics.all: added new devices
2031         * src/pic16/device.c: added support for pic18f4520
2032
2033 2005-05-16 Raphael Neider <rneider AT web.de>
2034         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2035         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2036         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2037           convenience function for bit access
2038
2039 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2040
2041         * device/lib/printf_large.c: fixed bug 1193299
2042         * support/regression/tests/bug1057979.c: added test %3.3s
2043
2044 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2045
2046         * device/include/mcs51/8051.h,
2047         * device/include/mcs51/8052.h: made parseable with lint
2048         * device/include/mcs51/lint.h: added include file for (sp)lint
2049         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2050         * doc/cdbfileformat.lyx,
2051         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2052
2053 2005-05-14 Raphael Neider <rneider AT web.de>
2054
2055         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2056         * device/lib/pic16/libc/stdlib/itoa.c (new)
2057         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2058         * device/lib/pic16/libio/Makefile: exclude subdir according to
2059           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2060         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2061         * src/pic16/gen.c (genFunction): prevent annoying warning
2062         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2063           nameclashes on BeOS
2064         * support/cpp2/cppmain.c (cpp_output_string): new
2065         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2066           fixes bug 1116802
2067
2068 2005-05-13 Borut Razem <borut.razem AT siol.net>
2069
2070         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2071
2072 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2073
2074         * .version: changed to version 2.5.1; back to bleeding edge development
2075
2076 2005-05-11 Borut Razem <borut.razem AT siol.net>
2077
2078         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2079           generate PDF version 1.3 documents
2080
2081 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2082
2083         * .version: changed to version 2.5.0
2084
2085 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2086
2087         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2088
2089 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2090
2091         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2092         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2093         well as many smaller updates.
2094         * .version: changed to version 2.5.0-pre1
2095
2096 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2097
2098         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2099
2100 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2101
2102         * support/regression/tests/bug1185672.c: added
2103         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2104           bug 1185672
2105         * src/mcs51/gen.c (genCall): added comments, made it look safer
2106         * src/mcs51/gen.c (genEndFunction): simplified
2107
2108 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2109
2110         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2111
2112 2005-04-14 Borut Razem <borut.razem AT siol.net>
2113
2114         * fixed bug 1045046 - SIGSEGV with really simple code?:
2115           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2116           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2117
2118 2005-04-14 Borut Razem <borut.razem AT siol.net>
2119
2120         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2121           src/pic16/device.h: temporarily disabled experimental #inline pragma
2122           for 2.5.0 release
2123
2124 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2125
2126         * device/include/z80/stdio.h,
2127         * device/include/z80/string.h: removed these highly incomplete files so
2128           SDCC can use the default ones in device/include/
2129
2130 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2131
2132         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2133         gcc warning.
2134         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2135         fix sdcpp warnings.
2136
2137 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2138
2139         * device/include/malloc.h: removed redundant __reentrant prototypes
2140         * device/lib/_mullong.c: added working xstack variant in asm (C version
2141           doesn't pass regression tests)
2142         * device/lib/bpx.c: used __data and made bpx char for mcs51
2143         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2144           (createFunction): fixed bug with xstackPtr
2145         * src/SDCCcse.c: corrected comments
2146         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2147           (killDeadCode, eBBlockFromiCode): removed unused code
2148         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2149           corrected comments
2150         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2151           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2152           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2153           (genModOneByte): fixed warning in MSVC
2154         * src/mcs51/main.c (): added comments
2155         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2156
2157 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2158
2159         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2160
2161 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2162
2163         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2164
2165 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2166
2167         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2168         characters arrays of larger size than the declared one.
2169
2170 2005-04-10 Borut Razem <borut.razem AT siol.net>
2171
2172         * src/pic/gen.c (genInline),
2173           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2174           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2175           (findNextInstruction), (findPrevInstruction),
2176           (findInstructionUsingLabel),
2177           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2178         * src/pic/pcode.c (findLabel): added missing '\n'
2179         * src/src.dsp: added SDCCdwarf2.c to the project
2180
2181 2005-04-09 Borut Razem <borut.razem AT siol.net>
2182
2183         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2184
2185 2005-04-08 Raphael Neider <rneider AT web.de>
2186
2187         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2188           into the chain after a given one) and mergeDefmapSymbols (combine
2189           defmap entries for each symbol per pcode)
2190         * (createDefmap): have defmap entries merged in the end
2191         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2192           a symbol before replacing one access type's symbol, merge symbols in
2193           the end (replacement symbol might already have an entry)
2194         * (assignValnums): keep reference to written WREG intact
2195
2196 2005-04-08 Raphael Neider <rneider AT web.de>
2197
2198         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2199           Alpha)
2200
2201 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2202
2203         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2204         bytes
2205
2206 2005-04-07 Raphael Neider <rneider AT web.de>
2207
2208         * device/include/pic16/usart.h: added compatibility defines for
2209           devices with more than one USART
2210         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2211
2212 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2213
2214         * device/lib/Makefile.in: updated for port specific include
2215
2216 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2217
2218         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2219
2220 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2221
2222         * device/include/8051.h,
2223         * device/include/8052.h,
2224         * device/include/at89S8252.h,
2225         * device/include/at89c55.h,
2226         * device/include/at89x051.h,
2227         * device/include/at89x51.h,
2228         * device/include/at89x52.h,
2229         * device/include/mcs51reg.h,
2230         * device/include/reg51.h,
2231         * device/include/reg764.h,
2232         * device/include/regc515c.h,
2233         * device/include/sab80515.h: (re)moved these 12 files
2234         * device/include/mcs51/8051.h,
2235         * device/include/mcs51/8052.h,
2236         * device/include/mcs51/at89S8252.h,
2237         * device/include/mcs51/at89c55.h,
2238         * device/include/mcs51/at89x051.h,
2239         * device/include/mcs51/at89x51.h,
2240         * device/include/mcs51/at89x52.h,
2241         * device/include/mcs51/mcs51reg.h,
2242         * device/include/mcs51/reg51.h,
2243         * device/include/mcs51/reg764.h,
2244         * device/include/mcs51/regc515c.h,
2245         * device/include/mcs51/sab80515.h: and added them here
2246
2247 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2248
2249         * device/include/stdarg.h: changed SDCC specific keywords to double
2250           underlined form.
2251         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2252           mcs51 and ds390.
2253         * device/include/hc08/mc68hc908gp32.h,
2254         * device/include/hc08/mc68hc908jb8.h,
2255         * device/include/hc08/mc68hc908jkjl.h,
2256         * device/include/hc08/mc68hc908qy.h: fixed comments
2257         * device/include/mcs51/README: updated
2258         * device/include/mcs51/c8051f120.h: added PINRSF
2259         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2260         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2261           amidst code. Also inline is not supported.
2262
2263 2005-04-06 Raphael Neider <rneider AT web.de>
2264
2265         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2266         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2267           callers stack/frame pointers
2268
2269 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2270
2271         * device/include/pic16/usart.h: added, missing in previous commit,
2272         * device/include/pic16/adc.h: fixed typo,
2273         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2274         commit,
2275         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2276         <p18fxxx.inc>
2277         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2278         uninitialized because a bug appears with gplink
2279         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2280         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2281         complains for unrecognised option
2282
2283 2005-04-05 Raphael Neider <rneider AT web.de>
2284
2285         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2286           structs as well (using memcpy)
2287         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2288           on ISRs (GOTO has no label)
2289         * src/pic16/device.h: added OF_OPTIMIZE_DF
2290         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2291           new data flow analysis/optimization
2292         * src/pic16/pcode.c: added (prototypes for and implementation of)
2293           dataflow analysis functions, fixed pCodeInstructions' inCond and
2294           outCond values, made RCALL a branch instruction
2295         * (pic16_unlinkpCode): keep C line if possible
2296         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2297           C line moved if possible
2298         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2299         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2300           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2301         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2302           new flow)
2303         * (pic16_getJumptabpCode): NEW, needed in...
2304         * (LinkFlow): fixed handling of jumptables, calls and conditional
2305           branches
2306         * (pic16_InsertCommentAfter): NEW
2307         * (pic16_pCodeReplace): made verbose and flow preserving
2308         * (AnalyzeFlow): added call to data flow analysis
2309         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2310         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2311         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2312
2313 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2314
2315         * src/SDCCast.c (decorateType): fixed bug #1105626
2316
2317 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2318
2319         * device/include/asm/pic16/features.h,
2320         * pic18f*.h headers,
2321         * device/include/pic16/adc.h,
2322         * device/include/pic16/delay.h,
2323         * device/include/pic16/i2c.h,
2324         * device/include/pic16/malloc.h,
2325         * device/include/pic16/stdio.h,
2326         * device/include/pic16/stdlib.h,
2327         * device/include/pic16/string.h,
2328         * device/lib/pic16/libc/stdio/printf_tiny.c,
2329         * device/lib/pic16/libc/stdio/printf_small.c,
2330         * device/lib/pic16/libc/stdio/strmgpsim.c,
2331         * device/lib/pic16/libc/stdio/strmmssp.c,
2332         * device/lib/pic16/libc/stdio/strmusart.c,
2333         * device/lib/pic16/libc/stdio/vfprintf.c,
2334         * device/lib/pic16/libc/stdlib/ltoa.c,
2335         * device/lib/pic16/libc/stdlib/putchar.c,
2336         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2337         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2338         * device/lib/pic16/libc/stdlib/memchrram.c,
2339         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2340         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2341         * device/lib/pic16/libio/adc/adcbusy.c,
2342         * device/lib/pic16/libio/adc/adcread.c,
2343         * device/lib/pic16/libio/adc/adcsetch.c,
2344         * device/lib/pic16/libio/usart/ubaud.c,
2345         * device/lib/pic16/libio/usart/ubusy.c,
2346         * device/lib/pic16/libio/usart/udrdy.c,
2347         * device/lib/pic16/libio/usart/uopen.c,
2348         * device/lib/pic16/libio/usart/uputc.c,
2349         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2350         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2351         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2352         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2353         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2354         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2355         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2356         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2357         specific keywords to double underlined form,
2358         * device/lib/pic16/libc/Makefile.rules,
2359         * device/lib/pic16/libsdcc/Makefile.rules,
2360         * device/lib/pic16/libm/Makefile,
2361         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2362         to compile with C standard set in Makefile.common
2363         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2364         rand.c and crc.c in compilation process,
2365         * device/lib/pic16/libsdcc/int/divuint.c,
2366         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2367         `c' from signed to unsigned,
2368         * device/lib/pic16/startup/crt0.c,
2369         * device/lib/pic16/startup/crt0i.c,
2370         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2371         keywords to double underlined form, bug fixes in _do_cinit function
2372         which prevented the correct initialization of the .idata segment,
2373         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2374         core to enter a infinite loop
2375         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2376
2377 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2378
2379         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2380
2381 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2382
2383         * device/include/Makefile.in: add support for hc08 subdirectory
2384         * device/include/hc08/: new subdirectory
2385         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2386         Lucas Loizaga, thanks!
2387         * device/include/hc08/mc68hc908qy.h,
2388         * device/include/hc08/mc68hc908gp32.h,
2389         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2390         their own directory. Changed internal macro names to use the compiler
2391         reserved namespace. Changed SDCC specific keywords to double
2392         underlined form.
2393         * device/include/math.h,
2394         * device/include/malloc.h,
2395         * device/include/stdarg.h,
2396         * device/include/stdbool.h
2397         * device/include/string.h,
2398         * device/include/tinibios.h,
2399         * device/include/ds400rom.h,
2400         * device/include/8051.h,
2401         * device/include/8052.h,
2402         * device/include/80c51xa.h,
2403         * device/include/at89c55.h,
2404         * device/include/at89S8252.h,
2405         * device/include/at89x51.h,
2406         * device/include/at89x52.h,
2407         * device/include/ds80c390.h,
2408         * device/include/reg764.h,
2409         * device/include/regc515c.h,
2410         * device/include/sab80515.h,
2411         * device/include/mcs51/c8051f000.h,
2412         * device/include/mcs51/c8051f018.h,
2413         * device/include/mcs51/c8051f020.h,
2414         * device/include/mcs51/c8051f040.h,
2415         * device/include/mcs51/c8051f060.h,
2416         * device/include/mcs51/c8051f120.h,
2417         * device/include/mcs51/c8051f300.h,
2418         * device/include/mcs51/c8051f310.h,
2419         * device/include/mcs51/c8051f320.h,
2420         * device/include/mcs51/c8051f330.h,
2421         * device/include/mcs51/c8051f350.h,
2422         * device/include/z180.h: Changed SDCC specific keywords to double
2423         underlined form.
2424
2425 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2426
2427         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2428         18F4455,
2429         * (pic16_assignConfigWordValue): disable testing of configuration
2430         register value with config mask,
2431         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2432         function with port->fun_prefix,
2433         * (genFunction): when generating a naked interrupt function never
2434         create an absolute segment placed in interrupt vector address, place
2435         the actual interrupt function at IVA instead, when an interrupt
2436         function is generated with unspecified interrupt then do not create
2437         the absolute section,
2438         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2439         code for generating a call to generic pointer get/put function with
2440         a call to function pic16_callGenericPointer(),
2441         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2442         the call to the generic pointer get/put functions with prefixing the
2443         function name with port->fun_prefix,
2444         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2445         * src/pic16/main.c (_process_pragma): prefix function with
2446         port->fun_prefix,
2447         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2448         calling assembler, old 18Fxxxx macro is deprecated,
2449         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2450         PC_ASMDIR in while condition,
2451         * (findInstruction): add PC_ASMDIR in while condition,
2452         * (buildCallTree): prefix main with port->fun_prefix,
2453         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2454         identifier for variable with banked access in instructions BTFSS,
2455         BTFSC, BCF, BSF, BTG
2456         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2457         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2458         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2459         perform optimization when enviroment variable NO_REG_OPT is set,
2460         * (insideLRBlock): NEW, return 1 if register is inside an
2461         INF_LOCALREGS block,
2462         * (RemoveRegFromLRBlock): remove a register that is completely
2463         eliminated by register optimization, but it is still left in local
2464         register store/restore in/from stack block,
2465         * (Remove2pcodes): after removing register, check to see if it
2466         should be removed from local register store/restore in/from stack
2467         block,
2468         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2469         DUMMY_READ_VOLATILE,
2470
2471         * device/include/pic16/adc.h: minor prototype modifications and
2472         update,
2473         * device/include/pic16/malloc.h: added GPL notice various
2474         modifications,
2475         * device/include/pic16/stdint.h: NEW, standard header for ints
2476         * device/include/pic16/delay.h: NEW, header for delay functions,
2477         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2478         delay1mtcy,
2479         * device/include/pic16/signal.h: NEW, header providing helper macros
2480         for implementing signal handlers,
2481         * device/include/pic16/stdio.h: added prototypes for functions,
2482         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2483         prototypes for stdin and stdout, added macro PUTCHAR to
2484         automatically implement putchar function prototype,
2485         * device/include/pic16/usart.h: modified and updated USART library,
2486         * device/lib/pic16/libio/adc/,
2487         * device/lib/pic16/libio/i2c: some modifications to improve library
2488         performance,
2489         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2490         family of functions,
2491         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2492         family of functions and other sources,
2493         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2494         of the PIC18Fxx[28] devices,
2495         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2496         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2497         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2498         _do_cinit function, because the previous failed when local variables
2499         where not placed in the same memory bank,
2500         * device/lib/pic16/libsdcc/char/: various modifications to improve
2501         library performance,
2502         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2503         information on the new functions of the c library and more...
2504
2505 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2506
2507         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2508
2509 2005-03-26 Raphael Neider <rneider AT web.de>
2510
2511         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2512           if condition == CARRY)
2513         * (genCmp): adapted to new genSkipc semantics
2514         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2515           on rIfx (genCmp was broken)
2516
2517 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2518
2519         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2520         * src/z80/main.c (_keywords[]),
2521         * src/SDCCglobal.h (struct options),
2522         * src/SDCC.y,
2523         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2524         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2525         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2526         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2527         always available in leading double underscore form. The C99 support is
2528         mostly missing, but it's a start.
2529         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2530         reserved identifier "__data".
2531
2532 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2533
2534         * src/mcs51/peeph.def: fixed bug 1170013
2535
2536 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2537
2538         * device/include/mcs51reg.h: fixed bug 842007
2539
2540 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2541
2542         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2543         last time.
2544
2545 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2546
2547         * src/port.h (struct PORT),
2548         * src/avr/ralloc.c (avr_assignRegisters),
2549         * src/avr/main.c,
2550         * src/ds390/ralloc.c (ds390_assignRegisters),
2551         * src/ds390/main.c,
2552         * src/hc08/ralloc.c (hc08_assignRegisters),
2553         * src/hc08/main.c,
2554         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2555         * src/mcs51/main.c,
2556         * src/pic/ralloc.c (pic14_assignRegisters),
2557         * src/pic/main.c,
2558         * src/pic16/ralloc.c (pic16_assignRegisters),
2559         * src/pic16/main.c,
2560         * src/xa51/ralloc.c (xa51_assignRegisters),
2561         * src/xa51/main.c,
2562         * src/z80/ralloc.c (z80_assignRegisters),
2563         * src/z80/ralloc.h,
2564         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2565         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2566         * src/SDCCcse.h,
2567         * src/SDCCdflow.c (computeDataFlow),
2568         * src/SDCCdflow.h,
2569         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2570         * src/SDCCloop.h,
2571         * src/SDCCcflow.c (*),
2572         * src/SDCCcflow.h,
2573         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2574         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2575         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2576         immedDom() returning wrong block; probably fixes bug #1160833)
2577
2578 2005-03-20 Borut Razem <borut.razem AT siol.net>
2579
2580         * support/scripts/inc2h.pl: WIN32 port
2581
2582 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2583
2584         * device/lib/makefile.in: added abs.c and labs.c
2585
2586 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2587
2588         * device/include/stdint.h: added
2589         * device/lib/abs.c: added
2590         * device/lib/labs.c: added
2591         * device/include/stdlib.h: added abs() and labs() prototypes
2592         * device/lib/libsdcc.lib: added abs and labs
2593         * device/include/float.h,
2594         * device/lib/_fsmul.c,
2595         * device/lib/printf_fast.c,
2596         * device/lib/printf_tiny.c: updated comments
2597
2598 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2599
2600         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2601         bug #1164313
2602
2603 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2604
2605         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2606         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2607
2608 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2609
2610         * device/lib/printf_large.c: removed inline assembly for portability and
2611           readability. Use printf_fast if speed or size are more important.
2612         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2613         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2614
2615 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2616
2617         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2618         prevent compiler warning
2619
2620 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2621
2622         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2623         moved to level 0 and declared as static. Also they are explicit
2624         placed in access bank. This was necessery because some times they
2625         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2626         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2627         optimizations. Currently only compare to unsigned char is implemented,
2628         * src/pic16/gen.c: added fReturnIdx array,
2629         * (struct resolvedIfx) is moved to gen.h and made public,
2630         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2631         * (aopForSym): added an optimization to directly store in stack of
2632         the operand of a SEND iCode,
2633         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2634         but as registers instead (AOP_REG) using the fReturnIdx array,
2635         * (pic16_freeAsmop): remove the freed register from the
2636         _G.sregsAlloc field,
2637         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2638         a compare of 'WREG',
2639         * (pic16_popGetTempRegCond): changed function prototype, now
2640         function takes also a bitVector argument v which holds the current
2641         set of registers that are allocated for stack access by aopForSym,
2642         registers allocated in aopForSym for accessing stack symbols are not
2643         any more part of the functions usedRegs field,
2644         * (genCall): some times aopOp is called for a stack variable to be
2645         send, aopForSym might perform the push, if this is true make sure
2646         that genCall doesn't push the variable twice by testing _G.resDirect,
2647         * (genFunction): changed testing for unspecified interrupt number
2648         from 256 to INTNO_UNSPEC,
2649         * modified selection scheme of frame pointer generation. Previously
2650         if function did use local registers a frame pointer was generated,
2651         now a frame pointer is generated only if function has arguments
2652         (that need PLUSW2 register access), or has stack arguments, or the
2653         compiler is not instructed to omit the frame pointer,
2654         * (genEndFunction): before restoring local registers that were saved
2655         in the function preamble, also restore the registers that *might*
2656         have been allocated for stack access,
2657         * (genRet): removed some old comments,
2658         * (genCmp, the active (RN's) version): added a call to the
2659         pic16_genCmp_special function to perform the compare with a more
2660         robust and optimized way,
2661         * (genInline): a feature has been added in inline code generation,
2662         which allows a wildcard variable substitution when writing inline
2663         assembly. Code is incomplete and experimental therefore undocumented,
2664         * (genCast): changed order of aopOp for result and right to allow
2665         aopForSym to directly load the result if possible,
2666         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2667         perform an optimized compare on some selected special occasions,
2668         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2669         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2670         generate an IVT any more,
2671         * src/pic16/main.c (pic16_optionsTable): added command line option
2672         --optimize-cmp,
2673         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2674         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2675         macros,
2676         * src/pic16/NOTES: Raphael Neider added in list of active developers
2677         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2678         jumptable_end to prevent bug #,
2679         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2680         inCond and outCond fields,
2681         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2682         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2683         turn off register spilling,
2684         * (packRegsForOneUse): synced with other ports' versions although it
2685         is not used currently,
2686         * (pic16_packRegisters): added an optimization while reading
2687         structure bitfields, some registers may be saved (malloc code is
2688         decreased by 80 bytes)
2689
2690 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2691
2692         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2693         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2694         this can be optimized more?
2695
2696 2005-03-10 Raphael Neider <rneider AT web.de>
2697
2698         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2699           genNearPointerGet): (hopefully) fixed access to bitfields via
2700           pointers (p->bitN = x; and x = p->bitN; failed)
2701
2702 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2703
2704         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2705
2706 2005-03-09 Raphael Neider <rneider AT web.de>
2707
2708         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2709
2710 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2711
2712         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2713         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2714           (regTypeNum): set REG_BIT type if necessary
2715         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2716         * support/regression/tests/critical.c: check bug 1144613
2717
2718 2005-03-02 Raphael Neider <rneider AT web.de>
2719
2720         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2721
2722 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2723
2724         * src/avr/ralloc.c (serialRegAssign),
2725         * src/ds390/ralloc.c (serialRegAssign),
2726         * src/hc08/ralloc.c (serialRegAssign),
2727         * src/mcs51/ralloc.c (serialRegAssign),
2728         * src/pic/ralloc.c (serialRegAssign),
2729         * src/pic16/ralloc.c (serialRegAssign),
2730         * src/xa51/ralloc.c (serialRegAssign),
2731         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2732
2733 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2734
2735         * src/SDCCast.c (decorateType): fixed bug 1124787
2736
2737 2005-02-20 Hubert Sack <sack AT digiplan.de>
2738         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2739
2740         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2741         patch #1121755
2742
2743 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2744
2745         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2746         to keep the correct label reference count when adding/removing references
2747         to labels. A peephole file using this is appended to patch #1144962.
2748
2749 2005-02-14 Raphael Neider <rneider AT web.de>
2750
2751         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2752         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2753         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2754           retrievals of result operand's value on assignment
2755
2756 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2757
2758         * device/include/pic16/string.h: modified prototype for memccpy()
2759         to memccpy(void *, void *, char, size_t)
2760         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2761         check whether to omit frame pointer or not,
2762         * (genInline): convert all occurences of "\n" to LF in inline
2763         assembler blocks, this helps formatting the inline text,
2764         * (pic16_loadFSR0): modified prototype,
2765         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2766         removed some 8051 legacy code,
2767         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2768         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2769         before allocating temporary registers in functions,
2770
2771 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2772
2773         * support/regression/tests/bitvars.c: corrected the "fix"
2774
2775 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2776
2777         * support/regression/tests/bitvars.c,
2778         * support/regression/tests/bitwise.c,
2779         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2780
2781 2005-02-10 Raphael Neider <rneider AT web.de>
2782
2783         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2784           different size for Alpha
2785         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2786
2787 2005-02-09 Raphael Neider <rneider AT web.de>
2788
2789         * src/SDCC.lex(doPragma) : save and restore warning options as well
2790           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2791         * have #pragma less_pedantic set the errorlevel to WARNING
2792           (fixes #1117001)
2793         * (cloneOptimize) : fixed wrong malloc's size
2794         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2795           facilitate correct handling of #pragma (save|restore)
2796
2797 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2798
2799         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2800
2801 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2802
2803         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2804
2805 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2806
2807         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2808
2809 2005-02-02 Raphael Neider <rneider AT web.de>
2810
2811         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2812         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2813         * (pic16_storeForReturn): fixed to allow returning function pointers
2814         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2815         * device/include/pic16/{stddef.h,stdbool.h}: added
2816
2817 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2818
2819         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2820
2821 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2822
2823         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2824         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2825          appeared to be required
2826
2827 2005-01-31 Borut Razem <borut.razem AT siol.net>
2828
2829         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2830           include/mcs51 and include/z80 directories to the package
2831
2832 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2833
2834         * src/hc08/gen.c (genFunction): fixed bug #1112752
2835
2836 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2837
2838         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2839
2840 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2841
2842         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2843
2844 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2845
2846         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2847
2848 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2849
2850         * device/include/c8051fxxx.h: removed these 6 files
2851         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2852
2853 2005-01-26 Raphael Neider <rneider AT web.de>
2854
2855         * src/pic16/gen.c (genAssign): fixed assignment from longs
2856           in codespace (were cut to three bytes)
2857         * (genDummyRead): implemented (except for CODESPACE...),
2858           fixed bug #1108575
2859         * src/pic16/glue.c (emitStatistics): beautified
2860         * device/lib/pic16/libm/Makefile: added include path
2861
2862 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2863
2864         * src/z80/gen.c (aopPut): fixed bug #1103902
2865
2866 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2867
2868         * device/lib/expf.c: fixed bug #1095792
2869
2870 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2871
2872         * device/lib/pic16/libm: added Math library sources
2873
2874 2005-01-24 Raphael Neider <rneider AT web.de>
2875
2876         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2877           to enable upcast to pCodeOpReg2 (there is no type tag to
2878           differenciate the two and pic16_popGet2p cast into PCOR2)
2879         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2880           (sizeof(sectNames) changed to sizeof(sectName))
2881           Both patches fix segfaults under MinGW.
2882
2883 2005-01-23 Raphael Neider <rneider AT web.de>
2884
2885         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2886           Safe_[mc]?alloc()'ed variables
2887         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2888           of (byte sized) temporaries (assign them to WREG for now)
2889         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2890           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2891           this might fix SIGSEGVs on MinGW...
2892         * src/SDCCopt.c (killDeadCode): restored original behaviour
2893           (volatile operands might get thrown away though)
2894
2895 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2896
2897         * src/pic16/gen.c: fixed bug #1106975,
2898         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2899         pointer update, INTCON is saved, global interrupts are disabled and
2900         restored after updateing TOS.
2901         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2902         * added function attribute 'shadowregs' to take advantage of shadow
2903         registers,
2904         * added function attribute 'wparam' as an alternative to the wparam
2905         pragma,
2906         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2907         user declares a non-ISR function as 'shadowregs',
2908         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2909
2910 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2911
2912         * .version: bumped version number to 2.4.8
2913         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2914         pic16 port,
2915         * device/lib/pic16/libio/i2c/: I2C module support library,
2916         * device/include/pic16/i2c.h: I2C support library header,
2917         * device/lib/pic16/libc/stdio/: standard IO support sources,
2918         * (printf_small.c): printf_small() source, supports float print,
2919         * (printf_tiny.c): printf_tiny() source, does not support floats,
2920         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2921         enable global optimizations for entire library source, other
2922         Makefiles in the source tree are also modified to reflect this,
2923         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2924         function,
2925         * doc/sdccman.lyx: updated to reflect new changes,
2926         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2927         sym->onStack if-case,
2928         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2929         sbit, idata, _idata, xdata, _xdata,
2930         * added pragma library, to link an external library, (see doc),
2931         * removed command line options, --pomit-config-words, --pomit-ivt,
2932         --pleave-reset-vector,
2933         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2934         when calling assembler to reflect memory model used, also define
2935         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2936         reflect stack model used,
2937         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2938         on stack return NULL,
2939
2940 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2941
2942         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2943           of the operands is volatile. Fixes #1020220
2944
2945 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2946
2947         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2948         * (OptimizeRegUsage): make sure that there is really no other flow where
2949           the first pCode is used
2950
2951 2005-01-22 Raphael Neider <rneider AT web.de>
2952
2953         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2954           to fix #1106967 (pCode->seq are not set up correctly)
2955
2956 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2957
2958         * src/SDCCglue.c (glue): make sure code area is declared before the
2959         static initialization area.
2960
2961 2005-01-21 Raphael Neider <rneider AT web.de>
2962
2963         * device/lib/Makefile.in: fixed test for pic16 install dir
2964         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2965           optimizations
2966         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2967           added --optimize-goto compiler switch and pragma wparam documentation
2968         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2969         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2970           and PRODH closing bug #1071770 (peephole optimizer)
2971
2972 2005-01-19 Raphael Neider <rneider AT web.de>
2973
2974         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2975           cmdLine buffers (used when calling sdcpp...) are large enough
2976           (MAX_PATH=256 truncates arguments leading to system halts when
2977           used in MinGW...)
2978         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2979         * (genUminus): rewritten to for efficiency
2980         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2981           used uninitialized in some cases)
2982         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2983           copy the third byte from the int -- now assumes 0x80 (data memory)
2984         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2985           operands (genAddLit expects the iCode's operands to swapped as
2986           well), fixed leftover bytes (crashed for short left operands)
2987         * (pic16_genMinusDec): performance improvements, removed false
2988           PIC14 emitSKPNCs
2989         * (pic16_genMinus): fixed to cope with differently sized operands
2990         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2991           for --obanksel > 1
2992         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2993         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2994           new banksel optimization
2995         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2996           analysis for temporary registers (segfaults...)
2997         * src/pic16/peeph.def: added rule
2998
2999 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3000
3001         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3002         which converts a float number to its ASCII representation
3003         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3004         functions to convert the fractional and integer part of a float to ASCII,
3005         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3006         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3007         ram
3008         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3009         _STATMEM macros,
3010         * device/include/pic16/adc.h: added GPL info,
3011         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3012         a pCodeOp as tested operand,
3013         * (genNearPointerGet): optimized bit testing, does not use
3014         intermediate register for bit value, test directly instead with
3015         BTFSS, BTFSC, works only for single bits,
3016         * (genpic16Code): dump the name of the iCode in the asm,
3017         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3018         renamed to pic16_decodeOp,
3019         * (serialRegAssign): do not allocate a temporary register for iCode
3020         sequences that test a single bit for 1/0
3021
3022 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3023
3024         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3025         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3026         access stack and frame pointers. They are initially assigned to
3027         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3028         accessing SFRs. Updated all occurences of modification of stack or
3029         frame pointer in gen.c and pcode.c,
3030         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3031         assigning of a literal value to pointers,
3032         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3033         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3034         selected
3035
3036 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3037
3038         * doc/sdccman.lyx: update documentation about stack pragma, added
3039         some info for stack memory models
3040
3041 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3042
3043         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3044
3045 2005-01-08 Raphael Neider <rneider AT web.de>
3046
3047         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3048           udata sections to fix bug #1097823
3049
3050 2005-01-05 Raphael Neider <rneider AT web.de>
3051
3052         * src/pic16/gen.c (genGenericShift): added handling of differently
3053           sized left operand and result
3054
3055 2005-01-04 Raphael Neider <rneider AT web.de>
3056
3057         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3058         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3059           to hold the condition bit)
3060         * added new version of genCmp (old code available via #define)
3061         * added new version of genShiftLeft/genShiftRight in a generic
3062           way, now supports shifting by negative values
3063         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3064           shiftCount (expected by genGenericShift)
3065         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3066         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3067           dump
3068         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3069           is an invalid literal too...)
3070
3071 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3072
3073         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3074         from Raphael Neider,
3075         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3076         for 8-bit literals. This fixes some literal operands which are sign
3077         extended to 16-bits ints when instruction needs only 8-bits.
3078
3079 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3080
3081         * device/lib/logf.c: added mcs51 assembly version
3082         * device/lib/expf.c: added mcs51 assembly version
3083         * device/lib/_logexpf.c: new shared asm code for expf and logf
3084         * device/include/math.h: add defines for assembly math library
3085         * device/lib/Makefile.in: build new _logexpf.c
3086         * device/lib/libfloat.lib: use new _logexpf.c
3087
3088 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3089
3090         * src/pic/device.c
3091         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3092           device types which have less than 0x7f registers.
3093
3094 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3095
3096         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3097
3098 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3099
3100         * device/lib/printf_fast.c: only build on supported arch.
3101         * device/lib/printf_tiny.c: only build on supported arch.
3102         * device/lib/printf_fast_f.c: only build if asm float lib
3103         * device/lib/_fsget1arg.c: only build if asm float lib
3104         * device/lib/_fsget2args.c: only build if asm float lib
3105         * device/lib/_fsnormalize.c: only build if asm float lib
3106         * device/lib/_fsreturnval.c: only build if asm float lib
3107         * device/lib/_fsrshift.c: only build if asm float lib
3108         * device/lib/_fsswapargs.c: only build if asm float lib
3109         * device/include/stdio.h: don't provide print_fast,
3110           print_fast_f, print_tiny prototypes if --xstack used
3111
3112 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3113
3114         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3115         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3116           to the SOURCES
3117
3118 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3119
3120         * device/lib/printf_fast_f.c: same as printf_fast, but
3121           with floating point enabled
3122         * device/lib/printf_fast.c: minor tweaks
3123         * device/include/stdio.h: add printf_fast_f
3124
3125 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3126
3127         * src/SDCCmain.c: make --float-reent default for mcs51
3128         * device/lib/_fsadd.c: added mcs51 assembly version
3129         * device/lib/_fssub.c: added mcs51 assembly version
3130         * device/lib/_fsmul.c: added mcs51 assembly version
3131         * device/lib/_fsdiv.c: added mcs51 assembly version
3132         * device/lib/_fseq.c: added mcs51 assembly version
3133         * device/lib/_fsneq.c: added mcs51 assembly version
3134         * device/lib/_fsgt.c: added mcs51 assembly version
3135         * device/lib/_fslt.c: added mcs51 assembly version
3136         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3137         * device/lib/Makefile.in: add _fscmp to build
3138         * device/lib/libfloat.lib: add _fscmp to build
3139
3140 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3141
3142         * device/lib/_fs2slong.c: added mcs51 assembly version
3143         * device/lib/_fs2sint.c: added mcs51 assembly version
3144         * device/lib/_fs2schar.c: added mcs51 assembly version
3145         * device/lib/_fs2ulong.c: added mcs51 assembly version
3146         * device/lib/_fs2uint.c: added mcs51 assembly version
3147         * device/lib/_fs2uchar.c: added mcs51 assembly version
3148         * device/lib/_slong2fs.c: added mcs51 assembly version
3149         * device/lib/_sint2fs.c: added mcs51 assembly version
3150         * device/lib/_schar2fs.c: added mcs51 assembly version
3151         * device/lib/_ulong2fs.c: added mcs51 assembly version
3152         * device/lib/_uint2fs.c: added mcs51 assembly version
3153         * device/lib/_uchar2fs.c: added mcs51 assembly version
3154         * device/include/float.h: added #define to select asm vs c
3155
3156 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3157
3158         * device/lib/printf_fast.c: improvements to float output
3159         * device/include/float.h: add defines for assembly float library
3160         * device/lib/_fsget1arg.c: receive 1 float arg
3161         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3162         * device/lib/_fsnormalize.c: normalize a float
3163         * device/lib/_fsreturnval.c: return float, various helper routines
3164         * device/lib/_fsrshift.c: right shift a float's mantissa
3165         * device/lib/_fsswapargs.c: swap 2 floats
3166         * device/lib/Makefile.in: build these 6 new files for mcs51
3167         * device/lib/libfloat.lib: add these 6 files to the library
3168
3169 2004-12-26 Borut Razem <borut.razem AT siol.net>
3170
3171         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3172           built by gcc 3.4.2
3173
3174 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3175
3176         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3177           and fully reentrant and register bank neutral.
3178         * device/lib/printf_fast.c: added float (not enabled by default),
3179           added compact/slower integer (also not enabled by default),
3180           improved size/speed of fast integer code, other minor changes
3181         * device/include/stdio.h, device/lib/Makefile.in,
3182           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3183
3184 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3185
3186         * src/pic16/pcode.c: declaring variables other than at the start of a
3187           block is not supported in C by VC6.
3188
3189 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3190
3191         * applied a previous patch from Raphael Neider that wasn't included
3192         in the previous commits, which fixes infinite loops within jumptable
3193         improvements,
3194         * made some fixes that previous patches introduced
3195
3196 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3197
3198         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3199         that fixes an issue with AOP_PCODE asmop's offset,
3200         * (pic16_popCopyReg): update instance field too,
3201         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3202         function of pic port,
3203         * (genCmp, genAnd, genAssign),
3204         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3205
3206 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3207
3208         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3209         variables initial values to idata section,
3210         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3211         variables in some functions. This utilizes parmBytes field of iCode
3212         structure to hold the offset of the variable in stack. (might be
3213         able to use the stack field too?)
3214         * applied patch from Raphael Neider # ### , # ###
3215         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3216         variable initial values in idata section,
3217         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3218         for static variables with initial value
3219         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3220         applied fix in while loop from Raphael Neider.
3221
3222 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3223
3224         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3225         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3226         * src/ds390/ralloc.c (serialRegAssign): spill bits
3227         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3228         * support/Util/SDCCerr.c,
3229         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3230         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3231         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3232
3233 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3234
3235         * device/include/sdcc-lib.h: inserted LGPL, added includes
3236           asm/ds390/features.h and asm/mcs51/features.h
3237         * device/include/asm/default/features.h,
3238         * device/include/asm/gbz80/features.h,
3239         * device/include/asm/z80/features.h: added empty _AUTOMEM
3240           and _STATMEM
3241         * device/include/asm/ds390/features.h,
3242         * device/include/asm/mcs51/features.h: added files with defines for
3243           _AUTOMEM and _STATMEM indicating automatic and static storage class
3244         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3245         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3246         * src/SDCCicode.c (geniCodeCast),
3247         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3248         * src/SDCCloop.c (loopInduction): removed unused variable lr
3249         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3250           to convertToFcall to include char modulo (RFE 1065037), added check
3251           if left operand is unsigned and use abs of literal value
3252         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3253           as it doesn't work after conversion from peephole.def to peephole.rul
3254         * src/mcs51/gen.c (toBoolean): added check for size,
3255           (genModOneByte): optimized code for signed char modulo a literal
3256           power of 2 (thanks to Hubert Sack),
3257           (genRRC): removed unnecessary "clr c",
3258           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3259         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3260           jump optimization,
3261           swapped rules 256.c and 256.d,
3262           extended 256.d by using new multiple checks (thanks Erik),
3263           added rules 256.e and 256.f,
3264           updated rule 261.a and 261.b to new generated code
3265         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3266
3267 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3268
3269         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3270           induction related bugs, including first part of bug #1074377
3271
3272 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3273
3274         * applied patch from bug-report #1076292,
3275         * applied patches for genAnd and Goto-optimizations for Raphael
3276         Neider,
3277         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3278         dump a less iCode information,
3279         * src/pic16/device.h (pic16_options_t): added field debgen,
3280         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3281         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3282         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3283         puclic,
3284         * (various functions): added macros FENTRY and FENTRY2 to functions,
3285         to emit function prologue,
3286         * (various functions): fixed indentation,
3287         * (genNearPointerGet): fixed loading of FSR0,
3288         * (genPackBits): applied patch from Raphael Neider to fix updating
3289         of FSR0 and touching only the modified bits,
3290         * src/pic16/genarith.c (various functions): added macros FENTRY to
3291         emit function prologue in comments,
3292         * src/pic16/pcode.h: added functions debugf2, debugf3,
3293         * src/pic16/ralloc.c: partial fix for packForPush caused
3294         segmentation fault,
3295
3296 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3297
3298         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3299           <stsp AT users.sourceforge.net> with reversed byte order
3300         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3301
3302 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3303
3304         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3305           bug #1074377
3306         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3307         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3308
3309 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3310
3311         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3312
3313 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3314
3315         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3316           conditions,
3317           (setFromConditionArgs): friendly operand parser for peephole rules,
3318           (operandBaseName, operandsNotRelated): new peephole condition
3319           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3320           architecture specific register naming into account, handles n-way
3321           comparisons, and supports quoted literals
3322         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3323
3324 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3325
3326         * src/mcs51/peeph.def: fixed bug #1076940
3327
3328 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3329
3330         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3331
3332 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3333
3334         Adding support for replacing ljmps with sjmps in jumptables
3335         generated for switch statements. For now you need to set the
3336         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3337         Now 4 algorithms for mcs51 jumptable generation are used:
3338         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3339         addresses loaded pc-relative for up to 112 cases and stack-pushing
3340         target addresses loaded with offset from dptr for up to 256 cases.
3341
3342         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3343         * src/mcs51/main.c: adapted constants for switch table generation
3344         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3345
3346 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3347
3348         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3349         * support/regression/tests/bug1057979.c: added test for bug 1073386
3350
3351 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3352
3353         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3354         compilers
3355
3356 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3357
3358         * src/pic16/device.h,
3359         * src/pic16/genarith.c,
3360         * src/pic16/glue.c,
3361         * src/pic16/main.c,
3362         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3363
3364 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3365
3366         Large cummulative patch for pic16 port.
3367         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3368         to call when a stack overflow occurs,
3369         * (malloc.h): added CVS Id tag,
3370         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3371         variable,
3372         * added libc directory. The current version of LibC contains string
3373         functions, ctype functions and macros and some functions of the
3374         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3375         be extensively tested in the future. Standard disclaimer here.
3376         Library is not automatically build yet. But one can build it by
3377         invoking 'make' inside the libc directory.
3378         * added ADC library under libio. Preliminary version yet.
3379
3380         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3381         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3382         aopForRemat() now and not by pic16_aopOp(),
3383         * (pic16_popGetTempReg): removed warning messgae when allocating
3384         temporary registers, its a buggy feature and will be removed,
3385         * (pic16_popGet): set register instance field in AOP_CRY,
3386         * (pic16_outBitC): fixed for results in size greater than 1,
3387         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3388         * (pic16_storeForReturn): optimized return of 0,
3389         * (genCmp): experimental code for new genCmp which uses PIC18's
3390         special compare&skip instructions. Initial tests fail some times
3391         with variables grater than 1 byte in size, so new code is disabled,
3392         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3393         a single bit,
3394         * (genCast): began a fix to optimize the casting of a bit to another
3395         bit, now assigning a bitfield to another bitfield will fail, sorry,
3396         * src/pic16/main.c: disabled the use of lr-support feature,
3397         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3398         * added some function prototypes, added function _debugf prototype,
3399         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3400         bits with offset (case PO_GPR_BIT),
3401         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3402         command line,
3403         * (isBankInstruction): modified to return 0 for no banking instruction,
3404         and 1 for banking instruction,
3405         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3406         caused stop processing pCodes after a inline assembly block,
3407         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3408         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3409         registers when it shouldn't,
3410         * src/pic16/ralloc.c (allocReg): add preliminary support for
3411         supporting a limited set of temporary registers,
3412
3413 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3414
3415         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3416           genDataPointerSet): ensure assignments always copy in MSB to LSB
3417           order,
3418           (loadRegFromAop): recognize CLRH optimization,
3419           (genFunction): optimize RECEIVE iCodes in reentrant functions
3420
3421 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3422
3423         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3424           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3425           selected.
3426         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3427         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3428           contiguous with data
3429
3430 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3431
3432         * device/lib/_gptrget.c (_gptrget),
3433         * device/lib/_gptrgetc.c (_gptrgetc),
3434         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3435           instead of sjmp to ret
3436         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3437           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3438
3439 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3440
3441         * .version: bumped version to 2.4.7
3442         * device/lib/_gptrget.c (_gptrget): is now _naked
3443         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3444         * device/lib/_gptrput.c (_gptrput): is now _naked
3445         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3446           (createFunction): fixed xstack
3447         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3448         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3449           or bit either,
3450           (geniCodeCritical): store original interrupt state in an iTemp bit
3451           var unless stack-auto
3452         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3453         * src/SDCCmain.c (setIncludePath): added include/target to search path
3454         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3455         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3456           prototype,
3457           (processFuncArgs): put bit vars in bit area
3458         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3459           unsaveRBank): fixed xstack,
3460           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3461           (genFunction, genEndFunction): fixed xstack,
3462           (genAssign): optimization don't walk backwards through mem
3463         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3464         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3465         * support/regression/Makefile: also make library (for stack-auto) when
3466           making "all" and added "test-mcs51-xstack-auto"
3467         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3468         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3469         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3470         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3471         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3472           make-library by MAKE_LIBRARY
3473         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3474           regression tests for xstack
3475         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3476         * support/regression/tests/critical.c: test for critical on mcs51
3477
3478 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3479
3480         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3481           built version of sdcc instead of installed version
3482
3483 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3484
3485         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3486         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3487           vprintf.c now
3488         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3489         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3490           WARNING: remove device/lib/build/z80/printf.o by hand when
3491           updating from previous build!
3492         * device/lib/z80/printf.c: updated comment
3493         * support/regression/tests/bug1057979.c: test all ports now
3494         * support/regression/tests/bug1065458.c: file added
3495
3496 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3497
3498         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3499           *_start and *_end symbols for static functions
3500
3501 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3502
3503         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3504           and search crt0.o in all library paths,
3505           (setIncludePath): proper handling of --nostdinc,
3506           (setLibPath): proper handling of --nostdlib
3507         * support/regression/Makefile,
3508         * support/regression/ports/ds390/spec.mk,
3509         * support/regression/ports/gbz80/spec.mk,
3510         * support/regression/ports/hc08/spec.mk,
3511         * support/regression/ports/mcs51/spec.mk,
3512         * support/regression/ports/mcs51-large/spec.mk,
3513         * support/regression/ports/mcs51-stack-auto/spec.mk,
3514         * support/regression/ports/z80/spec.mk: use include and lib files from
3515           built version of sdcc instead of installed version
3516         * doc/sdccman.lyx: fixed typo in --nostdinc
3517
3518 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3519
3520         * src/pic/pcode.c,
3521         * src/pic/device.c,
3522         * src/pic/ralloc.c,
3523         * src/pic/gen.c : added support to generate code for struct bit fields.
3524
3525 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3526
3527         * as/xa51/xa_version.h,
3528         * device/include/errno.h,
3529         * device/include/regc515c.h,
3530         * device/lib/_itoa.c,
3531         * device/lib/_ltoa.c,
3532         * device/lib/ser_ir_cts_rts.c,
3533         * sim/ucsim/xa.src/glob.cc,
3534         * sim/ucsim/xa.src/inst_gen.cc,
3535         * sim/ucsim/xa.src/xa_bit.cc,
3536         * sim/ucsim/xa.src/xa_sfr.cc,
3537         * sim/ucsim/z80.src/inst_dd.cc,
3538         * sim/ucsim/z80.src/inst_fdcb.cc,
3539         * support/scripts/keil2sdcc.pl,
3540         * src/pic16/pic16.dsp,
3541         * src/pic16/pic16a.dsp: corrected cvs line endings
3542         * device/lib/printf_large.c: fixed bug 1057979
3543         * src/pic16/gen.c: fixed non-C standard code
3544         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3545         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3546         * support/regression/ports/mcs51/support.c: reload T1 asap
3547         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3548           pdata use and clear idata startup behaviour
3549         * support/regression/tests/bug1057979.c: added
3550
3551 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3552
3553         * device/examples/ds390/ow390/ad26.h,
3554         * device/examples/ds390/ow390/cnt1d.h,
3555         * device/examples/ds390/ow390/crcutil.c,
3556         * device/examples/ds390/ow390/ownet.h,
3557         * device/examples/ds390/ow390/owsesu.c,
3558         * device/examples/ds390/ow390/swt12.h,
3559         * device/examples/ds390/ow390/swtoper.c,
3560         * device/examples/ds390/ow390/temp10.h,
3561         * device/examples/ds390/ow390/thermodl.c,
3562         * device/examples/ds390/tinitalk/tinitalk.dsp,
3563         * device/examples/ds390/tinitalk/tinitalk.dsw,
3564         * device/examples/mcs51/clock/hw.h,
3565         * device/examples/mcs51/simple2/go.bat,
3566         * device/examples/serialcomm/windows/serial.h,
3567         * device/examples/xa51/dummy.c,
3568         * device/examples/xa51/hello.c,
3569         * device/include/80c51xa.h,
3570         * device/include/at89x051.h: corrected cvs line endings
3571
3572 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3573
3574         * src/pic16/main.c (options): added command line --gstack, to trace
3575         stack over/under flows,
3576         * added pragma 'wparam' to allow passing first byte of function
3577         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3578         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3579         call to __gstack_test function and sets up the symbol as extern,
3580         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3581         * popaop): added call to pic16_testStackOverflow,
3582         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3583         wparamList list,
3584         * (genCall, genPcall): now all parameters are passed via stack
3585         except in functions that are pass to wparam pragma in which WREG is
3586         used too,
3587         * (genPcall): REENTRANT flag is checked to see if variable prototype
3588         contains reentrant keyword, don't call a non-reentrant function, via
3589         a reentrant function pointer or vice versa, functions are never
3590         passed via WREG,
3591         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3592         D.Winkler,
3593         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3594         SIGSEGV when accessing a NULL register stucture,
3595         * (pic16_printGPointerType): modified to handle UPPER modifier for
3596         function initializers, changed prototype of function to simpler one,
3597         * (pic16_printIvalFuncPtr): check to see if function is already
3598         added in externs list,
3599         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3600         optimized a move from W to SFR with a move to the same register
3601         later after a CALL,
3602         * device/lib/pic16/debug: NEW directory, contains debug features
3603         which are enabled when linking with libdebug.lib, currently command
3604         line option --gstack enables stack pointer tracing for over/under
3605         flow, corresponding sources are in debug/gstack
3606
3607 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3608
3609         * doc/sdccman.lyx: updated SDCC version,
3610         * (PIC16 port): update list of command line options,
3611         * src/pic16/device.h (structure pic16_options_t): added field gstack
3612         to enable stack overflow tracing on push/pops,
3613         * src/pic16/device.c (statistics structure): added statistics
3614         structure,
3615         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3616         pic16_dump_int_registers): increase statistics counters for each
3617         * variable which is encountered
3618         * (pic16_dump_usection): emit each .udata variable to its own udata
3619         section,
3620         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3621         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3622         parameters via stack, otherwise use old scheme,
3623         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3624         assembler output file,
3625         * src/pic16/main.c: added command line options --gstack to enable
3626         push/pop tracing for stack overflow,
3627         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3628         instructions): added size of each instruction,
3629         * (pic16_countInstruction): estimate size of instructions in
3630         the_pFile list, inline assembly blocks are not counted,
3631         * (pic16_FixRegisterBanking): trace previous register usage, when
3632         banksel optimizations is greater than 0, don't emit a redudant
3633         banksel directive,
3634
3635 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3636
3637         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3638         * src/pic16/ralloc.c : applied same fix for pic16.
3639         * src/pic/gen.c : tidied it up a little.
3640
3641 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3642
3643         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3644         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3645
3646 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3647
3648         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3649
3650 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3651
3652         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3653         non-reentrant function __modsint in the interrupt function (thus
3654         corrupting math operations during serial I/O)
3655         * device/lib/ser_ir.c: as above, changed buffersize
3656         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3657         256.c,d for zeroing
3658         * doc/Makefile: added option -t for rsync
3659
3660 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3661
3662         * src/SDCCast.h (struct ast),
3663         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3664
3665 2004-10-20 Borut Razem <borut.razem AT siol.net>
3666
3667         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3668         package
3669
3670 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3671
3672         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3673         makefile targets,
3674         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3675         support functions to replace long sequences of MOVFF's from access
3676         bank registers to stack and vice versa,
3677         * src/pic16/device.h: added new field opt_flags, where optimization
3678         flags can be set to enable certain features,
3679         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3680         * pBlock, (genFunction, genEndFunction): surroung loop for
3681         saving/loading used registers in stack with PC_INFO pCodes,
3682         INF_LREGS. Code in between can then be optimized by pCode optimizer
3683         to support function calls,
3684         * (genDataPointerSet): fixed bug which loaded float fields in
3685         structures with corrupt data,
3686         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3687         in a standard way debug info on stderr. Feature used for developing
3688         and debugging only,
3689         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3690         obsolete chunks of code,
3691         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3692         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3693         * pic16/src/pcode.c (pic16_newpCodeInfo,
3694         * (pic16_newpCodeOpLocalRegs),
3695         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3696         feature,
3697         * (pic16_pCodeConstString): printing of the initial value of a
3698         symbol as a comment is inhibited since parsing was already done by
3699         copyStr and output is corrupt,
3700         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3701
3702 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3703
3704         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3705
3706 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3707
3708         * as/mcs51/lkarea.c: removed old K&R style,
3709           (lnksect): changed check on boundary error,
3710           (lnksect2): changed check on boundary error,
3711           (lnksect2): extend XSTK to end of page if size = 1
3712         * as/mcs51/lkmain.c: removed old K&R style,
3713           (Areas51): create l_IRAM symbol
3714         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3715         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3716           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3717         * device/lib/_mullong.c: added version to be compiled with xstack
3718         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3719         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3720         * device/lib/mcs51/crtxstack.asm: fixed comment
3721         * src/SDCCglue.c: maxInterrupts defaults to 0,
3722           (emitMaps): added pdata,
3723           (createInterruptVect): (re)moved default,
3724           (glue): added pdata,
3725           (glue): moved __start__xstack to XSTK with default size 1
3726         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3727           and options.float_rent when options.stackAuto is set,
3728           (linkEdit): only write XDATA_NAME if provided on command line
3729         * src/SDCCmem.h,
3730         * src/SDCCmem.c: added pdata
3731         * src/port.h: added pdata_name to PORT
3732         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3733           (saveRegisters, unsaveRegisters): removed usage of B,
3734           (genMinus): fixed accumulator clash,
3735           (genJumpTab): added comment, this needs another look
3736         * src/mcs51/gen.c: added check for "B in use" paranoia,
3737           added pushB() and popB()
3738         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3739           chance
3740         * src/avr/main.c,
3741         * src/ds390/main.c,
3742         * src/hc08/main.c,
3743         * src/mcs51/main.c,
3744         * src/pic/main.c,
3745         * src/pic16/main.c,
3746         * src/xa51/main.c,
3747         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3748           added PSEG (PAG,XDATA) or NULL to port specifier
3749         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3750         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3751           (_mcs51_genInitStartup): removed __start__xstack equ,
3752           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3753         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3754         * src/z80/gen.c (_rleAppend): fixed warnings
3755         * support/regression/tests/zeropad.c: added pdata test
3756         * .version: bumped to 2.4.6
3757
3758 2004-10-17 Borut Razem <borut.razem AT siol.net>
3759
3760         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3761         as a part of nightly build
3762
3763 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3764
3765         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3766         WREG holds the first byte function parameters,
3767         * (aopForSym): take special case for symbols which are in FARSPACE
3768         but in CODESPACE too,
3769         * (assignResultValue): modified to take into account _G.useWreg,
3770         * (genCall): don't use wreg for parameter passing when function is
3771         declared as reentrant, too, added optimization INCF to stack
3772         pointer when stack parameter count is 1,
3773         * (genFunction, genEndFunction): refurnished and fixed to not using
3774         wreg for passing parameters when function has varargs or is
3775         reentrant, fixed bug with symbol name compare for generating
3776         functions in absolute address,
3777         * (pic16_storeForReturn): refurnished,
3778         * (genCmp): began writing a new version of the function, not ready
3779         yet, therefore it is disabled,
3780         * (genAssign): do not read code memory when assigning a function to
3781         a pointer function,
3782         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3783         array of characters, not pointer,
3784         * (pic16initialComments): in debug mode emit an .ident directive for
3785         the assembler,
3786         * (_process_pragma): emit a new warning type (internal to pic16)
3787         when setting stack to default length, emit a similar warning when
3788         placing a function at absolute address and address is not word aligned
3789         * (_pic16_parseOptions): added 'return TRUE' statement,
3790         * (_pic16_linkEdit): if compiling a source, then add the source's
3791         file object, first in the list of objects to link,
3792
3793 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3794
3795         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3796         * src/pic/main.c : removed VC warning.
3797         * src/pic/gen.c : changed comment.
3798
3799 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3800
3801         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3802         reference to a deprecated symbol _GPTRREG was causing failure to
3803         link. Thanks G. M. Gallant for the info.
3804
3805 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3806
3807         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3808         comments for Bugs item #954788.
3809
3810 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3811
3812         * src/pic16/device.c (pic16_dump_gsection,
3813         * pic16_groupRegistersInSection): handle symbols declared to be in
3814         access bank differently,
3815         * src/pic16/gen.c (struct _G): added field resDirect,
3816         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3817         send values read from stack directly to result and don't allocate
3818         temporary values,
3819         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3820         same registers,
3821         * (pic16_sameRegsOfs): NEW,
3822         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3823         free because they were not allocated from temporary pool,
3824         * pic16_popRegFromString): workaround to fix a problem with
3825         allocating variables twice or never,
3826         * (genGenPointerGet): using PRODL instead of FSR0H,
3827         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3828         instead of FSR0H,
3829         * (genAssign): take advantage of the _G.resDirect flag,
3830         * (genCast): around line 11844, use mov2f instead of directly
3831         MOVFF'ing between operands to account for literal values,
3832         * src/pic16/genutils.c: some new debug functions for gpsim have been
3833         added,
3834         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3835         float with integer part only,
3836         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3837         place variables in access bank
3838         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3839         updated sources to reflect recent changes in gen.c
3840
3841 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3842
3843         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3844         sources that searched for headers in installation path, now the
3845         device/include/pic16 is used,
3846         * src/pic16/glue.c (pic16glue),
3847         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3848         .line directives if not in debug mode, this suppresses assembler's
3849         warnings for ignored directives
3850
3851 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3852
3853         * src/port.h: made reset_regparms prototype void parameter explicit.
3854         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3855         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3856         * doc/sdccman.lyx: documented warning disabling and how to use
3857           printf_large to make it print floats.
3858         * device/include/stdbool.h: NEW
3859         * device/lib/_atof.c,
3860         * device/lib/_divuint.c,
3861         * device/lib/_divulong.c,
3862         * device/lib/expf.c,
3863         * device/lib/printf_large.c,
3864         * device/lib/sincosf.c,
3865         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3866         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3867           a completely reentrant lib.
3868
3869 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3870
3871         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3872         * device/include/pic16/stdio.h: fixed bug with colon
3873
3874 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3875
3876         * device/include/pic16/stdio.h,
3877         * device/include/pic16/stdlib.h,
3878         * device/include/pic16/math.h: NEW
3879         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3880         declared as _naked to reduce overhead
3881         * device/lib/Makefile.in (target port-specific-objects-pic16):
3882         changed * to *.* so to ignore the CVS directory,
3883         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3884         stacked variables back in stack,
3885         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3886         corruption
3887
3888 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3889
3890         * .version: bumped version number to 2.4.5
3891         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3892         * support/Util/SDCCerr.c (messages structure): added entry for
3893         W_POSSBUG2
3894
3895         Large cumulative patch for pic16 port and libraries.
3896         * device/include/pic16/sdcc-lib.h,
3897         * device/include/pic16/stdarg.h,
3898         * device/include/asm/pic16/features.h,
3899         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3900         * device/include/pic16/float.h: changes reentrant keyword with
3901         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3902         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3903         updated target build-libraries to include objects from gptr,
3904         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3905         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3906         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3907         all function headings,
3908         * src/SDCCmain.c: added global parameter userIncDirsSet,
3909         * (parseCmdLine): when option -I is encountered add directory to
3910         userIncDirsSet too,
3911         * src/version.awk: added space between control and long,
3912         * src/pic16/NOTES: added some notes for the port,
3913         * src/pic16/gen.c: added prototype for mov2fp function,
3914         * (fReturnpic16[]): properly named return value registers,
3915         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3916         * (aopForSym): added code to handle symbols with onStack flag set,
3917         symbols onStack are allocated PTRSIZE bytes,
3918         * (aopFreeAsmop): handles special case where asmops are stack objects,
3919         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3920         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3921         added argument lock to trace flaws in allocating temporary registers
3922         when developing port,
3923         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3924         * (pic16_popRegFromString): reenabled allocating a direct register
3925         from string,
3926         * (assignResultValue): various beautifications,
3927         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3928         referenced function argument,
3929         * (genIpush): reenabled to allow stacked arguments, handles only
3930         ic->parmPush iCodes,
3931         * (genCall, genPcall): major changes to allow for variable argument
3932         functions, fixed a bug with falsely restoring stack pointer after
3933         returning from call,
3934         * (genFunction): pending code for critical function,
3935         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3936         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3937         * (genNearPointerGet): fixed bug with indirect reading, was always
3938         reading from INDF0
3939         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3940         pointers,
3941         * (genAddrOf): rewrote code to take address of a stacked function parameter
3942         * (genCast): fixed casting to generic pointer type,
3943         * src/pic16/gen.h: added AOP_STA,
3944         * (struct asmop): added field stk,
3945         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3946         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3947         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3948         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3949         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3950         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3951         generic pointers,
3952         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3953         and library paths,
3954         * (pic16_port structure): generic pointer size is set to 3,
3955         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3956         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3957         compiler warning,
3958         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3959         operand is an iTemp,
3960
3961 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3962
3963         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3964         * debugger/mcs51/simi.c: addapt new syntax of s51
3965
3966 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3967
3968         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3969         * src/pic16/pcode.c: commented out some calls to free() in order to
3970         fix bug #989576,
3971
3972 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3973
3974         * src/SDCCicode.h,
3975         * src/SDCCicode.c (isiCodeInFunctionCall),
3976         * src/avr/ralloc.c (selectSpil),
3977         * src/pic/ralloc.c (selectSpil),
3978         * src/pic16/ralloc.c (selectSpil),
3979         * src/ds390/ralloc.c (selectSpil),
3980         * src/hc08/ralloc.c (selectSpil),
3981         * src/xa51/ralloc.c (selectSpil),
3982         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3983         stack in the middle of a function call sequence (fixes bug #1020268)
3984         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3985         costs associated with the minimum switch case.
3986
3987 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3988
3989         * src/SDCC.lex: fixed bug #1030549
3990
3991 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3992
3993         * src/SDCCcse.h (struct cseDef),
3994         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3995         over a function call if the CSE is derived from a symbol whose
3996         address has been taken (fixes bug #1029883)
3997         * support/regression/tests/bug-1029883: a new regression test for
3998         this bug
3999
4000 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4001
4002         * src/hc08/gen.c (emitinline): fixed bug #1029778
4003         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4004         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4005         and starts toward RFE #905167)
4006
4007 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4008
4009         * src/pic16/gen.c (mov2f): New function to move an operand to
4010         another without considering if it is a literal or a register,
4011         * (pic16_sameRegs): don't check if they are both AOP_REG,
4012         * (AccRsh): removed andmask=0 lines,
4013         * (genLeftShift): duplicated to be improved in future versions,
4014         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4015         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4016         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4017         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4018         * (insertBankSwitch): fixed inserting banksel directives algorithm
4019         for instructions that follow a skip instruction, this fixes a report
4020         for broken subtraction code generation,
4021         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4022         iCode is a left op, just in case result and right share the same
4023         registers
4024
4025 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4026
4027         * src/hc08/main.c,
4028         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4029         preservation of HX
4030         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4031         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4032         on 2004-09-12; it was buggy
4033
4034 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4035
4036         * src/SDCCsymt.h: removed RESULT_CHECK
4037         * src/SDCCast.c,
4038         * src/SDCCglue.c,
4039         * src/SDCCval.c,
4040         * src/pic/glue.c,
4041         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4042
4043 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4044
4045         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4046         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4047         configuration values no more rejected by compiler, they are assigned
4048         to configuration registers with a warning message instead,
4049         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4050         the for-loop so last conf register is emitted too,
4051         * (_pic16_initPaths): link library libsdcc.lib by default,
4052         * (_hasNativeMulFor): modified test for multiplication according to
4053         Raphael Neider's remarks. Integer multiplication is also done with
4054         support functions,
4055         * device/include/pic16/pic18fregs.h: corrected type error in while
4056         testing and including 18f6720 header file
4057
4058 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4059
4060         * src/pic16/device.h (pic16_options): removed field use_crt,
4061         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4062         until an optimization to handle single bits is added,
4063         * (pic16_loadFSR0): moved before genUnpackBits,
4064         * (genAnd): some white lines removed,
4065         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4066         leave_reset flags in pic16_options when using crt modules,
4067
4068 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4069
4070         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4071           for bugs 898889 & 979599. Also used some safer print instructions.
4072
4073 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4074
4075         * src/pic16/device.h (pic16_options_t): added field use_crt,
4076         crt_name, no_crt,
4077         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4078         catch a probable future bug,
4079         * src/pic16/gen.c: aopIdx function commented out,
4080         * (genAssign): commented out old code which used aopIdx,
4081         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4082         code, added if conditionals to take into account the --use-crt
4083         command line options,
4084         * src/pic16/main.c (pic16_optionsTable): added new command line
4085         options, --use-crt= and --no-crt,
4086         * (_pic16_linkEdit): now the proper crt object is added in the
4087         linker command line except than when --no-crt is specified,
4088         * src/pic16/pcode.c,
4089         * src/pic16/pcode.h: added some structures and functions for a new
4090         optimization scheme to compansate for instruction overhead between
4091         same iCodes, this scheme is currently under development and is not
4092         working in any way,
4093         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4094         to && operator,
4095         * device/lib/pic16/startup/crt0i.c,
4096         * device/lib/pic16/startup/crt0iz.c: added global char variable
4097         __uflags to force the generation of an idata section
4098
4099 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4100
4101         * doc/Makefile,
4102         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4103         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4104
4105 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4106
4107         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4108         Frieder) and clarified the default code optimization mode
4109
4110 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4111
4112         * src/SDCC.lex (doPragma, process_pragma),
4113         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4114         "opt_code_size", and "opt_code_balanced"
4115         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4116         regrouped options by category, added support for category headers
4117         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4118         and "--opt-code-size"
4119         * doc/sdccman.lyx: documented these new options and pragmas
4120         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4121         preference into account
4122
4123 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4124
4125         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4126           geniCodePreDec): Fixed bug 904237 by generating a warning
4127         * src/SDCCerr.h,
4128         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4129
4130 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4131
4132         * src/pic/device.c : When no max ram set validate full memory range.
4133         * src/pic/pcode.c,
4134         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4135
4136 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4137
4138         * device/lib/_gptrget.c,
4139         * device/lib/_gptrput.c: updated comment
4140         * device/lib/calloc.c,
4141         * device/lib/free.c,
4142         * device/lib/malloc.c,
4143         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4144         * src/SDCCcse.c (cseBBlock),
4145         * src/SDCCicode.c (printOperand, geniCodeArray),
4146         * src/SDCCicode.h (struct operand): fixed bug 868103
4147         * support/regression/tests/bug-868103.c: added
4148         * src/SDCCast.c (searchLitOp),
4149         * src/SDCCcse.h (struct cseDef),
4150         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4151         * src/SDCCicode.h (struct operand),
4152         * src/SDCCsymt.h (struct sym_link),
4153         * src/avr/gen.c (hasInc),
4154         * src/ds390/gen.c (hasInc),
4155         * src/hc08/gen.c (genPlusIncr, hasInc),
4156         * src/mcs51/gen.c (hasInc),
4157         * src/pic16/glue.c (pic16_printIvalChar),
4158         * src/pic16/ralloc.c (regWithIdx),
4159         * src/xa51/gen.c (hasInc) : removed warnings
4160         * src/SDCCast.c (createBlock): added comment ???
4161         * src/hc08/ralloc.c: updated comments
4162
4163 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4164
4165         * doc/sdccman.lyx: updated section on switch statements, added
4166         section about semaphore locking
4167         * doc/Makefile: added option -info for latex2html
4168         * device/lib/_gptrget.c,
4169         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4170
4171 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4172
4173         * src/pic/device.h,
4174         * src/pic/device.c,
4175         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4176          maxram is less than 0x100.
4177
4178 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4179
4180         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4181
4182 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4183
4184         * src/port.h,
4185         * src/mcs51/main.c,
4186         * src/ds390/main.c,
4187         * src/z80/main.c,
4188         * src/hc08/main.c,
4189         * src/pic/main.c,
4190         * src/pic16/main.c,
4191         * src/avr/main.c,
4192         * src/xa51/main.c
4193         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4194         a jump table is the best form for a switch statement, including
4195         automatic insertion of missing cases to make the case range
4196         continuous. Developed in collaboration with Frieder Ferlemann.
4197
4198 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4199
4200         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4201         accumulator result if it needs sign extension
4202
4203 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4204
4205         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4206
4207 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4208
4209         * device/lib/gbz80/printf.c,
4210         * device/lib/z80/printf.c: removed define for NULL
4211
4212 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4213
4214         * as/xa51/xa_link.c,
4215         * device/examples/ds390/ow390/ad26.c,
4216         * device/examples/ds390/ow390/cnt1d.c,
4217         * device/examples/ds390/ow390/counter.c,
4218         * device/examples/ds390/ow390/ds2480.h,
4219         * device/examples/ds390/ow390/ds2480ut.c,
4220         * device/examples/ds390/ow390/findtype.c,
4221         * device/examples/ds390/ow390/gethumd.c,
4222         * device/examples/ds390/ow390/owllu.c,
4223         * device/examples/ds390/ow390/ownetu.c,
4224         * device/examples/ds390/ow390/swt12.c,
4225         * device/examples/ds390/ow390/swtloop.c,
4226         * device/examples/ds390/ow390/temp.c,
4227         * device/examples/ds390/ow390/temp10.c,
4228         * device/examples/ds390/ow390/thermo21.c,
4229         * device/examples/ds390/ow390/tinilnk.c,
4230         * device/examples/ds390/ow390/tstfind.c,
4231         * device/examples/serialcomm/windows/serial.cpp,
4232         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4233         * device/include/reg51.h: fixed line endings for cvs
4234
4235 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4236
4237         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4238         packRegsForAccUse, packRegisters): new accumulator register
4239         packing algorithm
4240         * support/regression/ports/hc08/support.c (_putchar): suppress
4241         warning of unused variable
4242         * src/SDCCicode.c: added SWAP entry to codeTable
4243
4244 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4245
4246         * device/lib/sprintf.c: forgot to add this file before previous commit
4247
4248 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4249
4250         * src/pic16/gen.c (genPackBits): added operand right in function
4251         parameters, load result directly if p_type is POINTER (that is
4252         called by genNearPointerSet)
4253         * (genUnPackBits): added operand left in function parameters,
4254         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4255         FSR0 if accessing bitfields,
4256
4257 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4258
4259         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4260           _print_format; updated printf, sprintf, vsprintf
4261         * device/include/asm/default/features.h: corrected comment/define
4262         * device/lib/Makefile.in: added sprintf.c
4263         * device/lib/libsdcc.lib: added sprintf module
4264         * device/lib/printf_large.c,
4265         * device/lib/vprintf.c,
4266         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4267           into these 3 files
4268         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4269         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4270         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4271           hc08 test
4272         * support/regression/tests/zeropad.c: define idata as data for hc08
4273
4274 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4275
4276         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4277         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4278         labels are referenced at least once (even if a reference is not found)
4279         * src/hc08/gen.c (emitcode): set isComment flag for comments
4280         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4281         loads), rules 6a..6b (optimize jumps to return)
4282
4283 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4284
4285         * device/lib/acosf.c (acosf),
4286         * device/lib/asinf.c (asinf),
4287         * device/lib/atanf.c (atanf),
4288         * device/lib/ceilf.c (ceilf),
4289         * device/lib/cosf.c (cosf),
4290         * device/lib/coshf.c (coshf),
4291         * device/lib/cotf.c (cotf),
4292         * device/lib/fabsf.c (fabsf),
4293         * device/lib/floorf.c (floorf),
4294         * device/lib/log10f.c (log10f),
4295         * device/lib/logf.c (logf),
4296         * device/lib/sinf.c (sinf),
4297         * device/lib/sinhf.c (sinhf),
4298         * device/lib/sqrtf.c (sqrtf),
4299         * device/lib/tanf.c (tanf),
4300         * device/lib/tanhf.c (tanhf),
4301         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4302         replaced all instances of "reentrant" in the library functions
4303         defined in math.h with this macro.
4304         * support/regression/tests/float_trans.c: reenabled test for hc08
4305
4306 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4307
4308         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4309         erroneously deleted
4310
4311 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4312
4313         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4314         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4315         multi-byte volatile operands are used
4316         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4317         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4318         initialization to area GSINIT0 so that it would always precede
4319         any static initializers in GSINIT
4320         * support/regression/tests/zeropad.c: fixed idata define for hc08
4321         * support/regression/tests/bug-927659.c,
4322         * support/regression/tests/float_trans.c: disabled tests for hc08
4323         pending missing library routines
4324         * .version: increased version number to 2.4.4 - hc08 port now passes
4325         regression tests
4326
4327
4328 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4329
4330         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4331         * Makefile.common.in,
4332         * as/Makefile,
4333         * as/hc08/Makefile.in,
4334         * as/mcs51/Makefile.in,
4335         * as/z80/Makefile.in,
4336         * debugger/mcs51/Makefile.in,
4337         * device/include/Makefile.in,
4338         * device/lib/Makefile.in,
4339         * doc/Makefile,
4340         * link/Makefile,
4341         * link/z80/Makefile.in,
4342         * packihx/Makefile.in,
4343         * sim/ucsim/main_in.mk,
4344         * sim/ucsim/avr.src/Makefile.in,
4345         * sim/ucsim/doc/Makefile.in,
4346         * sim/ucsim/gui.src/serio.src/Makefile.in,
4347         * sim/ucsim/hc08.src/Makefile.in,
4348         * sim/ucsim/s51.src/Makefile.in,
4349         * sim/ucsim/xa.src/Makefile.in,
4350         * sim/ucsim/z80.src/Makefile.in,
4351         * src/Makefile.in,
4352         * support/cpp2/Makefile.in,
4353         * support/librarian/Makefile,
4354         * support/makebin/Makefile: added DESTDIR to the install path proposed
4355         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4356         * doc/sdccman.lyx: added DESTDIR documentation
4357
4358 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4359
4360         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4361         instruction for interrupt handlers, use fast returns when returning
4362         from high priority interrupts
4363
4364 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4365
4366         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4367         code generation
4368         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4369         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4370         bugs, ported much of Bernhard's code from mcs51
4371         * src/mcs51/gen.c (genSend),
4372         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4373         than one when calling a reentrant function
4374         * device/lib/_mullong.c: defined an alternate struct layout for big
4375         endian ports (hc08)
4376
4377 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4378
4379         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4380         test
4381
4382 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4383
4384         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4385         are sane and complete before asking the port its prefered parameter
4386         passing method (fixes bug #1017633)
4387         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4388         and _ret3
4389
4390 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4391
4392         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4393         problem in bitfields >= 8 bits.
4394
4395 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4396
4397         * src/SDCCsymt.c: undid changes that were not meant to be committed
4398
4399 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4400
4401         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4402
4403 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4404
4405         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4406           copied and wrong bit got inverted
4407
4408 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4409
4410         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4411         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4412         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4413         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4414         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4415         assignments to bitfields at known addresses
4416         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4417         reads from bitfields at known addresses
4418         * src/hc08/ralloc.c (packRegisters),
4419         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4420         genhc08Code): optimize pointer get values used as conditionals
4421         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4422         and branch
4423
4424 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4425
4426         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4427         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4428         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4429         as conditionals
4430
4431 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4432
4433         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4434
4435 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4436
4437         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4438         related problems
4439
4440 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4441
4442         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4443
4444 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4445
4446         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4447         mcs51 port
4448
4449 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4450
4451         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4452
4453 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4454
4455         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4456         cases use more compact code.
4457
4458 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4459
4460         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4461
4462 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4463
4464         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4465
4466 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4467
4468         * src/SDCCsymt.h,
4469         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4470         parameter of changePointer() from symbol* to sym_link*
4471         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4472         * src/SDCCsymt.c (compareType): void* type is castable to other
4473         pointers, but not necesarily an exact match.
4474         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4475         is no longer blindly treated as an exact match.
4476         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4477
4478 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4479
4480         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4481
4482 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4483
4484         * src/pic/gen.c,
4485         * src/pic/pcode.c,
4486         * src/pic/ralloc.h,
4487         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4488
4489 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4490
4491         * src/pic/device.c,
4492         * src/pic/device.h,
4493         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4494
4495 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4496
4497         * src/mcs51/gen.c (emitcode): fixed bug #992819
4498
4499 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4500
4501         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4502           there's no need to make it worse
4503
4504 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4505
4506         * src/mcs51/ralloc.c (deassignLR),
4507         * src/ds390/ralloc.c (deassignLR),
4508         * src/hc08/ralloc.c (deassignLR),
4509         * src/z80/ralloc.c (deassignLR),
4510         * src/pic/ralloc.c (deassignLR),
4511         * src/pic16/ralloc.c (deassignLR),
4512         * src/avr/ralloc.c (deassignLR),
4513         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4514         rlivePoint): fixed another part of bug #971834
4515
4516 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4517
4518         * src/z80/main.c: enabled "critical" keyword
4519         * src/z80/mappings.i,
4520         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4521         functions (fixes bug #979646)
4522         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4523
4524 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4525
4526         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4527           such as c:\mydir.
4528
4529 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4530
4531         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4532           doesn't disable too much optimizations
4533
4534 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4535
4536         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4537
4538 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4539
4540         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4541
4542 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4543
4544         * src/pic/gen.c tidied up tabs
4545         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4546         * src/pic/main.c tidied up tabs
4547         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4548         * src/pic/pcoderegs.c tidied up tabs
4549         * src/pic/ralloc.c tidied up tabs
4550
4551 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4552
4553         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4554         to S_FIXED for pic16 port and when symbol is not in level 0,
4555         allocate for S_REGISTER storage class and pic16 port, too,
4556         * src/pic16/device.h: prototype for checkSym,
4557         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4558         * (pic16_assignConfigWordValue): test the value and the mask to
4559         validate that the value is suitable for the configuration word,
4560         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4561         collect extern declared symbols, don't emit symbol twice, check
4562         first if symbol is in publics set first,
4563         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4564         * added command line '--fstack' which enables an experimental
4565         feature for stack access, too buggy to be used yet...
4566         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4567         * (pic16_allocDirReg): when register has storage class S_REGISTER
4568         allocate in pic16_dynAccessRegs,
4569         * device/include/pic16/pic18f????.h: modified configuration word
4570         naming convention, words started as CONFIG0H but should be CONFIG1H
4571
4572 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4573
4574         * device/include/mcs51reg.h: fixed bug 970993
4575
4576 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4577
4578         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4579         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4580         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4581         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4582         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4583         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4584           error/warning numbers,
4585           added function setWarningDisabled()
4586         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4587         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4588           _memcmp.c _memmove.c calloc.c realloc.c free.c
4589         * support/regression/tests/malloc.c: added tests for new functionality
4590         * support/regression/tests/zeropad.c: added tests for truncated initializers
4591           and initialized char arrays starting with '\x0'
4592         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4593
4594 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4595
4596         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4597
4598 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4599
4600         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4601         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4602         peephole 177.e. Thanks to anonymous
4603
4604 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4605
4606         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4607         function isn't used in the source but referenced as a
4608         variable initializer then declare it as extern in .asm file
4609
4610 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4611
4612         * .version: increased version number to 2.4.3
4613
4614         Adding version extension according to ChangeLog CVS revision
4615         * src/Makefile.in (target all): added dependency 'version.h'
4616         * (rule version.h): added rule to create version.h from ChangeLog,
4617         * (rule dep): added dependency version.h,
4618         * src/version.awk: AWK script to create version.h
4619         * src/SDCCdwarf2.c (dwWriteModule),
4620         * src/SDCCglue.c (initialComments),
4621         * src/SDCCmain.c (printVersionInfo): modified to write after
4622         version string the version extension number,
4623         * src/SDCCutil.c: included "version.h"
4624         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4625         number,
4626         * src/SDCCutil.h: added prototype for getBuildNumber
4627
4628         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4629         includeDirsSet, too,
4630         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4631         const char [] is found in function prototype...
4632
4633         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4634         moving to WREG with source is already in WREG,
4635         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4636         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4637         * (aopForSym): stack'ed symbols are partially supported, added
4638         if-clause to support symbols in FARSPACE,
4639         * (sameRegs): added test for AOP_ACC to see if registers are same,
4640         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4641         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4642         * (pic16_popRegFromString): will not allocate a new register if it
4643         doesn't find one by name, bug may have introduced...
4644         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4645         * (genIpush): revived to use pic16 port's stack,
4646         * (genAddrOf): added incomplete case for stack'ed operand,
4647         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4648         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4649         can handle multibyte operands,
4650         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4651         * (pic16initialComments): added message for MPLAB compatibility
4652         mode enabled,
4653         * src/pic16/main.h: prototype for pic16_mplab_comp,
4654         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4655         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4656         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4657         because of increased complexity of procedure,
4658         * (_process_pragma): stack pragma changed to format 'stack pos len',
4659         emit symbol '_stack_end' to conform with gplink,
4660         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4661         to search for register,
4662         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4663         PO_GPR_REGISTER,
4664         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4665         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4666         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4667         case for PO_GPR_REGISTER,
4668         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4669         dies, the new era is ahead !...
4670         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4671         pic16_dynInternalRegs,
4672         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4673         * (pic16_allocDirReg): minor optimizations and bug fixes,
4674         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4675
4676         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4677         load stack and frame pointer with address of 'stack_end' symbol
4678
4679 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4680
4681         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4682         without source code but only variable initializers
4683
4684 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4685
4686         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4687         external are not declared as extern to reduce overhead while linking
4688
4689 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4690
4691         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4692
4693 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4694
4695         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4696           Yee Keat for the patch
4697         * src/SDCCast.c (decorateType): fixed bug #979599
4698         * src/ds390/gen.h: removed local fReturnSizeDS390
4699         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4700         * src/ds390/gen.c (genAnd, genOr, genXor),
4701         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4702
4703 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4704
4705         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4706         add relFilesSet to $3, manipulate $2 to handle linking of object
4707         files without source files in command line,
4708         * device/include/pic16 (all headers): added ID location macros,
4709         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4710         entries for ID location bytes,
4711         * (pic16_assignIdByteValue): NEW,
4712         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4713         added field dumpcalltree to pic16_options_t,
4714         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4715         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4716         emitting rFalseIfx label after check_carry label,
4717         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4718         pic16_emitDIRegs), NEW
4719         * (pic16glue): dump .calltree file when option --calltree found,
4720         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4721         * (_pic16_genAssemblerPreamble): emit ID locations after
4722         configuration registers,
4723         * (pic16_linkCmd): modifications of the link command,
4724         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4725         * (pic16_pCodeInitRegisters): don't init stack registers,
4726         * (pic16_findPrevInstruction): fixed bug,
4727         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4728         bug with immediate registers,
4729         * (buildCallTree): traces stack push and pop,
4730         * (pct2): dump also stack usage for each function,
4731         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4732         * (pic16_allocDirReg): various modifications,
4733         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4734         fixed to 1,
4735
4736 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4737
4738         * src/pic16/pcode.c: removed buggy double colon
4739
4740 2004-07-01 Borut Razem <borut.razem AT siol.net>
4741
4742         * support/scripts/sdcc.nsi: added include/pic16 to setup
4743
4744 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4745
4746         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4747         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4748         target 'clean',
4749         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4750         specific command line arguments. Also added sample lkr script
4751         for placing a variable at a specific memory bank.
4752         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4753         at a specific memory bank,
4754         * (pic16_dump_isection): fixed bug which caused string literals to
4755         be omitted when dumping idata section,
4756         * (pic16_groupRegistersInSection): added code to handle registers
4757         in specific memory banks,
4758         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4759         public, all references are renamed too,
4760         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4761         AOP_DPTR2,
4762         * (pic16_storeForReturn): added case to handle when dest is WREG,
4763         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4764         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4765         pic16_rel_udata, check to see if that register is marked as being
4766         a member of a specific memory bank,
4767         * (pic16_printIvalCharPtr): added code to add string literals either
4768         to code or the idata sections,
4769         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4770         also accept the 'udata' pragma,
4771         * src/pic16/main.h: new structure types sectName and sectSym
4772         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4773         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4774         * (pic16_findPrevInstruction): fixed, it returned nothing,
4775         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4776         instruction combinations,
4777         * (pic16_FixRegisterBanking): heavily reorganised,
4778         * (pic16_AnalyzeBanking): if generating banksel directives is
4779         disabled, then don't call FixRegisterBanking at all,
4780         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4781         completely removed,
4782         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4783
4784 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4785
4786         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4787         Phuah Yee Keat <yk.phuah AT nestac.com>
4788
4789 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4790
4791         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4792         correctly the IVT even if it is relocated to some other location
4793
4794 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4795
4796         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4797         * device/include/pic16/pic18f2220.h: NEW,
4798         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4799         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4800         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4801         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4802         nodefaultlibs, ivt_loc is the location of the interrupt vector
4803         table, and nodefaultlibs signs that default libraries should not be
4804         linked in link stage,
4805         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4806         according to --ivt-loc argument,
4807         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4808         when pragma stack is found,
4809
4810 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4811
4812         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4813         256 (range check), 257 (do while), 258.a-f (bit banging
4814         f.e. on 3-wire SPI bus)
4815
4816 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4817
4818         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4819         variables used exclusively within a loop
4820
4821 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4822
4823         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4824
4825 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4826
4827         * src/SDCClrange.c (computeClash): fixed bug #971834
4828
4829 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4830
4831         * src/mcs51/gen.c (genCmp): fixed bug #975903
4832         * src/hc08/gen.c (operandsEqu),
4833         * src/ds390/gen.c (operandsEqu),
4834         * src/z80/gen.c (operandsEqu),
4835         * src/pic/gen.c (operandsEqu),
4836         * src/pic16/gen.c (operandsEqu),
4837         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4838         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4839
4840 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4841
4842         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4843
4844 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4845
4846         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4847         default case in switch statement,
4848         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4849         to eliminate problem with initialisation of pointers, but problem
4850         still exists,
4851         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4852         * (emitStaticSegment): removed various lines emitting debug info,
4853         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4854         added processor registers for utilizing EEPROM,
4855         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4856         configurable and set 8
4857
4858 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4859
4860         * .version: increased version number to 2.4.2,
4861
4862         Cumulative patch for pic16 port
4863         * src/pic16/device.c: changed scheme to dump initial values for
4864         variables in idata segment, all print_idata* functions were removed,
4865         now the pic16_printIval* will be called,
4866         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4867         * _pic16_printPointerType, pic16_printPointerType,
4868         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4869         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4870         NEW, similar to the respective functions in SDCCglue.c,
4871         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4872         way, emitting hex bytes,
4873         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4874
4875 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4876
4877         * src/avr/ralloc.c (serialRegAssign),
4878         * src/xa51/ralloc.c (serialRegAssign),
4879         * src/pic/ralloc.c (serialRegAssign),
4880         * src/pic16/ralloc.c (serialRegAssign),
4881         * src/hc08/ralloc.c (serialRegAssign),
4882         * src/z80/ralloc.c (serialRegAssign),
4883         * src/ds390/ralloc.c (serialRegAssign),
4884         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4885
4886 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4887
4888         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4889         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4890
4891 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4892
4893         Cumulative patch for pic16 port:
4894         * src/pic16/device.h (typedef PIC16_device) modified fields for
4895         defining microcontrollers,
4896         * src/pic16/device.c: added new info for all devices in Pics16 array,
4897         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4898         to be optimised out by the pCode optimiser,
4899         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4900         specially, bug reported by G.M. Gallant,
4901         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4902         as force'd so that cannot be optimised out by pCode optimiser,
4903         * src/pic16/pcode.c,
4904         * src/pic16/pcodepeeph.c,
4905         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4906         they are disabled by default, but can be enabled explicit with
4907         command argument --denable-peeps, for testing,
4908         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4909         --pomit-ivt in COMPILE_FLAGS
4910
4911 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4912
4913         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4914           compilation on MSVC
4915
4916 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4917
4918         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4919
4920 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4921
4922         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4923         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4924
4925 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4926
4927         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4928         would only assign 0x300001 register.
4929
4930 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4931
4932         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4933         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4934
4935 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4936
4937         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4938         for ds80c400
4939         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4940         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4941         added peephole 254 (left shift), 255 (jump table)
4942
4943 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4944
4945         * device/lib/Makefile.in: removed comment line with model-pic16,
4946         * (target port-specific-objects-pic16): the libraries and objects
4947         are copied to the build directory form the device/lib/pic16/bin
4948         directory
4949
4950         Cumulative patch concerning pic16 port:
4951         * library directory has been re-organized,
4952         * added support for PIC18F1220,
4953         * added headers and library sources for chips 18f1220,18f6520,
4954         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4955
4956         * configuration registers setting has changed, now each supported
4957         device has a complete description of the registers it uses,
4958         * all initialisations are moved to idata sections, these section
4959         can be absolute or relocatable,
4960         * fixed initialisation of codespace variables,
4961         * fixed warning about PCLATU and gpsim,
4962         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4963         * (genAssign): use table reads when assigning from variables in codespace,
4964         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4965         char/int variables placed in codespace,
4966         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4967         registers set in .asm file, no need for --pomit-config-words anymore,
4968         * (pic16glue): some 8051 legacy segments are commented out
4969         (to be removed completely),
4970         * added support for alternative assembler and linker with --asm=
4971         and --link= command line arguments,
4972         * peepholes are disabled automatically in the port, no need to
4973         specify on command line,
4974         * port supports natively char/int/long multiplication, but converts
4975         all divisions to support functions,
4976         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4977         to the file set in variable $2,
4978         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4979         strings in ASCII format and not in hex,
4980         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4981         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4982         allocate proper register if iCodes aren't temporary,
4983
4984 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4985
4986         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4987
4988 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4989
4990         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4991         is commented out
4992
4993 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4994
4995         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4996         computed address is reused
4997         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4998         multi-byte bitfields
4999
5000 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5001
5002         * src/z80/gen.c: (genArrayInit): must check for pointers too
5003
5004 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5005
5006         * support/regression/tests/zeropad.c: never meant to commit the
5007           nestedstruct test: removed, added check for GCC version
5008
5009 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5010
5011         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5012         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5013         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5014           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5015           bugs 928906 and 954082 half-empty initializers
5016         * src/SDCCsymt.h,
5017         * src/SDCCsymt.c (getAllocSize): added for above fix
5018         * src/z80/gen.c (genArrayInit): fixed bug 741044
5019         * support/regression/tests/zeropad.c: added tests
5020
5021 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5022
5023         * src/pic16/device.c (pic16_dump_section): corrected bug which
5024         caused some symbols of the libraries to be misplaced
5025
5026 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5027
5028         * src/pic16/glue.c,
5029         * src/pic16/ralloc.h,
5030         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5031         to fix conflict with pic port
5032
5033 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5034
5035         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5036         externs configuration variables,
5037         * src/pic16/ralloc.h,
5038         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5039         prototype in header, commented out some debug messages
5040
5041 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5042
5043         * src/pic16/glue.c,
5044         * src/pic16/main.c,
5045         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5046         for gpasm COFF object generation. Thanks to D. Hawkins for
5047         his patch info
5048
5049 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5050
5051         * src/ds390/main.c,
5052         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5053         Brock for spotting this)
5054         * src/ds390/gen.c (genEndFunction),
5055         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5056         interrupt handler and critical. Disable push/pop optimizations when
5057         peephole optimizations disabled.
5058
5059 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5060
5061         Updated pic16 library sources and headers.
5062         * device/lib/pic16/pic18f*/ ,
5063         * device/include/pic16/*.h: modified to handle structured SFR
5064         definitions
5065
5066 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5067
5068         * src/port.h (PORT structure): added hook initPaths, now each
5069         port can declare its own default search paths,
5070         which can been seen with the --print-search-dirs option,
5071         see pic16 port for example,
5072         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5073         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5074         * (doPrintSearchDirs): NEW, replaces in a central manner the
5075         printing of search dirs which was split in set*Paths functions,
5076         * (main): added call to port->initPaths and doPrintSearchDirs,
5077         * src/avr/main.c,
5078         * src/ds390/main.c,
5079         * src/hc08/main.c,
5080         * src/izt/i186.c,
5081         * src/izt/tlcs900h.c,
5082         * src/mcs51/main.c,
5083         * src/pic/main.c,
5084         * src/pic16/main.c: modified port structures to reflect addition of
5085         initPaths hook,
5086
5087         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5088         * (pic16_dump_section): for registers in same address reserve memory once,
5089         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5090         to no_banksel,
5091         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5092         result is greater in size than right or left,
5093         * (pic16_genUMult8X8_8): there are some cases where the result can
5094         be 16 bits size, so handle these,
5095         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5096         * (pic16_outBitC): modified to emit pcodes,
5097         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5098         or not,
5099         * (genDivOneByte): implemented algorithm to divide 8-bits,
5100         * (genCmp): uncommented goto, but issues still exist,
5101         * (genAnd): fixed a bug with variables >8bits,
5102         * (genPackBits): optimization added that uses BCF/BSF to change a
5103         single bit,
5104         * (genAssign): fixed bug when assigning floating point literals,
5105         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5106         __sdcc_gsinit_startup label,
5107         * src/pic16/main.c (_pic16_init): removed search directory
5108         initialisations,
5109         * (_pic16_initPaths): NEW, used to initialise search directories,
5110         * (_hasNativeMulFor): support functions for all except char/int
5111         multiplication, and char division,
5112         * (PIC16_port struct): modified entry for native mul support,
5113         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5114         no_banksel option,
5115         * (buildCallTree): call to register_usage is ifdef'ed out,
5116
5117 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5118
5119         * device/include/string.h: applied Stas Sergeev's patch to make this
5120         header file compatible with the preprocessor -Wundef option
5121         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5122         failure (fixes bug #941458)
5123
5124 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5125
5126         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5127         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5128         that the variable, not the function, should be static
5129         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5130         to be consistent with non-literal case
5131
5132 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5133
5134         * src/SDCCast.c (isConformingBody): fixed bug #949967
5135         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5136         convilong): fixed bug #952086
5137
5138 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5139
5140         * src/SDCCmem.c (allocVariables): fixed bug #955321
5141
5142 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5143
5144         * src/hc08/main.c (_hc08_genAssemblerEnd),
5145         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5146         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5147         completely eliminated the use of a temporary file
5148         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5149         when more than one file linked
5150         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5151
5152 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5153
5154         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5155         which fixes bug #543481
5156         * support/regression/tests/bug-751703.c: fixed comments left from a
5157         cut and paste error
5158         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5159         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5160         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5161         scopes
5162         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5163         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5164         are now changed to underscores in moduleName
5165
5166 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5167
5168         * as/mcs51/lkmem.c: better fix for bug #954173
5169
5170 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5171         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5172
5173         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5174         * device/include/c8051f000.h,
5175         * device/include/c8051f120.h,
5176         * device/include/c8051f300.h,
5177         * device/include/c8051f310.h,
5178         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5179         PWM16) and detab'ed
5180
5181 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5182
5183         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5184         and mailing lists, doc'ed --no-peep-comments, removed reference
5185         to knoppix (newest version has no LyX/LaTeX), other minor changes
5186         * src/SDCCglue.c (glue): save 2 bytes stack space with
5187         option --main-return. The ljmp could probably be avoided too
5188
5189 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5190
5191         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5192
5193 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5194
5195         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5196         * src/SDCCopt.c (isLocalWithoutDef),
5197         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5198         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5199         (credit to Maarten Brock for patch #949363, on which this is based)
5200         * support/regression/tests/bug-751703.c: some test cases of extern used
5201         within inner scopes.
5202
5203 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5204
5205         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5206         SPEC_STRUCT
5207         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5208         struct definitions
5209         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5210         dwWriteLabel): fix to create valid debugger symbols even when
5211         the module name has non-alphanumeric symbols in it
5212         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5213         when a variable's allocation has been optimized away
5214
5215
5216 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5217
5218         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5219         * src/hc08/main.c,
5220         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5221         * src/mcs51/main.c,
5222         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5223         * src/ds390/main.c,
5224         * src/z80/gen.c (z80_emitDebuggerSymbol),
5225         * src/z80/main.c,
5226         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5227         * src/pic/main.c,
5228         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5229         * src/pic16/main.c,
5230         * src/avr/gen.c (avr_emitDebuggerSymbol),
5231         * src/avr/main.c,
5232         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5233         * src/xa51/main.c,
5234         * src/SDCCdebug.c (emitDebuggerSymbol),
5235         * src/SDCCdebug.h,
5236         * src/port.h: added a debugger struct to the port struct. Added a
5237         callback for defining debugger symbols
5238
5239         * src/SDCCast.c (createLabel),
5240         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5241         with isitmp = 1
5242         * src/SDCCicode.h,
5243         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5244         iCode back to the ast for the function
5245
5246         * src/hc08/ralloc.c (hc08_assignRegisters),
5247         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5248         unneeded fields from the regs struct.
5249         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5250         pushReg() & pullReg() functions instead of emitcode()
5251
5252         * src/hc08/gen.c (genLabel, genhc08Code),
5253         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5254
5255         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5256         debugger hooks
5257
5258         * src/hc08/gen.c (genEndFunction, genhc08Code),
5259         * src/hc08/gen.h,
5260         * src/mcs51/gen.c (genEndFunction, gen51Code),
5261         * src/mcs51/gen.h,
5262         * src/ds390/gen.c (genEndFunction, gen390Code),
5263         * src/ds390/gen.h,
5264         * src/z80/gen.c (genEndFunction, genZ80Code),
5265         * src/z80/gen.h,
5266         * src/z80/z80.h,
5267         * src/pic/gen.c (genEndFunction, genpic14Code),
5268         * src/pic/gen.h,
5269         * src/pic16/gen.c (genEndFunction, genpic16Code),
5270         * src/pic16/gen.h,
5271         * src/avr/gen.c (genEndFunction, genAVRCode),
5272         * src/avr/gen.h,
5273         * src/xa51/gen.c (genEndFunction, genXA51Code),
5274         * src/xa51/gen.h,
5275         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5276         specific code to cdbFile.c and out of the backend code generators
5277
5278         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5279         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5280         starting address is now 0
5281
5282         * as/hc08/asm.h,
5283         * as/hc08/m08pst.c,
5284         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5285         assembler directive for DWARF support
5286         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5287
5288         * src/src.dsp,
5289         * src/Makefile.in,
5290         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5291
5292 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5293
5294         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5295         and inappropriate peephole optimization in jump tables
5296
5297 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5298
5299         * as/hc08/m08pst.c,
5300         * src/SDCCglue.c: sdccopt works for the hc08 port now
5301
5302 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5303
5304         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5305
5306 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5307
5308         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5309
5310 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5311
5312         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5313         rules
5314         * src/SDCCmain.c,
5315         * src/SDCCglobl.h,
5316         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5317         comments from the peephole optimizer replacement rules
5318         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5319         symbols
5320         * src/SDCCcse.c (updateSpillLocation),
5321         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5322         equivalents
5323         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5324         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5325         objects far pointers
5326
5327 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5328
5329         * src/SDCCsymt.h: a missing part of my last change
5330         * src/pic/ralloc.c (regTypeNum),
5331         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5332
5333 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5334
5335         * src/SDCCicode.h,
5336         * src/SDCCicode.c (aggrToPtrDclType),
5337         * src/SDCCptropt.h,
5338         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5339         ptrPseudoSymConvert),
5340         * src/pic/ralloc.c (regTypeNum),
5341         * src/pic16/ralloc.c (regTypeNum),
5342         * src/hc08/ralloc.c (regTypeNum),
5343         * src/ds390/ralloc.c (regTypeNum),
5344         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5345         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5346
5347 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5348
5349         * link/z80/lkmain.c (afile),
5350         * as/hc08/lkmain.c (afile),
5351         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5352         prevent a pointer problem when a filename has no directory and
5353         no extension specified.
5354
5355 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5356
5357         * link/z80/lkmain.c (afile): allow periods in directory names
5358         * link/z80/lkmain.c (afile),
5359         * as/mcs51/lkmain.c (afile),
5360         * as/hc08/lkmain.c (afile): allow linker script file to have an
5361         extension other than ".lnk"
5362         * link/z80/lklex.c (getfid),
5363         * link/z80/lkmain.c (parse),
5364         * as/mcs51/lklex.c (getfid),
5365         * as/mcs51/lkmain.c (parse),
5366         * as/hc08/lklex.c (getfid),
5367         * as/hc08/lkmain.c (parse): Support comments in the linker script
5368         file on lines by themselves and after filenames
5369
5370 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5371
5372         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5373
5374 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5375
5376         * src/z80/peeph-z80.def: removed some peephole rules that don't
5377         work with multibyte arithmetic (fixed bug #937126)
5378         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5379         to registers and not global variables
5380         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5381         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5382         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5383         checking for assignments not internally generated (fixed bug #931895)
5384         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5385         structure member (fixed bug #930072)
5386
5387 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5388
5389         * src/SDCCmain.c (linkEdit),
5390         * src/hc08/main.c (_hc08_parseOptions),
5391         * as/hc08/Makefile.in,
5392         * as/hc08/aslink.h,
5393         * as/hc08/asm.h,
5394         * as/hc08/m08pst.c,
5395         * as/hc08/lkrloc.c (relr, rele),
5396         * as/hc08/lkarea.c (lnkarea)
5397         * as/hc08/lkmain.c (afile, parse),
5398         * as/hc08/lkelf.c: support for ELF output
5399         * as/hc08/lks19.c (s19),
5400         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5401
5402 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5403
5404         * as/mcs51/lkihx.c: Fixed bug #899105.
5405
5406 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5407
5408         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5409         .dsp files from Unix to DOS.
5410
5411 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5412
5413         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5414         function pointers; we have been compliant for several months now.
5415         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5416         change that was accidently commented out
5417         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5418         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5419         bug #922319
5420
5421 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5422
5423         * src/hc08/gen.c: output of all of the internal debugging information
5424         is now controlled by the D() macro; it is disabled by default
5425
5426 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5427
5428         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5429         harder to keep the same registers during a CAST iCode
5430         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5431         long via int can be done in a single cast, if the signedness is
5432         correct.
5433         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5434         putchar() in tinibios.c in ds390's library
5435
5436 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5437
5438         * src/SDCCast.c (decorateType): fixed bug #898889,
5439         cast result of a literal complement too
5440         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5441         fixed check for bitfields
5442
5443 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5444
5445         * src/SDCCicode.c (geniCodeLogic): made it static,
5446         (geniCodeLogicAndOr): added in order to fix bug #905492,
5447         (ast2iCode): fixed bug #905492
5448         * support/regression/tests/bug-905492.c: added
5449         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5450         (processParms): fixed bug #927659: don't copy parms, this will clear
5451         decorated flag
5452         * support/regression/tests/bug-927659.c: added
5453
5454 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5455
5456         * src/SDCCast.c (addCast): don't cast float to char
5457         * device/lib/libsdcc.lib: added _memmove
5458
5459 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5460
5461         * device/lib/large/Makefile: fixed parallel execution by
5462         replacing `make` by `$(MAKE)`
5463
5464 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5465
5466         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5467         offsets (fixes bug #923936)
5468
5469 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5470
5471         * device/lib/small/Makefile: fixed parallel execution by
5472         replacing `make` by `$(MAKE)`
5473
5474 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5475
5476         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5477
5478 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5479
5480         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5481         * src/regression/Makefile: Regression test was not running.
5482
5483 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5484
5485         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5486         complement if possible
5487         * src/SDCCval.c (valComplement),
5488         * src/SDCCicode.c (operandOperation): fixed complement of literal
5489         * support/regression/tests/onebyte.c (testComplement): added
5490
5491 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5492
5493         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5494         return an optimized tree; actually replace actParm with the new tree
5495         * src/SDCCast.h: added some parantheses to remove side effects
5496         * support/regression/tests/bug-920866.c
5497
5498 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5499         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5500         Bit operands were not being handled properly in the pic14 port.
5501         (now src/regression/add.c passes again).
5502
5503 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5504
5505         * src/SDCC.y (labeled_statement): case and default no longer require
5506         a following statement (RFE #893037)
5507
5508 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5509
5510         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5511         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5512         disabled (fixes bug #916294)
5513         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5514         "mov a,acc"; patch provided by Lenny Story
5515         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5516
5517 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5518
5519         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5520         functions
5521         * src/ds390/gen.c (genFunction, genEndFunction),
5522         * src/ds390/ralloc.c (ds390_assignRegisters),
5523         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5524         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5525         pushed if there are parameters passed on the stack. Also, a cleaner
5526         way to decide if r0/r1 should be pushed/popped. (Together they fix
5527         bug #918693)
5528
5529 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5530
5531         * doc/sdccman.lyx,
5532         * device/lib/mcs51/crtpagesfr.asm,
5533         * device/lib/mcs51/crtxinit.asm,
5534         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5535         to avoid confusion with Si Lab's SFRPAGE register.
5536
5537 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5538
5539         * src/SDCCglue.c (emitMaps): allow public sfr variables
5540         * src/SDCCglue.c (initialComments): include compiler build date
5541         with compiler version and put the timestamp of the generated
5542         assembly file on a serperate line to be less confusing.
5543         * src/port.h: added genInitStartup hook
5544         * src/avr/main.c,
5545         * src/ds390/main.c,
5546         * src/hc08/main.c,
5547         * src/pic/main.c,
5548         * src/pic16/main.c,
5549         * src/xa51/main.c,
5550         * src/z80/main.c: genInitStartup initialize as NULL (default to
5551         historical behaviour)
5552         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5553         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5554         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5555         library instead of hard coding it into the compiler.
5556         * support/regression/ports/mcs51-stack-auto/spec.mk,
5557         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5558         * device/lib/mcs51/Makefile,
5559         * device/lib/small/Makefile,
5560         * device/lib/large/Makefile,
5561         * device/lib/mcs51/crtpagesfr.asm,
5562         * device/lib/mcs51/crtstart.asm,
5563         * device/lib/mcs51/crtxclear.asm,
5564         * device/lib/mcs51/crtxinit.asm,
5565         * device/lib/mcs51/crtclear.asm,
5566         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5567         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5568         and into user configurable files.
5569         * device/lib/clean.mk: clean mcs51 directory too
5570         * support/regression/tests/longlit.c: added static to T1 declaration
5571         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5572         accesses in the initialization code
5573
5574 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5575
5576         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5577         OSCTRIMVAL as noted in bug #916008
5578
5579 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5580
5581         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5582         in loops with multiple exits (reported as incorrect registers
5583         used by Martin Helmling in Sdcc-user list)
5584
5585 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5586
5587         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5588         made ds390 register extensions look less like error messages
5589
5590 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5591
5592         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5593         reported by Adam Wozniak in Sdcc-user list
5594
5595 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5596
5597         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5598         arithmetic optimizations, added debug output
5599
5600 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5601
5602         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5603         * sdcc.spec: updated and split sdcc into 3 rpms
5604         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5605         needed for literals of LEFT_OP and '+'
5606         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5607         introduced RESULT_TYPE_NOPROM
5608         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5609         left shift
5610         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5611         limited promotion to int only for '*'
5612         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5613
5614 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5615
5616         * src/pic16/gen.c (genSkip),
5617         (genc16bit2lit), (gencjneshort): commented out
5618         (is_LitOp): new helper function, checks operand type
5619         (genCmpEq): rewritten
5620
5621 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5622
5623         * support/regression/tests/bug-908454.c: added
5624
5625 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5626
5627         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5628         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5629         (geniCodeCast): cosmetic, don't preserve bit storage class
5630         (geniCodeLeftShift): added promotion
5631         (geniCodeLogic): fixed regression
5632         * src/SDCCsymt.c (computeTypeOr): accept bits too
5633         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5634
5635 2004-03-07  Borut Razem <borut.razem AT siol.net>
5636
5637         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5638
5639 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5640
5641         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5642         version of pic16_genPackRegisters which does not check if ic is a
5643         CAST operator,
5644         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5645         function cause string1.c regression test fails
5646
5647 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5648
5649         * sim/ucsim/configure.in,
5650         * sim/ucsim/configure,
5651         * sim/ucsim/doc/Makefile.in: use docdir
5652         * src/SDCC.y: fixed sbit atrributes
5653         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5654         * src/SDCCast.c (decorateType): |^& need special promotion handling
5655         * src/SDCCast.h,
5656         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5657         * src/SDCCsymt.h (computeType),
5658         * src/SDCCicode.c: computeType() needs op
5659         * src/SDCCsymt.c (checkTypeSanity),
5660         * doc/sddman.lyx: "plain" bitfields are unsigned
5661         * src/SDCCsymt.c (computeTypeOr): added
5662         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5663         |^& ops
5664         * src/SDCCval.c (val*): computeType() needs op
5665         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5666         * support/regression/tests/onebyte.c: added tests for |^&
5667
5668 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5669
5670         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5671         for writing icode into asm output.
5672
5673 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5674
5675         * src/pic16/device.c: added some debug lines enabled
5676         with macro DEBUG_CHECK,
5677         * src/pic16/genarith.c: more debug in genPlus,
5678         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5679         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5680         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5681         * (aopForSym): onStack symbols are re-placed in data memspace,
5682         and onStack flag is cleared,
5683         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5684         copy temporary pcodeop,
5685         * (genPcall): added warning for not updating PCLATU,
5686         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5687         always true for pic16 port,
5688         * (genMultOneWord): NEW, supports integer multiplication,
5689         * (genMult): modified to call genMultOneWord,
5690         * (ifxForOp): added warning when return NULL,
5691         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5692         flag is set before call to operandFromSymbol for implicit
5693         added structures,
5694         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5695         options.intlong_rent are set by default,
5696         * (_hasNativeMulFor): modified to allow port generation of integer
5697         multiplication,
5698         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5699         set regtype to REG_SFR for all registers, restricting seting the
5700         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5701
5702 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5703
5704         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5705         more than 500 times in the regression tests
5706
5707 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5708
5709         * support/Util/SDCCerr.h,
5710         * support/Util/SDCCerr.c,
5711         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5712         enumerator_list),
5713         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5714         for symbol conflicts.
5715         * support/valdiags/tests/enum.c,
5716         * support/valdiags/tests/tentdecl.c,
5717         * support/valdiags/tests/struct.c: expect possible error messages
5718         referring to original symbol definitions.
5719         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5720         * src/SDCCsymt.h,
5721         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5722
5723 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5724
5725         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5726
5727 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5728
5729         * src/pic16/ralloc.c (newReg): fixed bug #908929
5730
5731 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5732
5733         * src/ds390/gen.c: added missing #include "main.h"
5734
5735 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5736
5737         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5738         checking if symbol is already in set,
5739         * src/pic16/device.h: prototype for checkAddSym,
5740         * src/pic16/gen.c: (_G): added entry interruptvector,
5741         * (assignResultValue): removed some commented out lines,
5742         * (genFunction): check for ISR via sym->type, absolute section for
5743         interrupt code is created via a new pBlock, the goto instruction is
5744         placed now correctly at the interrupt vector position, changed all
5745         references from ivec to _G.interruptvector,
5746         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5747         is the interrupt is a high priority one, same for return from ISR,
5748         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5749         externs to calls of checkAddSym,
5750         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5751         pic16_pcode_verbose flag is set,
5752         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5753         * src/pic16/pcoderegs.c: message about how many registers are saved
5754         will only be emitted if pic16_pcode_verbose flag is set,
5755
5756 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5757
5758         * src/ds390/ralloc.h,
5759         * src/ds390/ralloc.c (ds390_regWithIdx),
5760         * src/ds390/gen.c (emitcode),
5761         * src/ds390/main.h,
5762         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5763         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5764         ds390operandCompare, getRegsRead, getRegsWritten,
5765         initializeAsmLineNode): customized instruction size calculation for
5766         ds390, started basis for some register optimizations
5767         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5768         corresponding assembly output
5769         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5770         missing push/pop of r0/r1. Optimized push/pops
5771
5772 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5773
5774         * src/mcs51/main.c (instructionSize): fixed ACALL size
5775         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5776
5777 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5778
5779         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5780         the sorting of rlist with NULL elements
5781         * (print_idataType, print_idata): NEW to create idata sections
5782         * src/pic16/device.h: idataSymSet new variable
5783         * src/pic16/gen.c (genFunction): fixed some bugs in string
5784         comparing, improved the absolute section creation for ISRs,
5785         added FSR0L/FSR0H in registers that are saved in an ISR,
5786         * (genInline): fixed the processing of inline snippets,
5787         now they undergo no process by the peephole optimizer
5788         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5789         are placed in idataSymSet,
5790         * (pic16emitStaticSeg): extern symbols are added in externs,
5791         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5792         switching when aboslute variables are placed in access bank memory
5793         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5794         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5795         commented out with #if,
5796         * (pic16_packRegisters): reintroduce the check for CAST because some
5797         symbols are not correctly handled,
5798         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5799         pCodeInstruction instead of pCode,
5800         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5801         pCodeAsmDir definition,
5802         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5803         directive, then the argument directive is emitted without the leading
5804         tab, hack for inline labels which must be in the first column,
5805         * (compareLabel,pic16_findNextInstruction),
5806         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5807         * (insertBankSwitch): modified for the new pCodeAsmDir,
5808
5809 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5810         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5811
5812         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5813         instance,
5814         * (pushSide): commented out with #if,
5815         * (assignResultValue): fixed some typos in saving
5816         registers,
5817         * (genPcall): FIXED and sync'ed with genCall,
5818         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5819         * (genNearPointerGet): fixed to handle some more cases,
5820         implementation scheme via table reads,
5821         * (genConstPointerGet): modified to access code memory correct,
5822         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5823         and improved to handle some cases
5824         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5825         instead of "RETLW" for init data
5826         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5827         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5828         variables are placed in access bank memory (<0x80 and >=0xf80),
5829         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5830         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5831         TBLWT_POSTDEC,TBLWT_PREINC
5832         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5833         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5834         directives
5835         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5836         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5837         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5838         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5839
5840 2004-02-29  Borut Razem <borut.razem AT siol.net>
5841
5842         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5843         support/Util/findme.h, support/Util/system.h: enhance binary relative
5844         search for lib and include by using findProgramPath()
5845
5846 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5847
5848         * src/SDCCpeeph.h,
5849         * src/SDCCpeeph.c (pcDistance),
5850         * src/port.h,
5851         * src/mcs51/ralloc.h,
5852         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5853         * src/mcs51/main.h,
5854         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5855         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5856         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5857         size calculation port specific, started basis for some register
5858         optimizations
5859         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5860         missing push/pop of r0/r1. Optimized push/pops
5861         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5862         * device/lib/_modsint.c (_modsint),
5863         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5864         and stack version so regression tests pass
5865
5866 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5867
5868         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5869         * src/SDCCast.c (decorateType): catch another small optimization
5870         with '?' operator
5871         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5872         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5873         modified to finally use computeType() all over SDCC,
5874         see Feature Request #877103
5875         * src/SDCCval.h: cosmetic
5876         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5877         valCompare(); regression tested in muldiv.c
5878         * support/regression/tests/muldiv.c (testMod): mod sign follows
5879         dividend only
5880
5881 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5882
5883         * src/SDCCast.c (decorateType): fixed bug #902362
5884         * doc/INSTALL.txt: fixed install instructions for win32
5885
5886 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5887
5888         * device/include/Makefile.in (install): fixed by replacing spaces
5889         by tabs
5890         * doc/README.txt,
5891         * doc/INSTALL.txt: updated for release
5892         * doc/sdccman.lyx: added warning for --xstack being buggy
5893
5894 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5895
5896         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5897         to eliminate build warnings.
5898         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5899
5900 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5901            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5902
5903         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5904         removed -penable-stack, added comment for stack pragma, added
5905         warning for not initializing the stack/frame registers, removed
5906         comment at interrupts section
5907
5908         Stack is made permanent, there is no ability to disable stack usage.
5909         * src/pic16/device.h,
5910         * src/pic16/device.c: removed all references to USE_STACK macro,
5911         * src/pic16/device.c (pic16_dump_section): when no elements in
5912         rlist, free rlist before return,
5913         * (pic16_dump_int_registers): NEW, internal registers are a new set
5914         of general purpose registers reused by each function,
5915         * (checkAddReg): returns 1 if registers is added to set,
5916         * (pic16_groupRegistersInSection): when a registers is of type
5917         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5918         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5919         SRCASECMP macro is moved here from device.c
5920         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5921         PO_PCLATU, PO_PRODL, PO_PRODH,
5922         * (pic16_pCodeOpType, genMinus,
5923         changed compares to "a" register, with AOP_ACC,
5924         * (pic16_genPlus): fixed some bugs and indented properly,
5925         * (pic16_addSign): changed size to size+offset in the MOVWF
5926         instruction,
5927         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5928         multiply 8-bit operand by literal, result is 8-bit,
5929         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5930         multiply 2 8-bit operand, result is 8-bit,
5931         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5932         genUMult8X*_16,
5933         * src/pic16/gen.c: changed accUse to contain WREG only,
5934         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5935         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5936         true, do not use immediate addressing any more unless sym is a
5937         pointer in codespace,
5938         * (aopForRemat): do not use immediate addressing when symbol not in
5939         codespace and when symbol's address is requested,
5940         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5941         accUse size (= 1),
5942         * (aopGet): added case for AOP_ACC and don't return "accumulator
5943         bug" but WREG instead,
5944         * (popGetTempReg): pushes contents of temporary register in stack,
5945         * (popReleaseTempReg): pops contents of temporary register from
5946         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5947         * (pic16_popGet): separated case AOP_ACC to return register WREG
5948         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5949         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5950         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5951         the use of immediate pointers to certain cases only.
5952
5953         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5954         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5955         * (assignResultValue, genCall, genRet): modified to use the new
5956         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5957         genPcall is still broken,
5958         * (genFunction): added code to create 'A' type pBlocks when
5959         interrupt functions are generated, code not extensively tested yet,
5960         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5961         * (genEndFunction): modified so ISRs pop stored registers from stack,
5962         * (genMultOneByte): cleanup,
5963         * (AccRsh): added flag andmask, to and result with appropriate mask,
5964         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5965         * (genDataPointerGet): fixed and reenabled its use,
5966         * (genNearDataPointerGet): bugs fixed,
5967         * (genDataPointerSet): bugs fixed,
5968         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5969         pic16_DumpSymbol, pic16_DumpOp,
5970         * src/pic16/genutils.h: function prototypes for the above functions,
5971         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5972         pointers,
5973         * (pic16emitRegularMap): many many many improvements, but needs a
5974         major cleanup,
5975         * src/pic16/main.c: enable_stack in pic16_options is removed,
5976         * (_pic16_parseOptions): removed command line options -penable-stack,
5977         * (_process_pragma): emit stack symbol only when stack pragma is
5978         processed,
5979         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5980         redirected to FSR0L/FSR0H pair,
5981         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5982         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5983         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5984         for immediates,
5985         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5986         * (dumpPicOptype): NEW,
5987         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5988         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5989         with movff instruction,
5990         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5991         added pic16_int_regs, some packRegsFor* functions are commented out,
5992         because produce errors,
5993         * src/pic16/NOTES: minor modifications
5994
5995 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5996
5997         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5998         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5999         --pack-iram.
6000         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6001         * as/mcs51/lkaomf51.c: fixed bug #895763
6002
6003 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6004
6005         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6006
6007 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6008
6009         * doc/sdccman.lyx: added details about the HC08 storage classes and
6010         interrupts, fixed the register usage info for z80 & gbz80
6011
6012 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6013
6014         * doc/sdccman.lyx: added more pic16 port documentation
6015         * device/include/pic16/: added header pic18fregs.h
6016
6017 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6018
6019         * doc/sdccman.lyx: added Vangelis' contribution
6020
6021 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6022
6023         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6024         extend to the next CALL or PCALL, not just to the next CALL.
6025
6026 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6027
6028         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6029
6030 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6031
6032         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6033         bug #895752 and a better fix for bug #716790
6034
6035 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6036
6037         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6038
6039 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6040
6041         * doc/sdccman.lyx: minor changes, minor changed
6042
6043 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6044
6045         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6046         which can't handle SDCC_NEWONEBYTEOPS,
6047         (geniCodeMultiply): removed conversion from mult to shift for pic14
6048         and pic16
6049
6050 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6051
6052         * src/hc08/gen.h,
6053         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6054         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6055         thus fixing bug #895406
6056
6057 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6058
6059         * device/lib/_modsint.c,
6060         * device/lib/_modslong.c: sign follows divisor only
6061         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6062         signs or signedness can be ignored
6063         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6064         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6065         added optimization for IFX,
6066         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6067         arguments;
6068         reenabled optimization for IFX, which was removed on 2004-01-11
6069         * src/SDCCast.h: added return type IFX
6070         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6071         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6072         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6073         SDCC_OLDONEBYTEOPS selects the old behaviour
6074         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6075         changed again and commented promotion rule
6076         * src/SDCCval.c (valDiv): promotion no longer necessary
6077         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6078         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6079         rewritten
6080         * support/regression/tests/onebyte.c: added
6081
6082 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6083
6084         * gen.c (genInline): reverted to old code for assemnling inline
6085         code because of bug reported James Chadd
6086
6087 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6088
6089         * ralloc.h: missing declarations from previous patch,
6090         seems that patch for ralloc.h was never applied, fixed
6091
6092 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6093            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6094
6095         * pcode.c,
6096         * pcode.h,
6097         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6098         indirect addressing. Marked FSR0 as deprecated
6099         * gen.c (pointerCode): commented out, not needed now
6100         (pic16_popGet2p): new MOVFF helper function
6101         (genGenPointerGet),
6102         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6103         (shiftRLong): removed duplicate debugging info
6104
6105 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6106
6107         * src/ds390/gen.c (genNearPointerGet),
6108         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6109         optimization with bits, but not bitfields.
6110         * src/ds390/ralloc.c (packRegisters),
6111         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6112
6113 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6114
6115         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6116
6117 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6118
6119         * src/SDCCsymt.h,
6120         * src/SDCCicode.c (operandFromSymbol),
6121         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6122         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6123         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6124         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6125         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6126         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6127         bug #892038
6128         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6129         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6130         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6131         * src/SDCCsymt.c (newSymbol),
6132         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6133         enumerator_list),
6134         * src/SDCCval.h,
6135         * src/SDCCval.c (newiList): fixed bug #885705
6136
6137 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6138
6139         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6140         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6141
6142 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6143
6144         * device/include/c8051f120.h,
6145         * device/include/c8051f300.h,
6146         * device/include/c8051f310.h: added/updated header files for Silicon
6147         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6148         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6149         in new section Submitting patches
6150
6151 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6152
6153         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6154         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6155         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6156         genGenPointerSet),
6157         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6158         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6159         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6160         genGenPointerSet),
6161         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6162         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6163         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6164         genGenPointerSet),
6165         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6166         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6167         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6168         genGenPointerSet): fixed bug #892400
6169         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6170         to eliminate build warnings.
6171         * src/SDCCast.c (processParms),
6172         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6173         fixed bug 751859
6174         * support/valdiag/valdiag.py: added GCC to the list of defines active
6175         when compiling with gcc
6176
6177 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6178
6179         * support/Util/SDCCerr.h,
6180         * support/Util/SDCCerr.c,
6181         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6182         with an incomplete type (fixed bug #883734)
6183         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6184
6185 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6186
6187         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6188
6189 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * src/SDCCast.c (decorateType),
6192         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6193         function pointer implementation
6194         * support/regression/tests/funptrs.c: added tests to verify both forms
6195         of function pointers work correctly. Added tests to verify parameters
6196         are passed in the correct order.
6197
6198 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6199
6200         * device.c (regCompare): registers are sorted by ascending
6201         address and increasing size,
6202         * main.c (_pic16_finaliseOptions): removed the declaration
6203         of compiler macro MCU. Now a macro of the format pic18fxxxx
6204         will be defined from the command line
6205
6206 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6207             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6208
6209         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6210         PCOP_RLCF was overwritten!
6211         * gen.c (genSkip): commented out calls to pic16_emitcode,
6212         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6213         * (genlshTwo),
6214         * (genRRC): added debugging info,
6215         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6216         overwritten while shifting,
6217         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6218         overwritten while shifting,
6219         * (AccLsh),
6220         * (AccRsh),
6221         * (shiftLLeftOrResult),
6222         * (shiftRLeftOrResult),
6223         * (shiftRLong),
6224         * (shiftLLong): Implemented with pic16_emitpcode
6225         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6226         * (genLeftShift): Fixed bug, operand for shift by variable always
6227         was "and"ed with 0x0f,
6228         * (genLeftShiftLiteral),
6229         * (genrshTwo),
6230         * (genRightShiftLiteral): added debugging info,
6231         * (genrshFour): added comment,
6232         * (genRightShift): determined signedness from operand "left"
6233         instead of "result"
6234
6235 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6236
6237         * src/SDCCicode.c (geniCodeParms),
6238         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6239         function pointers, fixed function pointer bugs #861242 and #861896
6240
6241 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6242
6243         * device/include/c8051f000.h,
6244         * device/include/c8051f120.h,
6245         * device/include/c8051f300.h: added header files for Silicon
6246         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6247
6248 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6249
6250         * src/SDCCast.c (processParams): added new type flow and restructured
6251         (gatherAutoInit): added new type flow
6252         (addCast): cosmetic changes
6253         (getLeftResultType): added new type flow for array indices, patch
6254         provided by Stas, see FR #877103
6255         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6256         array index patch by Stas
6257         * src/SDCCast.h: added prototype getResultTypeFromType()
6258         * src/SDCCval.h,
6259         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6260         * src/pic/glue.c (pic14emitStaticSeg),
6261         * src/pic16/glue.c (pic16emitStaticSeg),
6262         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6263         for initialization of symbols
6264         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6265         * support/Util/SDCCerr.h:
6266         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6267         * .version: bumped version number to 2.3.8
6268         * device/include/Makefile.in (install),
6269         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6270         avoid warnings
6271
6272 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6273
6274         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6275         Slade Rich fixed an optimization bug
6276         * src/pic/pcodepeep.c,
6277         * src/pic/pcoderegs.c
6278         * doc/Makefile (install): added test for directory
6279
6280 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6281
6282         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6283         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6284         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6285         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6286         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6287         * as/mcs51/asexpr.c (term),
6288         * as/hc08/asexpr.c (term): fixed bug #887146
6289
6290 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6291
6292         * src/z80/gen.c (genMult): handle single byte result product
6293         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6294         DUMMY_READ_VOLATILE (fixed bug #886367)
6295
6296 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6297
6298         * support/regression/tests/libmullong.c: fixed logic, on little endian
6299         hosts we ended without a mullong_wrapper()
6300
6301 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6302
6303         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6304         virus/worm forged address usage.
6305
6306 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         Fixed promotion, it should be done on AST level:
6309         * src/SDCCast.c (addCast): added promotion to int
6310         (decorateType): updated call to upCast()
6311         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6312         usualUnaryConversions()
6313
6314 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6315
6316         * support/regression/tests/literalop.c (mulWrapper): Added a
6317         wrapper to remove integer overflow warnings.
6318
6319         * support/regression/tests/float_trans.c: Made work on host.
6320
6321         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6322         location of sz80.
6323
6324         * support/regression/generate-cases.py (main): Changed from inline
6325         to a main method.
6326
6327         * doc/Makefile (install): Changed to depth first to get rid of
6328         missing directory install warning.
6329
6330         * as/Makefile (install-doc): Made work on Mac.
6331
6332 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6333
6334         * src/SDCCast.c: added an additional type flow in decorateType() of
6335         opposite direction, see feature request #860006; it's enabled at runtime
6336         by setting the environment variable SDCC_NEWTYPEFLOW
6337         * src/SDCCast.h: changed prototype of decorateType()
6338         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6339         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6340         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6341         see feature request #877103
6342         * src/SDCCval.c: updated call of decorateType()
6343         (valBitwise): fixed bug #882876
6344         (valMinus): added promotion
6345         (valLogicAndOr): result is unsigned
6346         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6347         * src/SDCCsymt.c (computeType),
6348         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6349         must not cause an unsigned operation
6350         * src/pic/glue (pic14emitRegularMap),
6351         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6352
6353 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6354
6355         * src/pic/pcode.c (PCodeID): commented out left over debug code
6356
6357 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6358
6359         * support/valdiag/tests/overflow.c: added shift tests
6360         * src/pic/device.c,
6361         * src/pic/gen.c,
6362         * src/pic/gen.h,
6363         * src/pic/glue.c,
6364         * src/pic/main.c,
6365         * src/pic/pcode.c,
6366         * src/pic/pcode.h,
6367         * src/pic/pcodepeep.c,
6368         * src/pic/pcoderegs.c,
6369         * src/pic/ralloc.c,
6370         * src/pic/ralloc.h: applied patch from Slade Rich;
6371         added support for multiple code pages and multiple RAM banks on the
6372         PIC 14 port. The ASM files now no longer simply assume all the
6373         code / RAM are in the same page / bank. This means the linker can
6374         safely allocate code/RAM of separate ASM files to different pages/banks.
6375         * doc/sdccman.lyx: added Slade's tips
6376         * src/mcs51/peeph.def: fixed bug #880768
6377
6378 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6379
6380         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6381         * src/SDCCast.c (decorateType): fixed bug #880197
6382
6383 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6384
6385         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6386         getopt.h.
6387
6388         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6389         strtof is not part of C89 and isn't included with Mac OS X.
6390
6391 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6392
6393         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6394         shiftL2Left2Result): fixed bug #879326
6395         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6396         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6397         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6398         address fetch for clr instruction
6399         * device/lib/hc08/_mulint.c: created optimized assembly version
6400         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6401
6402 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6403
6404         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6405         proposed in FR #877103
6406
6407 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6408
6409         * src/SDCCval.c (cheapestVal): added missing checks
6410         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6411         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6412
6413 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6414
6415         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6416         equal operands
6417
6418 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6419
6420         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6421         loaded with the linker search paths (-L arguments) and the libraries
6422         to be linked with the current source (-l arguments). Changes
6423         currently will affect only the pic16 port.
6424         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6425         include path the port specific paths and port specific libraries,
6426         * gplink command now contains the $3 argument,
6427         * src/pic16/device.h,
6428         * src/pic16/device.c,: structure PIC_device is made public and
6429         renamed to PIC16_device, the same for variable Pics which is renamed
6430         to Pics16. Updated all references to them.
6431         * src/pic16/glue.c (pic16glue): corrected bug with code
6432         initialization which bypassed the variable initializations block.
6433
6434         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6435         COMPILE_FLAGS and added the --nostdinc option
6436
6437 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6438
6439         * device/include/mc68hc908jb8.h: Register defs for another member
6440         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6441
6442 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6443
6444         Documenting changes from previous commits.
6445         * configure.in (version 1.56),
6446         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6447         when generating output files to configure the pic16 library,
6448         but now I've commented it out, since gputils aren't installed in the
6449         SF compile farm, so library won't compile
6450
6451         * device/lib/Makefile.in (version 1.56): initially I've added in
6452         target 'all' the prerequestive 'model-pic16' so it compiled the
6453         pic16 library, but now I've commented it out for the same reasons
6454         above,
6455         * added targets 'model-pic16' and 'objects-pic16' to compile the
6456         library
6457         * added target 'port-specific-objects-pic16' to handle the
6458         generated libraries and copy them into the build/ directory
6459         * added target 'clean-intermediate-pic16' to clean intermediate
6460         files into pic16 directory
6461         * in target 'installdirs' added line to create directory pic16 in
6462         the installation path
6463
6464         * device/include/Makefile.in (version 1.11): in target 'install'
6465         added lines to copy all header files to installation path,
6466         * in target 'installdirs' added line create directory for pic16
6467         headers in the installation path
6468
6469 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6470
6471         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6472          a function call
6473
6474 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6475
6476         * configure,
6477         * device/lib/configure.in,
6478         * device/lib/configure: fixed for autoconf 2.57
6479
6480 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6481
6482         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6483         option so that it actually works. Made it specific to the z80, since
6484         the gbz80 doesn't have these kinds of I/O ports.
6485
6486 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6487
6488         * device/include/z180.h,
6489         * device/lib/_memcpy.c,
6490         * device/lib/_memmove.c,
6491         * device/lib/_mulint.c,
6492         * device/lib/ser_ir.c,
6493         * device/lib/ser_ir_cts_rts.c,
6494         * device/lib/_strcmp.c,
6495         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6496         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6497         portmode; added deprecation warning for bank= and protmode= forms.
6498         Also, guard against buffer overflow.
6499         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6500
6501 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6502
6503         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6504         changed interrupt vector table generation to only emit declared vectors.
6505         * device/include/Makefile.in: added missing backslash
6506         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6507
6508 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6509
6510         Mainly changes to support compilation of the device libraries
6511         * src/pic16/device.c: stack is allocated via symbol and not
6512         via literal number. The symbol is placed in the corresponding
6513         position of the data ram
6514         * (pic16_dump_section): relocatable and absolute uninitialized
6515         data are now emitted in sorted order to reduce section naming,
6516         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6517         weren't marked as being in the access bank,
6518
6519 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6520
6521         Added portion of GNU PIC Library under the directory
6522         device/include/pic16 and device/lib/pic16. These files
6523         contain the declarations of SFRs for the PIC18Fxx2 devices.
6524         The directory is initialized via configure from toplevel.
6525
6526 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6527
6528         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6529         the spilllocations to be compared correctly
6530
6531 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6532
6533         * src/SDCCast.c (decorateType): fixed bug introduced today
6534
6535 2004-01-12  Borut Razem <borut.razem AT siol.net>
6536
6537         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6538         doc/sdccman.lyx: upper case pragmas are deprecated
6539
6540 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6541
6542         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6543         in simpler and even better code
6544
6545 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6546
6547         * src/SDCCicode.c (operandOperation): fixed bug #874819
6548         * src/SDCCast.c (decorateType): fixed
6549         char foo (unsigned long ul) { return ul > 0; }
6550
6551 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6552
6553         * doc/sdccman.lyx: Moved and added some sections, small changes
6554         all over. Telling LaTeX to be less strict with word spacing
6555         to better keep the right margin. Changed some notes about
6556         maintainance of the ports in section 3.2.1 - is it OK like this?
6557
6558 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6559
6560         SDCC source changes:
6561         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6562         convilong): modified to inform the pic16 port that builtin functions
6563         are external
6564
6565         PIC16 PORT specific changes:
6566         * src/pic16/device.c pic16_dump_equates() added,
6567         processor registers declared internally by the port are emitted in
6568         the translation as equates,
6569         * src/pic16/gen.c: inline code is passed unprocessed to the
6570         translation,
6571         * (pic16_popGetLit2): fnuction modified to take second operand as
6572         pCodeOp pointer and not as literal,
6573         * (popRegFromIdx): prefixed with pic16_,
6574         * (pic16_popCombine2): modified to receive already allocated pCode
6575         operands,
6576         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6577         * (genFunction): initializes local stack frame and pushes on stack
6578         all the registers used by this function,
6579         * (genEndFunction): restores all registers from stack and restores
6580         stack frame,
6581         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6582         improvements,
6583         * (pic16glue): changed the program startup sequence,
6584         * added new dbName code 'A' for functions placed in absolute section
6585         * src/pic16/main.c: added function attribute _naked,
6586         * added pragma 'code' to place a fnuction at an absolute address,
6587         * added command line arguments --debug-ralloc and --pcode-verbose,
6588         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6589         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6590         * (pic16_newpCodeOpLit2): modified to take the second operand as
6591         pCodeOp pointer,
6592         * (pic16_printpBlock): modified to emit each function in a separate
6593         section,
6594         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6595         UPPER for immediate operands,
6596         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6597         instruction,
6598         * src/pic16/peeph.def: all peepholes with movff are commented out,
6599         because there is a problem in the pcode peep optimizer,
6600         * src/pic16/ralloc.c: the register allocator can now reuse local
6601         function symbols for another function. This saves register usage.
6602         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6603
6604         Added file src/pic16/NOTES with information about program writing on
6605         the current port version.
6606
6607 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6608
6609         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6610         and peephole 252 (array access)
6611
6612 2004-01-09  Borut Razem <borut.razem AT siol.net>
6613
6614         * src/SDCCmain.c : fixed #872250: -l command line defined library
6615           files are scanned before standard library files
6616
6617 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6618
6619         * src/SDCCast.c (decorateType): fixed bug #874046
6620
6621 2004-01-09  Borut Razem <borut.razem AT siol.net>
6622
6623         * support/scripts/sdcc.nsi: remove previous installation
6624
6625 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6626
6627         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6628         bytes for last interrupt vector (mcs51)
6629         * sdcc.spec: fixed typo
6630
6631 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6632
6633         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6634         gen51Code): more efficient parameter receive for --model-large
6635         ("bug" #845294)
6636
6637 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6638
6639         * src/ds390/main.c,
6640         * src/z80/main.c: added missed needLinkerScript flags (more than
6641         one port structure defined in these file)
6642         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6643         bug #795325
6644
6645 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6646
6647         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6648         * src/port.h: added flag needLinkerScript in port->linker
6649         structure to inform whether to create a .lnk file or not,
6650         * src/avr/main.c,
6651         * src/ds390/main.c,
6652         * src/hc08/main.c,
6653         * src/mcs51/main.c,
6654         * src/pic/main.c,
6655         * src/pic16/main.c,
6656         * src/xa51/main.c,
6657         * src/z80/main.c: changed appropriately to configure
6658         needLinkerScript flag
6659         * src/pic/gen.c,
6660         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6661         * src/pic/glue.c: added variable udata_section_name to
6662         override default uninitialized data segment definition for
6663         devices only with SHAREBANK memory (reported from Erik Epetrich)
6664         * (pic14emitOverlay): modified to emit a commented overlay segment
6665         directive when no overlay data exist
6666         * (picglue): modified to emit uninitialized data segment
6667         according to udata_section_name
6668         * src/pic/main.c (_pic14_parseOptions): added command line
6669         options --udata-section-name=[name] to override default
6670         udata definition name
6671         * modified _linkCmd and _asmCmd to include compiler passed
6672         arguments via -W option
6673         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6674         object file from '.rel' to '.o' in port->linker structure,
6675         changed size of fptr from 2 to 3 in port structure
6676
6677 2004-01-07  Borut Razem <borut.razem AT siol.net>
6678
6679         * support/scripts/sdcc.nsi: update PATH
6680         * support/scripts/sdcc.ico: craeted
6681
6682 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6683
6684         * device/include/Makefile.in: fix install
6685         * doc/Makefile: fix install
6686
6687 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6688
6689         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6690         in bug #860505
6691         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6692         how the function variable allocation summary is displayed; also
6693         include information about variables allocated to the overlay
6694         segment
6695
6696 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6697
6698         * as/mcs51/lkmain.c: Help about -Y option
6699         * as/mcs51/lkarea.c: Fixed gcc warnings
6700
6701 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6702
6703         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6704         fixed warning
6705         * support/valdiag/tests/overflow.c: added
6706         * src/SDCCast.c (decorateType),
6707         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6708         LEFT_OP (left shift)
6709
6710 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6711
6712         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6713         (default behaviour).
6714
6715 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6716
6717         A python script to validate compiler diagnostic messages. It can be
6718         used to verify that sdcc complains about bad c source code and
6719         gives a good location of the error.
6720         * support/valdiag/Makefile,
6721         * support/valdiag/valdiag.py,
6722         * support/valdiag/tests/*
6723
6724 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6725
6726         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6727         * src/SDCCsymt.c (newEnumType),
6728         * src/SDCCsymt.h
6729         * support/Util/SDCCerr.c,
6730         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6731         enum related bugs.
6732         * support/regression/tests/enum.c: added test for enum values that
6733         require at least 2 bytes of storage.
6734
6735 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6736
6737         * src/common.h: added ifndef/define/endif macros
6738         around the header file.
6739         Bug reported from Jesus Calvino-Fraga
6740
6741 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6742
6743         * sdcc.spec: updated
6744         * device/include/Makefile.in: don't install CVS directories
6745         * device/lib/Makefile.in: added removal of CVS directories after install
6746         * doc/Makefile: fixed install, added local_icons
6747         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6748         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6749         * src/ds390/gen.c (genRightShift): fixed bug #870788
6750         * src/SDCCast.c (decorateType): fixed bug #870781
6751
6752 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6753
6754         PIC16 port related changes:
6755         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6756         added variable stackPos,
6757
6758         * gen.c: genCall, assignResultValue: added support for
6759         pushing/retrieving function parameters to/from stack,
6760         genFunction,genEndFunction: setup stack frame for the
6761         generated function,
6762         genAddrOf: will be changed according to bug 863624
6763
6764         * added files genutils.c and genutils.h which contain gen*
6765         debugged and optimised functions extracted from gen.c
6766
6767         * glue.c: added variable 'externs' which holds extern symbols,
6768         pic16emitRegularMap: is modified to properly handle relocatable
6769          symbols under the new scheme,
6770         pic16createInterruptVect: is modified
6771         pic16printPublics: is modified to emit 'global' assembler directives,
6772         added pic16_printExterns to print extern symbols,
6773         pic16glue: initializes stack/frame pointer in the beginning of
6774         the assembly output. Temporary hack, will be corrected later,
6775         because gplink yet does not support stack and SDCC does not
6776         yet support a type of crt0.o object to create the final binary.
6777
6778         * Removed many lines that contain 8051 legacy code.
6779         * The code is finally placed under a 'code' directive.
6780         * Added port specific options.
6781
6782         * _process_pragma: simplified since now we do not need *special*
6783         include file to define SFR registers. But a separate header
6784         will be needed. This will be developed later.
6785         * _pic16_parseOptions: added, parses port specific options:
6786         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6787         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6788         --preplace-udata-with=
6789
6790         * _pic16_setDefaultOptions: modified to initialize section names,
6791         but hack is temporarly out of order since it needs improvement.
6792         * _pic16_genAssemblerPreamble: configuration words are emitted by
6793         their address instead of their name. This part is incomplete and
6794         supports only the 18Fxx2 devices. Other devices will emit an error
6795         during assembly since they do not contain the same set of config
6796         registers
6797         * _pic16_genIVT: is modified,
6798
6799         * pcode.c: added definitions for some hardware registers that are needed
6800         for stack support
6801         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6802         All PCI entries are updated. Now LFSR is supported.
6803         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6804         * added pic16_newpCodeOpLit2 to support instructions with
6805         two literal arguments
6806         * pic16_pCode2str: corrected code that emits assembler instructions
6807         with two literal operands and those that have an access bit modifier
6808         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6809         this fixes a bug which caused some labels to be lost, when an
6810         assembler directive was added, i.e. banksel,
6811         * pic16_FixRegisterBanking: improved logic that causes the insertion
6812         of bank switching,
6813         * InlineFunction: functions that are called once, are not any more
6814         inlined. This can be a port option in the future,
6815
6816         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6817
6818         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6819         hold the corresponding uninitialized symbols,
6820         * pic16_allocProcessorRegister: registers have explicit marked the
6821         accessBank field,
6822         * pic16_allocInternalRegister: registers are explicit marked as
6823         not used,
6824         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6825         processing list, so bit registers were lost,
6826         *
6827
6828         * ralloc.h: added field 'accessBank' and original symbol operand
6829         in register definition,
6830         * removed the field isMapped from register definition,
6831
6832         ** Several functions have been removed from various sources:
6833         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6834         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6835         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6836         pic16_assignRelocatableRegisters
6837
6838         ** others have been introduced:
6839         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6840         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6841
6842 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6843
6844         * support/scripts/inc2h.pl: changed definition of BIT_AT
6845         to emit 'sbit at' instead of 'bit at'. This was a request.
6846
6847         PIC16 port related preliminary changes:
6848         * gen.c: prefixed function popRegFromString with
6849         pic16_ and all references to it corrected
6850         * pcode.c: all pic16_pc_* hardware registers prefixed
6851         with underscore (_),
6852         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6853         * ralloc.c: newReg(): when register is REG_SFR then
6854         set address to rIdx,
6855         pic16_allocProcessorRegister(): marks register wasUsed=0
6856         pic16_writeUsedRegs(): added a call to assign processor
6857         registers via pic16_assignFixedRegisters
6858
6859 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6860
6861         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6862         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6863         variables in unused register banks.  Also the SSEG is placed
6864         wherever there is enough space for it, and IDATA can be anywhere
6865         in internal RAM.  For now compile using -Wl-Y[stack_size].
6866         The mem file is different for this option as well, since it
6867         makes no sense of talking about DSEG lenght.
6868
6869 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6870
6871         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6872         in certain cases, e.g. when ROM assignment, patch provided
6873         from Albert den Haan.
6874
6875 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6876
6877         Many signedness and type propagation fixes:
6878         * src/SDCCicode.c: made geniCodeCast() static
6879         replaced SPEC_ by IS_ (cosmetic)
6880         (operandOperation): fixed div and mod operation
6881         (usualBinaryConversions): added support for promotion of char
6882         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6883         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6884         (geniCodeAdd): an array index will stay unsigned, even if promoted
6885         from char to int
6886         (geniCodeArray): ditto
6887         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6888         * src/SDCCsymt.c (computeType): added more support for char;
6889         promotion of char is selectable by promoteCharToInt, fixed signedness
6890         for all cases
6891         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6892         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6893         * src/SDCCval (val*): replaced signedness calculation by
6894         computeType()
6895         rearranged if-branches (cosmetic)
6896         (valShift): added warning W_SHIFT_CHANGED
6897         (valCompare): fixed problem with different types
6898         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6899         * support/regression/tests/literalop.c: added many cases
6900         * support/regression/tests/ast_constant_folding.c: changed finally to
6901         'unsigned int'
6902         * .version: new year, new version: 2.3.7
6903         * src/SDCCmain.c (main): applied patch #866468
6904         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6905         provided by Scott Bronson
6906         * doc/sdccman.lyx: updated documentation for sdcdb
6907         updated and added chapter tips
6908
6909 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6910
6911         * src/SDCCsymt.h: missing from yesterday's commits
6912
6913 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6914
6915         * src/SDCC.y (struct_or_union_specifier),
6916         * support/Util/SDCCerr.c,
6917         * support/Util/SDCCerr.h: verify that struct & union tags are used
6918         as declared.
6919
6920 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6921
6922         * src/SDCCglobl.h: missing from yesterday's commits
6923
6924 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6925
6926         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6927         sft_attributes, struct_declaration, parameter_declaration,
6928         type_name, start_block, declaration_list),
6929         * src/SDCC.lex (check_type): support redefinition of typedef names
6930
6931 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6932
6933         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6934         aligned xdata arrays. Erik helped me with the if clause.
6935
6936 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6937
6938         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6939         warning
6940
6941 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6942
6943         * src/SDCCast.h,
6944         * src/SDCCast.c (newAst_),
6945         * src/SDCCicode.h,
6946         * src/SDCCicode.c (ast2iCode, newiCode),
6947         * src/SDCCglobl.h,
6948         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6949         expr, statement, expression_statement, selection_statement,
6950         iteration_statement, expr_opt, jump_statement): foundation for tracking
6951         sequence points
6952         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6953         point code too)
6954
6955 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6956
6957         * support/Util/SDCCerr.c,
6958         * src/SDCCast.h,
6959         * src/SDCCast.c (createCase, createDefault, decorateType),
6960         * src/SDCClabel.c (labelUnreach),
6961         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6962         to error messages.
6963         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6964         (with thanks to Stas Sergeev)
6965         * device/include/time.h,
6966         * device/lib/time.c (CheckTime): suppress unreachable code warning
6967
6968 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         * src/SDCCast.c (createIvalCharPtr),
6971         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6972         bug #753752)
6973         * support/regression/tests/nullstring.c: tests for these two bugs
6974
6975 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6976
6977         * support/Util/SDCCerr.h,
6978         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6979         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6980         about storage class and 'at' used inside struct or union
6981         * src/SDCCBBlock.c (iCodeFromeBBlock),
6982         * src/SDCCcse.c (ifxOptimize),
6983         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6984         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6985         printIval, emitStaticSeg, emitOverlay),
6986         * src/SDCClabel.c (deleteIfx),
6987         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6988         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6989         gatherAutoInit, processParms),
6990         * support/Util/SDCCerr.h,
6991         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6992         reporting for post-parse errors.
6993
6994 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6995
6996         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6997         implicit casts via union; they don't work on big endian systems
6998         (possible fix for bug #861138)
6999
7000 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7001
7002         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7003         * src/mcs51/main.c: fixed the fix for bug #737001
7004
7005 2003-12-15  Borut Razem <borut.razem AT siol.net>
7006
7007         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7008
7009 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         * support/makebin/makebin.c: put output in binary mode
7012
7013 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7014
7015         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7016         xdata and data memory on startup. Set the environment variable
7017         SDCC_NOGENRAMCLEAR to disable this.
7018         * src/mcs51/peephole.def,
7019         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7020         (allows non-interrupt and interrupt code to safely compete for a resource
7021         without the non-interrupt code having to disable interrupts)
7022
7023 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7024
7025         * src/SDCCicode.c (geniCodeAdd),
7026         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7027         with valFromType if type might be a pointer and host is big endian).
7028         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7029         types, not just integer types.
7030         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7031         multiply defined with mismatching "at" address.
7032
7033 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7034
7035         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7036         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7037         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7038         with embedded nulls (fixed bug #753752)
7039
7040 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7041
7042         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7043         Apparently this did not see much testing (endless loop)
7044
7045 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7046
7047         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7048
7049 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7050
7051         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7052         gracefully handle NULL memmap pointers
7053
7054 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7055
7056         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7057         instead of deleting the iCode when an operand is volatile
7058         * src/z80/gen.c (genDummyRead),
7059         * src/mcs51/gen.c (genDummyRead),
7060         * src/ds390/gen.c (genDummyRead),
7061         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7062         not just IC_RIGHT
7063         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7064         * src/SDCC.y: fixed bug #850420
7065
7066 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7067
7068         Applied z80 i/o port patch from Peter Townson and fixed some operators
7069         to better handle operands in A register.
7070         * device/include/z180.h
7071         * src/SDCC.y
7072         * src/SDCCglue.c
7073         * src/z80/gen.c
7074         * src/z80/gen.h
7075         * src/z80/main.c
7076         * src/z80/peeph-z80.def
7077         * src/z80/peeph.def
7078         * src/z80/z80.h
7079
7080 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7081
7082         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7083
7084 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7085
7086         * device/lib/hc08/_mullong.c: Removed extra #endif
7087
7088 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7089
7090         * sim/ucsim/hc08.src/inst.cc,
7091         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7092         carries from x to h
7093         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7094         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7095         * device/include/stdarg.h: fixed varargs for hc08
7096         * device/lib/Makefile.in,
7097         * device/lib/hc08/Makefile,
7098         * device/lib/hc08/_mulint.c,
7099         * device/lib/hc08/_mullong.c: fixed some endian problems
7100
7101 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7102
7103         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7104         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7105         * device/lib/_gptrget.c,
7106         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7107
7108 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7109
7110         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7111         * src/SDCCast.c (astErrors): fixed bug #846007
7112         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7113
7114 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7115
7116         * src/SDCCast.c (decorateType): disabled a transformation I added in
7117         revision 1.188 (access to fields of a structure at an absolute address);
7118         it breaks with bitfields, extern declarations, and gcse analysis.
7119         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7120         could be assigned through a pointer, so don't complain.
7121         * src/SDCCast.c (astErrors),
7122         * src/SDCCast.h,
7123         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7124
7125 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7126
7127         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7128         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7129         output of __config directives, since gpasm now supports them
7130         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7131         pre-processor macro, i.e. -DMCU=p18f452
7132         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7133         and modified to handle 'cast' icode similarly to '=' icode
7134         * src/pic16/device.h (typedef struct PIC_device): added field
7135         'extMIface' to indicate that chip has external memory interface
7136         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7137         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7138         18F8720
7139
7140 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7141
7142         * src/SDCC.y (pointer): fixed bug #846006
7143         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7144         * src/SDCCast.c (decorateType): fixed bug #846009
7145         * src/ds390/peeph.def,
7146         * src/ds390/gen.c (genAnd, genOr),
7147         * src/mcs51/peeph.def,
7148         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7149
7150 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7151
7152         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7153         * src/SDCCdflow.c
7154         * src/SDCCcse.c
7155         * src/SDCCcse.h
7156         * src/SDCCBBlock.h
7157         * src/SDCCBBlock.c
7158
7159 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7160
7161         fixed bug #845089
7162         * src/SDCCbitv.h,
7163         * src/SDCCbitv.c: added function to free a bitvector
7164         * src/SDCClrange.h,
7165         * src/SDCClrange.c: added function to recompute the liveranges
7166         * src/avr/ralloc.c,
7167         * src/ds390/ralloc.c,
7168         * src/hc08/ralloc.c,
7169         * src/mcs51/ralloc.c,
7170         * src/pic/ralloc.c,
7171         * src/pic16/ralloc.c,
7172         * src/xa51/ralloc.c,
7173         * src/z80/ralloc.c: recompute the liveranges after register packing
7174
7175 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7176
7177         * src/SDCCloop.c (newInduction): fixed bug #845630
7178
7179 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7180
7181         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7182         inadvertantly left behind from my 2003-11-12 change
7183
7184 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7185
7186         Updated headers I neglected to commit yesterday.
7187         * src/SDCClrange.h,
7188         * src/SDCCicode.h
7189
7190 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7191
7192         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7193         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7194         * src/SDCCopt.c (eBBlockFromiCode),
7195         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7196         the creation of the key hash table from the sequencing so it can be used
7197         earlier (for some GCSE bug fixes still pending)
7198
7199 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7200
7201         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7202         * support/regression/tests/addsub.c: testing genPlus shortcut
7203
7204 2003-11-15  Borut Razem <borut.razem AT siol.net>
7205
7206         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7207
7208 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7209
7210         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7211         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7212         ordering is immaterial.
7213         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7214
7215 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7216
7217         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7218         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7219         (SIGSEV) of bug #840381
7220         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7221         unlink new file before rename if new and old filenames are the same)
7222
7223 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7224
7225         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7226         uninitialized variables) for the mcs51. Set environment variable
7227         SDCC_GENRAMCLEAR to test.
7228         xdata initialization slightly shorter
7229
7230 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7231
7232         * src/SDCCsymt.h,
7233         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7234         #838241 & 780691 (basicly the same bug)
7235         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7236         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7237
7238 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7239
7240         * src/SDCCmain.c (linkEdit): "fix" #834252
7241
7242 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7243
7244         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7245         * src/SDCCast.h,
7246         * src/SDCC.y: fixed bug #819403
7247
7248 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7249
7250         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7251         the reentrant attribute.
7252         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7253         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7254         simulation
7255         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7256         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7257         erroneously reduced to a literal.
7258         * src/hc08/ralloc.c (packRegisters, rematStr),
7259         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7260         some cases
7261
7262 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7263
7264         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7265         * doc/sdccman.lyx: changed from 'article' to 'book'
7266         * doc/Makefile: readded test_suite_spec and cdbfileformat
7267
7268 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7269
7270         * device/include/stdlib.h: include malloc.h to comply with ANSI
7271         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7272
7273 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7274
7275         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7276         * doc/clean.mk: also remove *.out files
7277         * doc/sdccman.lyx: some additions, larger top/bottom margins
7278
7279 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7280
7281         * src/SDCC.y: fixed bug #837365
7282         * support/regression/tests/bitopcse.c
7283         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7284         a symbol (might be valop instead)
7285         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7286         * device/lib/clean.mk: added hc08 to the cleaning list
7287
7288 2003-11-04  Borut Razem <borut.razem AT siol.net>
7289
7290         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7291           made 2003-11-04
7292         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7293           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7294           malloc is declared in standard stdlib.h
7295
7296 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7297
7298         * device/lib/hc08/Makefile: need to clean .rel not .o files
7299         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7300
7301 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7302
7303         * src/port.h,
7304         * src/hc08/main.c,
7305         * src/mcs51/main.c,
7306         * src/ds390/main.c,
7307         * src/z80/main.c,
7308         * src/avr/main.c,
7309         * src/pic/main.c,
7310         * src/pic16/main.c,
7311         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7312         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7313         tests (which uses the port's oclsExpense function)
7314         * src/SDCC.y,
7315         * src/SDCCast.c,
7316         * src/SDCCicode.c,
7317         * src/hc08/gen.c,
7318         * src/ds390/gen.c,
7319         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7320
7321 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7322
7323         * src/SDCCcse.c (ifxOptimize),
7324         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7325         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7326         deleting the IFX iCode.
7327         * src/hc08/ralloc.c: reduced unneeded slocs
7328         * src/hc08/gen.c: fixed bug in asmopToBoolean
7329
7330 2003-11-04  Borut Razem <borut.razem AT siol.net>
7331
7332         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7333           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7334           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7335           transferred to configure
7336
7337 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7338
7339         Use headers defined in the C[++] standards:
7340         * sim/ucsim/gui.src/serio.src/fileio.cc
7341         * sim/ucsim/gui.src/serio.src/frontend.cc
7342         * sim/ucsim/gui.src/serio.src/main.cc
7343         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7344         * support/Util/NewAlloc.c
7345         * as/hc08/lklibr.c
7346         * as/mcs51/lklibr.c
7347         * as/z80/aslist.c
7348         * as/z80/assym.c
7349
7350 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7351
7352         * Added MSVC projects for hc08 assembler and linker:
7353         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7354         /as/hc08/link_hc08.dsp
7355
7356 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7357
7358         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7359
7360 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7361
7362         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7363
7364 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7365
7366         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7367
7368 2003-10-31  Borut Razem <borut.razem AT siol.net>
7369
7370         * support/cpp2/cpplib.h,
7371           support/cpp2/cpplib.c,
7372           support/cpp2/cpplex.c,
7373           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7374           to switch _asm block preprocessing on / off. Default is
7375           #pragma preproc_asm +
7376
7377 2003-10-31  Borut Razem <borut.razem AT siol.net>
7378
7379         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7380           when outputting comment blocks (when executed with -C option) and
7381           _asm (SDCPP specific) blocks
7382
7383 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7384
7385         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7386
7387 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7388
7389         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7390
7391 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7392
7393         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7394         * src/SDCCast.c (decorateType): fixed bug #832664
7395
7396 2003-10-31  Borut Razem <borut.razem AT siol.net>
7397
7398         * support\cpp2\cpplex.c: fixed for SDCPP:
7399           comments(when executed with -C option) and _asm blocks
7400           were included even if they where in skipped #if block.
7401           Applied solution from GCC cpp 3.3.2
7402
7403 2003-10-31  Borut Razem <borut.razem AT siol.net>
7404
7405         * src/SDCC.lex: sdcc now understands both formats:
7406           '# <line_number> <file_name>' and
7407           '#line <line_number> <file_name>'
7408         * support/cpp2/cppmain.c: sdcpp now generates the standard
7409           '# <line_number> <file_name>' instead of former
7410           '#line <line_number> <file_name>'
7411
7412 2003-10-30  Borut Razem <borut.razem AT siol.net>
7413
7414         * support/cpp2/cpphash.h,
7415         * support/cpp2/cpplib.h
7416         * support/cpp2/cpplex.c,
7417         * support/cpp2/cppmain.c,
7418         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7419
7420 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7421
7422         Fixed a number of problems revealed by bug #827883.
7423         * src/SDCCloop.c (loopInvariants): Spill location of the
7424         result operand should be recomputed if extracted from
7425         a loop. Also, don't extract assignments of an iTemp
7426         from a literal.
7427         * src/SDCCast.c (isConformingBody): loop reversal should
7428         not occur if the control variable is involved with a
7429         relational operator.
7430
7431 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7432
7433         * .version: bumped to 2.3.6 to reflect the big improvements
7434         made by Erik and Klaus. Thanks!
7435
7436 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7437
7438         Replaced the livrange code.
7439         * src/SDCClrange.c: added new LR code
7440         * src/SDCCloop.c,
7441         * src/SDCCBBlock.h: removed remainig parts from old LR code
7442         * src/ds390/ralloc.c,
7443         * src/ds390/gen.c: minor fixes to make it work with new code
7444
7445 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7446
7447         * as/hc08/asm.h,
7448         * as/hc08/lkrloc.c,
7449         * src/hc08/gen.c,
7450         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7451         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7452         (tweaked fix for bug #818696)
7453
7454 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7455
7456         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7457
7458 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7459
7460         * src/SDCCmain.c,
7461         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7462         * src/mcs51/gen.c (gencjneshort),
7463         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7464         more efficient (per Scott Bronson's suggestion)
7465
7466 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7467
7468         Extended the semantics of the critical keyword to include
7469         individual statements. See RFE #827755 and #799831
7470         * src/SDCC.y
7471         * src/SDCCicode.c
7472         * src/SDCCopt.c
7473         * src/SDCCast.c
7474         * support/Util/SDCCerr.c
7475         * support/Util/SDCCerr.h
7476         * src/mcs51/gen.c
7477         * src/ds390/gen.c
7478         * src/hc08/gen.c
7479
7480 2003-10-19  Borut Razem <borut.razem AT siol.net>
7481
7482         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7483
7484 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7485
7486         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7487         Fixed bug #818696
7488         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7489         and predecrement operand is displayed
7490
7491 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7492
7493         * src/SDCCval.c (valMinus): fixed bug #826041
7494
7495 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7496
7497         Some hc08 related updates that I missed earlier
7498         * sim/ucsim/stypes.h
7499         * support/regression/ports/hc08/spec.mk
7500
7501 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7502
7503         New target "hc08" for the Motorola 68hc08 family of micros
7504
7505         * configure
7506         * configure.in
7507         * Makefile
7508         * src/hc08/*
7509         * src/SDCCmain.c
7510         * src/port.h
7511         * sim/ucsim/hc08.src/*
7512         * sim/ucsim/configure.in
7513         * src/ucsim/configure
7514         * sim/ucsim/packages_in.mk
7515         * as/hc08/*
7516         * as/Makefile
7517         * device/include/mc68hc908qy.h
7518         * device/lib/hc08/*
7519         * device/lib/Makefile.in
7520         * support/regression/ports/hc08/*
7521         * support/regression/Makefile
7522
7523 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7524
7525         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7526         regression test
7527         * src/ds390/gen.c (genCast): fixed bug #821957
7528
7529 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7530
7531         * device/lib/logf.c: "fixed" overlay bug
7532         * support/regression/ports/host/spec.mk: added m library
7533         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7534         * support/regression/tests/float_trans: added (for Eric)
7535
7536 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7537
7538         * src/mcs51/gen.c (genCpl): fixed bug
7539         http://sf.net/mailarchive/message.php?msg_id=6263915
7540
7541 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7542
7543         * src/SDCCast.c (decorateType): added extended constant folding
7544         * src/SDCCsymt.c (computeType): cleanup
7545         * src/SDCCval.c (valShift): minor optimization
7546         * support/regression/tests/ast_constant_folding.c: added
7547
7548 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7549
7550         * src/SDCCmain.c: removed some unintended changes
7551
7552 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7553
7554         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7555         * src/z80/gen.c: fixed part of bug #817589
7556         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7557
7558 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7559
7560         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7561         * src/SDCCcflow.c
7562         * src/SDCCcse.c
7563         * src/SDCCdflow.c
7564         * src/SDCClabel.c
7565         * src/SDCClrange.c
7566         * src/SDCCmem.c
7567         * src/SDCCopt.c
7568         * src/SDCCpeeph.c
7569         * src/SDCCset.c
7570         * src/avr/ralloc.c
7571         * src/ds390/ralloc.c
7572         * src/izt/ralloc.c
7573         * src/mcs51/ralloc.c
7574         * src/pic/ralloc.c
7575         * src/pic16/ralloc.c
7576         * src/xa51/ralloc.c
7577         * src/z80/ralloc.c
7578         * src/z80/gen.c: removed unused label "release:"
7579
7580 2003-10-06  Borut Razem <borut.razem AT siol.net>
7581
7582         * src/SDCC.lex: removed definition of unused variables
7583           save_optimize and save_options
7584
7585 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7586
7587         * clean.mk: removed '=' in "-maxdepth=1"
7588         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7589         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7590
7591 2003-10-06  Borut Razem <borut.razem AT siol.net>
7592
7593         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7594           my_unput() replaced by unput()
7595
7596 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7597
7598         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7599         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7600         type-punned pointer will break strict-aliasing rules"
7601         Old LR behaviour is again default; Klaus' LR can be choosen by
7602         defining the environment variable LRKLAUS
7603         * src/SDCCBBlock.h
7604         * src/SDCCloop.c
7605         * src/SDCClrange.c
7606         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7607         * clean.mk: fixed removal of files in bin/CVS/
7608         * device/lib/clean.mk: fixed removal of directories small and large
7609         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7610         * src/SDCCicode.c,
7611         * src/SDCCval.c: removed superflous test for pedantic
7612
7613 2003-10-05  Borut Razem <borut.razem AT siol.net>
7614
7615         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7616           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7617           message "unmatched #pragma SAVE and #pragma RESTORE"
7618
7619 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7620
7621         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7622           assembly, critical functions, atomic, nojtbound)
7623
7624 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7625
7626         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7627         * src/SDCCBBlock.h
7628         * src/SDCCloop.c
7629         * src/SDCCloop.h
7630         * src/SDCClrange.c
7631
7632 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7633
7634         * src/z80/gen.h,
7635         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7636         * src/mcs51/gen.h
7637         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7638         * src/ds390/gen.h
7639         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7640         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7641         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7642
7643 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7644
7645         * src/z80/gen.c (genRet): fixed bug #524753
7646         * src/z80/gen.c (genCast): fixed internal error on cast from
7647         pointer to long
7648         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7649         fix for bug #477835 to the z80
7650         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7651         for tracking iCodes in the peephole optimizer for z80
7652
7653 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7654
7655         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7656         the other part of bug #814548
7657         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7658
7659 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7660
7661         * src/SDCCcse.c: fixed part of bug #814548
7662
7663 2003-09-28  Borut Razem <borut.razem AT siol.net>
7664
7665         * src/asm.c: rewrite of printILine() to use temporary file instead
7666           a pipe
7667         * src/xa51/main.c: commented out declaration of int rewinds
7668
7669 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7670
7671         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7672
7673 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7674
7675         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7676         * src/asm.c (printILine): Fixed bug #811015
7677
7678 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7679
7680         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7681         freeing.
7682
7683 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7684
7685         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7686         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7687         to correctly handle general case of AOP_PAIRPTR
7688         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7689
7690 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7691
7692         * src/mcs51/ralloc.c (fillGaps),
7693         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7694         register positioning bug)
7695
7696 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7697
7698         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7699
7700 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7701
7702         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7703         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7704         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7705         (ralloc doesn't intentionally do this now, but perhaps later)
7706         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7707         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7708         register positioning bugs (Fixed bug #762602 and #795325)
7709         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7710         (Fixed bug #808779)
7711         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7712         lines that --i-code-in-asm generates
7713
7714 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7715
7716         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7717         trying to fclose a FILE* that was already closed.
7718
7719 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7720
7721         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7722         of const struct should be treated as if const themselves)
7723
7724 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7725
7726         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7727
7728 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7729
7730         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7731         Unix (/n) and DOS (/r/n) line terminations.
7732
7733 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7734
7735         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7736         bug #613775
7737
7738 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7739
7740         * src/mcs51/gen.c (genFunction, genEndFunction),
7741         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7742         and restore of EA so that stack offsets to parameters are
7743         correct when using both critical and reentrant/stack-auto.
7744         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7745         size (can be triggered in error if sloc is shared between
7746         different sized objects)
7747         * device/include/float.h: fixed macros to explicitly use
7748         unsigned long where needed
7749
7750 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7751
7752         Feature req. 799831: added code to allow nesting of critical functions
7753         * src/mcs51/gen.c (genFunction, genEndFunction)
7754         * src/ds390/gen.c (genFunction, genEndFunction)
7755
7756 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7757
7758         * src/SDCCsymt.c (sclsFromPtr),
7759         * src/SDCCsymt.h,
7760         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7761         support for standard C idiom of memory mapped variables; for
7762         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7763         to xdata int at 0x1234 tempvar = 1.
7764         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7765         provided by Akiya ISHIDA
7766
7767 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7768
7769         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7770         * src/SDCCval.c (constVal): added reduction from int to char
7771         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7772         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7773         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7774         to ignore the sign
7775         * support/regression/tests/shifts.c: fixed
7776
7777 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7778
7779         * src/z80/gen.c (genXor): Fixed bug #805445
7780
7781 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7782
7783         Fixed bug #621531 (const & volatile confusion in the type chain).
7784         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7785         refer to the const or volatile state of the pointer itself.
7786
7787         * src/SDCCast.c
7788         * src/SDCCglue.c
7789         * src/SDCCicode.c
7790         * src/SDCCsymt.c
7791         * src/SDCCval.c
7792         * src/SDCC.y
7793         * src/SDCCsymt.h
7794         * src/pic/gen.c
7795         * src/pic/ralloc.c
7796         * src/pic16/gen.c
7797         * src/pic16/ralloc.c
7798         * support/regression/tests/const.c
7799
7800 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7801
7802         When checking for duplicated modules, use absolute paths
7803         instead of relative paths.  Files changed:
7804
7805         * as/mcs51/lklib.c
7806         * link/z80/lklib.c
7807
7808 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7809
7810         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7811
7812 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7813
7814         * device/include/string.h: added size_t typedef, changed
7815         prototypes to use size_t, eliminated separate reentrant and
7816         non-reentrant declarations, added _memmove declaration
7817         * device/lib/_memcpy.c: changed to use size_t instead of int,
7818         changed /4 to >>2 to avoid division library call
7819         * device/lib/_memcmp.c,
7820         * device/lib/_memset.c,
7821         * device/lib/_strncat.c,
7822         * device/lib/_strncpy.c,
7823         * device/lib/_strncmp.c: changed to use size_t instead of int
7824         * device/lib/_memmove.c: new file (fixed bug #772294)
7825         * device/lib/Makefile.in: added _memmove.c
7826         * device/lib/z80/asm_strings.s: fixed bug #772290
7827         * support/regression/tests/bitfields.c: attempt to fix host assertion
7828         failure on amd64-unknown-linux2.2
7829
7830 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7831
7832         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7833         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7834         * as/z80/asmain.c (main): fixed bug #801766
7835
7836 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7837
7838         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7839         compilers
7840
7841 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7842
7843         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7844         reported in bug #800609
7845
7846 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7847
7848         * Top header beautifications in src/pic16 directory:
7849           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7850           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7851           pcoderegs.h, ralloc.c, ralloc.h
7852         * main.c: added top header and GPL license notice
7853         * pcode.c: fixed the if-conditional warning
7854
7855 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7856
7857         * device/lib/_mullong.c: replaced int by short for gcc
7858
7859 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7860
7861         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7862         and JUMPTABLE iCodes properly now (worked by accident before)
7863         * src/mcs51/gen.c (leftRightUseAcc),
7864         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7865         iCode properly now. Use getSize instead of nRegs since a & b
7866         aren't part of the nRegs tally.
7867
7868 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7869
7870         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7871         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7872           before instructions that use the _STATUS register
7873
7874 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7875
7876         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7877         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7878         fetching of the pointer
7879         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7880         copied from genNearPointerSet()
7881         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7882         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7883         If they pop r0/r1 they must be called in the opposite order than aopOp().
7884         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7885         (resp. --stack-auto), prepared for --xstack
7886
7887 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7888
7889         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7890
7891 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7892
7893         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7894         these ports have their own __sdcc_external_start()
7895
7896 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7897
7898         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7899         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7900         type for bits was changed. It resulted in bit variables becoming
7901         global, which is not permitted in PIC 14 assembly output.
7902
7903 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7904
7905         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7906
7907 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7908
7909         Z80 and MCS51 linkers complaint if a public symbol is defined
7910         in more than one library module:
7911
7912         * as/mcs51/lklib.c
7913         * link/z80/lklib.c
7914         * as/mcs51/Makefile.in
7915
7916 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7917
7918         A few small changes that speed up the peephole optimizer.
7919
7920         * src/SDCCpeeph.c
7921
7922 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7923
7924         Try to make the peephole optimizer smarter by maintaining
7925         an association between the assembly source code and the
7926         iCodes that originated them. Put this information to use
7927         with a new peephole rule condition "notVolatile" so that
7928         the rules can be aggressive yet still safe.
7929
7930         * src/SDCCpeeph.c
7931         * src/SDCCpeeph.h
7932         * src/mcs51/gen.c
7933         * src/mcs51/peeph.def
7934
7935 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7936
7937         Fixed bug #741761
7938
7939         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7940         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7941         if the left or right operand symbols have the accuse flag set.
7942
7943 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7944
7945         Changed the type of the result of the ! (NOT) operator to char;
7946         previously it returned the same type as the source. This allows
7947         us to eliminate all the genFloatNot functions (all of its target
7948         implementations were very buggy) since !float can use the same
7949         code as !long now.
7950
7951         * src/SDCCicode.c (ast2iCode): ! returns char
7952         * src/mcs51/gen.c (genNot, genNotFloat),
7953         * src/ds390/gen.c (genNot, genNotFloat),
7954         * src/z80/gen.c (genNot, genNotFloat),
7955         * src/pic/gen.c (genNot, genNotFloat),
7956         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7957
7958 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7959
7960         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7961         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7962            during interrupts. Ensure WSAVE is located at a shared bank address.
7963         2. Fixed page selection in some places
7964         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7965            the registers name strings.
7966         4. Fixed "signed / unsigned compare" compiler warnings.
7967         5. The PIC port manages its own allocation of the general purpose
7968            registers, but makes no attempt to reuse them. As a result when
7969            compiling it soon runs out of general purpose registers. Some
7970            additional code was added to the files pcode.c and device.c to walk
7971            through the function call tree and rename the registers so that they
7972            get reused.
7973
7974         * src/pic/device.c
7975         * src/pic/gen.c
7976         * src/pic/glue.c
7977         * src/pic/pcode.c
7978         * src/pic/pcode.h
7979         * src/pic/ralloc.c
7980         * src/pic/ralloc.h
7981         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7982         genPlus() & genMinus() when the result is the same as left or right
7983
7984 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7985
7986         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7987
7988 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7989
7990         Made bitfield a distinct type from bit so that bitfields
7991         convert as per ANSI C and bits retain their traditional
7992         boolean style behaviour. Implemented bitfield support in
7993         the z80 port.
7994
7995         * src/SDCCsymt.h,
7996         * src/SDCCsymt.c,
7997         * src/SDCCast.c,
7998         * src/cdbFile.c,
7999         * src/mcs51/gen.c,
8000         * src/ds390/gen.c: bit v bitfield split
8001         * src/z80/gen.c: New support for bitfields
8002         * support/regression/tests/bitfields.c: reenabled z80,
8003         added more tests
8004
8005 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8006
8007         Rules 246.x, 247.x relate to bitfields, the others speed up
8008         access to xdata mapped I/O devices.
8009
8010         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8011
8012 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8013
8014         Cleaned up genPackBits and genUnpackBits and added two helper
8015         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8016         for literal assignments in genPackBits (thanks to Frieder for
8017         reminding me).
8018
8019         * src/mcs51/gen.c
8020         * src/ds390/gen.c
8021
8022 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8023
8024         Fixed bug #748310 (pointer to function type mishandled when the
8025         function name is omitted). Also fixed a SIGSEGV when a function
8026         attribute (reentrant, etc) is used on a non-function or on a
8027         function but misplaced before the parameter list.
8028
8029         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8030         bug #748310
8031         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8032         * support/Util/SDCCerr.h,
8033         * support/Util/SDCCerr.c: Added func attr misuse error msg
8034
8035 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8036
8037         Fixed bug #787649 by anonymous
8038         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8039         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8040
8041 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8042
8043         Fixed numerous bitfield problems.
8044
8045         * src/SDCC.y: More bitfield related error checking
8046         * src/SDCCsymt.h,
8047         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8048         * support/Util/SDCCerr.h,
8049         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8050         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8051         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8052         * support/regression/tests/bitfields.c: tests added
8053
8054 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8055
8056         Made the constant following the "interrupt" keyword optional. If
8057         omitted, the function will not automatically be given an entry
8058         in the interrupt vector table (similar to #pragma NOIV, but
8059         less syntacticly kludgy). The interrupt number is also now
8060         range checked. Also fixed a bug in the high order bit example
8061         in the manual.
8062
8063         * src/SDCC.y
8064         * src/SDCCmem.c
8065         * src/SDCCglue.c
8066         * src/SDCCsymt.h
8067         * support/Util/SDCCerr.c
8068         * support/Util/SDCCerr.h
8069         * doc/sdccman.lyx
8070
8071 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8072
8073         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8074         * src/SDCCicode.c (operandOperation): rewritten some ops
8075         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8076         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8077         other type
8078         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8079         be re-activated by defining REDUCE_LITERALS)
8080         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8081         unsigned, but are signed by default
8082         * src/SDCCval.c (constVal): rearranged
8083         * src/SDCCval.c (valMod): preliminary fix
8084         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8085         * support/regression/literalop.c: added, work in progress
8086
8087 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8088
8089         Generate warnings for useless declarations like "char data;"
8090         that don't do what new users expect.
8091
8092         * src/SDCC.y
8093         * support/Util/SDCCerr.h
8094         * support/Util/SDCCerr.c
8095
8096 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8097
8098         * src/SDCCval.c (valMult): fix overflow detection of negative int
8099
8100 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8101
8102         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8103
8104         Changes to support big endian targets:
8105
8106         * src/ports.h
8107         * src/SDCCglue.c
8108         * src/avr/main.c
8109         * src/ds390/main.c
8110         * src/izt/i186.c
8111         * src/mcs51/main.c
8112         * src/pic/main.c
8113         * src/pic16/main.c
8114         * src/xa51/main.c
8115         * src/z80/main.c
8116
8117 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8118
8119         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8120         * device/lib/time.c: fixed warning "integer overflow in expression"
8121
8122 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8123
8124         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8125         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8126         constants are unsigned; added recognition of "u" flag for unsigned
8127         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8128         * src/SDCCval.c (valDiv, valMod): fixed signdness
8129         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8130         signedness of modulo, left and right shift
8131         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8132         * support/Util/SDCCerr.h: added warning W_INT_OVL
8133         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8134         * src/SDCCast.c (ast_print): improved output of constants
8135
8136 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8137
8138         Fixed some warnings when building with MSVC:
8139
8140         * as\mcs51\asdata.c
8141         * as\z80\asdata.c
8142         * as\mcs51\asm.h
8143         * as\z80\asm.h
8144         * link\z80\aslink.h
8145         * link\z80\lkdata.c
8146         * link\z80\lkeval.c
8147         * link\z80\lkgb.c
8148         * link\z80\lkihx.c
8149         * link\z80\lks19.c
8150         * link\z80\lksym.c
8151         * support\cpp2\cpplib.c
8152         * src\ds390\gen.c
8153         * src\mcs51\gen.c
8154
8155 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8156
8157         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8158
8159 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8160
8161         * support\librarian\clean.mk: Do not remove Makefile.
8162         * support\librarian\Makefile: added.
8163
8164 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8165
8166         Added librarian to MSVC build:
8167         * all.dsp
8168         * sdcc.dsw
8169         * support\librarian\librarian.dsp
8170
8171         'configure' not needed for librarian, removed:
8172         * support\librarian\configure
8173         * support\librarian\configure.in
8174         * support\librarian\config_in.h
8175         * support\librarian\Makefile.in
8176
8177         Hopefully these ones built the librarian and the rest of sdcc properly:
8178         * Makefile
8179         * Makefile.common.in
8180
8181         Messed up 'configure', so revert to previous version:
8182         * configure
8183         * configure.in
8184
8185 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8186
8187         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8188         there, while the mantissa of a double is "only" 53 bits wide.
8189
8190 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8191
8192         Adding sdcclib to the build.  MSVC project coming soon.
8193         Files added/changed:
8194
8195         * support\librarian\clean.mk
8196         * support\librarian\configure
8197         * support\librarian\configure.in
8198         * support\librarian\config_in.h
8199         * support\librarian\Makefile.bcc
8200         * support\librarian\Makefile.in
8201         * support\librarian\sdcclib.c
8202         * Makefile.bcc
8203         * Makefile
8204         * Makefile.common.in
8205         * configure
8206         * configure.in
8207
8208 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8209
8210         Linker now complaints if linked modules have conflicting options, for
8211         example, one compiled using --model-large and another one compiled with
8212         --model-small.  The following files were modified:
8213
8214         * as\mcs51\asdata.c
8215         * as\mcs51\aslink.h
8216         * as\mcs51\asm.h
8217         * as\mcs51\asmain.c
8218         * as\mcs51\asout.c
8219         * as\mcs51\i51pst.c
8220         * as\mcs51\lkdata.c
8221         * as\mcs51\lklibr.c
8222         * as\mcs51\lkmain.c
8223         * as\z80\asdata.c
8224         * as\z80\asm.h
8225         * as\z80\asmain.c
8226         * as\z80\asout.c
8227         * as\z80\z80pst.c
8228         * link\z80\aslink.h
8229         * link\z80\lkdata.c
8230         * link\z80\lklibr.c
8231         * link\z80\lkmain.c
8232         * src\SDCCglue.c
8233
8234 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8235
8236         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8237         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8238
8239 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8240
8241         * src/z80/mappings.i: fix _mul[us][int,long] entries
8242
8243 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8244
8245         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8246
8247 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8248
8249         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8250         * support/regression/tests/bitopcse.c: added
8251         fixed warning:
8252         * src/avr/gen.c:
8253         * src/pic/gen.c:
8254         * src/pic16/gen.c:
8255         * src/z80/gen.c:
8256         * src/xa51/gen.c:
8257
8258 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8259
8260         added support for new library format to z80, gbz80 linkers:
8261         *link/z80/aslink.h
8262         *link/z80/lklex.c
8263         *link/z80/lklib.c
8264         *link/z80/lklist.c
8265
8266 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8267
8268         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8269         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8270
8271 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8272
8273         added DUMMY_READ_VOLATILE:
8274         * src/SDCC.y:
8275         * src/avr/gen.c:
8276         * src/xa51/gen.c:
8277         * src/z80/gen.c:
8278         * src/pic/gen.c:
8279         * src/pic16/gen.c:
8280         * src/mcs51/gen.c:
8281         * src/ds390/gen.c:
8282         * src/SDCCcse.c (algebraicOpts): many improvements
8283         * src/SDCCcse.h: removed algebraicOpts()
8284         * src/SDCCicode.c (picDummyRead): added
8285
8286 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8287
8288         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8289         "Insufficient space in data memory".
8290
8291 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8292
8293         * src/mcs51/gen.c: fixed bug #771358
8294         * src/z80/gen.c: fixed bug #759087
8295
8296 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8297
8298         * src/pic16/glue.c: minor cleanup by Vangelis
8299
8300 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8301
8302         * device/include/regc515c.h: fixed #758477
8303         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8304         * device/lib/_gptrput.c: saved a few bytes
8305         * my tab spacing is 8, yours too?)
8306         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8307         * device/lib/serial.c: process RX bytes earlier than TX bytes
8308         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8309
8310 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8311
8312         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8313
8314 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8315
8316     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8317
8318 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8319
8320         * device/lib/Makefile.in: bad fix, reverted to 1.43
8321
8322 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8323
8324         * device/lib/Makefile.in: added missing z80 object files
8325
8326 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8327
8328         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8329         pic16 progress by Vangelis:
8330         * src/SDCCglobl.h:
8331         * src/SDCCmain.c:
8332         * src/pic/Makefile:
8333         * src/pic:
8334         * pic/Makefile:
8335         * pic16/device.c:
8336         * pic16/device.h:
8337         * pic16/gen.c:
8338         * pic16/gen.h:
8339         * pic16/genarith.c:
8340         * pic16/glue.c:
8341         * pic16/main.c:
8342         * pic16/pcode.c:
8343         * pic16/pcode.h:
8344         * pic16/pcodepeep.c:
8345         * pic16/peeph.def:
8346
8347 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8348
8349     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8350
8351 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8352
8353     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8354     added gbz80 build to MSVC project.
8355     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8356     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8357     from 8051 stuff and setup so it links using a .lnk file.
8358
8359 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8360
8361     * support/librarian/sdcclib.c: sdcc librarian.
8362     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8363     with sdcclib.
8364
8365 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8366
8367     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8368
8369 2003-07-02  Borut Razem <borut.razem AT siol.net>
8370
8371         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8372         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8373         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8374         src/xa51/main.c, src/z80/main.c:
8375         virtualization of glue() function: each port has it's own glue function,
8376         which is accessed by do_glue function pointer in PORT.general structure
8377
8378 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8379
8380         * DS800C400 fun, improved ROM interface and tinibios.
8381
8382 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8383
8384         * More support for DS80C400. Now includes beginning of interface to ROM.
8385
8386 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8387
8388         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8389
8390 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8391
8392         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8393
8394 2003-06-19  Borut Razem <borut.razem AT siol.net>
8395
8396         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8397
8398 2003-06-19  Borut Razem <borut.razem AT siol.net>
8399
8400         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8401         fixed Z80 port - crt0.o: cannot open.
8402
8403 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8404
8405         * support/Util/MySystem.c (merge_command): revert bad fix
8406
8407 2003-06-18  Borut Razem <borut.razem AT siol.net>
8408
8409         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8410
8411 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8412
8413         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8414         option --use-stdout sends errors to stdout instead of stderr.
8415
8416 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8417
8418         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8419
8420 2003-06-15  Borut Razem <borut.razem AT siol.net>
8421
8422         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8423         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8424         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8425         fixed width array of pointers replaced with sets;
8426         multiple include and lib paths ared transferred to preprocessor and linker
8427         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8428         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8429         fixed width array of pointers
8430         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8431         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8432         fixupPath(), getPathDifference()
8433         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8434         fixed width array of pointers
8435
8436 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8437
8438         * src/pic16/ralloc.c: fix warnings
8439         * src/pic16/pcode.c: fix warning
8440
8441 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8442
8443          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8444         know all the details, but essentially this set of changes enable
8445         the pic16 port to generate movff instructions and generate assembler
8446         directives,
8447         * src/SDCCmain.c:
8448         * src/pic16/gen.c:
8449         * src/pic16/glue.c:
8450         * src/pic16/pcode.c:
8451         * src/pic16/device.c:
8452         * src/pic16/main.c:
8453         * src/pic16/pcode.h:
8454         * src/pic16/pcoderegs.c:
8455         * src/pic16/ralloc.c:
8456         * src/pic16/ralloc.h:
8457
8458 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8459
8460         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8461         added option --vc, so sdcc errors and warnings are compatible with
8462         Microsoft Visual Studio.
8463
8464 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8465
8466         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8467           device/lib/libfloat.lib: added atof function.
8468
8469 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8470
8471         * doc/sdccman.lyx: updated to Lyx 1.3
8472         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8473         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8474         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8475
8476 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8477
8478         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8479
8480 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8481
8482         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8483           additions to the "related tools/documentation" section
8484
8485 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8486
8487         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8488
8489 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8490
8491         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8492         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8493
8494 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8495
8496         * doc/sdccman.lyx: fix double dash and other minor things
8497         * doc/Makefile: fix double dash
8498
8499 2003-05-28  Karl Bongers(patches from Martin Helmling)
8500         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8501           condition and ignore commands.
8502
8503 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8504
8505         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8506           is in parts still quite out of date, I did changes as far as I felt makes sense
8507           for a non-native english speaker.
8508           Please feel free to add to the manual or to correct my changes.
8509         * doc/Makefile: undid touching the date of intermediate tex files.
8510
8511 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8512
8513         * doc/sdccman.lyx: Manual has an index now
8514
8515 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8516
8517         Finalize muluint/mulsint and mululong/mulslong merging:
8518         * device/lib/_mulint.c
8519         * device/lib/_mullong.c
8520         * device/lib/gbz80/mul.s
8521         * device/lib/gbz80/stubs.s
8522         * device/lib/z80/mul.s
8523         * device/lib/z80/stubs.s
8524         * src/SDCCsymt.c (initCSupport)
8525
8526 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8527
8528         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8529         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8530           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8531           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8532           instead of /Zm500.
8533
8534 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8535
8536         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8537           the regression tests I'm not brave enough to enable 245.b, 245.c
8538         * doc/sdccman.lyx: added latex preamble for hyperref package.
8539           Using pdflatex this will give you a hyperlinked pdf file with
8540           bookmarks. (prepend '%' before /usepackage if this breaks something)
8541
8542 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8543
8544          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8545
8546 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8547
8548         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8549
8550 2003-05-21    <johan AT balder>
8551
8552         * src/SDCCglue.c (printIval): fixed bug #739934
8553
8554 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8555
8556         Applied patch from bug 737905 (renamed yylineo to mylineno):
8557         * src/altlex.c
8558         * src/SDCCast.c
8559         * src/SDCglobl.h
8560         * src/SDCC.lex
8561         * src/SDCCsymt.c
8562         * src/SDCCval.c
8563         * src/pic16/pcode.c: Cleaned warnings
8564         * src/pic16/pcodeflow.c: Cleaned warnings
8565         * src/pic16/pcoderegs.c: Cleaned warnings
8566
8567 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8568
8569         * src/pic16/pcode.c: Cleaned warnings
8570         * src/pic16/pcodepeep.c: Cleaned warnings
8571         * src/pic16/ralloc.c: Cleaned warnings
8572
8573 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8574
8575         * doc/sdccman.lyx: fixed bug 739745
8576         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8577
8578 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8579
8580         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8581         it can be defined with CFLAGS when running configure
8582         * src/SDCCmain.c: fixed compiling + linking with object files
8583
8584 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8585
8586         * configure.in: configure for pic16 port,
8587             added --disable-pic16-port
8588         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8589         * src/SDCCmain.c: linkOptions is changed to set *,
8590             added if/endif conditional macros to remove options help
8591             messages from optionsTable when a port is not configured, added
8592             support for the PIc16 port in the ports table, when executing
8593             the compiler with no port specified on command line, a default
8594             port is selected with the new macro DEFAULT_PORT which is
8595             defined in port.h, in setDefaultOptions() linkOptions is removed
8596             from initialization assignment, since now it is a set,
8597             parseCmdLine uses setParseWithComma for linkOptions, in
8598             linkEdit() linkOptions are accessed with new function indexSet()
8599             which returns the i'th item of a set variable. See SDCCset.c, in
8600             linkEdit() when calling buildCmdLine(), added linkOptions as
8601             last argument. Now users can pass arguments to gplink via the
8602             -Wl option, main() uses pic16glue() to glue up pic16 programs
8603         * src/SDCCpeeph.c: various changes to support pic16
8604         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8605             return the i'th item of the set
8606         * src/SDCCset.h: added function prototype for indexSet()
8607         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8608         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8609         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8610             added macro DEFAULT_PORT
8611         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8612         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8613             generated
8614         * src/pic16/glue.c: commented out some error producing lines
8615         * src/pic16/main.c: __config directives are commented out to stop
8616             gpasm complaining and test the linkage with gplink, _linkCmd and
8617             _asmCmd changed to be more gplink and gpasm friendly
8618         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8619             produced an error when parsed, peep rule 12 is added to utilize
8620             movff, but it is commented out since the pCode does not support
8621             yet a command with 2 address arguments
8622
8623 2003-05-18    <johan AT balder>
8624
8625         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8626         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8627 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8628
8629         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8630   Added feature to script commands from file.
8631
8632 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8633
8634         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8635         * src/SDCCutil.c: include ctype.h for win32
8636
8637 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8638
8639         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8640
8641 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8642
8643         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8644   Fixed so you can set breakpoints prior to run, run does not stop
8645   on entry now.  Add tbreak.  Other enhancements and fixes for use
8646   with ddd.
8647
8648 2003-05-12  Borut Razem <borut.razem AT siol.net>
8649
8650         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8651
8652 2003-05-11  Borut Razem <borut.razem AT siol.net>
8653
8654         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8655         the path of bin directory, so that PATH is the only env. variable, which has to be set
8656         in case of standard installation.
8657         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8658         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8659         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8660
8661 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8662
8663         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8664         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8665         temp files are in the port dir; clean the gen/test directory when
8666         generating new test.c
8667         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8668         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8669         * support/regression/tests/zeropad.c: added
8670
8671 2003-05-09    <johan AT balder>
8672
8673         * src/SDCCglue.c: fixed bug #597940
8674
8675 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8676
8677         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8678   cache sfr, optimize next,step, fix off by one sourceline,
8679   support ddd list function.
8680         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8681
8682 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8683
8684         * support/regression/HTMLgen.py: added compare_s2f()
8685         * support/regression/Makefile: redo 1.27
8686         * support/regression/generate-cases.py: redo 1.5
8687
8688 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8689
8690         * support/regression/tests/float.c: workaround 33 bit hex constant
8691         * support/regression/tests/simplefloat.c: fix division for host
8692
8693 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8694
8695         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8696         that tame's the PIC's over-aggressive optimizer.
8697
8698 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8699
8700          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8701          support for MSVC.
8702
8703 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8704
8705         Initial support for DS80C400. "Hello world" runs on TINIm400
8706         (with polled I/O).
8707
8708 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8709
8710          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8711          * Some notes on ddd usage added in debugger/README
8712          Martin Helmling adding more features and fixes for ddd GUI debugger.
8713          Code added for nexti, stepi, up, down, and other adjustments.
8714
8715 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8716
8717         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8718         * src/pic/peeph.def Added two rules to optimize carry manipulation
8719         * src/pic/* removed debug printfs
8720
8721 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8722
8723         * debugger/mcs51/cmd.c: added header newalloc.h
8724
8725 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8726
8727         * as/Makefile: new EXEEXT
8728         * as/z80/Makefile: remove trailing slash of BUILDIR
8729         * as/z80/clean.mk: new EXEEXT
8730         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8731         * support/cpp2/Makefile.in: new EXEEXT
8732         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8733
8734 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8735
8736         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8737         EXEEXT was introduced to fix all related problems with targets
8738         "clean", "install" and "uninstall"; a couple of further flaws
8739         especially with "clean" have been fixed too
8740         * as/mcs51/Makefile.in
8741         * as/mcs51/clean.mk
8742         * as/z80/Makefile
8743         * Makefile
8744         * clean.mk
8745         * debugger/mcs51/Makefile.in
8746         * debugger/mcs51/clean.mk
8747         * link/z80/Makefile
8748         * link/z80/Makefile.in
8749         * link/z80/clean.mk
8750         * link/Makefile
8751         * packihx/Makefile.in
8752         * packihx/clean.mk
8753         * sim/ucsim/Makefile
8754         * sim/ucsim/clean.mk
8755         * sim/ucsim/avr.src/Makefile.in
8756         * sim/ucsim/avr.src/clean.mk
8757         * sim/ucsim/s51.src/Makefile.in
8758         * sim/ucsim/s51.src/clean.mk
8759         * sim/ucsim/xa.src/Makefile.in
8760         * sim/ucsim/xa.src/clean.mk
8761         * sim/ucsim/z80.src/Makefile.in
8762         * sim/ucsim/z80.src/clean.mk
8763         * sim/ucsim/main_in.mk
8764         * sim/ucsim/packages_in.mk
8765         * sim/ucsim/gui.src/Makefile.in
8766         * sim/ucsim/gui.src/serio.src/Makefile.in
8767         * sim/ucsim/gui.src/serio.src/clean.mk
8768         * src/Makefile.in
8769         * src/clean.mk
8770         * support/cpp2/Makefile.in
8771         * support/cpp2/clean.mk
8772         * support/makebin/Makefile
8773         * support/makebin/clean.mk
8774         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8775         * doc/sdccman.lyx: --program-suffix no longer needed
8776
8777 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8778
8779          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8780          Martin Helmling added support for ddd GUI debugger.
8781          Code added to display assembly, set variables, and other commands
8782          to interface to ddd.
8783
8784 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8785
8786         * as/Makefile: fix target clean
8787         * as/clean.mk: fix target clean
8788         * as/z80/clean.mk: fix target clean
8789
8790 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8791
8792         * Makefile.common.in: added  AT EXEEXT AT
8793         * configure.in: removed all mingw32 stuff
8794         * configure: rebuilt from configure.in
8795         * doc/sdccman.lyx: updated section "installation"
8796         * support/scripts/sdcc_mingw32: adapted to configure
8797         * support/scripts/sdcc_cygwin_mingw32: added
8798
8799 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8800
8801         * src/pic Added object file support for the PIC port
8802         * src/pic Applied patch from Craig Franklin (this started the object file support)
8803         * src/regression Updated the PIC regression tests for object files
8804
8805 2003-04-20  Borut Razem <borut.razem AT siol.net>
8806
8807         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8808           lklex.c: In function `getfid':
8809           lklex.c:203: warning: array subscript has type `char'
8810         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8811           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8812         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8813           stack handling macros
8814
8815 2003-04-19  Borut Razem <borut.razem AT siol.net>
8816
8817         * "handling space characters in file path" task:
8818         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8819         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8820         * support/Util/MySystem.h: make it self-sufficient
8821         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8822           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8823           handling space characters in file path
8824         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8825           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8826         * support/Util/MySystem.c: handling space characters in executable's path
8827
8828 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8829
8830         * as/z80/Makefile: fix permanent rebuild of z80
8831         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8832         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8833
8834 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8835
8836         * src/SDCCopt.c: add special case optimization to replace modulo by
8837           a power of two with a bitwise AND.
8838
8839 2003-04-18    <johan AT balder>
8840
8841         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8842
8843 2003-04-17    <johan AT balder>
8844
8845         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8846         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8847
8848 2003-04-13  Borut Razem <borut.razem AT siol.net>
8849
8850         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8851         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8852           fixed mingw problem in adl_NORMALIZE_PATH
8853
8854 2003-04-12  Borut Razem <borut.razem AT siol.net>
8855
8856         * fixed "#pragma SAVE/RESTORE can not be nested":
8857         * src/SDCC.lex: reworked pragma handling functions
8858         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8859         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8860
8861 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8862
8863         * src/SDCCutil.c (pathEquivalent): defined but not used
8864         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8865         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8866         * configure: rebuilt from configure.in
8867         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8868         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8869         * device/include/Makefile.in: replace sdcc_datadir
8870         * device/lib/Makefile.in: replace sdcc_datadir
8871         * Makefile.common.in: add LDFLAGS from configure
8872         * packihx/Makefile.in: use LDFLAGS
8873         * src/Makefile.in: use LDFLAGS
8874         * support/cpp2/Makefile.in: add LDFLAGS from configure
8875         * support/makebin/Makefile: use LDFLAGS
8876         * .version: bumped version number to 2.3.5
8877
8878 2003-04-12  Borut Razem <borut.razem AT siol.net>
8879
8880         * completed "different paths" task:
8881         * src/SDCCmacro.c: fixed bug in handling quotes
8882         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8883         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8884
8885 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8886
8887         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8888
8889 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8890
8891         * ds390/gen.c ds390/peeph.def: fix bug 706781
8892
8893 2003-04-11  Borut Razem <borut.razem AT siol.net>
8894
8895         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8896
8897 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8898
8899         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8900         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8901          set - this bit used to not be set...).
8902         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8903           bad code in PIC Port
8904         * src/regression/and2.c added to test bug 609268
8905         * src/regression/Makefile added and2.c to regression test
8906
8907
8908 2003-04-08    <johan AT CP255758-A>
8909
8910         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8911         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8912         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8913
8914 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8915
8916         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8917         fix bug #487815
8918         * support/cpp2/Makefile.in: fix bug #487815
8919         * configure: rebuilt from configure.in
8920         * Makefile.common.in: docdir changed, new path suffixes
8921         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8922         * sdcc_vc_in.h: reflect changes from sdccconf.h
8923         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8924         * src/SDCCutil.h: remove BINDIR hack
8925         * doc/sdccman.lyx: update new path hierarchy
8926
8927 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8928
8929         * src/SDCCpeeph.c: added okToRemoveSLOC test
8930
8931 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8932
8933         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8934
8935 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8936
8937         * src/SDCCpeeph.c: added labelIsReturnOnly test
8938         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8939
8940 2003-04-05    <johan AT balder>
8941
8942         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8943         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8944         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8945         * src/SDCCast.c: fixed a warning
8946         * src/SDCCast.h: fixed a warning
8947         * src/SDCCicode.c (operandFromAst): fixed a warning
8948
8949 2003-04-04    <johan AT balder>
8950
8951         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8952         * src/SDCCast.c (decorateType): fixed bug #715076
8953         * src/SDCC.y: fixed bug #702907
8954
8955 2003-04-03    <johan AT balder>
8956
8957         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8958         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8959         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8960         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8961         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8962
8963 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8964
8965         * _decdptr.c: fix return values
8966         * _gptrget.c: fix return values
8967         * _gptrgetc.c: fix return values
8968         * _gptrput.c: fix return values
8969         * _mulint.c: fix return values
8970         * as/z80/Makefile: fix 'make -j' problem
8971
8972 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8973
8974         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8975         * configure.in: big cleanup, updated to autoconf 2.5x
8976         * configure: rebuilt from configure.in
8977         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8978         * sdcc_vc_in.h: reflect changes from sdccconf.h
8979         * doc/Makefile: fixed a flaw in "make install"
8980
8981 2003-04-02    <johan AT balder>
8982
8983         * src/ds390/gen.c (genCmp): no comments
8984         * src/mcs51/gen.c (genCmp): no comments
8985         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8986         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8987
8988 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8989
8990         * support/regression/generate-cases.py: place generated file in given sub directory
8991         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8992         * support/regression/Makefile: improvements for 'make -j';
8993         side effect: it's simpler and faster now
8994
8995 2003-03-31  Borut Razem <borut.razem AT siol.net>
8996
8997         * src/z80/main.c: link-{port} and as-{port} defined without path
8998         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8999
9000 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9001
9002         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9003
9004 2003-03-30  Borut Razem <borut.razem AT siol.net>
9005
9006         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9007           changed type of list parameter to set
9008         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9009         * src/port.h: changed type of do_assemble() parameter to set
9010         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9011           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9012           definition of "cppoutfilename" macro with NULL value in preProcess()
9013         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9014         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9015         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9016           replaced with set *binPathSet
9017         * shash_add() deallocates the item, if allready exsists, before adding the new one
9018         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9019
9020 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9021
9022         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9023           a nested for loop bug in the PIC port
9024         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9025           for loops
9026
9027 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9028
9029         * support/Util/dbuf.h: remove C++ stuff to make it portable
9030
9031 2003-03-28  Borut Razem <borut.razem AT siol.net>
9032
9033         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9034           literal strings in stringLiteral()
9035         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9036         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9037           to the project
9038
9039 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9040
9041         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9042
9043 2003-03-26    <johan AT balder>
9044
9045         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9046         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9047         * src/SDCCast.c (decorateType): fixed " -v < 3"
9048
9049 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9050
9051         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9052         Added Lenny Story's debug infrastructure changes:
9053         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9054         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9055         * src/cdbFile.c: added
9056         * src/SDCCdebug.c: added
9057         * src/SDCCdebug.h: added
9058         * src/SDCCast.c (createFunction)
9059         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9060         * src/SDCCmain.c (parseCmdLine, main)
9061         * src/SDCCmem.c (redoStackOffsets)
9062         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9063         * src/SDCCsymt.h
9064         * src/common.h
9065         * src/avr/gen.c (genAVRCode)
9066         * src/ds390/gen.c (gen390Code)
9067         * src/mcs51/gen.c (gen51Code)
9068         * src/pic/gen.c (genpic14Code)
9069         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9070         * src/xa51/gen.c (genXA51Code)
9071         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9072
9073 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9074
9075         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9076         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9077
9078 2003-03-22    <johan AT balder>
9079
9080         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9081
9082 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9083
9084         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9085         * doc/cdbfileformat.lyx: added, written by Lenny Story
9086         * doc/Makefile: added cdbfileformat.lyx
9087         * doc/clean.mk: added cdbfileformat.lyx
9088
9089 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9090
9091         * src/mcs51/peeph.def: fix bug #705773
9092
9093 2003-03-20    <johan AT balder>
9094
9095         An sfr/sbit can have an "at #" AND an initializer
9096         * src/SDCCsymt.c (checkSClass):
9097         * src/SDCCmem.c (allocGlobal):
9098         * src/SDCCmem.c (allocLocal):
9099         * src/SDCCast.c (createBlock):
9100
9101 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9102
9103         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9104
9105 2003-03-16    <johan AT balder>
9106
9107         Undid the hackup of const and volatile, the problem is much bigger
9108         * src/SDCC.y:1.65
9109         * src/SDCCast.c:1.171
9110         * src/SDCCglue.c:1.138
9111         * src/SDCCicode.c:1.146
9112         * src/SDCCsymt.c:1.150
9113         * src/SDCCval.c:1.65
9114
9115 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9116
9117         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9118         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9119
9120 2003-03-13    <johan AT balder>
9121
9122         Hackup const and volatile modifiers in type chains a bit:
9123         * src/SDCC.y:1.63
9124         * src/SDCCast.c:1.169
9125         * src/SDCCglue.c:1.136
9126         * src/SDCCicode.c:1.143
9127         * src/SDCCsymt.c1.146
9128         * src/SDCCsymt.h1.59
9129         * src/SDCCval.c:1.63
9130
9131 2003-03-12    <johan AT balder>
9132
9133         * src/SDCCBBlock.h: more LRH debugging junk
9134         * src/SDCCcflow.h: more LRH debugging junk
9135         * src/SDCCloop.c: more LRH debugging junk
9136         * src/SDCC.y (struct_declaration): fixed bug #697590
9137         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9138         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9139         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9140
9141 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9142         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9143         test function names must now match exactly).
9144         * src/SDCCcse.c: added special case in findCheaperOp to allow
9145         extending a short integer. Makes less awful code for bug 700121 test case.
9146
9147 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9148
9149         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9150         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9151
9152 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9153
9154         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9155         actually called (operandsNotEqual() was called for all
9156         operandsNotEqualX tests).
9157
9158 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9159
9160         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9161         with shorter literals. Fixes bug 700121.
9162
9163 2003-03-11    <johan AT balder>
9164
9165         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9166
9167 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9168
9169         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9170         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9171
9172 2003-03-10  Borut Razem <borut.razem AT siol.net>
9173
9174         * src/SDCCmain.c: pipe preprocessor's output
9175         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9176         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9177         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9178         which closes all pipes in pipeSet set
9179         * src/SDCCset.c: free deleted item in function deleteSetItem()
9180         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9181         moved from z80 to src subproject
9182         * .version: increased version number to 2.3.4
9183
9184 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9185
9186         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9187         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9188         * support/regression/ports/xa51/spec.mk: fix typo
9189
9190 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9191
9192         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9193
9194 2003-03-09  Borut Razem <borut.razem AT siol.net>
9195
9196         * src/SDCCmain.c: pipe preprocessor's output
9197         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9198         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9199         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9200         which closes all pipes in pipeSet set
9201         * src/SDCCset.c: free deleted item in function deleteSetItem()
9202         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9203         moved from z80 to src subproject
9204
9205 2003-03-09  Borut Razem <borut.razem AT siol.net>
9206
9207         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9208         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9209         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9210         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9211         * src/SDCCglobl.h: unification of WIN32 native definitions
9212
9213 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9214
9215         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9216
9217 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9218
9219         * src/configure.in:   check for endianess (even while cross-compiling)
9220         * src/configure:      check for endianess (even while cross-compiling)
9221         * src/configure_in.h: check for endianess (even while cross-compiling)
9222         * src/avr/gen.c:        remove old endianess stuff
9223         * src/mcs51/gen.c:      remove old endianess stuff
9224         * src/ds390/gen.c:      remove old endianess stuff
9225         * src/pic/gen.c:        remove old endianess stuff
9226         * src/pic/genarith.c:   remove old endianess stuff
9227         * src/pic/glue.c:       fix endianess check
9228         * src/pic16/gen.c:      remove old endianess stuff
9229         * src/pic16/genarith.c: remove old endianess stuff
9230         * src/pic16/glue.c:     fix endianess check
9231         * src/xa51/gen.c:       remove old endianess stuff
9232         * src/z80/gen.c:        fix endianess check
9233         * src/SDCCglue.c:       fix endianess check
9234         * src/ds390/peeph.def: fix bug 700036
9235
9236 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9237
9238         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9239         * src/configure: find appropriate data-types on host for SDCC's int and long
9240         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9241         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9242         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9243
9244 2003-03-07    <johan AT balder>
9245
9246         Just a big NOOP:
9247                 some minor cleanups before the big shot
9248                 OP_DEFS and OP_USES now use Kevin's protection
9249                 new option --nolabelopt
9250
9251         * src/SDCCBBlock.c:
9252         * src/SDCCast.c,:
9253         * src/SDCCcflow.c:
9254         * src/SDCCcse.c:
9255         * src/SDCCicode.c:
9256         * src/SDCCicode.h:
9257         * src/SDCClabel.c:
9258         * src/SDCCloop.c:
9259         * src/SDCCmain.c:
9260         * src/ds390/ralloc.c:
9261         * src/mcs51/ralloc.c:
9262         * src/pic/ralloc.c:
9263         * src/xa51/ralloc.c:
9264         * src/z80/ralloc.c:
9265
9266 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9267
9268         * src/pic/pcode.c (get_op): fix 64 bit warnings
9269         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9270         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9271         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9272         * support/regression/tests/malloc.c: fix 64 bit warnings
9273
9274 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9275
9276         * src/mcs51/gen.c (genMinus): fixed bug 696436
9277
9278 2003-03-02  Borut Razem <borut.razem AT siol.net>
9279
9280         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9281
9282 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9283
9284         * configure.in: test for mkstemp
9285         * sdccconf_in.h: add HAVE_MKSTEMP
9286
9287 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9288
9289         * device/include/ctype.h: removed warning while using --stack-auto
9290         * device/include/malloc.h: removed warning while using --stack-auto
9291         * device/include/string.h: removed warning while using --stack-auto
9292
9293 2003-02-23  Borut Razem <borut.razem AT siol.net>
9294
9295         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9296         because NDEBUG is defined (see man assert)
9297         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9298
9299 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9300
9301         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9302         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9303
9304 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9305
9306         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9307         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9308
9309 2003-02-18    <johan AT balder>
9310
9311         * as/mcs51/asmain.c (asmbl): module can start with a digit
9312         * as/z80/asmain.c (asmbl): module can start with a digit
9313
9314 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9315
9316         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9317         * src/asm.c: fix pipe() for Mingw32
9318
9319 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9320
9321         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9322         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9323         make -V work again; --c1mode reads now from stdin
9324         * doc/sdccman.lyx: added --c1mode
9325         * support/Util/SDCCerr.c: new messages for c1 mode
9326         * support/Util/SDCCerr.h: new messages for c1 mode
9327         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9328
9329 2003-02-15    <johan AT balder>
9330
9331         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9332
9333 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9334
9335         * doc/sdccman.lyx: Environment variables, -o and other minor things
9336
9337 2003-02-14    <johan AT balder>
9338
9339         * src/xa51/main.c: before anyone really tries to use it :)
9340
9341         * Install doc's in share/sdcc/doc
9342         * removed some obsolete files
9343         * Do a proper make distclean and uninstall
9344         M Makefile.common.in
9345         R sdccbuild.sh
9346         M as/Makefile
9347         M device/include/Makefile.in
9348         M device/lib/Makefile.in
9349         M doc/sdccman.lyx
9350         M link/Makefile
9351         M sim/ucsim/doc/Makefile.in
9352         M src/clean.mk
9353         R src/avr/peeph.rul
9354         R src/xa51/peeph.rul
9355         M support/cpp2/Makefile.in
9356         M support/makebin/Makefile
9357
9358
9359 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9360
9361         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9362
9363 2003-02-10  Borut Razem <borut.razem AT siol.net>
9364
9365         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9366         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9367         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9368         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9369         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9370         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9371         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9372         src/z80/Makefile.bcc: Borland Makefile cleanup
9373         * as/z80/Makefile.bcc: Added Borland Makefile
9374         * support/cpp2/borland.h: Removed
9375
9376 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9377
9378         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9379         * src/SDCC.lex: new pragma NOIV
9380         * src/SDCCglobl.h: new pragma NOIV
9381         * src/SDCCmem.c: new pragma NOIV
9382
9383 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9384
9385         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9386
9387 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9388
9389         * src/SDCCmain.c: signal handling is switched off by --debug
9390         * doc/Makefile: small fix for install; use clean.mk again
9391         * doc/clean.mk: clean *.pdf and *.html too
9392
9393 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9394
9395         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9396         * device/lib/printfl.c: fix a ds390 bug by making it portable
9397         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9398         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9399         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9400         * debugger/mcs51/cmd.c: converted multi-line string literals
9401         * sim/ucsim/globals.cc: converted multi-line string literals
9402         * src/SDCCmain.c: introduced signal handler to remove temp files
9403         * doc/Makefile: small tweaks, implement clean
9404         * doc: removed generated files
9405
9406 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9407
9408         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9409         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9410         Address Record is not correctly generated for DS390."
9411
9412 2003-02-02  Borut Razem <borut.razem AT siol.net>
9413
9414         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9415         * as/mcs51/asm.h: fixed compilation with Borland C
9416         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9417         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9418         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9419         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9420         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9421         src/z80/Makefile.bcc: delete $(LIB) only if exist
9422         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9423
9424 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9425
9426         * device/include/malloc.h: introduced NULL
9427         * device/include/string.h: introduced NULL
9428         * device/include/stdlib.h: introduced NULL
9429         * device/lib/_memcpy.c: removed NULL
9430         * device/lib/_strcat.c: removed NULL
9431         * device/lib/_strchr.c: removed NULL
9432         * device/lib/_strcmp.c: removed NULL
9433         * device/lib/_strcpy.c: removed NULL
9434         * device/lib/_strcspn.c: removed NULL
9435         * device/lib/_strlen.c: removed NULL
9436         * device/lib/_strncat.c: removed NULL
9437         * device/lib/_strncmp.c: removed NULL
9438         * device/lib/_strncpy.c: removed NULL
9439         * device/lib/_strpbrk.c: removed NULL
9440         * device/lib/_strrchr.c: removed NULL
9441         * device/lib/_strspn.c: removed NULL
9442         * device/lib/_strstr.c: removed NULL
9443         * device/lib/_strtok.c: removed NULL
9444         * device/lib/malloc.c: removed NULL, include own header
9445
9446 2003-02-02    <johan AT balder>
9447
9448         * 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
9449         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9450         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9451         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9452         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9453         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9454
9455 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9456
9457         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9458         area 'DATA'"
9459
9460 2003-02-01    <johan AT balder>
9461
9462         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9463
9464 2003-01-31    <johan AT CP255758-A>
9465
9466         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9467
9468 2003-01-30    <johan AT balder>
9469
9470         * src/SDCCBBlock.c: automatic bug detection
9471         * src/SDCCicode.c: automatic bug detection
9472
9473 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9474
9475         * src/SDCCglobl.h:   now --xram-size 0 works
9476         * src/SDCCmain.c:    now --xram-size 0 works
9477
9478 2003-01-29    <johan AT balder>
9479
9480         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9481
9482 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9483
9484         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9485         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9486         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9487         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9488         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9489         * src/SDCCmain.c:    Added options --xram-size and --code-size
9490
9491 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9492
9493         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9494         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9495
9496 2003-01-27    <johan AT balder>
9497
9498         * src/SDCC.y: fixed bug #613764
9499
9500 2003-01-26    <johan AT balder>
9501
9502         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9503         * src/SDCCsymt.h: fixed bug #673374
9504         * src/SDCCglue.c: fixed bug #661910
9505         * src/SDCCast.c: fixed bug #458099 and 673374
9506
9507 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9508
9509         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9510         * as/mcs51/strcmpi.h: added
9511         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9512         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9513         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9514         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9515         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9516         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9517         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9518         * as/mcs51/Makefile.aslink: new module strcmpi
9519         * as/mcs51/Makefile.asx8051: new module strcmpi
9520         * as/mcs51/Makefil.bcc: new module strcmpi
9521         * as/mcs51/Makefile.in: new module strcmpi
9522         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9523
9524 2003-01-26    <johan AT balder>
9525
9526         * src/SDCCglue.c: reverted back to 1.124
9527         * src/SDCCast.c: reverted back to 1.156
9528         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9529
9530 2003-01-25    <johan AT balder>
9531
9532         * src/SDCCglue.c: A better fix for bug #661910
9533         * src/SDCCast.c: A better fix for bug #661910
9534         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9535
9536 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9537
9538         * src/Makefile.in: remove spawn.o
9539         * src/SDCCmain.c: remove spawn.h
9540         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9541         * src/spawn.c: removed
9542         * src/spawn.h: removed
9543         * support/regression/ports/ds390/spec.mk: link with -r
9544
9545 2003-01-24    <johan AT CP255758-A>
9546
9547         * src/ds390/gen.c (aopOp): fixed bug #667458
9548         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9549         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9550         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9551
9552 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9553
9554         * src/mcs51/peeph.def: better assembler identation by Frieder
9555         * src/mcs51/gen.c: better assembler identation by Frieder
9556
9557 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9558
9559         * as/z80/string.h: removed for gcc 3.2
9560         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9561         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9562
9563 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9564
9565         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9566         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9567         * support/regression/Makefile: separate temp files for ports
9568         * support/regression/generate-cases.py: separate temp files for ports
9569         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9570         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9571
9572 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9573
9574         * moved tinitalk to device/examples/ds390
9575
9576 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9577
9578         * as/mcs51/lkmem.c: rflag is for DS390
9579         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9580         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9581                          (linkEdit): move mem- and map-files the same way as ihx-files
9582         * src/z80/main.c (_setDefaultOptions): removed --generic
9583         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9584         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9585         * src/pic/glue.c (picglue): --c1mode works again
9586         * src/pic16/glue.c (pic16glue): --c1mode works again
9587         * src/asm.c (printCLine): fix #660034
9588
9589 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9590
9591         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9592         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9593         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9594         * as/mcs51/lkmem (summary): better fix for sp problem
9595         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9596         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9597         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9598                                               remove --stack-after-data
9599
9600 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9601
9602         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9603         * src/SDCCutil.c (join): ugly bug: missing '\0'
9604         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9605
9606 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9607
9608         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9609         * src/port.h: typo
9610         * src/pic/main.c (_asmCmd): gpasm supports -o
9611         * src/z80/main.c: more general macros
9612         * device/lib/Makefile.in: remove intermediate files
9613
9614 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9615
9616         * .version: Bumped version number to 2.3.3
9617         * src/SDCCBBlock.c: new option -o
9618         * src/SDCCglobl.h: new option -o
9619         * src/SDCCglue.c: new option -o
9620         * src/SDCCmain.c: new option -o
9621         * src/asm.c: new option -o
9622         * src/ds390/main.c: new option -o
9623         * src/pic/glue.c: new option -o
9624         * src/pic/pcode.c: new option -o
9625         * src/pic/ralloc.c: new option -o
9626         * src/pic16/glue.c: new option -o
9627         * src/pic16/pcode.c: new option -o
9628         * src/pic16/ralloc.c: new option -o
9629         * src/z80/main.c: new option -o
9630         * device/lib/Makefile.in: use -o
9631         * support/regression/ports/ds390/spec.mk: use -o
9632         * support/regression/ports/gbz80/spec.mk: use -o
9633         * support/regression/ports/mcs51/spec.mk: use -o
9634         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9635         * support/regression/ports/z80/spec.mk: use -o
9636         * support/regression/ports/ucz80/spec.mk: use -o
9637         * support/regression/ports/xa51/spec.mk: use -o
9638         * support/regression/fwk/lib/timeout.c: fix usage string
9639
9640 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9641         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9642
9643 2003-01-07    <johan AT balder>
9644
9645         * src/SDCCast.c (decorateType): fixed bug #600035
9646
9647 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9648         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9649         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9650         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9651         * src/pic/pcode.c: outcommented unused variable to remove warnings
9652         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9653
9654 2003-01-06    <karl AT turbobit.com>
9655         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9656    regression tests.
9657
9658 2003-01-06    <johan AT balder>
9659
9660         * src/SDCCicode.c: fixed array add
9661
9662 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9663         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9664         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9665
9666 2003-01-04    <johan AT balder>
9667
9668         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9669
9670 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9671         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9672
9673 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9674         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9675         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9676
9677 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9678         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9679
9680 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9681         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9682
9683 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9684         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9685
9686 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9687
9688     * in \sdcc\as\mcs51\ changed these files in order to create an
9689     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9690     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9691     following files to include the previous two files: aslink.dsp,
9692     Makefile.aslink, Makefile.bcc, and Makefile.in.
9693
9694     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9695     .adb instead of .cdb
9696
9697 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9698
9699         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9700         value from option --iram-size.
9701
9702 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9703
9704         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9705         dram[] array.
9706
9707 2002-09-18    <wiml AT hhhh.org>
9708
9709         * SDCClrange.h: exposed setFromRange() and setToRange()
9710         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9711           packRegsForAccUse() (bug 542397)
9712         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9713           multiple times and emitting the fetch operations more than once
9714           added aopGetUsesAcc() function to allow binary operators to
9715           fetch their operands in the correct order; made genMinus() emit
9716           compact code for X = LITERAL - Y
9717
9718 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9719         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9720         sprintf() in line 1267.
9721
9722 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9723         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9724         like ports.
9725
9726 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9727         Changes to aslink (All the changes are marked with 'JCF'):
9728
9729         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9730         summary().
9731
9732         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9733         area BSEG.  Also moves, if possible, the DATA area down into the internal
9734         ram so more space is available.
9735
9736         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9737         sflag.
9738
9739         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9740         not bytes.  Function summary() which creates a memory usage summary
9741         file with extension .mem.  Reports of overlaping stack and small stack
9742         size.  If the space for the stack is less than 16 bytes aslink trows a
9743         warning.
9744
9745         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9746         the 8051.  Option 'y' for memory summary output file.
9747
9748         Changes to sdcc (All the changes are marked with 'JCF'):
9749
9750         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9751
9752         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9753         overlaying area for it (uses RegBankUsed[4]).
9754
9755         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9756         bank zero as used by default.  By default aslink locates the stack
9757         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9758         the creation of the .mem file.  Delegates the allocation of data area
9759         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9760         the begining of the stack area to aslink.
9761
9762         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9763         glue() in SDCCglue.c creates an area for it.
9764
9765 2002-09-03  Borut Razem <borut.razem AT siol.net>
9766         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9767         sdcc/src/pic/glue.c:
9768         introduced atexit() handler for teporay files removal in case of
9769         errors, assertions, ...
9770
9771 2002-08-29  Borut Razem <borut.razem AT siol.net>
9772         * sdcc/support/cpp2/auto-host_vc_in.h:
9773         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9774         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9775         Maybe there is a similar problem with BORLANDC? It should be checked!
9776
9777         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9778         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9779         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9780         was not executed, and the compiler (cl) launched a warning:
9781         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9782
9783 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9784         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9785
9786 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9787         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9788
9789         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9790           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9791           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9792           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9793           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9794           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9795           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9796         - added Release configuration in VS projects
9797         - review of compiler an linker options
9798         - VC .exe files are generated in bin_vc directory, not to interfere
9799           with binaries generated from other projects (cygwin, mingw, bcc ...)
9800
9801         * sdcc/src/yacc.dsp: added
9802
9803         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9804         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9805         and insert the version number definitions from .version
9806
9807         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9808
9809         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9810         added - genarate auto-host.h using auto-host_vc_in.h as template
9811
9812         * sdcc/sdcc_vc.h,
9813         removed from CVS, generated automatically
9814
9815 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9816         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9817
9818 2002-08-11  Borut Razem <borut.razem AT siol.net>
9819         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9820
9821 2002-08-10  Borut Razem <borut.razem AT siol.net>
9822         * src/SDCCmain.c (main):
9823         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9824         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9825         The consequence was that some temporary files were not removed.
9826
9827         * src/SDCCglue.c:
9828         unification of code in functions tempfilename() and tempfile():
9829         function tempnam() is defined in Visual Studio 6.0 and .NET
9830
9831         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9832
9833         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9834           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9835         - removed compiler command line option /WX: Treats all warnings as errors
9836         - update a list of source files, included into the project
9837
9838         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9839           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9840         changed project type to Generic Project so that can be correcly converted to VS.NET project
9841
9842         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9843
9844         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9845
9846         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9847
9848         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9849         added return 0 statements after assert() to make compiler happy
9850
9851         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9852         added newline in the def file to keep MSC compiler satisfied
9853
9854         * sdcc/src/z80/gen.c:
9855         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9856           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9857         - solved MSC error in function aopDump()
9858
9859         * sdcc_vc.h: define PREFIX as "\\sdcc"
9860
9861 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9862         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9863
9864 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9865         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9866         - Rewrote the register banking algorithm.
9867         - Added pCode live-range analysis to registers (for now, only non-used and
9868         singly-used registers optimized away)
9869
9870         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9871
9872         * 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.
9873
9874 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9875         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9876
9877 2002-04-22  Michael Hope  <michaelh AT vroom>
9878
9879         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9880
9881         * configure.in (DD_COPT): Added include support required for gbdk.
9882
9883         * .version: Bumped version number just to increase it.
9884
9885         * src/SDCCmain.c: Added -nostdinc to the default options.
9886
9887 2002-04-15  Michael Hope  <michaelh AT vroom>
9888
9889         * device/lib/z80/printf.c (sprintf): Added.
9890
9891         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9892
9893         * src/z80/peeph.def: Added transpose redundent load rule.
9894
9895         * src/z80/main.c: Added force callee saves for jaune.
9896
9897         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9898
9899         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9900
9901 2002-03-28  Johan Knol  <johan AT balder>
9902
9903         * src/SDCCval.c: fixed bug #532436
9904
9905 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9906         * /src/port.h:
9907         Added "char *Processor" field to the port structure.
9908
9909         * /src/SDCCmain.c:
9910         Added -p option. Allows port dependent processor to be specified.
9911
9912         * all ports:
9913         Initialized the new field char *Processor field to NULL in all ports
9914
9915         * /src/pic/*:
9916         Compiler generated registers for interrupt context saving
9917         were not getting allocated.
9918
9919 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9920
9921         * /src/SDCCast.c:
9922         Fixed left shift. Will promote the left side of a left shift
9923         if a) left shifting more than size of operand or b) when assigned
9924         to something size > size of left side
9925
9926 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9927         * src/pic/*
9928         tons of changes. Register allocation has been
9929         rewritten. Added customization for the various PICs. Flow
9930         analysis is restructured. ...
9931
9932         * src/pic/device.h:
9933         Added
9934
9935         * src/pic/device.c:
9936         Added. device.c is a PIC port hack to accomodate variations
9937         in PIC devices.
9938
9939 2002-03-13  Michael Hope  <michaelh AT vroom>
9940
9941         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9942
9943 2002-03-04  johanknol  <johanknol AT manik>
9944
9945         * /src/SDCCval.c: fixed
9946
9947         const unsigned char arr[][2] = { { 0, 1 } };
9948         t18.c:1: error: Initializer element is not constant
9949
9950 2002-03-04  bela  <bela AT manik>
9951
9952         * /device/include/mcs51reg.h:
9953         ds89c420 register definition update
9954
9955 2002-03-03    <johan AT FRIJA>
9956
9957         * support/Util/SDCCerr.c: did something, but don't no why anymore
9958
9959         * support/regression/tests/bug-524691.c: made it a little less shy
9960
9961         * src/SDCCast.c (decorateType): fixed bug #524697
9962
9963         * src/SDCCast.c: made some lineno improvements
9964
9965         * src/SDCCval.c (getNelements): changed warning to error
9966
9967         * src/SDCCglue.c (printIvalArray): changed warning to error
9968
9969         * src/SDCCicode.c: fixed a warning for mingw
9970
9971         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9972
9973         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9974
9975 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9976
9977         * src/ds390/peeph.def:
9978         Added some more peephole rules
9979
9980         * src/ds390/gen.c: Various fixes & enhancements
9981
9982         * src/SDCClrange.c, src/SDCClrange.h:
9983         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9984
9985         * src/ds390/ralloc.c:
9986         various fixes & enhancements (ds390) specific
9987
9988         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9989         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9990         from rallocs.
9991
9992         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9993
9994 2002-03-02    <johan AT FRIJA>
9995
9996         * src/SDCCast.c (decorateType): fixed bug #524708
9997
9998         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9999
10000         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10001
10002 2002-03-01  Michael Hope  <michaelh AT vroom>
10003
10004         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10005
10006         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10007
10008 2002-03-01    <johan AT FRIJA>
10009
10010         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10011
10012         * src/SDCCast.c (decorateType): fixed bug #524209
10013
10014         * src/SDCCval.c (valNot): fixed bug #524195
10015
10016 2002-02-26    <johan AT balder>
10017
10018         * src/xa51/gen.c: fixed a warning
10019
10020         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10021
10022         * src/SDCCast.c (decorateType): fixed bug #522534
10023
10024 2002-02-23    <johan AT balder>
10025
10026         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10027
10028 2002-02-22    <johan AT balder>
10029
10030         * src/SDCCast.c: fixed bug #514865
10031
10032         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10033
10034 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10035
10036         * sdcc/src/SDCCloop.c:
10037         Previous fix was not good. basic blocks that have "break" or "return" are
10038         not really partof a loop , but live ranges used in these blocks should
10039         be live thru the entire loop, so set partOfLoop but don't add them to
10040         loop region
10041
10042 2002-02-21    <johan AT FRIJA>
10043
10044         * src/SDCCcse.c: fixed bug #514308
10045
10046 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10047
10048         * src/SDCCloop.c:
10049         Fixed BUG #519583. If a conditional block ended in a return/break
10050         statement inside a loop, it was not being considered part of the loop.
10051
10052         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10053
10054 2002-02-10  Karl Bongers <karl AT turbobit.com>
10055
10056         * debugger/*:
10057         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10058         with lots of comments and notes.
10059
10060         * device/examples/test2.c:
10061         Fix bug, "red" variable not being initialized(compiler complained).
10062
10063         * device/examples/Makefile, examples/test3.c:
10064         Add Makefile in device/examples folder, compiles test3.c
10065         for use as a multiple module SDCDB test case.
10066
10067         * sim/ucsim/cmd.src/cmdset.cc:
10068         Took out debug printfs in ucsim "next" command.
10069
10070         * sim/ucsim/xa.src:
10071         Karl and Johan start ucsim XA support.  Most dissassembly working,
10072         about 75% emulation done(plenty of work remaining).
10073
10074         * sim/ucsim/z80.src:
10075         Add Z80 support to ucsim, add test-ucz80 regression test,
10076         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10077         Notice z80 compiler fails on examples/test3.c/crc code.
10078
10079 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10080
10081         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10082         Added support for --parms-in-bank1
10083
10084         * src/ds390/peeph.def:
10085         added a few more peephole optimzations
10086
10087         * src/ds390/main.c:
10088         1) added __builtin_inp & __builtin_outp used to read in data of given length
10089            from a memory mapped port
10090         2) added __builtin_memcmp
10091         3) added __builtin_swapw swap bytes of a short
10092
10093         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10094         1) handle multiple send & receives from register bank1
10095         2) ralloc can now allocate DPTR1 to some liveRanges
10096
10097         * src/SDCCsymt.c, src/SDCCsymt.h:
10098         changes to handle multiple sends & receives
10099
10100         * src/SDCCptropt.h:
10101         added some pointer arithmetic optimization
10102
10103         * src/SDCCptropt.c:
10104         added some pointer arithmetic optimizations but not stable yet so not
10105         called from anywhere (will get this working shortly)
10106
10107         * src/SDCCopt.c: fixed for multiple sends & receives
10108
10109         * src/SDCCmain.c:
10110         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10111         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10112            set preprocessor defines (depending on options)
10113
10114         * src/SDCCicode.c, src/SDCCicode.h:
10115         changes made to handle multiple sends & receives
10116
10117         * src/SDCCglobl.h:
10118         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10119
10120         * src/SDCCcse.c, src/SDCCcse.h:
10121         added function findbackward def (to be used in upcoming optimization)
10122
10123         * src/SDCCcflow.c, src/SDCCcflow.h:
10124         added function returnAtEnd - to determine if a basic block terminates with
10125         a RETURN iCode
10126
10127         * src/SDCCast.c, src/SDCCast.h:
10128         added option parms-in-bank1
10129
10130         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10131         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10132         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10133         adjusted for --parms-in-bank1 option
10134
10135         * device/include/string.h:
10136         donot redefine "reentrant" keyword
10137
10138         * device/include/ds80c390.h: Added some more SFRs
10139
10140 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10141
10142         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10143
10144 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10145
10146         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10147
10148 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10149
10150         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10151
10152 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10153
10154         * Added --xram-movc option
10155
10156 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10157
10158         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10159
10160 2002-01-11  Johan Knol
10161
10162         * Added math lib of Jesus Calvino-Fraga
10163
10164 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10165
10166         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10167         * support/regression/Makefile: new target test-mcs51-stack-auto
10168         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10169
10170 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10171
10172         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10173
10174 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10175
10176         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10177
10178 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10179
10180         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10181
10182         * src/SDCCglue.h: add definition for printIvalChar()
10183
10184 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10185
10186         * src/SDCCast.c: fix #498138 by Johan
10187
10188         * src/SDCCglue.c: fix #498138 by Johan
10189
10190 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10191
10192         * support/regression/Makefile: fix clean
10193
10194         * support/regression/ports/ds390/support.c: fix transmission of last character
10195
10196 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10197
10198         * /sdcc/src/ds390/gen.c:
10199         a) improved computing address of stack variable
10200         b) took out some #if 0 code
10201         c) improved parmBytes adjustment
10202         d) improved genPlusIncr & genMinusIncr
10203         e) genCmp could generate bad code (when left assigned to DPTR)
10204         f) Fixed bug in hasInc
10205
10206         * /sdcc/src/ds390/ralloc.c:
10207         a) packRegsForSupport could mess up live information (Fixed)
10208         b) packRegsDPTRuse could be incorrect for left & right shift
10209
10210         * /sdcc/src/mcs51/ralloc.c:
10211         packRegsForSupport could mess up the live information (Fixed)
10212
10213         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10214
10215         * /sdcc/src/SDCCast.c:
10216         can reverse a loop even if function call is present as long
10217         as the loop control variable is local & is not passed as parameter
10218
10219 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10220
10221         * /sdcc/ChangeLog: *** empty log message ***
10222
10223         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10224         More builtin function additions for TININative
10225
10226         * /sdcc/src/ds390/ralloc.c:
10227         Had broken the regression testsuite
10228
10229         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10230
10231         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10232         Added funcattr hasStackParms will be set for reentrant functions when there
10233         are paramteres on the stack, this helps in minimizing frame pointer generation
10234         typeFromStr can handle function pointers now
10235
10236         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10237         *** empty log message ***
10238
10239 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10240
10241         * /src/ds390/gen.c, /src/ds390/main.c:
10242         More builtin function additions for TININative
10243
10244         * /src/ds390/ralloc.c:
10245         Had broken the regression testsuite
10246
10247         * /src/SDCCast.c: Fixed a bug in dumptree
10248
10249         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10250         Added funcattr hasStackParms will be set for reentrant functions when there
10251         are paramteres on the stack, this helps in minimizing frame pointer generation
10252         typeFromStr can handle function pointers now
10253
10254         * /doc/builtins.txt, /doc/TININative.txt:
10255         *** empty log message ***
10256
10257
10258 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10259
10260         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10261         ALPHA version for -mTININative
10262
10263         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10264         updated to reflect changes in the port structure
10265
10266         * /src/port.h:
10267         added function do_assemble (similar to do_link) if non-null this function
10268         will be called to do assembly (-mTININative) requires a multi command
10269         assembly
10270         added function genAssemblerEnd will be called to generate assembler Epilogue
10271
10272         * /src/SDCCsymt.c:
10273         added _JavaNative to debug info printing
10274
10275         * /src/SDCCmain.c: added option --tini-libid
10276         added port->do_assemble function (-mTININative) has a multi command assemble
10277
10278         * /src/SDCCglue.c: Disabled "constExpr" check
10279         added port->genAssemblerEnd function
10280
10281         * /src/SDCCglobl.h: Added option --tini-libid value
10282
10283         * /src/SDCCast.h:
10284         tookout optimizeCompare from the header (has no external references)
10285
10286         * /src/SDCCast.c: made one more function "static"
10287
10288 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10289
10290         * src/z80/mappings.i: Added z80asm support.
10291
10292         * src/z80/main.c: Added z80asm support on --asm=z80asm
10293
10294         * src/z80/gen.c: Fixed asm portability issues.
10295
10296         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10297
10298         * src/SDCCglue.c (printExterns): Added global/extern split.
10299
10300 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10301
10302         * support/regression/Makefile: added test for mcs51 model large
10303
10304         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10305
10306         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10307
10308 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10309
10310         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10311
10312 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10313
10314         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10315
10316         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10317
10318 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10319
10320         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10321
10322         * support/regression/tests/simplefloat.c: Port to mcs51.
10323
10324 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10325         * support/regression/tests/bug-485362.c: Added.
10326
10327         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10328
10329         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10330
10331         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10332
10333         * src/z80/gen.c (aopDump): Added a dump function.
10334
10335 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10336         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10337
10338         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10339
10340         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10341
10342         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10343
10344         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10345
10346         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10347
10348         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10349
10350         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10351
10352         * support/regression/ports/ds390/support.c: Use tinibios.
10353
10354         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10355
10356 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10357
10358         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10359         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10360
10361         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10362
10363         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10364
10365 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10366
10367         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10368
10369         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10370         (packRegsForIYUse): Created and optimised.
10371
10372 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10373
10374         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10375 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10376
10377         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10378
10379         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10380
10381         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10382
10383 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10384
10385         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10386
10387         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10388
10389 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10390
10391         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10392
10393         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10394
10395         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10396
10397 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10398
10399         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10400         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10401         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10402
10403         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10404
10405         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10406         (genNotFloat): Added.
10407         (genUminusFloat): Added.
10408
10409         * device/lib/z80/Makefile: Added floating pt stubs.
10410
10411         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10412
10413         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10414
10415         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10416
10417 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10418
10419         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10420
10421         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10422
10423         * sdcc/support/regression/Makefile: Add port ds390.
10424
10425         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10426
10427         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10428
10429         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10430
10431         * sdcc/support/regression/ports/ds390/support.c: Added.
10432
10433         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10434
10435         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10436
10437         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10438
10439 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10440
10441         * device/include/malloc.h: Added z80 and gbz80 support.
10442
10443         * device/lib/gbz80/heap.s: Added.
10444
10445         * device/lib/z80/heap.s: Added.
10446
10447         * device/lib/malloc.c: Added z80 and gbz80 support.
10448
10449         * support/regression/tests/malloc.c (testMalloc): Added.
10450
10451         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10452
10453         * support/regression/tests/bug-478094.c: Added.
10454
10455         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10456
10457 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10458
10459         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10460
10461         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10462
10463         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10464
10465         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10466
10467         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10468
10469 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10470
10471         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10472
10473 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10474
10475         * support/regression/tests/bug-477927.c: Added.
10476
10477         * src/z80/peeph.def: Added minor rules.
10478
10479         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10480
10481         * src/z80/peeph.def: Added jump optimisation modification.
10482
10483 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10484
10485         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10486
10487 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10488
10489         * support/regression/tests/funptrs.c: Added.
10490
10491 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10492
10493         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10494
10495 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10496
10497         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10498
10499         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10500
10501         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10502         (movLeft2ResultLong): Created.
10503
10504         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10505         (joinPushes): Added.  Joins two char pushes into a word push.
10506
10507 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10508
10509         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10510
10511         * support/makebin/Makefile (install): Added creation of dest dir.
10512
10513 2001-10-24 Karl Bongers <karl AT turbobit.com>
10514
10515         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10516
10517 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10518
10519         * src/z80/ralloc.c: Turned off faulty pack for one use.
10520
10521         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10522
10523         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10524
10525 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10526
10527         * support/regression/Makefile: Improved clean
10528
10529         * support/regression/ports/gbz80/spec.mk: Added clean
10530
10531         * support/regression/ports/host/spec.mk: Added clean
10532
10533         * support/regression/ports/z80/spec.mk: Added clean
10534
10535         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10536
10537         * support/regression/ports/mcs51/timeout.c: little improvements
10538
10539 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10540
10541         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10542
10543         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10544
10545         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10546
10547 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10548
10549         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10550
10551         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10552
10553 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10554         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10555
10556         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10557
10558         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10559
10560         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10561
10562         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10563
10564         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10565
10566         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10567
10568         * support/regression/tests/longor.c: Added.
10569
10570 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10571
10572         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10573
10574         * as/mcs51/aslink.h: define PATH_MAX
10575
10576         * as/mcs51/asm.h: define PATH_MAX
10577
10578         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10579
10580         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10581
10582         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10583
10584         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10585
10586         * src/SDCCglobl.h: define PATH_MAX
10587
10588         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10589
10590         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10591
10592 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10593
10594         * src/z80/gen.c (gencjneshort): Fixed
10595
10596         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10597
10598 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10599
10600         * support/regression/tests/bug-469671.c: Added.
10601
10602         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10603
10604 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10605
10606         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10607
10608         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10609
10610 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10611
10612         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10613
10614         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10615
10616         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10617
10618         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10619
10620         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10621
10622         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10623
10624         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10625
10626 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10627
10628         * 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.
10629
10630         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10631
10632         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10633
10634 2001-10-07    <johan AT FRIJA>
10635
10636         * device/lib/gets.c (gets): fixed the return value.
10637
10638 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10639         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10640
10641         * 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.
10642
10643         * 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.
10644
10645         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10646
10647         * src/pic/gen.c: Removed Safe_strdup.
10648
10649         * configure.in: Added option to enable libgc support.
10650
10651         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10652         (bitVectUnion): Optimised.
10653         (bitVectIntersect): Optimised.
10654         (bitVectBitsInCommon): Optimised.
10655         (bitVectCplAnd): Optimised.
10656
10657         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10658
10659 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10660
10661         * src/SDCCmain.c: distinguish between assembler debug and plain options
10662
10663         * src/avr/main.c:   remove standard assembler options
10664
10665         * src/ds390/main.c: remove standard assembler options
10666
10667         * src/mcs51/main.c: remove standard assembler options
10668
10669         * src/port.h: removed "PENDING" comment
10670
10671 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10672
10673         * src/device/lib/_mulint.c  : new, with assember functions
10674
10675         * src/device/lib/_mullong.c : new, with assember functions
10676
10677         * src/device/lib/_divuint.c : with assember functions
10678
10679         * src/device/lib/_divsint.c : with assember functions
10680
10681         * src/device/lib/_divulong.c: with assember functions
10682
10683         * src/device/lib/_divslong.c: with assember functions
10684
10685         * src/device/lib/_moduint.c : with assember functions
10686
10687         * src/device/lib/_modsint.c : with assember functions
10688
10689         * src/device/lib/_modulong.c: with assember functions
10690
10691         * src/device/lib/_modslong.c: with assember functions
10692
10693         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10694
10695         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10696
10697         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10698                                       replaced _mululong.c and _mulslong.c by _mullong.c
10699
10700 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10701
10702         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10703
10704 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10705
10706         * src/SDCCglue.c: test, if win32api is available for MINGW
10707
10708 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10709
10710         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10711         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10712         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10713         * support/regression/ports/host/spec.mk: removed GENERIC
10714         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10715         * support/regression/ports/z80/spec.mk: removed GENERIC
10716
10717 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10718
10719         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10720
10721         * support/regression/tests/bug-467035.c: Created.
10722
10723 2001-10-01    <johan AT FRIJA>
10724
10725         * src/SDCC.y: fixed bug #466586 part 1
10726
10727 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10728
10729         * SDCCicode.c: z80 has no generic pointers
10730         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10731
10732 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10733
10734         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10735
10736 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10737
10738         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10739
10740         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10741
10742 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10743
10744         * configure.in: Fixed up so that ucsim is only configured once.
10745
10746         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10747
10748         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10749         (getPathDifference): As above.
10750
10751         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10752
10753         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10754
10755 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10756         * .version: Updated to 2.3.1
10757
10758         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10759         Added copyright header.
10760
10761         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10762         (assemble): Added support for macro based assembler commands.
10763         (linkEdit): Added support for macro based linker commands.
10764         (preProcess): Changed the pre-processor to use macros.
10765         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10766         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10767
10768         * device/lib/z80/crt0.s: Added module name for debugging.
10769
10770 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10771
10772         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10773
10774         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10775
10776         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10777
10778         * src/Makefile.in: Added SDCCmacro and SDCCutil
10779
10780 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10781
10782         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10783
10784 2001-09-16    <johan AT FRIJA>
10785
10786         * 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.
10787
10788 2001-09-15    <johan AT FRIJA>
10789
10790         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10791         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10792
10793 2001-09-11    <johan AT FRIJA>
10794
10795         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10796
10797 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10798
10799         * support/regression/tests/bug-460444.c: Added test case.
10800
10801         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10802         (genCast): Added justification for all of the asserts.
10803
10804 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10805
10806         * support/regression/support.c: _xdata replaced by xdata
10807
10808         * support/regression/spec.mk: removed _generic
10809
10810 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10811
10812         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10813
10814         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10815         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10816
10817         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10818
10819         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10820
10821         * support/regression/tests/bug-460010.c: Added test case.
10822
10823         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10824
10825 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10826
10827         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10828
10829         * support/regression/testfwk.c: removed workaround for bug #436344
10830
10831         * support/regression/tests/bp.c: use less memory with mcs51
10832
10833         * support/regression/tests/bug-441448.c: use less memory
10834
10835         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10836
10837         * support/regression/collate-results.py: typo
10838
10839 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10840
10841         * support/regression/tests/fetchoverlap.c: Added new test case.
10842
10843         * support/regression/tests/bp.c: Added new test case.
10844
10845         * support/regression/tests/bug-448984.c: Added new test case.
10846
10847         * support/regression/tests/pow2shifts.c: Added new test case.
10848
10849         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10850         (genlshTwo): Fixed right shift for count > 8.
10851
10852         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10853
10854 2001-09-08    <johan AT FRIJA>
10855
10856         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10857
10858 2001-09-07    <johan AT FRIJA>
10859
10860         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10861
10862         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10863
10864 2001-09-06    <johan AT FRIJA>
10865
10866         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10867         * bernhard noted me at this: "() equals to (void)" (1.38)
10868
10869 2001-09-05    <johan AT FRIJA>
10870
10871         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10872
10873 2001-09-04    <johan AT FRIJA>
10874
10875         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10876
10877
10878 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10879
10880         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10881
10882 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10883
10884         * link/z80/aslink.h: Fixed path for PATH_MAX
10885
10886 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10887
10888         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10889
10890         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10891
10892         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10893
10894         * 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.
10895
10896 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10897
10898         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10899         (genCmp): Fixed up genCmp for the GB with longs.
10900
10901         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10902
10903         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10904
10905         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10906
10907         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10908
10909 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10910
10911         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10912
10913 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10914
10915         * 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.
10916
10917         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10918
10919 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10920
10921         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10922
10923         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10924
10925 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10926
10927   * sim/ucsim/configure:    little improvement of Cygwin-detection
10928   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10929   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10930   * support/regression/tests/bug-221100.c: small changes for mcs51
10931   * support/regression/tests/bug-221168.c: small changes for mcs51
10932   * support/regression/tests/bug-227710.c: small changes for mcs51
10933   * support/regression/tests/staticinit.c: small changes for mcs51
10934   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10935   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10936   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10937
10938 $Revision$