* src/pic/device.c (find_device): removed debug output
[fw/sdcc] / ChangeLog
1 2006-04-11 Raphael Neider <rneider AT web.de>
2
3         * src/pic/device.c (find_device): removed debug output
4           (list_valid_pics): enabled verbose listing of supported devices
5         * device/include/stdbool.h: define bool as char for pic14/16 as well
6
7 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8
9         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
10
11 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
12
13         * .version: bumped version to 2.5.6
14         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
15
16 2006-04-06 Raphael Neider <rneider AT web.de>
17
18         * .version: bumped version to 2.5.6 (pic14 ABI changed)
19         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
20         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
21           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
22             pic14_constructAbsMap
23           (pic14printPublics): declare absolute global symbols as global
24           (pic14createInterruptVect),
25         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
26           (newReg): assume new registers unused, use correct name in
27             hashtable (reg->name instead of name), more debugLog output
28         * src/pic/device.h (PIC_device): added fields for verbose output
29         * src/pic/device.c: moved device definition to pic14devices.txt,
30             added routines for runtime parsing of pic14devices.txt,
31             added support for second config word
32         * src/pic/main.c (_process_pragma): removed #pragma maxram,
33           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
34           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
35           (_pic14_parseOptions): moved pCodeInitRegisters here
36           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
37         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
38           (pCodeInitRegisters): rewrapped comments, perpared new approach to
39             handling the pseudo stack
40         * device/lib/Makefile.in: ignore failures in objects-pic16,
41         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
42         * device/lib/pic/NEWS: document new dependency on picXXX.lib
43         * device/lib/pic/Makefile.subdir,
44         * device/lib/pic16/Makefile.subdir: improved clean rules
45         * device/lib/pic/libdev/: NEW, pic14 device libraries
46         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
47         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
48         * device/include/Makefile.in: create subdir and install pic14 headers
49         * device/include/pic/p16f_common.inc: removed unused declarations
50         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
51             PICs from inc2h.pl v1.6,
52             replaced BIT_AT macros with struct declarations
53         * device/include/pic/pic14devices.txt: definition of supported devices,
54             all above improvements contributed by Zik Saleeba, thanks
55         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
56         * support/scripts/sdcc.nsi: also install pic14 device libraries and
57             headers
58
59 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
60
61         * device/include/mcs51/c8051f410.h: added interrupt numbers,
62         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
63           thanks to Charles Olds
64
65 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
66
67         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
68
69 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
70
71         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
72         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
73         * support/regression/bug1464657.c: added, new test
74
75 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
76
77         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
78           version number
79
80 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
81
82         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
83           --no-peep and --peep-file <file> are used don't use default rules but
84           do use the <file>
85
86 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
87
88         * src/mcs51/gen.c (genCall): fixed bug 1457608
89
90 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
91
92         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
93         changes seem to cause (trigger?) problems with the build system.
94
95 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
96
97         * src/SDCCpeeph.c (operandsLiteral): new, added,
98           (callFuncByName): inserted operandsLiteral
99         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
100
101 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
102
103         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
104         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
105
106 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
107
108         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
109           implemented patch 1120823 Thanks to Willy De la Court (normal
110           interrupts need an interrupt number now if they are made critical),
111           and enabled nesting of critical functions though not for gbz80
112           (genCritical, genEndCritical): added functions
113           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
114         * src/z80/mappings.i: added "ei" to all mappings
115
116 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
117
118         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
119         submitted by the Debian SDCC maintainer Aurelien Jarno:
120         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
121         archive with gcc 4.1 on mips and wrote the patch"
122
123 2006-03-16 Raphael Neider <rneider AT web.de>
124
125         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
126           the left operand is shorter than the result (c* = lit-c* + int),
127           fixes bug #1450796
128         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
129           OP_SYMBOL
130
131 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
132
133         * src/.version: increased version number to 2.5.5
134         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
135         linking is done manually in pic16 port's _linkEdit,
136         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
137         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
138         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
139         allocate asmop as AOP_ACC,
140         (aopForRemat): added parameter 'bool result' in function declaration,
141         (pic16_aopGet): return AOP_ACC when accessing WREG,
142         (pic16_popGetTempReg): minor modification,
143         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
144         'pic16_allocWithIdx',
145         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
146         calling function in absolute addresses,
147         (genAssign): take into account AOP_ACC asmop,
148         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
149         * src/pic16/pcoderegs.c: some debug functions and lines added,
150         * src/pic16/ralloc.c (decodeRegType): added but commented out,
151         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
152         register too,
153         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
154         call to allocReg, not by manually allocating a new one,
155         (pic16_assignRegisters): now before going through the register
156         allocating functions mark all registers as free. This eliminates some
157         side effects resulting from peephole parser done earlier in the backbone
158
159 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
160
161         * src/SDCCicode.c (geniCodeLogic),
162         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
163
164 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
165
166         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
167           (genSend): bugfix, do not allocate and free twice,
168           (shiftRLong): handle partially overlapping aops
169         * support/regression/tests/bitopcse.c: fixed warning redefined idata
170
171 2006-03-08 Borut Razem <borut.razem AT siol.net>
172
173         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
174           for pic16
175
176 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
177
178         * support/regression/tests/bug1409955.c: new, added
179         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
180         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
181           (aopForSym, aopOp): increment asmop.allocated if reused,
182           (freeAsmop): decrement asmop.allocated and check for zero instead of
183           using asmop.freed,
184           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
185           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
186            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
187            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
188            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
189            genSignedRightShift, genRightShift, genDataPointerGet,
190            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
191            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
192             in reverse order from allocation,
193           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
194             added swappedLR to keep track
195         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
196           pdata & code for GCC, z80, gbz80 & hc08
197         * support/regression/tests/zeropad.c: moved defines to testfwk.h
198
199 2006-03-08 Raphael Neider <rneider AT web.de>
200
201         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
202
203 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
204
205         * device/include/mcs51/c8051f410.h: new SiLabs mcu
206         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
207         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
208
209 2006-03-06 Borut Razem <borut.razem AT siol.net>
210
211         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
212           made the linker quiet
213
214 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
215
216         * src/pic16/gen.c (genPcall): fixed bug #1443644
217         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
218         which dumps before the function entry point a data byte which represents
219         the number of the local variables used by the specified function, added
220         'xinst' for initial support for Extended Instruction Support,
221         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
222         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
223         port->fun_prefix anymore (may change later),
224         (genFunction, genEndFunction): do not store/restore local registers for
225         _main (this should take care the --main-return command line option in
226         the future),
227         (genOr): removed some legacy pic-port instructions,
228         * src/pic16/genarith.c (genAddLit): re-enabled old code because
229         performing operations with SFR's causes data to be written more than
230         once to each SFR. Perhaps SFRs should be handled in special cases...
231         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
232         pcode.h
233         * src/pic16/main.c (_process_pragma): stack bound checking did not take
234         into account for stack starting position,
235         (struct OPTIONS pic16_optionsTable): added command line argument
236         --extended or -y for Extended Instruction Support,
237         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
238         (deassignLRs): *** perhaps the most important change, old 'for' code
239         (commented out for reference), didn't account for some registers which
240         were left marked 'not free' after a pointer operation. The change
241         reduces register usage a lot in some cases
242
243 2006-03-04 Borut Razem <borut.razem AT siol.net>
244
245         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
246           _clean
247         * support/regression/tests/bug-524697.c: decreased array size for
248           mcs51 to fit into the internal RAM
249         * support/regression/Makefile.in: a little bit more verbose
250
251 2006-03-03 Borut Razem <borut.razem AT siol.net>
252
253         * support/regression/fwk/lib/testfwk.c,
254           support/regression/fwk/include/testfwk.h: introduced function
255           _prints(), nonrecursive _printn(), call _initEmu() from main()
256         * support/regression/ports/gbz80/support.asm,
257           support/regression/ports/ucz80/support.asm,
258           support/regression/ports/z80/support.asm,
259           support/regression/ports/ds390/support.c,
260           support/regression/ports/hc08/support.c,
261           support/regression/ports/host/support.c,
262           support/regression/ports/mcs51/support.c,
263           support/regression/ports/xa51/support.c: added empty _initEmu()
264           function
265         * support/regression/ports/pic16/gpsim.cmd,
266           support/regression/ports/pic16/spec.mk,
267           support/regression/ports/pic16/support.c,
268           support/regression/Makefile.in: added pic16 regression test
269
270 2006-03-01 Raphael Neider <rneider AT web.de>
271
272         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
273           genConstPointerGet): use safe way of generating MOVFF to cover
274             literals as well as registers, fixes bug #1440527
275         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
276             dereference
277           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
278             more correctly, fixes bug #1232186
279           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
280         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
281             gplink guess the correct processor in more cases, applied patch
282             from Till Riedel attached to and fixing bug #1436552
283
284 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
285
286         * support/regression/tests/array.c: added, contains check for #1434401
287         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
288
289 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
290
291         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
292         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
293         * device/include/mcs51/c8051f326.h,
294         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
295         * device/include/mcs51/c8051f000.h,
296         * device/include/mcs51/c8051f018.h,
297         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
298           PCON_IDLE,PCON_STOP and added sfr16 definitions
299
300 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
301
302         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
303           genGetWord): fixed bug 1409955
304
305 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
306
307         * device/include/hc08/mc68hc908gp32.h,
308         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
309
310 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
311
312         * src/SDCCast.c (constExprValue): return NULL if not a value
313         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
314         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
315         * support/regression/tests/bitfields.c: enabled signed bitfield for all
316
317 2006-02-13 Borut Razem <borut.razem AT siol.net>
318
319         * src/regression/ptrarg.c: added, fails due to bug #1430967
320         * src/regression/Makefile: ptrarg.c added, ...
321
322 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
323
324         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
325         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
326
327 2006-02-11 Borut Razem <borut.razem AT siol.net>
328
329         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
330           print "Processor: xxx" message to stdout only if --verbose
331
332 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
333
334         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
335         * support/regression/tests/bug1426356.c: added
336         * support/regression/tests/bitfields.c: removed 2 tests
337
338 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
339
340         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
341         * device/include/mcs51/c8051f330.h,
342         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
343           PCON_IDLE,PCON_STOP and added sfr16 definitions
344         * device/lib/_divsint.c,
345         * device/lib/_divuint.c,
346         * device/lib/_divulong.c,
347         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
348           register bank bug for small stackauto
349
350 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
351
352         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
353
354 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
355
356         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
357         * all.dsp: corrected several bin paths
358         * device/include/mcs51/c8051f120.h,
359         * device/include/mcs51/c8051f300.h,
360         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
361           to PCON_IDLE,PCON_STOP
362         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
363         * device/lib/printf_large.c (output_float): fixed bug 1388703
364         * support/regression/tests/bug1057979.c: added test for bug 1388703
365
366 2006-02-08 Raphael Neider <rneider AT web.de>
367
368         * src/pic/pcode.c (pciTRIS): fixed typo,
369           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
370           (LinkFlow): fixed handling of flows that end in a call,
371           (ReuseReg): perform safety check earlier
372         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
373             to work with flows at the beginning of a pBlock,
374             fixes #1426557 (Symbol not previously defined),
375           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
376             usage information
377           (RemoveUnusedRegisters): update register usage info
378         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
379             created, reuse existing ones instead
380         * src/pic/gen.c (genPcall): fixed #1424719
381
382 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
383
384         * link/z80/lkmain.c,
385         * link/z80/lklex.c,
386         * link/z80/lkdata.c,
387         * link/z80/aslink.h: fixed build on current cygwin:
388         replaced getline() by lk_getline()
389
390 2006-02-01 Borut Razem <borut.razem AT siol.net>
391
392         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
393           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
394           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
395           src/regression/bool1.c, src/regression/bool2.c,
396           src/regression/bool3.c, src/regression/call1.c,
397           src/regression/compare.c, src/regression/compare10.c,
398           src/regression/compare2.c, src/regression/compare3.c,
399           src/regression/compare4.c, src/regression/compare5.c,
400           src/regression/compare6.c, src/regression/compare7.c,
401           src/regression/compare8.c, src/regression/compare9.c,
402           src/regression/configword.c, src/regression/for.c,
403           src/regression/inline.c, src/regression/mult1.c,
404           src/regression/nestfor.c, src/regression/or1.c,
405           src/regression/pointer1.c, src/regression/ptrfunc.c,
406           src/regression/rotate1.c, src/regression/rotate2.c,
407           src/regression/rotate3.c, src/regression/rotate4.c,
408           src/regression/rotate5.c, src/regression/rotate6.c,
409           src/regression/rotate7.c, src/regression/string1.c,
410           src/regression/struct1.c, src/regression/sub.c,
411           src/regression/sub2.c, src/regression/switch1.c,
412           src/regression/while.c, src/regression/xor.c,
413           src/regression/create_stc, src/regression/simulate,
414           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
415           regression tests
416         * src/regression/gpsim_assert.h: added
417
418 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
419
420         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
421         ((void (code *) (void)) 0) ();
422         * as/hc08/aslex.c,
423         * as/hc08/aslink.h,
424         * as/hc08/asm.h,
425         * as/hc08/asmain.c,
426         * as/hc08/lkdata.c,
427         * as/hc08/lklex.c,
428         * as/hc08/lkmain.c,
429         * as/mcs51/aslex.c,
430         * as/mcs51/aslink.h,
431         * as/mcs51/asm.h,
432         * as/mcs51/asmain.c,
433         * as/mcs51/lkdata.c,
434         * as/mcs51/lklex.c,
435         * as/mcs51/lkmain.c,
436         * as/z80/aslex.c,
437         * as/z80/asm.h,
438         * as/z80/asmain.c: fixed build on current cygwin:
439         replaced getline() by as_getline()
440
441 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
442
443         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
444         declarator in the symbol chain
445         * src/SDCCsymt.h,
446         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
447         parameter list for function pointers
448         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
449         * support/regression/tests/bug-716242.c: added
450
451 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
452
453         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
454         offset if possible
455         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
456
457 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
458
459         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
460         inifinitely recurseable, added static
461         * support/regression/tests/bug-1408066.c: added
462
463 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
464
465         * src/SDCCicode.h,
466         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
467         renamed, added possibility to create "postLoopLbl"-labels
468         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
469         newiTempLoopHeaderLabel
470         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
471         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
472         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
473         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
474         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
475         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
476         (basicInduction): fixed bug #136564, made static,
477         (loopInduction): changed parameter of basicInduction, made static,
478         (addPostLoopBlock): added
479         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
480         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
481         findLoopEndSeq
482         * support/regression/tests/bug-136564.c: added
483         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
484         --std-sdcc99 to LIBSDCCFLAGS
485
486 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
487
488         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
489         while loop
490         * support/regression/tests/bug-1406131.c: added
491
492 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
493
494         * src/SDCCast.c (decorateType): fix promotion of unary minus
495         * src/SDCCsymt.c (computeType): beautified
496         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
497         (valUnaryPM, valComplement): fix sign and promotion,
498         (valNot): ANSI: result type is int (SDCC: unsigned char)
499         * support/regression/tests/uminus.c: speedup by removing superflous
500         test case 'int'
501         * support/regression/tests/onebyte.c: added promotion and signedness
502         tests for unary minus
503         * support/regressions/tests/bug-477927.c: disable warning about
504         uninitialized variables
505         * support/regression/tests/not.c: added
506
507 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
508
509         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
510         * src/mcs51/gen.c (gen51Code): show final register usage after
511         fillGaps in asm with --i-code-in-asm
512         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
513         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
514         incUsed, rliveClear, adjustIChain): made static,
515         (setFromRange): excluded because it's unused,
516         (findPrevUseSym, markWholeLoop): added,
517         (findPrevUse): rewritten; fixes bug 895992; now a complete search
518         through all branches of predecessors enables sdcc to emit the warning
519         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
520         (rlivePoint): made static, added parameter emitWarnings which is only
521         true during the first run out of two,
522         (findRecursiveSucc, findRecursivePred): removed,
523         (computeLiveRanges): made static, added parameter emitWarnings,
524         (dumpIcRlive): added for debugging only
525         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
526         removed prototype of setFromRange()
527         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
528         in call of computeLiveRanges()
529         * support/regression/tests/bug-895992.c: added
530         * support/regression/tests/bug-971834.c: added
531         * support/valdiag/tests/bug-895992.c: added
532         * support/valdiag/tests/bug-971834.c: added
533
534 2005-12-18 Raphael Neider <rneider AT web.de>
535
536         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
537           (genUnpackBits): improved code for direct operands,
538           (genPackBits): improved code for literal assignment to bitfields
539             and for direct destination operands (no FSR indirection),
540             prevented redundant AND, fixes #1362800,
541           (AccLsh): added parameter to disable masking of the result
542         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
543           skip instructions with side-effects (like incfsz),
544           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
545         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
546         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
547           fixes #1375263
548
549 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
550
551         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
552         volatile variables as spill location
553
554 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
555
556         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
557         replacing literals
558         * support/regression/tests/bug-1376320.c: added
559
560 2005-12-08 Raphael Neider <rneider AT web.de>
561
562         * src/pic/device.c: renamed is_shared to pic14_is_shared
563         * src/pic/gen.c (genIfx): re-enabled handling of sbits
564         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
565           (is_valid_identifier): added for above workaround
566
567 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
568
569         * device/lib/Makefile.in: fixed to enable port-specific-objects
570         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
571           char, thanks Hubert Sack
572         * doc/sdccman.lyx: documented --xstack-loc,
573           elaborated a bit more on interrupts and pitfalls,
574           removed "setjmp/longjmp unsupported",
575           documented some unsupported C99 features
576         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
577         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
578           if, thanks Hubert Sack
579         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
580         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
581           make make_library
582         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
583           regression tests can report resource usage (rfe 700441)
584         * support/regression/collate-results.py: report resource usage
585         * support/regression/ports/ds390/spec.mk,
586         * support/regression/ports/hc08/spec.mk,
587         * support/regression/ports/mcs51/spec.mk,
588         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
589         * support/regression/ports/ds390/uCsim.cmd,
590         * support/regression/ports/hc08/uCsim.cmd,
591         * support/regression/ports/mcs51/uCsim.cmd,
592         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
593         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
594           library, use the default one
595         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
596           building the library
597
598 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
599
600         * config.dsp: added dependency on .version and configure_vc.awk
601         * device/include/setjmp.h: updated for --stack-auto and --xstack
602         * device/include/mcs51/at89c51snd1c.h: corrected line endings
603         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
604         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
605         * device/lib/libsdcc.lib: added _setjmp
606         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
607           (decorateType): fixed bug 1372851,
608           (optimizeGetHbit): fixed warning
609         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
610           array initialisation
611         * support/regression/tests/bug1057979.c: added test for bug 1358192
612         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
613
614 2005-12-03 Borut Razem <borut.razem AT siol.net>
615
616         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
617           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
618
619 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
620
621         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
622         createIval): implement symbol independant "flexible array member",
623         (createIvalCharPtr): implemented flexible array initialisation with a
624         string
625         * src/SDCCsymt.c (copyStruct): removed,
626         (getSize): fixed misleading comment,
627         (getAllocSize): removed, the additional allocation size is now in
628         sym->flexArrayLength,
629         (checkStructFlexArray): new, syntax checks for flexible array members,
630         (compStructSize): added syntax checks for "flexible array members"
631         (copyStruct): removed,
632         (copyLinkChain): removed inefficient fix for bug 770487
633         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
634         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
635         symbol->flexArrayLength
636         * src/SDCCerr.c,
637         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
638         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
639         * support/regression/tests/structflexarray.c: added
640         * support/valdiag/tests/structflexiblearray.c: added
641
642 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
643
644         * src/SDCCast.c (decorateType): fixed bug 1368489
645         * support/Util/SDCCerr.c,
646         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
647
648 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
649
650         * device/include/mcs51/at89c51snd1c.h: added file submitted by
651           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
652
653 2005-11-27 Borut Razem <borut.razem AT siol.net>
654
655         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
656           support/cpp2/mkdeps.h: added command line option
657           -obj-ext=<extension> to SDCPP to define object file externion, used
658           for generation of make dependencies (-M)
659         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
660
661 2005-11-26 Borut Razem <borut.razem AT siol.net>
662
663         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
664           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
665           added pic and pic16 libraries
666
667 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
668
669         * device/include/float.h: Corrected typo in prototype of __fsgt
670
671 2005-11-25 Borut Razem <borut.razem AT siol.net>
672
673         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
674           added creation of model-mcs51-stack-auto libraries
675
676 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
677
678         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
679         and fields-list too
680         * src/SDCCast.c (createIvalArray): removed obsolete comment
681
682 2005-11-24 Borut Razem <borut.razem AT siol.net>
683
684         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
685           added missing device/lib/mcs51/crt*.asm sources
686
687 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
688
689         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
690
691 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
692
693         * device/lib/_fs2schar.c,
694         * device/lib/_fs2sint.c,
695         * device/lib/_fs2slong.c: optimized inline asm
696
697 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
698
699         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
700           Better handling of floats between -1.0 and 0.0.
701
702 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
703
704         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
705           (the missing "if"s prohibited removal of redundant labels)
706
707 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
708
709         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
710           Properly convert floats between -1.0 and 0.0 to long, int, and char
711           types (max integer value of negative floats tends to zero).
712         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
713           Removed changes made so to work properly with floats between
714           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
715           and _fs2char.c
716
717 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
718
719         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
720         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
721         (genCast) cosmetic change
722         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
723         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
724         from mcs51
725         * support/regression/tests/bitfields (testSignedBitfields): added
726
727 2005-11-18 Borut Razem <borut.razem AT siol.net>
728
729         * sdcc/device/lib/Makefile.in: remove all unnecessary files
730         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
731           introduced SILENT option to make building of pic16 libraries less
732
733 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
734
735         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
736           Now they work properly with floats between -1.0 and 0.0
737         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
738
739 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
740
741         * src/SDCCicode.c (printOperand): added missing else
742
743 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
744
745         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
746         reformatted for better readability
747         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
748         signed bitfields
749
750 2005-11-17 Borut Razem <borut.razem AT siol.net>
751
752         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
753           introduced SILENT option to make building of pic16 libraries less
754           verbose - used for nightly snapshot build
755         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
756           available on Win32 platforms.
757         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
758           medium, large, pic and pic16
759
760 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
761
762         * device/lib/printf_large.c: Temporary patch for bug 1358192:
763           printf("%f"...) sets fraction to zero.
764
765 2005-11-16 Raphael Neider <rneider AT web.de>
766
767         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
768           fixes #1357221
769         * src/pic/gen.c (genIfx): implemented for CARRY bit
770         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
771           to generic pointers, fixes #1357332,
772           (pic16_movLit2f): NEW,
773           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
774
775 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
776
777         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
778
779 2005-11-11 Raphael Neider <rneider AT web.de>
780
781         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
782         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
783           compute pointer's type from operand,
784           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
785           improved single bit reads, fixes bug #1353379
786
787 2005-11-09 Borut Razem <borut.razem AT siol.net>
788
789         * support/scripts/sdcc.nsi: added lib/pic to the package
790
791 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
792
793         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
794
795 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
796
797         * support/regression/tests/bug1348008.c: added
798         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
799         * support/regression/tests/bug1337835.c: updated comment
800
801 2005-11-06 Borut Razem <borut.razem AT siol.net>
802
803         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
804           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
805           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
806           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
807           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
808           dynamic construction of cl_error_class and derivates - 2.nd try
809
810 2005-11-05 Borut Razem <borut.razem AT siol.net>
811
812         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
813           bug, which caused Bus Errors on sparc solaris
814
815 2005-11-04 Borut Razem <borut.razem AT siol.net>
816
817         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
818           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
819           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
820           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
821           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
822           and derivates to resolve the initialization problem on OSX
823
824 2005-11-02 Borut Razem <borut.razem AT siol.net>
825
826         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
827           corrected typo - #include <winsock2.h>
828
829 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
830
831         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
832           (_asxxxx_mapping): added org directive for future enhancements
833
834 2005-11-01 Borut Razem <borut.razem AT siol.net>
835
836         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
837           enabled sockets on WIN32
838         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
839
840 2005-10-31 Borut Razem <borut.razem AT siol.net>
841
842         * support/regression/generate-cases.py: escape backslashes in {testcase}:
843           WIN32 backslash path delimiters should be escaped when used in C strings
844         * support/regression/tests/bitfields.c: exclude failing assertions for
845           __CYGWIN32__ and __MINGW32__ hosts
846
847 2005-10-30 Borut Razem <borut.razem AT siol.net>
848
849         * src/SDCCutil.c: corrected double comparison typo
850
851 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
852
853         * device/lib/medium/Makefile: added for new memory model medium
854         * device/include/asm/mcs51/features.h: updated for medium/pdata
855         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
856           added Multiply & Accumulate sbit's and MAC0_PAGE define
857         * device/include/mcs51/c8051f300.h: added sfr16 definitions
858         * device/include/mcs51/c8051f310.h: added sfr16 definitions
859         * device/lib/_mullong.c: update for medium model
860         * device/lib/incl.mk: added medium model
861         * doc/sdccman.lyx: documented medium model
862         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
863         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
864         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
865         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
866           (allocParms): set SCLS and OCLS to pdata for medium model
867         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
868           for pdata,
869           (powof2): return <0 if not power of 2
870         * src/avr/gen.c (genBitWise): use updated powof2
871         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
872           (shiftR2Left2Result): small optimization in setup, save acc when storing,
873           (shiftLLeftOrResult): use B if necessary
874         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
875         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
876         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
877         * support/regression/Makefile.in: added test-mcs51-medium
878         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
879
880 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
881
882         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
883         specifier unsigned
884         * device/lib/time.c (mktime): fixed bug 1334315
885
886 2005-10-28 Raphael Neider <rneider AT web.de>
887
888         * device/include/pic/p16f_common.inc: added common declarations
889         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
890
891 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
892
893         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
894           (aopPutUsesAcc): added to predict accumulator use,
895           (assignResultValue): save acc if necessary,
896           (genMinusDec): store result if indirectly addressed,
897           (genDivOneByte):  save acc if necessary,
898           (movLeft2Result): bugfix if left already in acc,
899           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
900             attention to accumulator use (esp. pdata),
901           (genReceive): receive pdata correctly
902         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
903         * src/SDCCicode.h: added isOperandInPagedSpace prototype
904
905 2005-10-27 Raphael Neider <rneider AT web.de>
906
907         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
908
909 2005-10-27 Raphael Neider <rneider AT web.de>
910
911         * .version: changed version to 2.5.4
912         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
913         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
914           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
915             arithmetics support routines
916         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
917         * device/lib/Makefile.in: also create installdir for pic
918
919         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
920           pic14 port as well
921         * src/pic/device.c (dump_sfr): rewritten to delegate register
922           placement to the linker (use `extern sym' rather than sym EQU addr),
923           (validAddress): fixed to check last specified address
924         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
925           (popGetLit): truncate literal value to 8 bit,
926           (popGet): moved assert to more appropriate place
927           (popGetExternal): create pCode operand from and mark the according
928             symbol as being `extern'
929           (popGetAddr): added sanity check on immediate's offset, provide
930             GPOINTER tag on demand
931           (aopPut): fixed for immediates,
932           (mov2w_op): move operand's address or contents to WREG (depending on
933             operand type), safer variant of mov2w,
934           (movwf,call_libraryfunc): NEW, handy abbreviations,
935           (get_argument_pcop,get_return_val_pcop,pass_argument,
936           get_returnvalue): interface for accessing function parameters and
937             return values,
938           (assignResultValuei,genRet): use new parameter/return value interface
939           (pic14_getDataSize): back to old version handling generic pointers,
940           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
941             provided implementation and/or fixed old one,
942           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
943             calls, removed legacy 8051 reference code
944           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
945           (loadSignToC): NEW, move the operands sign bit to CARRY,
946           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
947             genRightShiftSigned, accepts negative shift counts,
948           (setup_fsr): load FSR and adjust IRP (indirect memory access),
949           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
950             generic pointers, __data pointers and __code pointers,
951           (genUnpackBits,genPackBits): rewritten to work with generic pointers
952             and signed bitfields, limit bitfields to 8 bit,
953           (genDataPointerGet): fixed number of bytes read,
954           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
955           (genPointerGet,genPointerSet): fixed handling of __code pointers,
956             pointers to constant data are no longer assumed to point to __code
957             space, removed invalid pointer types,
958           (bitpatternFromVal): retrieve the PICs representation of an integer
959             or float literal,
960           (genDataPointerSet): fixed assigning to po_immediate operands,
961           (genGenPointerSet): implemented as library call,
962           (genIfx): fixed incorrect condition,
963           (genAddrOf): limit generic pointers' addresses to 2 bytes,
964             provide GPOINTER tag according to destination's storage class,
965           (genCast): added code to handle casting to generic pointers, added
966             sign-/zero extension of the result
967           (aop_isLitLike,op_isLitLike): fixed handling of immediates
968         * src/pic/gen.h: added macros to access IRP bit in STATUS register
969         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
970           extend the result
971         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
972           address/register resides in the shared banks
973           (emitSymbolToFile): improved to handle global and `pinned' symbols,
974             put all variables into separate sections (have the linker arrange
975             them)
976           (picglue): put init code and interrupt handlers in separate sections
977         * src/pic/main.c: added port specific options table, modified to PORT
978           structure to make GPOINTERs 3 byte, added pic14_options
979           (_pic14_do_link): private linking routine (update paths to libraries,
980             add libsdcc.lib by default)
981         * src/pic/main.h: declare pic14_options
982         * src/pic/pcode.c: fixed instructions i/o relations,
983           (RegCond): reverted to correct version,
984           (newpCodeOpLit): truncate literals to 8 bit,
985           (genericPrint): added debug output,
986           (getRegFromInstruction): fixed for various operand types, simplified
987           (BuildFlow): fixed broken handling of isntructions with labels
988           (LinkFlow): start at last instruction in flow (skip trailing comments),
989             pass the flow on to the next instruction after CALL
990           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
991           (insertPCodeInstruction): fixed inserting after a skip instruction,
992           (DoBankSelect): fixed for labeled instructions
993           (OptimizepBlock): honor --nopeep switch
994           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
995         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
996         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
997           (pCodeOptime2pCodes): allow disabling this optimization via
998             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
999             but is still buggy), started implementation of a dataflow based
1000             pCode optimization (CSE + dead code elimination)
1001           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1002         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1003           names are independant of the stack location and therefore portable across
1004           devices
1005
1006 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1007
1008         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1009           (selectSpil): fixed bug 1337835 by not spilling bit variables
1010         * support/regression/tests/bug1337835.c: added test for this bug
1011         * src/mcs51/peeph.def: restart after rule 3.c,
1012           addded rules 263.x to optimize loading constants
1013
1014 2005-10-26 Raphael Neider <rneider AT web.de>
1015
1016         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1017         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1018           (genAssign): emit warning when casting literals to generic pointer
1019             type, also applies when taking the address of a fixed variable,
1020           (genCast): improved casting to generic pointers
1021         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1022           extern variables, added verbose error message
1023         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1024
1025 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1026
1027         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1028         carry must be complemented too
1029         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1030         could be emitted by genMinus
1031         * src/SDCCval.c (constVal): fixed bug 1305065
1032
1033 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1034
1035         * src/SDCCast.c (addCast): added promotion for bit variables
1036         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1037         promotion casts + optimisation
1038         (optimizeGetWord): fix warning 'i' might be used uninitialized
1039         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1040         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1041
1042 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1043
1044         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1045         all chars are promoted to int; promotion should be handled in SDCCast.c
1046
1047 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1048
1049         * device/lib/_strcmp.c: Fixed bug 1326457
1050
1051 2005-10-11 Raphael Neider <rneider AT web.de>
1052
1053         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1054         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1055
1056 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1057
1058         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1059         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1060
1061 2005-10-04 Raphael Neider <rneider AT web.de>
1062
1063         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1064           device/lib/pic16/pics.all: added pic18f1320
1065         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1066
1067 2005-09-30 Raphael Neider <rneider AT web.de>
1068
1069         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1070         * src/pic16/devices.inc: NEW, provides device descriptions
1071         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1072
1073 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1074
1075         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1076           GETHBIT
1077
1078 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1079
1080         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1081           documented Any Order Bit, Higher Order Byte and Higher Order Word
1082         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1083         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1084           (optimizeGetAbit): new, to get any bit, not only the high bit,
1085           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1086           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1087           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1088           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1089             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1090             GETABIT, GETBYTE, GETWORD: decorate them,
1091           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1092           (ast_print): added GETABIT, GETBYTE, GETWORD
1093         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1094         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1095           (geniCodeBinary): new generic binary icode,
1096           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1097         * src/port.h: updated comment for PORT.hasExtBitOp
1098         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1099           (genGetByte): new, to get a single byte,
1100           (genGetWord): new, to get a word from a long,
1101           (gen51Code): added GETABIT, GETBYTE, GETWORD
1102         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1103
1104 2005-09-23 Raphael Neider <rneider AT web.de>
1105
1106         * configure.in, configure: have device/lib/pic configured
1107         * device/lib/Makefile.in: added model-pic14
1108         * device/lib/clean.mk: added pic/ to clean rule
1109         * device/lib/pic: added rudimentary pic14 library providing support
1110           functions for multiplication/division/generic pointer access
1111         * src/SDCCopt.c (convilong): mark support functions as extern
1112           for pic14 port as well
1113         * src/pic/gen.c (genMult): added assertions,
1114           (genpic14Code): emit warning on unhandled iCodes
1115         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1116         * src/pic/pcode.c (pCodeOpCopy),
1117         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1118           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1119           SFR_REGISTER}), made safe for future extensions
1120         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1121           instructions even if preceeded by SKIP instructions (also remove
1122           them); removed unused code
1123         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1124           prevents leaving parts of the structure uninitialized after copying
1125
1126 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1127
1128         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1129           ago by me
1130         * support/regression/tests/addsub.c: added test for the bug
1131
1132 2005-09-21 Raphael Neider <rneider AT web.de>
1133
1134         * device/include/pic16/pic18f1220.h,
1135           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1136         * device/lib/pic16/Makefile.rules: added missing opening paren
1137         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1138           are provided in genutils.c,
1139           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1140           operand/result sizes,
1141           (genCmp): assert on NULL pointers first, then check deref'ed values
1142         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1143           result size
1144
1145 2005-09-18 Raphael Neider <rneider AT web.de>
1146
1147         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1148           as these are now unused,
1149           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1150         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1151           local, avoids uninitialized pointer dereference on r->name
1152         * src/pic16/ralloc.c (newReg): fixed indentation
1153
1154 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1155
1156         * src/SDCCval.c (constVal): fixed bug 730366
1157         * support/Util/SDCCerr.c,
1158         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1159
1160 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1161
1162         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1163
1164 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1165
1166         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1167
1168 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1169
1170         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1171           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1172         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1173           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1174         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1175         * packihx/packihx.c (hexDigit): made c unsigned char
1176         * as/mcs51/lklibr.c (fndsym),
1177         * link/z80/lkgb.c (gb),
1178         * link/z80/lklibr.c (fndsym),
1179         * link/z80/lkrloc.c (relr),
1180         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1181         * src/SDCC.lex (checkCurrFile, process_pragma),
1182         * src/SDCCglue.c (spacesToUnderscores),
1183         * src/SDCCmain.c (setParseWithComma, processFile),
1184         * src/asm.c (tvsprintf, printCLine),
1185         * src/avr/gen.c (emitcode, aopPut),
1186         * src/ds390/gen.c (emitcode),
1187         * src/hc08/gen.c (emitcode, emitinline),
1188         * src/mcs51/gen.c (emitcode, genInline),
1189         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1190           tokenizeLineNode),
1191         * src/pic/ralloc.c (debugLog),
1192         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1193           tokenizeLineNode),
1194         * src/pic16/ralloc.c (debugLog),
1195         * src/z80/main.c (_process_pragma):
1196            made all ctype.h function calls safe
1197         * src/SDCCopt.c: include math.h for fabs
1198         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1199           and used them throughout the code to make ctype.h function calls safe
1200         * src/ds390/main.c (asmLineNodeFromLineNode),
1201         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1202         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1203            unsigned char*
1204         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1205           (newpCodeAsmDir): made ctype.h function calls safe
1206         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1207           pic16_emitcode):  made lbp unsigned char*
1208         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1209           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1210         * src/xa51/gen.c (emitcode),
1211         * src/z80/gen.c (_emit2): made lbp unsigned char*
1212         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1213            char*
1214
1215 2005-09-05 Raphael Neider <rneider AT web.de>
1216
1217         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1218           access bank splitpoint
1219
1220 2005-09-05 Raphael Neider <rneider AT web.de>
1221
1222         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1223
1224 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1225
1226         * .version: changed to version 2.5.3
1227         * doc/sdccman.lyx: changed version to 2.5.3,
1228           documented --codeseg and --constseg and pragma codeseg and constseg,
1229           documented bit parameters (reentrant) and bit returning
1230         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1231            currFunc->recvSize, but is this ok for all ports?
1232           (ast2iCode): result of ~ on unsigned char must be cast to int for
1233            bool to work
1234         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1235           function pointers in bit space
1236         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1237           (processFuncArgs): call port.reg_parm() with reentrancy info
1238         * src/port.h,
1239         * src/avr/main.c,
1240         * src/ds390/main.c,
1241         * src/hc08/main.c,
1242         * src/pic/main.c,
1243         * src/pic16/main.c,
1244         * src/xa51/main.c,
1245         * src/z80/main.c: port.reg_parm prototype extended with
1246           "bool reentrant" parameter
1247         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1248           options.stackAuto for allocating bit register parameters
1249         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1250           (genSend): set BitBankUsed if it is,
1251           (selectRegBank): factored out of genCall for use in genPcall,
1252           (genCall): removed redundant dtype assignmen, use selectRegBank,
1253           (genPcall): handle returning in Carry properly, save in F0 if needed,
1254           (genReceive): handle bit register parameters
1255         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1256           (mcs51_assignRegisters): enable bit registers for all reentrant
1257            functions and don't set BitBankUsed unconditionally
1258         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1259         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1260         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1261
1262 2005-08-27 Borut Razem <borut.razem AT siol.net>
1263
1264         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1265         ppc-osx (Darwin) does not support -u option. It seems that it is
1266         supported only on Linux - GNU cp
1267
1268 2005-08-25 Borut Razem <borut.razem AT siol.net>
1269
1270         * sim/ucsim/gui.src/serio.src/Makefile.in,
1271           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1272           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1273           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1274           install and strip, since the strip at /usr/ccs/bin should be used
1275           on solaris
1276
1277 2005-08-24 Borut Razem <borut.razem AT siol.net>
1278
1279         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1280
1281 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1282
1283         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1284         ffffffffu
1285
1286 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1287
1288         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1289         * as/mcs51/lkmain.c (link_main): fixed warning
1290         * device/include/stdbool.h: ds390 has no advanced bit support yet
1291         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1292         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1293         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1294           and updated their macros
1295         * src/SDCCval.c (constVal): updated comment for renamed b_long
1296
1297 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1298
1299         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1300         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1301           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1302           (oprio): set priority for '['
1303         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1304            and adb_24_bit
1305         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1306         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1307         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1308         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1309           added overlayable BIT_BANK area
1310         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1311           (summary2): explain 'T' in legenda
1312         * as/mcs51/lkrloc.c: replaced old K&R style,
1313           (relr): added R_BIT processing,
1314           (errmsg): added "Bit-addressable relocation error",
1315           (adb_bit): added for converting from byte- to bit-addressable space,
1316           (adb_24_bit): added for converting from byte- to bit-addressable space
1317         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1318            used in reentrant functions now even as return value
1319         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1320         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1321           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1322         * src/SDCCglobl.h: added indicator BitBankUsed
1323         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
1324            the bit registers b0-b7
1325         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
1326           (geniCodeCast): fixed bug 1263853,
1327           (geniCodeLogicAndOr): put result in bool or char,
1328           (geniCodeReceive): added parameter func for accessing the return type,
1329           (geniCodeFunctionBody): pass func to geniCodeReceive
1330         * src/SDCCmain.c: added indicator BitBankUsed
1331         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
1332         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
1333           (checkSClass): don't put automatic bool/bit on stack,
1334           (checkFunction): removed check on function cannot return bit
1335         * src/SDCCsymt.h: added newBoolLink prototype
1336         * src/mcs51/gen.c (rb1regs): added bit registers,
1337           (movc): created for assigning to carry,
1338           (pushReg, popReg): created for pushing registers,
1339           (sameRegs): check both AOP_REG and AOP_CRY types,
1340           (aopOp): handle bit registers,
1341           (aopPut): optimization no self-assign,
1342           (saveRegisters): push reg->base (bits) only once for bit registers,
1343            and use pushReg,
1344           (unsaveRegisters): pop reg->base only once and use popReg,
1345           (assignResultValue): added parameter func and return in carry for bits,
1346           (genIpush): optimization no reload in A if not changed,
1347           (genSend): bit parameters in reentrant functions are passed in bit
1348            registers by first assigning to bits in B, then save registers and
1349            copy B to bits,
1350           (genCall): handle returning in Carry properly, save it in F0 if needed,
1351           (genPcall): updated assignResultValue call, this is not safe yet for bit
1352            returning function !!!
1353           (genFunction): don't generate equ's for bit registers and use pushReg,
1354           (genEndFunction): take care of bit returning functions and use popReg,
1355           (genRet): return bit in Carry,
1356           (genIfx): optimize bit registers and other directly addressable bits,
1357           (genReceive): updated assignResultValue call
1358         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
1359           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
1360            registers when using stack-auto
1361         * src/mcs51/ralloc.c (_G): added allBitregs,
1362           (regs8051): added the bit registers,
1363           (createStackSpil): use macro IS_BIT,
1364           (getRegBit): added to allocate a bit register, else spill,
1365           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
1366           (updateRegUsage): factored out to ease stepping while debugging,
1367           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
1368            also allocate bit registers,
1369           (fillGaps): handle bit registers,
1370           (findAllBitregs): added to create bit vector with all bit registers,
1371           (mcs51_allBitregs): returns this bit vector,
1372           (mcs51_assignRegisters): when using stack-auto use bit registers for
1373            passing parameters and creating local variables
1374         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
1375
1376 2005-08-22 Borut Razem <borut.razem AT siol.net>
1377
1378         * device/lib/Makefile.in: replaced find option -or with -o
1379           to make it run on solaris
1380
1381 2005-08-22 Raphael Neider <rneider AT web.de>
1382
1383         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
1384           fixes #1265442 (crash on Solaris)
1385
1386 2005-08-20 Borut Razem <borut.razem AT siol.net>
1387
1388         * configure, configure.in: added tests for libsocket and libnsl libraries,
1389           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
1390           from support/regression/Makefile.in
1391         * support/regression/Makefile.in: added
1392         * device/lib/pic16/Makefile.common.in: force make to use bash shell
1393         * sim/ucsim/libtool: regenerated on sparc-solaris
1394         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1395           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
1396           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
1397           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
1398           sparc-solaris, which doesn't use GNU ld linker
1399         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
1400         * as/Makefile: find on sparc-solaris does not support -maxdepth option
1401
1402 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
1403
1404         * src/mcs51/peeph.def: updated comments
1405
1406 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1407
1408         * device/lib/_gptrget.c,
1409         * device/lib/_gptrput.c: slightly shorter
1410         * doc/sdccman.lyx: incremented version
1411         * src/mcs51/peeph.def: moved peephole comments to the line of first
1412           change to better keep line correlation, reanimated 186.e
1413         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
1414
1415 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
1416
1417         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
1418           David Saxton with quotes around file name.
1419
1420 2005-08-15 Borut Razem <borut.razem AT siol.net>
1421
1422         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
1423           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
1424           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
1425           make tests run on x86_64 platform
1426
1427 2005-08-13 Raphael Neider <rneider AT web.de>
1428
1429         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
1430           as it might be executed DURING a build (parallel make is wonderful)
1431
1432 2005-08-13 Raphael Neider <rneider AT web.de>
1433
1434         * device/lib/Makefile.in (port-specific-objects-pic16):
1435           revert to cp $(PORT)/bin/*.* $(PORTDIR)
1436         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
1437           dependency
1438         * device/lib/pic16/Makefile.rules: build subdirs before creating
1439           the library, removed builddir rule, create $(builddir) early in
1440           recurse rule, use empty recurse rule for leaf directories
1441         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
1442           mkdir errors (race condition), removed duplicate suffix "hex"
1443           from clean rules
1444         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
1445         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
1446           prevents mkdir -p from aborting on Alpha
1447
1448 2005-08-12 Raphael Neider <rneider AT web.de>
1449
1450         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
1451           db-statements in order to allow for arrays of pointers in code
1452           sections to be placed without interspersed 0-padding, fixes
1453           bug #1256215
1454         * (emitStatistics): fixed division by zero for pic18f1220
1455         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
1456           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
1457         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
1458         * (pic16_pCodeConstString): keep track of already emitted string
1459           literals to prevent "duplicate definitions of symbol _str_NR"
1460         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
1461           debug message
1462         * device/lib/Makefile.in: ignore failing PIC16 library builds
1463         * device/lib/pic16/Makefile: do not build if gputils are missing
1464         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
1465
1466 2005-08-10 Raphael Neider <rneider AT web.de>
1467
1468         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
1469           my last commit)
1470
1471 2005-08-10 Raphael Neider <rneider AT web.de>
1472
1473         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
1474           Rokas' patch to add the new fixed point type "__fixed16x16"
1475         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
1476           functions for __fixed16x16 arithmetics
1477         * device/lib/pic16: reimplemented the build system to support
1478           a separate build directory, better handling of libio (create
1479           the library in a separate subdir for each architecture) and
1480           easier configuration (centralized in Makefile.common)
1481
1482 2005-08-07 Raphael Neider <rneider AT web.de>
1483
1484         * src/pic16/gen.c (genrshTwo): fixed sign extension
1485         * src/pic16/device.c: added pic18f2320, 4220 and 4320
1486         * device/include/pic16/pic18f2220.h: changed some bit definitions,
1487           added T0CONbits
1488         * device/include/pic16/pic18f4220.h: NEW, header for
1489           pic18f4220 and pic18f4320
1490         * device/include/pic16/pic18fregs.h: added new devices,
1491           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
1492         * device/include/pic16/signal.h: resolved name clashes
1493           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
1494           to also allow testing for interrupt enable bits, added
1495           comments on how to use the macros
1496         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
1497         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
1498           register definitions for the devices
1499         * device/lib/pic16/pics.all: added new devices
1500         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
1501           allocated memory
1502         * device/lib/pic16/libc/stdlib/memfree: do not count
1503           the block header as free memory
1504         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
1505           simplified and added missing end-of-blocklist-marker
1506           (reported by Peter Onion, fixes #1252814)
1507         * (_mergeHeapBlock): fixed loop condition
1508         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
1509           len==0, restructured code
1510         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
1511           up a bit, reduced bitfield accesses, prevent endless loops
1512           in case of heap corruption
1513         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
1514           "unreferenced arguments/must return a value" warnings
1515         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
1516           replaced BAUDREG with SPBRG
1517         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
1518           device/lib/pic16/debug/gstack/gstack.c: replaced
1519           _naked, _asm, _endasm with __naked, __asm, __endasm
1520
1521 2005-08-05 Raphael Neider <rneider AT web.de>
1522
1523         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
1524           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
1525
1526 2005-08-05 Borut Razem <borut.razem AT siol.net>
1527
1528         * device/lib/Makefile.in: added missing ';'
1529         * configure: removed ^M characters
1530
1531 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1532
1533         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
1534           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
1535           License
1536
1537 2005-08-04 Borut Razem <borut.razem AT siol.net>
1538
1539         * configure.in: pic16 libraries build 2nd try - enable running
1540           configure in device/lib/pic16
1541         * configure: regenerated from configure.in
1542         * device/lib/Makefile.in: create $(PORT)/bin directory
1543
1544 2005-08-03 Raphael Neider <rneider AT web.de>
1545
1546         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
1547           to get/set values via pointers
1548         * (genUnpackBits,genPackBits): changed detection of
1549           ptr->bitfield vs. sym.bitfield, fixed access via generic
1550           pointers, removed dead (wrong) code for multibyte bitfields
1551         * (genNearPointerGet, genGenPointerGet): removed useless code,
1552           fixed bitfield detection, fixes #1250594
1553         * (genNearPointerSet): removed useless code
1554         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
1555           and introduced macro pic16_emitpcode that conditionally emits
1556           the origin of the following pCode (useful for debugging SDCC)
1557         * src/pic16/pcode.c: changed (and disabled) some debug outputs
1558         * (createDefmap): fixed handling of LFSR for --optimize-df
1559
1560 2005-08-02 Borut Razem <borut.razem AT siol.net>
1561
1562         * device/lib/Makefile.in: pic16 libraries build enabled since
1563           gputils-0.13.2 are now localy installed at sourceforge's compile farm
1564
1565 2005-08-02 Raphael Neider <rneider AT web.de>
1566
1567         * src/pic16/gen.c (genPackBits): removed deprecated warning
1568         * (genGenPointerSet): fixed bitfield detection
1569
1570 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1571
1572         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
1573
1574 2005-07-31 Raphael Neider <rneider AT web.de>
1575
1576         * device/lib/pic16/libdev/pic18f458.c,
1577           device/include/pic16/pic18f458.h: added missing T0CONbits
1578
1579 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1580
1581         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
1582
1583 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
1584
1585         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
1586
1587 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1588
1589         * device/include/mcs51/at89c51ed2.h: added.
1590
1591 2005-07-23 Raphael Neider <rneider AT web.de>
1592
1593         * src/pic/gen.h: added emitpcode macro for debugging
1594         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
1595           and replace by macro adding debug information on demand
1596         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
1597         * (gencjne): tried to fix; replaced with correct (slower) code
1598         * (gen{Unp,P}ackBits): fixed single bit access
1599         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
1600         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
1601           previous instruction
1602         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
1603           register has to be handled with care (forbidding movement
1604           of assignments/uses, removing assignments completely, ...)
1605         * (pCodeOptime2pCodes): make use of regIsSpecial
1606         * added lots of debugging output (commented out)
1607         * src/pic/rallloc.c (deassignLRs): prevent operand registers
1608           from being reused as result UNLESS it is known to work
1609
1610 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
1611
1612         * support/Util/dbuf.h: include <stddef.h> for size_t
1613         * .version: changed to version 2.5.2
1614
1615 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1616
1617         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
1618
1619 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1620
1621         * src/hc08/gen.c (genMinus): fixed bug #1241835,
1622           (genModOneByte): removed needless psha/pula
1623
1624 2005-07-22 Raphael Neider <rneider AT web.de>
1625
1626         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
1627           have PIC14 handled like PIC16, fixes broken pic14 linker calls
1628         * src/pic/gen.c (resolveIfx): do not "invent" labels
1629         * (genSkipc): changed to positive logic
1630         * (genSkipCond): removed as no longer needed
1631         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
1632           backport from PIC16
1633         * (genLeftShift): check operands are in different registers
1634         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
1635           INCF does not update CARRY...
1636         * src/pic/main.c: fixed _linkCmd
1637         * src/pic/pcode.c (unlinkpCode): added inactive code
1638         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
1639           alive (do not assign result and operand overlapping registers)
1640
1641 2005-07-22 Raphael Neider <rneider AT web.de>
1642
1643         * src/pic/device.c (dump_sfr): replaced register declaration with
1644           call to emitSymbolToFile() to avoid duplicate symbols
1645         * (assignRelocatableRegisters): do not declare external symbols
1646         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
1647           right (take size of type, not etype)
1648         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
1649         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
1650         * (packRegsForAccUse): disabled assignment of WREG as
1651           the result reg to prevent occurence of just fixed #1235003,
1652           fixes #1242954
1653         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
1654           symbols (avoids duplicate symbols in .asm file)
1655         * (pic14emitRegularMap): use emitSymbolToFile()
1656         * src/pic/gen.c (aopOp): fixed spillLocation handling
1657         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
1658         * (genDataPointerSet): removed unneccessary variables/output
1659
1660 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
1661
1662         * as/mcs51/lkarea.c: enlarged codemap for banked memory
1663         * device/lib/mcs51/crtbank.asm: added # to 0x0F
1664
1665 2005-07-21 Raphael Neider <rneider AT web.de>
1666
1667         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
1668           architecture cannot handle them efficiently, fixes bug #1235003
1669         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
1670           check for empty sets before using them (fixes bug #1232190)
1671
1672 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
1673
1674         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
1675           (lnksect2): generate warnings for memory overlap
1676         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
1677           constseg to set the name of these segments so you can instruct the linker
1678           to place them in banks
1679         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
1680         * src/SDCCglobl.h: added MODEL_HUGE to enum,
1681           added code_seg and const_seg to options
1682         * src/SDCCglue.c (emitMaps): use options.const_seg,
1683           (createInterruptVect): put interrupt vectors in segment HOME,
1684           (glue): put HOME before static segment and put the main glue in HOME,
1685           (glue): use options.code_seg
1686         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
1687         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
1688           these segments so you can instruct the linker to place them in banks
1689           (linkEdit): use code_loc for HOME segment which should be the first
1690           segment in code memory now
1691         * src/SDCCmem.c: fixed more stuff like bug 1238386
1692         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
1693           (changePointer): don't change function pointers to code pointers for
1694           banked functions,
1695           (compareType): added exceptional check for banked function pointers
1696         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
1697         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
1698           after static in code memory
1699         * src/mcs51/gen.c: added aopLiteralLong prototype,
1700           (aopForSym): use getSize for functions,
1701           (genCall): generate banked calls over one trampoline __sdcc_banked_call
1702           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
1703           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
1704           the segment,
1705           (genPcall): use call for literal function pointers and generate banked
1706           calls over the one trampoline so there's only one place for the user to
1707           modify according to his/hers hardware,
1708           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
1709           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
1710         * src/mcs51/main.c: added keyword banked,
1711           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
1712         * support/Util/SDCCerr.c,
1713         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
1714           needed for passing the bank and address to the trampoline
1715         * device/lib/mcs51/crtbank.asm: added for bankswitching
1716         * device/lib/mcs51/Makefile: added crtbank
1717
1718 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1719
1720         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
1721           for fields at offset 0 of a struct or union as reported
1722           on 2005-07-07 in the developer mailing list.
1723
1724 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
1725
1726         * src/SDCCmem.c: fixed bug 1238386
1727
1728 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1729
1730         * src/mcs51/peeph.def: added labelrefcounting for peepholes
1731           (patch #1144962), added peephole 300, enabled 259.x
1732         * doc/sdccman.lyx: removed screenshot and provided link instead
1733
1734 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1735
1736         * doc/sdccman.lyx: added section about debugging with ddd
1737         * doc/figures/ddd_example.eps: screenshot of debugging session
1738
1739 2005-07-04 Raphael Neider <rneider AT web.de>
1740
1741         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
1742           like CODE pointers, fixes #1115683
1743         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
1744           call, fixes bugs #1232211, #1228110,
1745           fixed wrong casts to pCodeFlow from pCodeInstructions
1746
1747 2005-07-04 Raphael Neider <rneider AT web.de>
1748
1749         * src/pic/gen.c (popGet): changed assert to allow for
1750           bit operands
1751         * (popGetAddr): changed signature to provide
1752           an additional index, patched all call sites
1753         * (genCmpEq): handle literal-like operands correctly
1754         * (genAddrOf): added sanity checks on __code/__data pointers
1755         * (genAssign): added handling of symbols from __code section
1756         * (gencjne): do not generate code for comparisons whose result
1757           is neither stored nor used, fixes bug #1171114
1758         * (AccLsh, AccRsh): operate on operand instead of WREG
1759         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
1760           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
1761           by known count
1762         * rewrote complete shift-by-literal logic, commented unused
1763           functions out
1764         * (genConstPointerGet): get multiple bytes (if result size > 1),
1765           fixed handling of non-immediate addresses
1766         * (genPointerGet): handle CODE pointers like CONST pointers
1767         * (genpic14Code): insert C-SRC lines as Cource-pCodes
1768         * ({aop,op}_isLitLike): NEW, single place to decide whether an
1769           operand is to be treated as a literal or not
1770         * (mov2w,genPcall,genCmpEq),
1771           src/pic/genarith.c: use aop_isLitLike() to decide between
1772           literal/register contents
1773         * (addSign): added missing offset
1774         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
1775           only emit comment in debug-mode,
1776           use {aop,op}_isLitLike throughout the file
1777         * src/pic/glue.c: fix initializers for pointers (work in progress)
1778         * src/pic/pcode.c (get_op): honor index on _const symbols
1779         * ({reset,dump}pCodeStatistics): NEW, estimate code size
1780         * (dumppBlock): added pCode size estimation
1781         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
1782           check for IS_SYMOP before OP_SYMBOL'ing
1783         * fixed indentation, compacted switch-statements
1784         * (allocReg): find free register and allocate it instead of
1785           allocating new registers all the time
1786         * (deassignLRs): prevent POINTER_GET's from being assigned the same
1787           registers as its operands (necessary only for multibyte GETs)
1788
1789 2005-07-01 Raphael Neider <rneider AT web.de>
1790
1791         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
1792           debugging .asm-output macros FENTRY + FEXIT
1793         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
1794           way... I wonder...
1795         * (emitpComment): NEW, printf to pCode
1796         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
1797           offset handling
1798         * (popGetAddr): NEW, variant of popGet to access an immediates
1799           high(er) bytes instead of the n'th byte of memory they reference,
1800           replaced popGet with popGetAddr where neccessary
1801         * (genDataPointerGet): reactivated and fixed implementation
1802         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
1803           accesses
1804         * (genDataPointerSet): fixed multibyte assignments
1805         * (genpic14Code): fixed --i-code-in-asm handling
1806         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
1807         * (genPlus): fixed index-out-of-bounds error
1808         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
1809         * src/pic/ralloc.c: added debugging output macro FENTRY2
1810         * (spillThis): fixed indentation, enbraced for-body for clarity
1811         * (rematStr): commented out as now unused
1812         * (regTypeNum): commented out special spill case (overwrites
1813           arbitrary values)
1814         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
1815
1816 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
1817
1818         * doc/sdccman.lyx: documented sfr16/sfr32,
1819           added example for using storage class with function pointers
1820         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
1821
1822 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
1823
1824         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
1825         * device/lib/_itoa.c,
1826         * device/lib/_ltoa.c: optimized codesize
1827         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
1828           but don't know how to suppress the double warning.
1829         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
1830         * support/Util/SDCCerr.c,
1831         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
1832
1833 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
1834
1835         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
1836           fixed old K&R prototypes
1837         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
1838         * device/lib/_gptrget.c,
1839         * device/lib/_gptrgetc.c,
1840         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1841           also new versions for small generic pointers and banked generic pointers
1842         * src/port.h: added const_name
1843         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1844         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1845         * src/SDCCcse.c (findPrevIc): check all associative operators
1846         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1847         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1848         * src/SDCCmem.c: updated comments,
1849           set far-space to 0 for pdata, results in optimized code
1850         * src/SDCCmem.h: added macro CONST_NAME
1851         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1852           moving the info into the highest bits, see also gptrget/gptrput
1853         * src/src.dsp: added sdcc.ico to project files
1854         * src/avr/gen.c (genCast): fixed bug 0x%d
1855         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1856         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1857           relation between ptr_type and DCL_TYPE,
1858           (genCast): fixed bug 0x%d
1859         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1860           (CODE)" for const_name
1861         * src/hc08/gen.c (genCast): fixed bug 0x%d
1862         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1863           (hc08_port): added "CONST (CODE)" for const_name
1864         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1865           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1866           between ptr_type and DCL_TYPE,
1867           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1868           operand* and took AOP() inside function so sfr-ness can be checked,
1869           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1870           new prototype,
1871           (genFunction, genEndFunction): optimized stack setup,
1872           (genMinus): optimized for literals with ending zeroes (in bytes),
1873           (genCast): fixed bug 0x%d
1874         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1875           (mcs51_port): added "CONST (CODE)" for const_name
1876         * src/mcs51/peeph.def: made rule 226 more generic
1877         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1878         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1879         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1880         * src/z80/main.c (z80_port): added NULL for const_name,
1881           (gbz80_port): added NULL for const_name
1882         * support/regression/tests/bug663539.c,
1883         * support/regression/tests/sfr16.c: new tests
1884
1885 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1886
1887         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1888
1889 2005-06-24 Raphael Neider <rneider AT web.de>
1890
1891         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1892           corrected typos...
1893         * device/include/pic16/signal.h: added USBIF
1894           and SIG_USB
1895
1896 2005-06-24 Raphael Neider <rneider AT web.de>
1897
1898         * device/lib/pic16/libdev/pic18f2455.c,
1899           device/include/pic16/pic18f2455.h: NEW
1900         * device/include/pic16/pic18fregs.h,
1901           device/lib/pic16/pics.all,
1902           src/pic16/device.c: added 18f2455
1903         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1904           device/include/pic16/{pic18f[68][567].h,usart.h}:
1905           replaced MULTIPLE_USARTS define with more relaible
1906           compatibility sfrs (for USART access)
1907
1908 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1909
1910         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1911           and the output asm file line is printed on two lines.
1912
1913 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1914
1915         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1916           BGT, BLE, BHI, and BLS instructions
1917         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1918           genCmpEq): removed
1919         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1920           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1921           fixes bug #1216342
1922         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1923
1924 2005-06-15 Raphael Neider <rneider AT web.de>
1925
1926         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1927         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1928         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1929           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1930           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1931
1932 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1933
1934         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1935           Marcel Telka in bug #1215704
1936
1937 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1938
1939         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1940           located in shared memory bank.
1941
1942 2005-05-31 Raphael Neider <rneider AT web.de>
1943
1944         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1945           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1946           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1947
1948 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1949
1950         * device/lib/_strncpy.c: fixed the fix
1951
1952 2005-05-26 Raphael Neider <rneider AT web.de>
1953
1954         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1955           initializers with \0, bug #1208187
1956         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1957           intializers with \0, bug #1208187
1958
1959 2005-05-26 Raphael Neider <rneider AT web.de>
1960
1961         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1962           initializers with \0, bug #1208187
1963         * src/pic16/main.c (_process_pragma): added sanity checks
1964           for stack position and size, emit warnings when appropriate
1965
1966 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1967
1968         * device/lib/_strncpy.c: fixed not filling with \0
1969
1970 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1971
1972         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1973           createFunction),
1974         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1975           compound_statement),
1976         * src/SDCCsymt.h,
1977         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1978
1979 2005-05-24 Raphael Neider <rneider AT web.de>
1980
1981         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1982
1983 2005-05-24 Raphael Neider <rneider AT web.de>
1984
1985         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1986           TRISE definitions, closes bug #1162453
1987
1988 2005-05-22 Raphael Neider <rneider AT web.de>
1989
1990         * src/pic16/main.c (_process_pragma): check for missing
1991           arguments to pragmas code and udata
1992         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1993           consistency fixes to match other headers (thanks to Jim Paris)
1994         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1995
1996 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1997
1998         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1999
2000 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2001
2002         * support/regression/tests/bug1198642.c: new test
2003         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2004         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2005         * support/scripts/resource.h,
2006         * support/scripts/resource.rc,
2007         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2008         * support/scripts/sdcc.ico: added 32x32 icon
2009
2010 2005-05-18 Raphael Neider <rneider AT web.de>
2011
2012         * device/lib/pic16/libdev/pic18f*.c,
2013         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2014           keywords to "__sfr" and "__at (X)"
2015         * device/include/pic16/pic18fregs.h: added pic18f4520
2016         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2017           #1203088 (MPLAB compatibility)
2018
2019 2005-05-17 Raphael Neider <rneider AT web.de>
2020
2021         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2022         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2023         * device/lib/pic16/pics.all: added new devices
2024         * src/pic16/device.c: added support for pic18f4520
2025
2026 2005-05-16 Raphael Neider <rneider AT web.de>
2027         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2028         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2029         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2030           convenience function for bit access
2031
2032 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2033
2034         * device/lib/printf_large.c: fixed bug 1193299
2035         * support/regression/tests/bug1057979.c: added test %3.3s
2036
2037 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2038
2039         * device/include/mcs51/8051.h,
2040         * device/include/mcs51/8052.h: made parseable with lint
2041         * device/include/mcs51/lint.h: added include file for (sp)lint
2042         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2043         * doc/cdbfileformat.lyx,
2044         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2045
2046 2005-05-14 Raphael Neider <rneider AT web.de>
2047
2048         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2049         * device/lib/pic16/libc/stdlib/itoa.c (new)
2050         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2051         * device/lib/pic16/libio/Makefile: exclude subdir according to
2052           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2053         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2054         * src/pic16/gen.c (genFunction): prevent annoying warning
2055         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2056           nameclashes on BeOS
2057         * support/cpp2/cppmain.c (cpp_output_string): new
2058         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2059           fixes bug 1116802
2060
2061 2005-05-13 Borut Razem <borut.razem AT siol.net>
2062
2063         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2064
2065 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2066
2067         * .version: changed to version 2.5.1; back to bleeding edge development
2068
2069 2005-05-11 Borut Razem <borut.razem AT siol.net>
2070
2071         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2072           generate PDF version 1.3 documents
2073
2074 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2075
2076         * .version: changed to version 2.5.0
2077
2078 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2079
2080         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2081
2082 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2083
2084         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2085         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2086         well as many smaller updates.
2087         * .version: changed to version 2.5.0-pre1
2088
2089 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2090
2091         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2092
2093 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2094
2095         * support/regression/tests/bug1185672.c: added
2096         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2097           bug 1185672
2098         * src/mcs51/gen.c (genCall): added comments, made it look safer
2099         * src/mcs51/gen.c (genEndFunction): simplified
2100
2101 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2102
2103         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2104
2105 2005-04-14 Borut Razem <borut.razem AT siol.net>
2106
2107         * fixed bug 1045046 - SIGSEGV with really simple code?:
2108           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2109           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2110
2111 2005-04-14 Borut Razem <borut.razem AT siol.net>
2112
2113         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2114           src/pic16/device.h: temporarily disabled experimental #inline pragma
2115           for 2.5.0 release
2116
2117 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2118
2119         * device/include/z80/stdio.h,
2120         * device/include/z80/string.h: removed these highly incomplete files so
2121           SDCC can use the default ones in device/include/
2122
2123 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2124
2125         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2126         gcc warning.
2127         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2128         fix sdcpp warnings.
2129
2130 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2131
2132         * device/include/malloc.h: removed redundant __reentrant prototypes
2133         * device/lib/_mullong.c: added working xstack variant in asm (C version
2134           doesn't pass regression tests)
2135         * device/lib/bpx.c: used __data and made bpx char for mcs51
2136         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2137           (createFunction): fixed bug with xstackPtr
2138         * src/SDCCcse.c: corrected comments
2139         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2140           (killDeadCode, eBBlockFromiCode): removed unused code
2141         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2142           corrected comments
2143         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2144           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2145           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2146           (genModOneByte): fixed warning in MSVC
2147         * src/mcs51/main.c (): added comments
2148         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2149
2150 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2151
2152         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2153
2154 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2155
2156         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2157
2158 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2159
2160         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2161         characters arrays of larger size than the declared one.
2162
2163 2005-04-10 Borut Razem <borut.razem AT siol.net>
2164
2165         * src/pic/gen.c (genInline),
2166           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2167           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2168           (findNextInstruction), (findPrevInstruction),
2169           (findInstructionUsingLabel),
2170           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2171         * src/pic/pcode.c (findLabel): added missing '\n'
2172         * src/src.dsp: added SDCCdwarf2.c to the project
2173
2174 2005-04-09 Borut Razem <borut.razem AT siol.net>
2175
2176         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2177
2178 2005-04-08 Raphael Neider <rneider AT web.de>
2179
2180         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2181           into the chain after a given one) and mergeDefmapSymbols (combine
2182           defmap entries for each symbol per pcode)
2183         * (createDefmap): have defmap entries merged in the end
2184         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2185           a symbol before replacing one access type's symbol, merge symbols in
2186           the end (replacement symbol might already have an entry)
2187         * (assignValnums): keep reference to written WREG intact
2188
2189 2005-04-08 Raphael Neider <rneider AT web.de>
2190
2191         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2192           Alpha)
2193
2194 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2195
2196         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2197         bytes
2198
2199 2005-04-07 Raphael Neider <rneider AT web.de>
2200
2201         * device/include/pic16/usart.h: added compatibility defines for
2202           devices with more than one USART
2203         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2204
2205 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2206
2207         * device/lib/Makefile.in: updated for port specific include
2208
2209 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2210
2211         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2212
2213 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2214
2215         * device/include/8051.h,
2216         * device/include/8052.h,
2217         * device/include/at89S8252.h,
2218         * device/include/at89c55.h,
2219         * device/include/at89x051.h,
2220         * device/include/at89x51.h,
2221         * device/include/at89x52.h,
2222         * device/include/mcs51reg.h,
2223         * device/include/reg51.h,
2224         * device/include/reg764.h,
2225         * device/include/regc515c.h,
2226         * device/include/sab80515.h: (re)moved these 12 files
2227         * device/include/mcs51/8051.h,
2228         * device/include/mcs51/8052.h,
2229         * device/include/mcs51/at89S8252.h,
2230         * device/include/mcs51/at89c55.h,
2231         * device/include/mcs51/at89x051.h,
2232         * device/include/mcs51/at89x51.h,
2233         * device/include/mcs51/at89x52.h,
2234         * device/include/mcs51/mcs51reg.h,
2235         * device/include/mcs51/reg51.h,
2236         * device/include/mcs51/reg764.h,
2237         * device/include/mcs51/regc515c.h,
2238         * device/include/mcs51/sab80515.h: and added them here
2239
2240 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2241
2242         * device/include/stdarg.h: changed SDCC specific keywords to double
2243           underlined form.
2244         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2245           mcs51 and ds390.
2246         * device/include/hc08/mc68hc908gp32.h,
2247         * device/include/hc08/mc68hc908jb8.h,
2248         * device/include/hc08/mc68hc908jkjl.h,
2249         * device/include/hc08/mc68hc908qy.h: fixed comments
2250         * device/include/mcs51/README: updated
2251         * device/include/mcs51/c8051f120.h: added PINRSF
2252         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2253         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2254           amidst code. Also inline is not supported.
2255
2256 2005-04-06 Raphael Neider <rneider AT web.de>
2257
2258         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2259         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2260           callers stack/frame pointers
2261
2262 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2263
2264         * device/include/pic16/usart.h: added, missing in previous commit,
2265         * device/include/pic16/adc.h: fixed typo,
2266         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2267         commit,
2268         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2269         <p18fxxx.inc>
2270         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2271         uninitialized because a bug appears with gplink
2272         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2273         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2274         complains for unrecognised option
2275
2276 2005-04-05 Raphael Neider <rneider AT web.de>
2277
2278         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2279           structs as well (using memcpy)
2280         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2281           on ISRs (GOTO has no label)
2282         * src/pic16/device.h: added OF_OPTIMIZE_DF
2283         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2284           new data flow analysis/optimization
2285         * src/pic16/pcode.c: added (prototypes for and implementation of)
2286           dataflow analysis functions, fixed pCodeInstructions' inCond and
2287           outCond values, made RCALL a branch instruction
2288         * (pic16_unlinkpCode): keep C line if possible
2289         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2290           C line moved if possible
2291         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2292         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2293           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2294         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2295           new flow)
2296         * (pic16_getJumptabpCode): NEW, needed in...
2297         * (LinkFlow): fixed handling of jumptables, calls and conditional
2298           branches
2299         * (pic16_InsertCommentAfter): NEW
2300         * (pic16_pCodeReplace): made verbose and flow preserving
2301         * (AnalyzeFlow): added call to data flow analysis
2302         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2303         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2304         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2305
2306 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2307
2308         * src/SDCCast.c (decorateType): fixed bug #1105626
2309
2310 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2311
2312         * device/include/asm/pic16/features.h,
2313         * pic18f*.h headers,
2314         * device/include/pic16/adc.h,
2315         * device/include/pic16/delay.h,
2316         * device/include/pic16/i2c.h,
2317         * device/include/pic16/malloc.h,
2318         * device/include/pic16/stdio.h,
2319         * device/include/pic16/stdlib.h,
2320         * device/include/pic16/string.h,
2321         * device/lib/pic16/libc/stdio/printf_tiny.c,
2322         * device/lib/pic16/libc/stdio/printf_small.c,
2323         * device/lib/pic16/libc/stdio/strmgpsim.c,
2324         * device/lib/pic16/libc/stdio/strmmssp.c,
2325         * device/lib/pic16/libc/stdio/strmusart.c,
2326         * device/lib/pic16/libc/stdio/vfprintf.c,
2327         * device/lib/pic16/libc/stdlib/ltoa.c,
2328         * device/lib/pic16/libc/stdlib/putchar.c,
2329         * device/lib/pic16/libc/stdlib/x_ftoa.c,
2330         * device/lib/pic16/libc/stdlib/memchrpgm.c,
2331         * device/lib/pic16/libc/stdlib/memchrram.c,
2332         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
2333         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
2334         * device/lib/pic16/libio/adc/adcbusy.c,
2335         * device/lib/pic16/libio/adc/adcread.c,
2336         * device/lib/pic16/libio/adc/adcsetch.c,
2337         * device/lib/pic16/libio/usart/ubaud.c,
2338         * device/lib/pic16/libio/usart/ubusy.c,
2339         * device/lib/pic16/libio/usart/udrdy.c,
2340         * device/lib/pic16/libio/usart/uopen.c,
2341         * device/lib/pic16/libio/usart/uputc.c,
2342         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
2343         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
2344         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
2345         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
2346         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
2347         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
2348         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
2349         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
2350         specific keywords to double underlined form,
2351         * device/lib/pic16/libc/Makefile.rules,
2352         * device/lib/pic16/libsdcc/Makefile.rules,
2353         * device/lib/pic16/libm/Makefile,
2354         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
2355         to compile with C standard set in Makefile.common
2356         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
2357         rand.c and crc.c in compilation process,
2358         * device/lib/pic16/libsdcc/int/divuint.c,
2359         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
2360         `c' from signed to unsigned,
2361         * device/lib/pic16/startup/crt0.c,
2362         * device/lib/pic16/startup/crt0i.c,
2363         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
2364         keywords to double underlined form, bug fixes in _do_cinit function
2365         which prevented the correct initialization of the .idata segment,
2366         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
2367         core to enter a infinite loop
2368         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
2369
2370 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2371
2372         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
2373
2374 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2375
2376         * device/include/Makefile.in: add support for hc08 subdirectory
2377         * device/include/hc08/: new subdirectory
2378         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
2379         Lucas Loizaga, thanks!
2380         * device/include/hc08/mc68hc908qy.h,
2381         * device/include/hc08/mc68hc908gp32.h,
2382         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
2383         their own directory. Changed internal macro names to use the compiler
2384         reserved namespace. Changed SDCC specific keywords to double
2385         underlined form.
2386         * device/include/math.h,
2387         * device/include/malloc.h,
2388         * device/include/stdarg.h,
2389         * device/include/stdbool.h
2390         * device/include/string.h,
2391         * device/include/tinibios.h,
2392         * device/include/ds400rom.h,
2393         * device/include/8051.h,
2394         * device/include/8052.h,
2395         * device/include/80c51xa.h,
2396         * device/include/at89c55.h,
2397         * device/include/at89S8252.h,
2398         * device/include/at89x51.h,
2399         * device/include/at89x52.h,
2400         * device/include/ds80c390.h,
2401         * device/include/reg764.h,
2402         * device/include/regc515c.h,
2403         * device/include/sab80515.h,
2404         * device/include/mcs51/c8051f000.h,
2405         * device/include/mcs51/c8051f018.h,
2406         * device/include/mcs51/c8051f020.h,
2407         * device/include/mcs51/c8051f040.h,
2408         * device/include/mcs51/c8051f060.h,
2409         * device/include/mcs51/c8051f120.h,
2410         * device/include/mcs51/c8051f300.h,
2411         * device/include/mcs51/c8051f310.h,
2412         * device/include/mcs51/c8051f320.h,
2413         * device/include/mcs51/c8051f330.h,
2414         * device/include/mcs51/c8051f350.h,
2415         * device/include/z180.h: Changed SDCC specific keywords to double
2416         underlined form.
2417
2418 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
2419
2420         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
2421         18F4455,
2422         * (pic16_assignConfigWordValue): disable testing of configuration
2423         register value with config mask,
2424         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
2425         function with port->fun_prefix,
2426         * (genFunction): when generating a naked interrupt function never
2427         create an absolute segment placed in interrupt vector address, place
2428         the actual interrupt function at IVA instead, when an interrupt
2429         function is generated with unspecified interrupt then do not create
2430         the absolute section,
2431         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
2432         code for generating a call to generic pointer get/put function with
2433         a call to function pic16_callGenericPointer(),
2434         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
2435         the call to the generic pointer get/put functions with prefixing the
2436         function name with port->fun_prefix,
2437         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
2438         * src/pic16/main.c (_process_pragma): prefix function with
2439         port->fun_prefix,
2440         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
2441         calling assembler, old 18Fxxxx macro is deprecated,
2442         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
2443         PC_ASMDIR in while condition,
2444         * (findInstruction): add PC_ASMDIR in while condition,
2445         * (buildCallTree): prefix main with port->fun_prefix,
2446         * (pic16_pCode2str): fixed bug that didn't emit the memory access
2447         identifier for variable with banked access in instructions BTFSS,
2448         BTFSC, BCF, BSF, BTG
2449         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
2450         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
2451         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
2452         perform optimization when enviroment variable NO_REG_OPT is set,
2453         * (insideLRBlock): NEW, return 1 if register is inside an
2454         INF_LOCALREGS block,
2455         * (RemoveRegFromLRBlock): remove a register that is completely
2456         eliminated by register optimization, but it is still left in local
2457         register store/restore in/from stack block,
2458         * (Remove2pcodes): after removing register, check to see if it
2459         should be removed from local register store/restore in/from stack
2460         block,
2461         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
2462         DUMMY_READ_VOLATILE,
2463
2464         * device/include/pic16/adc.h: minor prototype modifications and
2465         update,
2466         * device/include/pic16/malloc.h: added GPL notice various
2467         modifications,
2468         * device/include/pic16/stdint.h: NEW, standard header for ints
2469         * device/include/pic16/delay.h: NEW, header for delay functions,
2470         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
2471         delay1mtcy,
2472         * device/include/pic16/signal.h: NEW, header providing helper macros
2473         for implementing signal handlers,
2474         * device/include/pic16/stdio.h: added prototypes for functions,
2475         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
2476         prototypes for stdin and stdout, added macro PUTCHAR to
2477         automatically implement putchar function prototype,
2478         * device/include/pic16/usart.h: modified and updated USART library,
2479         * device/lib/pic16/libio/adc/,
2480         * device/lib/pic16/libio/i2c: some modifications to improve library
2481         performance,
2482         * device/lib/pic16/libc/stdio/: modifications for the new printf*
2483         family of functions,
2484         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
2485         family of functions and other sources,
2486         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
2487         of the PIC18Fxx[28] devices,
2488         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
2489         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
2490         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
2491         _do_cinit function, because the previous failed when local variables
2492         where not placed in the same memory bank,
2493         * device/lib/pic16/libsdcc/char/: various modifications to improve
2494         library performance,
2495         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
2496         information on the new functions of the c library and more...
2497
2498 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2499
2500         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
2501
2502 2005-03-26 Raphael Neider <rneider AT web.de>
2503
2504         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
2505           if condition == CARRY)
2506         * (genCmp): adapted to new genSkipc semantics
2507         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
2508           on rIfx (genCmp was broken)
2509
2510 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2511
2512         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
2513         * src/z80/main.c (_keywords[]),
2514         * src/SDCCglobal.h (struct options),
2515         * src/SDCC.y,
2516         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
2517         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
2518         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
2519         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
2520         always available in leading double underscore form. The C99 support is
2521         mostly missing, but it's a start.
2522         * support/regression/tests/bug-227710.c: fixed nonconforming use of
2523         reserved identifier "__data".
2524
2525 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
2526
2527         * src/mcs51/peeph.def: fixed bug 1170013
2528
2529 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
2530
2531         * device/include/mcs51reg.h: fixed bug 842007
2532
2533 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2534
2535         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
2536         last time.
2537
2538 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2539
2540         * src/port.h (struct PORT),
2541         * src/avr/ralloc.c (avr_assignRegisters),
2542         * src/avr/main.c,
2543         * src/ds390/ralloc.c (ds390_assignRegisters),
2544         * src/ds390/main.c,
2545         * src/hc08/ralloc.c (hc08_assignRegisters),
2546         * src/hc08/main.c,
2547         * src/mcs51/ralloc.c (mcs51_assignRegisters),
2548         * src/mcs51/main.c,
2549         * src/pic/ralloc.c (pic14_assignRegisters),
2550         * src/pic/main.c,
2551         * src/pic16/ralloc.c (pic16_assignRegisters),
2552         * src/pic16/main.c,
2553         * src/xa51/ralloc.c (xa51_assignRegisters),
2554         * src/xa51/main.c,
2555         * src/z80/ralloc.c (z80_assignRegisters),
2556         * src/z80/ralloc.h,
2557         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
2558         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
2559         * src/SDCCcse.h,
2560         * src/SDCCdflow.c (computeDataFlow),
2561         * src/SDCCdflow.h,
2562         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
2563         * src/SDCCloop.h,
2564         * src/SDCCcflow.c (*),
2565         * src/SDCCcflow.h,
2566         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
2567         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
2568         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
2569         immedDom() returning wrong block; probably fixes bug #1160833)
2570
2571 2005-03-20 Borut Razem <borut.razem AT siol.net>
2572
2573         * support/scripts/inc2h.pl: WIN32 port
2574
2575 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
2576
2577         * device/lib/makefile.in: added abs.c and labs.c
2578
2579 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
2580
2581         * device/include/stdint.h: added
2582         * device/lib/abs.c: added
2583         * device/lib/labs.c: added
2584         * device/include/stdlib.h: added abs() and labs() prototypes
2585         * device/lib/libsdcc.lib: added abs and labs
2586         * device/include/float.h,
2587         * device/lib/_fsmul.c,
2588         * device/lib/printf_fast.c,
2589         * device/lib/printf_tiny.c: updated comments
2590
2591 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2592
2593         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
2594         bug #1164313
2595
2596 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2597
2598         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
2599         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
2600
2601 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
2602
2603         * device/lib/printf_large.c: removed inline assembly for portability and
2604           readability. Use printf_fast if speed or size are more important.
2605         * src/pic16/gen.c: removed conditions around use of DEBUGpc
2606         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
2607
2608 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
2609
2610         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
2611         prevent compiler warning
2612
2613 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
2614
2615         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
2616         moved to level 0 and declared as static. Also they are explicit
2617         placed in access bank. This was necessery because some times they
2618         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
2619         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
2620         optimizations. Currently only compare to unsigned char is implemented,
2621         * src/pic16/gen.c: added fReturnIdx array,
2622         * (struct resolvedIfx) is moved to gen.h and made public,
2623         * (struct _G): added sregsAlloc and sregsAllocSet fields,
2624         * (aopForSym): added an optimization to directly store in stack of
2625         the operand of a SEND iCode,
2626         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
2627         but as registers instead (AOP_REG) using the fReturnIdx array,
2628         * (pic16_freeAsmop): remove the freed register from the
2629         _G.sregsAlloc field,
2630         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
2631         a compare of 'WREG',
2632         * (pic16_popGetTempRegCond): changed function prototype, now
2633         function takes also a bitVector argument v which holds the current
2634         set of registers that are allocated for stack access by aopForSym,
2635         registers allocated in aopForSym for accessing stack symbols are not
2636         any more part of the functions usedRegs field,
2637         * (genCall): some times aopOp is called for a stack variable to be
2638         send, aopForSym might perform the push, if this is true make sure
2639         that genCall doesn't push the variable twice by testing _G.resDirect,
2640         * (genFunction): changed testing for unspecified interrupt number
2641         from 256 to INTNO_UNSPEC,
2642         * modified selection scheme of frame pointer generation. Previously
2643         if function did use local registers a frame pointer was generated,
2644         now a frame pointer is generated only if function has arguments
2645         (that need PLUSW2 register access), or has stack arguments, or the
2646         compiler is not instructed to omit the frame pointer,
2647         * (genEndFunction): before restoring local registers that were saved
2648         in the function preamble, also restore the registers that *might*
2649         have been allocated for stack access,
2650         * (genRet): removed some old comments,
2651         * (genCmp, the active (RN's) version): added a call to the
2652         pic16_genCmp_special function to perform the compare with a more
2653         robust and optimized way,
2654         * (genInline): a feature has been added in inline code generation,
2655         which allows a wildcard variable substitution when writing inline
2656         assembly. Code is incomplete and experimental therefore undocumented,
2657         * (genCast): changed order of aopOp for result and right to allow
2658         aopForSym to directly load the result if possible,
2659         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
2660         perform an optimized compare on some selected special occasions,
2661         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
2662         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
2663         generate an IVT any more,
2664         * src/pic16/main.c (pic16_optionsTable): added command line option
2665         --optimize-cmp,
2666         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
2667         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
2668         macros,
2669         * src/pic16/NOTES: Raphael Neider added in list of active developers
2670         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
2671         jumptable_end to prevent bug #,
2672         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
2673         inCond and outCond fields,
2674         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
2675         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
2676         turn off register spilling,
2677         * (packRegsForOneUse): synced with other ports' versions although it
2678         is not used currently,
2679         * (pic16_packRegisters): added an optimization while reading
2680         structure bitfields, some registers may be saved (malloc code is
2681         decreased by 80 bytes)
2682
2683 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
2684
2685         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
2686         left is a bitfield, if yes, then don't optimize assignment. Perhaps
2687         this can be optimized more?
2688
2689 2005-03-10 Raphael Neider <rneider AT web.de>
2690
2691         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
2692           genNearPointerGet): (hopefully) fixed access to bitfields via
2693           pointers (p->bitN = x; and x = p->bitN; failed)
2694
2695 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
2696
2697         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
2698
2699 2005-03-09 Raphael Neider <rneider AT web.de>
2700
2701         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
2702
2703 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
2704
2705         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
2706         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
2707           (regTypeNum): set REG_BIT type if necessary
2708         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
2709         * support/regression/tests/critical.c: check bug 1144613
2710
2711 2005-03-02 Raphael Neider <rneider AT web.de>
2712
2713         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
2714
2715 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2716
2717         * src/avr/ralloc.c (serialRegAssign),
2718         * src/ds390/ralloc.c (serialRegAssign),
2719         * src/hc08/ralloc.c (serialRegAssign),
2720         * src/mcs51/ralloc.c (serialRegAssign),
2721         * src/pic/ralloc.c (serialRegAssign),
2722         * src/pic16/ralloc.c (serialRegAssign),
2723         * src/xa51/ralloc.c (serialRegAssign),
2724         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
2725
2726 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
2727
2728         * src/SDCCast.c (decorateType): fixed bug 1124787
2729
2730 2005-02-20 Hubert Sack <sack AT digiplan.de>
2731         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2732
2733         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
2734         patch #1121755
2735
2736 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2737
2738         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
2739         to keep the correct label reference count when adding/removing references
2740         to labels. A peephole file using this is appended to patch #1144962.
2741
2742 2005-02-14 Raphael Neider <rneider AT web.de>
2743
2744         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
2745         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
2746         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
2747           retrievals of result operand's value on assignment
2748
2749 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
2750
2751         * device/include/pic16/string.h: modified prototype for memccpy()
2752         to memccpy(void *, void *, char, size_t)
2753         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
2754         check whether to omit frame pointer or not,
2755         * (genInline): convert all occurences of "\n" to LF in inline
2756         assembler blocks, this helps formatting the inline text,
2757         * (pic16_loadFSR0): modified prototype,
2758         * (genNearPointerGet, genNearPointerSet): reorganization of code,
2759         removed some 8051 legacy code,
2760         * (genPackBits): enabled handling bitfields exceeding one byte in size,
2761         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
2762         before allocating temporary registers in functions,
2763
2764 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
2765
2766         * support/regression/tests/bitvars.c: corrected the "fix"
2767
2768 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
2769
2770         * support/regression/tests/bitvars.c,
2771         * support/regression/tests/bitwise.c,
2772         * support/regression/tests/rotate.c: "fixed" problems on Alpha
2773
2774 2005-02-10 Raphael Neider <rneider AT web.de>
2775
2776         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
2777           different size for Alpha
2778         * src/pic16/gen.c (genCmpEq) : improved compare with 0
2779
2780 2005-02-09 Raphael Neider <rneider AT web.de>
2781
2782         * src/SDCC.lex(doPragma) : save and restore warning options as well
2783           (also added new stack plus clone- and copyAndFreeSDCCERRG())
2784         * have #pragma less_pedantic set the errorlevel to WARNING
2785           (fixes #1117001)
2786         * (cloneOptimize) : fixed wrong malloc's size
2787         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
2788           facilitate correct handling of #pragma (save|restore)
2789
2790 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
2791
2792         * src/mcs51/gen.c: removed non-standard C nameless struct/union
2793
2794 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
2795
2796         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
2797
2798 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
2799
2800         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
2801
2802 2005-02-02 Raphael Neider <rneider AT web.de>
2803
2804         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
2805         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
2806         * (pic16_storeForReturn): fixed to allow returning function pointers
2807         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
2808         * device/include/pic16/{stddef.h,stdbool.h}: added
2809
2810 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
2811
2812         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
2813
2814 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
2815
2816         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
2817         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
2818          appeared to be required
2819
2820 2005-01-31 Borut Razem <borut.razem AT siol.net>
2821
2822         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
2823           include/mcs51 and include/z80 directories to the package
2824
2825 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2826
2827         * src/hc08/gen.c (genFunction): fixed bug #1112752
2828
2829 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2830
2831         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
2832
2833 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2834
2835         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
2836
2837 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
2838
2839         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2840
2841 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2842
2843         * device/include/c8051fxxx.h: removed these 6 files
2844         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2845
2846 2005-01-26 Raphael Neider <rneider AT web.de>
2847
2848         * src/pic16/gen.c (genAssign): fixed assignment from longs
2849           in codespace (were cut to three bytes)
2850         * (genDummyRead): implemented (except for CODESPACE...),
2851           fixed bug #1108575
2852         * src/pic16/glue.c (emitStatistics): beautified
2853         * device/lib/pic16/libm/Makefile: added include path
2854
2855 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2856
2857         * src/z80/gen.c (aopPut): fixed bug #1103902
2858
2859 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2860
2861         * device/lib/expf.c: fixed bug #1095792
2862
2863 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2864
2865         * device/lib/pic16/libm: added Math library sources
2866
2867 2005-01-24 Raphael Neider <rneider AT web.de>
2868
2869         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2870           to enable upcast to pCodeOpReg2 (there is no type tag to
2871           differenciate the two and pic16_popGet2p cast into PCOR2)
2872         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2873           (sizeof(sectNames) changed to sizeof(sectName))
2874           Both patches fix segfaults under MinGW.
2875
2876 2005-01-23 Raphael Neider <rneider AT web.de>
2877
2878         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2879           Safe_[mc]?alloc()'ed variables
2880         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2881           of (byte sized) temporaries (assign them to WREG for now)
2882         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2883           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2884           this might fix SIGSEGVs on MinGW...
2885         * src/SDCCopt.c (killDeadCode): restored original behaviour
2886           (volatile operands might get thrown away though)
2887
2888 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2889
2890         * src/pic16/gen.c: fixed bug #1106975,
2891         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2892         pointer update, INTCON is saved, global interrupts are disabled and
2893         restored after updateing TOS.
2894         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2895         * added function attribute 'shadowregs' to take advantage of shadow
2896         registers,
2897         * added function attribute 'wparam' as an alternative to the wparam
2898         pragma,
2899         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2900         user declares a non-ISR function as 'shadowregs',
2901         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2902
2903 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2904
2905         * .version: bumped version number to 2.4.8
2906         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2907         pic16 port,
2908         * device/lib/pic16/libio/i2c/: I2C module support library,
2909         * device/include/pic16/i2c.h: I2C support library header,
2910         * device/lib/pic16/libc/stdio/: standard IO support sources,
2911         * (printf_small.c): printf_small() source, supports float print,
2912         * (printf_tiny.c): printf_tiny() source, does not support floats,
2913         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2914         enable global optimizations for entire library source, other
2915         Makefiles in the source tree are also modified to reflect this,
2916         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2917         function,
2918         * doc/sdccman.lyx: updated to reflect new changes,
2919         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2920         sym->onStack if-case,
2921         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2922         sbit, idata, _idata, xdata, _xdata,
2923         * added pragma library, to link an external library, (see doc),
2924         * removed command line options, --pomit-config-words, --pomit-ivt,
2925         --pleave-reset-vector,
2926         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2927         when calling assembler to reflect memory model used, also define
2928         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2929         reflect stack model used,
2930         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2931         on stack return NULL,
2932
2933 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2934
2935         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2936           of the operands is volatile. Fixes #1020220
2937
2938 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2939
2940         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2941         * (OptimizeRegUsage): make sure that there is really no other flow where
2942           the first pCode is used
2943
2944 2005-01-22 Raphael Neider <rneider AT web.de>
2945
2946         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2947           to fix #1106967 (pCode->seq are not set up correctly)
2948
2949 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2950
2951         * src/SDCCglue.c (glue): make sure code area is declared before the
2952         static initialization area.
2953
2954 2005-01-21 Raphael Neider <rneider AT web.de>
2955
2956         * device/lib/Makefile.in: fixed test for pic16 install dir
2957         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2958           optimizations
2959         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2960           added --optimize-goto compiler switch and pragma wparam documentation
2961         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2962         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2963           and PRODH closing bug #1071770 (peephole optimizer)
2964
2965 2005-01-19 Raphael Neider <rneider AT web.de>
2966
2967         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2968           cmdLine buffers (used when calling sdcpp...) are large enough
2969           (MAX_PATH=256 truncates arguments leading to system halts when
2970           used in MinGW...)
2971         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2972         * (genUminus): rewritten to for efficiency
2973         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2974           used uninitialized in some cases)
2975         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2976           copy the third byte from the int -- now assumes 0x80 (data memory)
2977         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2978           operands (genAddLit expects the iCode's operands to swapped as
2979           well), fixed leftover bytes (crashed for short left operands)
2980         * (pic16_genMinusDec): performance improvements, removed false
2981           PIC14 emitSKPNCs
2982         * (pic16_genMinus): fixed to cope with differently sized operands
2983         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2984           for --obanksel > 1
2985         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2986         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2987           new banksel optimization
2988         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2989           analysis for temporary registers (segfaults...)
2990         * src/pic16/peeph.def: added rule
2991
2992 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2993
2994         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2995         which converts a float number to its ASCII representation
2996         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2997         functions to convert the fractional and integer part of a float to ASCII,
2998         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2999         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3000         ram
3001         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3002         _STATMEM macros,
3003         * device/include/pic16/adc.h: added GPL info,
3004         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3005         a pCodeOp as tested operand,
3006         * (genNearPointerGet): optimized bit testing, does not use
3007         intermediate register for bit value, test directly instead with
3008         BTFSS, BTFSC, works only for single bits,
3009         * (genpic16Code): dump the name of the iCode in the asm,
3010         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3011         renamed to pic16_decodeOp,
3012         * (serialRegAssign): do not allocate a temporary register for iCode
3013         sequences that test a single bit for 1/0
3014
3015 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3016
3017         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3018         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3019         access stack and frame pointers. They are initially assigned to
3020         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3021         accessing SFRs. Updated all occurences of modification of stack or
3022         frame pointer in gen.c and pcode.c,
3023         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3024         assigning of a literal value to pointers,
3025         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3026         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3027         selected
3028
3029 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3030
3031         * doc/sdccman.lyx: update documentation about stack pragma, added
3032         some info for stack memory models
3033
3034 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3035
3036         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3037
3038 2005-01-08 Raphael Neider <rneider AT web.de>
3039
3040         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3041           udata sections to fix bug #1097823
3042
3043 2005-01-05 Raphael Neider <rneider AT web.de>
3044
3045         * src/pic16/gen.c (genGenericShift): added handling of differently
3046           sized left operand and result
3047
3048 2005-01-04 Raphael Neider <rneider AT web.de>
3049
3050         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3051         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3052           to hold the condition bit)
3053         * added new version of genCmp (old code available via #define)
3054         * added new version of genShiftLeft/genShiftRight in a generic
3055           way, now supports shifting by negative values
3056         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3057           shiftCount (expected by genGenericShift)
3058         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3059         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3060           dump
3061         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3062           is an invalid literal too...)
3063
3064 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3065
3066         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3067         from Raphael Neider,
3068         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3069         for 8-bit literals. This fixes some literal operands which are sign
3070         extended to 16-bits ints when instruction needs only 8-bits.
3071
3072 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3073
3074         * device/lib/logf.c: added mcs51 assembly version
3075         * device/lib/expf.c: added mcs51 assembly version
3076         * device/lib/_logexpf.c: new shared asm code for expf and logf
3077         * device/include/math.h: add defines for assembly math library
3078         * device/lib/Makefile.in: build new _logexpf.c
3079         * device/lib/libfloat.lib: use new _logexpf.c
3080
3081 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3082
3083         * src/pic/device.c
3084         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3085           device types which have less than 0x7f registers.
3086
3087 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3088
3089         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3090
3091 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3092
3093         * device/lib/printf_fast.c: only build on supported arch.
3094         * device/lib/printf_tiny.c: only build on supported arch.
3095         * device/lib/printf_fast_f.c: only build if asm float lib
3096         * device/lib/_fsget1arg.c: only build if asm float lib
3097         * device/lib/_fsget2args.c: only build if asm float lib
3098         * device/lib/_fsnormalize.c: only build if asm float lib
3099         * device/lib/_fsreturnval.c: only build if asm float lib
3100         * device/lib/_fsrshift.c: only build if asm float lib
3101         * device/lib/_fsswapargs.c: only build if asm float lib
3102         * device/include/stdio.h: don't provide print_fast,
3103           print_fast_f, print_tiny prototypes if --xstack used
3104
3105 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3106
3107         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3108         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3109           to the SOURCES
3110
3111 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3112
3113         * device/lib/printf_fast_f.c: same as printf_fast, but
3114           with floating point enabled
3115         * device/lib/printf_fast.c: minor tweaks
3116         * device/include/stdio.h: add printf_fast_f
3117
3118 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3119
3120         * src/SDCCmain.c: make --float-reent default for mcs51
3121         * device/lib/_fsadd.c: added mcs51 assembly version
3122         * device/lib/_fssub.c: added mcs51 assembly version
3123         * device/lib/_fsmul.c: added mcs51 assembly version
3124         * device/lib/_fsdiv.c: added mcs51 assembly version
3125         * device/lib/_fseq.c: added mcs51 assembly version
3126         * device/lib/_fsneq.c: added mcs51 assembly version
3127         * device/lib/_fsgt.c: added mcs51 assembly version
3128         * device/lib/_fslt.c: added mcs51 assembly version
3129         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3130         * device/lib/Makefile.in: add _fscmp to build
3131         * device/lib/libfloat.lib: add _fscmp to build
3132
3133 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3134
3135         * device/lib/_fs2slong.c: added mcs51 assembly version
3136         * device/lib/_fs2sint.c: added mcs51 assembly version
3137         * device/lib/_fs2schar.c: added mcs51 assembly version
3138         * device/lib/_fs2ulong.c: added mcs51 assembly version
3139         * device/lib/_fs2uint.c: added mcs51 assembly version
3140         * device/lib/_fs2uchar.c: added mcs51 assembly version
3141         * device/lib/_slong2fs.c: added mcs51 assembly version
3142         * device/lib/_sint2fs.c: added mcs51 assembly version
3143         * device/lib/_schar2fs.c: added mcs51 assembly version
3144         * device/lib/_ulong2fs.c: added mcs51 assembly version
3145         * device/lib/_uint2fs.c: added mcs51 assembly version
3146         * device/lib/_uchar2fs.c: added mcs51 assembly version
3147         * device/include/float.h: added #define to select asm vs c
3148
3149 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3150
3151         * device/lib/printf_fast.c: improvements to float output
3152         * device/include/float.h: add defines for assembly float library
3153         * device/lib/_fsget1arg.c: receive 1 float arg
3154         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3155         * device/lib/_fsnormalize.c: normalize a float
3156         * device/lib/_fsreturnval.c: return float, various helper routines
3157         * device/lib/_fsrshift.c: right shift a float's mantissa
3158         * device/lib/_fsswapargs.c: swap 2 floats
3159         * device/lib/Makefile.in: build these 6 new files for mcs51
3160         * device/lib/libfloat.lib: add these 6 files to the library
3161
3162 2004-12-26 Borut Razem <borut.razem AT siol.net>
3163
3164         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3165           built by gcc 3.4.2
3166
3167 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3168
3169         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3170           and fully reentrant and register bank neutral.
3171         * device/lib/printf_fast.c: added float (not enabled by default),
3172           added compact/slower integer (also not enabled by default),
3173           improved size/speed of fast integer code, other minor changes
3174         * device/include/stdio.h, device/lib/Makefile.in,
3175           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3176
3177 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3178
3179         * src/pic16/pcode.c: declaring variables other than at the start of a
3180           block is not supported in C by VC6.
3181
3182 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3183
3184         * applied a previous patch from Raphael Neider that wasn't included
3185         in the previous commits, which fixes infinite loops within jumptable
3186         improvements,
3187         * made some fixes that previous patches introduced
3188
3189 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3190
3191         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3192         that fixes an issue with AOP_PCODE asmop's offset,
3193         * (pic16_popCopyReg): update instance field too,
3194         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3195         function of pic port,
3196         * (genCmp, genAnd, genAssign),
3197         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3198
3199 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3200
3201         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3202         variables initial values to idata section,
3203         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3204         variables in some functions. This utilizes parmBytes field of iCode
3205         structure to hold the offset of the variable in stack. (might be
3206         able to use the stack field too?)
3207         * applied patch from Raphael Neider # ### , # ###
3208         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3209         variable initial values in idata section,
3210         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3211         for static variables with initial value
3212         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3213         applied fix in while loop from Raphael Neider.
3214
3215 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3216
3217         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3218         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3219         * src/ds390/ralloc.c (serialRegAssign): spill bits
3220         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3221         * support/Util/SDCCerr.c,
3222         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3223         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3224         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3225
3226 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3227
3228         * device/include/sdcc-lib.h: inserted LGPL, added includes
3229           asm/ds390/features.h and asm/mcs51/features.h
3230         * device/include/asm/default/features.h,
3231         * device/include/asm/gbz80/features.h,
3232         * device/include/asm/z80/features.h: added empty _AUTOMEM
3233           and _STATMEM
3234         * device/include/asm/ds390/features.h,
3235         * device/include/asm/mcs51/features.h: added files with defines for
3236           _AUTOMEM and _STATMEM indicating automatic and static storage class
3237         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3238         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3239         * src/SDCCicode.c (geniCodeCast),
3240         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3241         * src/SDCCloop.c (loopInduction): removed unused variable lr
3242         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3243           to convertToFcall to include char modulo (RFE 1065037), added check
3244           if left operand is unsigned and use abs of literal value
3245         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3246           as it doesn't work after conversion from peephole.def to peephole.rul
3247         * src/mcs51/gen.c (toBoolean): added check for size,
3248           (genModOneByte): optimized code for signed char modulo a literal
3249           power of 2 (thanks to Hubert Sack),
3250           (genRRC): removed unnecessary "clr c",
3251           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3252         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3253           jump optimization,
3254           swapped rules 256.c and 256.d,
3255           extended 256.d by using new multiple checks (thanks Erik),
3256           added rules 256.e and 256.f,
3257           updated rule 261.a and 261.b to new generated code
3258         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3259
3260 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3261
3262         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3263           induction related bugs, including first part of bug #1074377
3264
3265 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3266
3267         * applied patch from bug-report #1076292,
3268         * applied patches for genAnd and Goto-optimizations for Raphael
3269         Neider,
3270         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3271         dump a less iCode information,
3272         * src/pic16/device.h (pic16_options_t): added field debgen,
3273         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3274         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3275         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3276         puclic,
3277         * (various functions): added macros FENTRY and FENTRY2 to functions,
3278         to emit function prologue,
3279         * (various functions): fixed indentation,
3280         * (genNearPointerGet): fixed loading of FSR0,
3281         * (genPackBits): applied patch from Raphael Neider to fix updating
3282         of FSR0 and touching only the modified bits,
3283         * src/pic16/genarith.c (various functions): added macros FENTRY to
3284         emit function prologue in comments,
3285         * src/pic16/pcode.h: added functions debugf2, debugf3,
3286         * src/pic16/ralloc.c: partial fix for packForPush caused
3287         segmentation fault,
3288
3289 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3290
3291         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3292           <stsp AT users.sourceforge.net> with reversed byte order
3293         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3294
3295 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3296
3297         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3298           bug #1074377
3299         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3300         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3301
3302 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3303
3304         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3305
3306 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3307
3308         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3309           conditions,
3310           (setFromConditionArgs): friendly operand parser for peephole rules,
3311           (operandBaseName, operandsNotRelated): new peephole condition
3312           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3313           architecture specific register naming into account, handles n-way
3314           comparisons, and supports quoted literals
3315         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3316
3317 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3318
3319         * src/mcs51/peeph.def: fixed bug #1076940
3320
3321 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3322
3323         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
3324
3325 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3326
3327         Adding support for replacing ljmps with sjmps in jumptables
3328         generated for switch statements. For now you need to set the
3329         environment variable SDCC_SJMP_JUMPTABLE to enable this.
3330         Now 4 algorithms for mcs51 jumptable generation are used:
3331         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
3332         addresses loaded pc-relative for up to 112 cases and stack-pushing
3333         target addresses loaded with offset from dptr for up to 256 cases.
3334
3335         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
3336         * src/mcs51/main.c: adapted constants for switch table generation
3337         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
3338
3339 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
3340
3341         * device/lib/printf_large.c (_print_format): fixed bug 1073386
3342         * support/regression/tests/bug1057979.c: added test for bug 1073386
3343
3344 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3345
3346         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
3347         compilers
3348
3349 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
3350
3351         * src/pic16/device.h,
3352         * src/pic16/genarith.c,
3353         * src/pic16/glue.c,
3354         * src/pic16/main.c,
3355         * src/pic16/pcode.c: applied patches #1068154 and #1070213
3356
3357 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
3358
3359         Large cummulative patch for pic16 port.
3360         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
3361         to call when a stack overflow occurs,
3362         * (malloc.h): added CVS Id tag,
3363         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
3364         variable,
3365         * added libc directory. The current version of LibC contains string
3366         functions, ctype functions and macros and some functions of the
3367         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
3368         be extensively tested in the future. Standard disclaimer here.
3369         Library is not automatically build yet. But one can build it by
3370         invoking 'make' inside the libc directory.
3371         * added ADC library under libio. Preliminary version yet.
3372
3373         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
3374         * src/pic16/gen.c (aopForRemat): asmop size is filled by
3375         aopForRemat() now and not by pic16_aopOp(),
3376         * (pic16_popGetTempReg): removed warning messgae when allocating
3377         temporary registers, its a buggy feature and will be removed,
3378         * (pic16_popGet): set register instance field in AOP_CRY,
3379         * (pic16_outBitC): fixed for results in size greater than 1,
3380         * (genUminusFloat): fixed for pic16, ported code from mcs51,
3381         * (pic16_storeForReturn): optimized return of 0,
3382         * (genCmp): experimental code for new genCmp which uses PIC18's
3383         special compare&skip instructions. Initial tests fail some times
3384         with variables grater than 1 byte in size, so new code is disabled,
3385         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
3386         a single bit,
3387         * (genCast): began a fix to optimize the casting of a bit to another
3388         bit, now assigning a bitfield to another bitfield will fail, sorry,
3389         * src/pic16/main.c: disabled the use of lr-support feature,
3390         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
3391         * added some function prototypes, added function _debugf prototype,
3392         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
3393         bits with offset (case PO_GPR_BIT),
3394         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
3395         command line,
3396         * (isBankInstruction): modified to return 0 for no banking instruction,
3397         and 1 for banking instruction,
3398         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
3399         caused stop processing pCodes after a inline assembly block,
3400         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
3401         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
3402         registers when it shouldn't,
3403         * src/pic16/ralloc.c (allocReg): add preliminary support for
3404         supporting a limited set of temporary registers,
3405
3406 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3407
3408         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
3409           genDataPointerSet): ensure assignments always copy in MSB to LSB
3410           order,
3411           (loadRegFromAop): recognize CLRH optimization,
3412           (genFunction): optimize RECEIVE iCodes in reentrant functions
3413
3414 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3415
3416         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
3417           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
3418           selected.
3419         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
3420         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
3421           contiguous with data
3422
3423 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3424
3425         * device/lib/_gptrget.c (_gptrget),
3426         * device/lib/_gptrgetc.c (_gptrgetc),
3427         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
3428           instead of sjmp to ret
3429         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
3430           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
3431
3432 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
3433
3434         * .version: bumped version to 2.4.7
3435         * device/lib/_gptrget.c (_gptrget): is now _naked
3436         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
3437         * device/lib/_gptrput.c (_gptrput): is now _naked
3438         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
3439           (createFunction): fixed xstack
3440         * src/SDCCglue.c (emitMaps): set allocation required for bit area
3441         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
3442           or bit either,
3443           (geniCodeCritical): store original interrupt state in an iTemp bit
3444           var unless stack-auto
3445         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
3446         * src/SDCCmain.c (setIncludePath): added include/target to search path
3447         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
3448         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
3449           prototype,
3450           (processFuncArgs): put bit vars in bit area
3451         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
3452           unsaveRBank): fixed xstack,
3453           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
3454           (genFunction, genEndFunction): fixed xstack,
3455           (genAssign): optimization don't walk backwards through mem
3456         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
3457         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
3458         * support/regression/Makefile: also make library (for stack-auto) when
3459           making "all" and added "test-mcs51-xstack-auto"
3460         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
3461         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
3462         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
3463         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
3464         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
3465           make-library by MAKE_LIBRARY
3466         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
3467           regression tests for xstack
3468         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
3469         * support/regression/tests/critical.c: test for critical on mcs51
3470
3471 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3472
3473         * support/regression/ports/ucz80/spec.mk: use include and lib files from
3474           built version of sdcc instead of installed version
3475
3476 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
3477
3478         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
3479         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
3480           vprintf.c now
3481         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
3482         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
3483           WARNING: remove device/lib/build/z80/printf.o by hand when
3484           updating from previous build!
3485         * device/lib/z80/printf.c: updated comment
3486         * support/regression/tests/bug1057979.c: test all ports now
3487         * support/regression/tests/bug1065458.c: file added
3488
3489 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3490
3491         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
3492           *_start and *_end symbols for static functions
3493
3494 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
3495
3496         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
3497           and search crt0.o in all library paths,
3498           (setIncludePath): proper handling of --nostdinc,
3499           (setLibPath): proper handling of --nostdlib
3500         * support/regression/Makefile,
3501         * support/regression/ports/ds390/spec.mk,
3502         * support/regression/ports/gbz80/spec.mk,
3503         * support/regression/ports/hc08/spec.mk,
3504         * support/regression/ports/mcs51/spec.mk,
3505         * support/regression/ports/mcs51-large/spec.mk,
3506         * support/regression/ports/mcs51-stack-auto/spec.mk,
3507         * support/regression/ports/z80/spec.mk: use include and lib files from
3508           built version of sdcc instead of installed version
3509         * doc/sdccman.lyx: fixed typo in --nostdinc
3510
3511 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
3512
3513         * src/pic/pcode.c,
3514         * src/pic/device.c,
3515         * src/pic/ralloc.c,
3516         * src/pic/gen.c : added support to generate code for struct bit fields.
3517
3518 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
3519
3520         * as/xa51/xa_version.h,
3521         * device/include/errno.h,
3522         * device/include/regc515c.h,
3523         * device/lib/_itoa.c,
3524         * device/lib/_ltoa.c,
3525         * device/lib/ser_ir_cts_rts.c,
3526         * sim/ucsim/xa.src/glob.cc,
3527         * sim/ucsim/xa.src/inst_gen.cc,
3528         * sim/ucsim/xa.src/xa_bit.cc,
3529         * sim/ucsim/xa.src/xa_sfr.cc,
3530         * sim/ucsim/z80.src/inst_dd.cc,
3531         * sim/ucsim/z80.src/inst_fdcb.cc,
3532         * support/scripts/keil2sdcc.pl,
3533         * src/pic16/pic16.dsp,
3534         * src/pic16/pic16a.dsp: corrected cvs line endings
3535         * device/lib/printf_large.c: fixed bug 1057979
3536         * src/pic16/gen.c: fixed non-C standard code
3537         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
3538         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
3539         * support/regression/ports/mcs51/support.c: reload T1 asap
3540         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
3541           pdata use and clear idata startup behaviour
3542         * support/regression/tests/bug1057979.c: added
3543
3544 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
3545
3546         * device/examples/ds390/ow390/ad26.h,
3547         * device/examples/ds390/ow390/cnt1d.h,
3548         * device/examples/ds390/ow390/crcutil.c,
3549         * device/examples/ds390/ow390/ownet.h,
3550         * device/examples/ds390/ow390/owsesu.c,
3551         * device/examples/ds390/ow390/swt12.h,
3552         * device/examples/ds390/ow390/swtoper.c,
3553         * device/examples/ds390/ow390/temp10.h,
3554         * device/examples/ds390/ow390/thermodl.c,
3555         * device/examples/ds390/tinitalk/tinitalk.dsp,
3556         * device/examples/ds390/tinitalk/tinitalk.dsw,
3557         * device/examples/mcs51/clock/hw.h,
3558         * device/examples/mcs51/simple2/go.bat,
3559         * device/examples/serialcomm/windows/serial.h,
3560         * device/examples/xa51/dummy.c,
3561         * device/examples/xa51/hello.c,
3562         * device/include/80c51xa.h,
3563         * device/include/at89x051.h: corrected cvs line endings
3564
3565 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
3566
3567         * src/pic16/main.c (options): added command line --gstack, to trace
3568         stack over/under flows,
3569         * added pragma 'wparam' to allow passing first byte of function
3570         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
3571         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
3572         call to __gstack_test function and sets up the symbol as extern,
3573         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
3574         * popaop): added call to pic16_testStackOverflow,
3575         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
3576         wparamList list,
3577         * (genCall, genPcall): now all parameters are passed via stack
3578         except in functions that are pass to wparam pragma in which WREG is
3579         used too,
3580         * (genPcall): REENTRANT flag is checked to see if variable prototype
3581         contains reentrant keyword, don't call a non-reentrant function, via
3582         a reentrant function pointer or vice versa, functions are never
3583         passed via WREG,
3584         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
3585         D.Winkler,
3586         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
3587         SIGSEGV when accessing a NULL register stucture,
3588         * (pic16_printGPointerType): modified to handle UPPER modifier for
3589         function initializers, changed prototype of function to simpler one,
3590         * (pic16_printIvalFuncPtr): check to see if function is already
3591         added in externs list,
3592         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
3593         optimized a move from W to SFR with a move to the same register
3594         later after a CALL,
3595         * device/lib/pic16/debug: NEW directory, contains debug features
3596         which are enabled when linking with libdebug.lib, currently command
3597         line option --gstack enables stack pointer tracing for over/under
3598         flow, corresponding sources are in debug/gstack
3599
3600 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
3601
3602         * doc/sdccman.lyx: updated SDCC version,
3603         * (PIC16 port): update list of command line options,
3604         * src/pic16/device.h (structure pic16_options_t): added field gstack
3605         to enable stack overflow tracing on push/pops,
3606         * src/pic16/device.c (statistics structure): added statistics
3607         structure,
3608         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
3609         pic16_dump_int_registers): increase statistics counters for each
3610         * variable which is encountered
3611         * (pic16_dump_usection): emit each .udata variable to its own udata
3612         section,
3613         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
3614         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
3615         parameters via stack, otherwise use old scheme,
3616         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
3617         assembler output file,
3618         * src/pic16/main.c: added command line options --gstack to enable
3619         push/pop tracing for stack overflow,
3620         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
3621         instructions): added size of each instruction,
3622         * (pic16_countInstruction): estimate size of instructions in
3623         the_pFile list, inline assembly blocks are not counted,
3624         * (pic16_FixRegisterBanking): trace previous register usage, when
3625         banksel optimizations is greater than 0, don't emit a redudant
3626         banksel directive,
3627
3628 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
3629
3630         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
3631         * src/pic16/ralloc.c : applied same fix for pic16.
3632         * src/pic/gen.c : tidied it up a little.
3633
3634 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3635
3636         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
3637         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
3638
3639 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3640
3641         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
3642
3643 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3644
3645         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
3646         non-reentrant function __modsint in the interrupt function (thus
3647         corrupting math operations during serial I/O)
3648         * device/lib/ser_ir.c: as above, changed buffersize
3649         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
3650         256.c,d for zeroing
3651         * doc/Makefile: added option -t for rsync
3652
3653 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3654
3655         * src/SDCCast.h (struct ast),
3656         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
3657
3658 2004-10-20 Borut Razem <borut.razem AT siol.net>
3659
3660         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
3661         package
3662
3663 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
3664
3665         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
3666         makefile targets,
3667         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
3668         support functions to replace long sequences of MOVFF's from access
3669         bank registers to stack and vice versa,
3670         * src/pic16/device.h: added new field opt_flags, where optimization
3671         flags can be set to enable certain features,
3672         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
3673         * pBlock, (genFunction, genEndFunction): surroung loop for
3674         saving/loading used registers in stack with PC_INFO pCodes,
3675         INF_LREGS. Code in between can then be optimized by pCode optimizer
3676         to support function calls,
3677         * (genDataPointerSet): fixed bug which loaded float fields in
3678         structures with corrupt data,
3679         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
3680         in a standard way debug info on stderr. Feature used for developing
3681         and debugging only,
3682         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
3683         obsolete chunks of code,
3684         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
3685         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
3686         * pic16/src/pcode.c (pic16_newpCodeInfo,
3687         * (pic16_newpCodeOpLocalRegs),
3688         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
3689         feature,
3690         * (pic16_pCodeConstString): printing of the initial value of a
3691         symbol as a comment is inhibited since parsing was already done by
3692         copyStr and output is corrupt,
3693         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
3694
3695 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3696
3697         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
3698
3699 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
3700
3701         * as/mcs51/lkarea.c: removed old K&R style,
3702           (lnksect): changed check on boundary error,
3703           (lnksect2): changed check on boundary error,
3704           (lnksect2): extend XSTK to end of page if size = 1
3705         * as/mcs51/lkmain.c: removed old K&R style,
3706           (Areas51): create l_IRAM symbol
3707         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
3708         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
3709           model-mcs51-stack-auto, added model-mcs51-xstack-auto
3710         * device/lib/_mullong.c: added version to be compiled with xstack
3711         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
3712         * device/lib/mcs51/crtxclear.asm: clear pdata as well
3713         * device/lib/mcs51/crtxstack.asm: fixed comment
3714         * src/SDCCglue.c: maxInterrupts defaults to 0,
3715           (emitMaps): added pdata,
3716           (createInterruptVect): (re)moved default,
3717           (glue): added pdata,
3718           (glue): moved __start__xstack to XSTK with default size 1
3719         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
3720           and options.float_rent when options.stackAuto is set,
3721           (linkEdit): only write XDATA_NAME if provided on command line
3722         * src/SDCCmem.h,
3723         * src/SDCCmem.c: added pdata
3724         * src/port.h: added pdata_name to PORT
3725         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
3726           (saveRegisters, unsaveRegisters): removed usage of B,
3727           (genMinus): fixed accumulator clash,
3728           (genJumpTab): added comment, this needs another look
3729         * src/mcs51/gen.c: added check for "B in use" paranoia,
3730           added pushB() and popB()
3731         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
3732           chance
3733         * src/avr/main.c,
3734         * src/ds390/main.c,
3735         * src/hc08/main.c,
3736         * src/mcs51/main.c,
3737         * src/pic/main.c,
3738         * src/pic16/main.c,
3739         * src/xa51/main.c,
3740         * src/z80/main.c: (reset_regparms) made void parameter explicit and
3741           added PSEG (PAG,XDATA) or NULL to port specifier
3742         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
3743         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
3744           (_mcs51_genInitStartup): removed __start__xstack equ,
3745           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
3746         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
3747         * src/z80/gen.c (_rleAppend): fixed warnings
3748         * support/regression/tests/zeropad.c: added pdata test
3749         * .version: bumped to 2.4.6
3750
3751 2004-10-17 Borut Razem <borut.razem AT siol.net>
3752
3753         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
3754         as a part of nightly build
3755
3756 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
3757
3758         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
3759         WREG holds the first byte function parameters,
3760         * (aopForSym): take special case for symbols which are in FARSPACE
3761         but in CODESPACE too,
3762         * (assignResultValue): modified to take into account _G.useWreg,
3763         * (genCall): don't use wreg for parameter passing when function is
3764         declared as reentrant, too, added optimization INCF to stack
3765         pointer when stack parameter count is 1,
3766         * (genFunction, genEndFunction): refurnished and fixed to not using
3767         wreg for passing parameters when function has varargs or is
3768         reentrant, fixed bug with symbol name compare for generating
3769         functions in absolute address,
3770         * (pic16_storeForReturn): refurnished,
3771         * (genCmp): began writing a new version of the function, not ready
3772         yet, therefore it is disabled,
3773         * (genAssign): do not read code memory when assigning a function to
3774         a pointer function,
3775         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
3776         array of characters, not pointer,
3777         * (pic16initialComments): in debug mode emit an .ident directive for
3778         the assembler,
3779         * (_process_pragma): emit a new warning type (internal to pic16)
3780         when setting stack to default length, emit a similar warning when
3781         placing a function at absolute address and address is not word aligned
3782         * (_pic16_parseOptions): added 'return TRUE' statement,
3783         * (_pic16_linkEdit): if compiling a source, then add the source's
3784         file object, first in the list of objects to link,
3785
3786 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
3787
3788         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
3789         * src/pic/main.c : removed VC warning.
3790         * src/pic/gen.c : changed comment.
3791
3792 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
3793
3794         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
3795         reference to a deprecated symbol _GPTRREG was causing failure to
3796         link. Thanks G. M. Gallant for the info.
3797
3798 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
3799
3800         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
3801         comments for Bugs item #954788.
3802
3803 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
3804
3805         * src/pic16/device.c (pic16_dump_gsection,
3806         * pic16_groupRegistersInSection): handle symbols declared to be in
3807         access bank differently,
3808         * src/pic16/gen.c (struct _G): added field resDirect,
3809         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
3810         send values read from stack directly to result and don't allocate
3811         temporary values,
3812         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
3813         same registers,
3814         * (pic16_sameRegsOfs): NEW,
3815         * (freeAsmop): if _G.resDirect is set then do not mark registers as
3816         free because they were not allocated from temporary pool,
3817         * pic16_popRegFromString): workaround to fix a problem with
3818         allocating variables twice or never,
3819         * (genGenPointerGet): using PRODL instead of FSR0H,
3820         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
3821         instead of FSR0H,
3822         * (genAssign): take advantage of the _G.resDirect flag,
3823         * (genCast): around line 11844, use mov2f instead of directly
3824         MOVFF'ing between operands to account for literal values,
3825         * src/pic16/genutils.c: some new debug functions for gpsim have been
3826         added,
3827         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
3828         float with integer part only,
3829         * src/pic16/main.c (_process_pragma): handle pragma udata access to
3830         place variables in access bank
3831         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
3832         updated sources to reflect recent changes in gen.c
3833
3834 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
3835
3836         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
3837         sources that searched for headers in installation path, now the
3838         device/include/pic16 is used,
3839         * src/pic16/glue.c (pic16glue),
3840         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3841         .line directives if not in debug mode, this suppresses assembler's
3842         warnings for ignored directives
3843
3844 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3845
3846         * src/port.h: made reset_regparms prototype void parameter explicit.
3847         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3848         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3849         * doc/sdccman.lyx: documented warning disabling and how to use
3850           printf_large to make it print floats.
3851         * device/include/stdbool.h: NEW
3852         * device/lib/_atof.c,
3853         * device/lib/_divuint.c,
3854         * device/lib/_divulong.c,
3855         * device/lib/expf.c,
3856         * device/lib/printf_large.c,
3857         * device/lib/sincosf.c,
3858         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3859         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3860           a completely reentrant lib.
3861
3862 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3863
3864         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3865         * device/include/pic16/stdio.h: fixed bug with colon
3866
3867 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3868
3869         * device/include/pic16/stdio.h,
3870         * device/include/pic16/stdlib.h,
3871         * device/include/pic16/math.h: NEW
3872         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3873         declared as _naked to reduce overhead
3874         * device/lib/Makefile.in (target port-specific-objects-pic16):
3875         changed * to *.* so to ignore the CVS directory,
3876         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3877         stacked variables back in stack,
3878         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3879         corruption
3880
3881 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3882
3883         * .version: bumped version number to 2.4.5
3884         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3885         * support/Util/SDCCerr.c (messages structure): added entry for
3886         W_POSSBUG2
3887
3888         Large cumulative patch for pic16 port and libraries.
3889         * device/include/pic16/sdcc-lib.h,
3890         * device/include/pic16/stdarg.h,
3891         * device/include/asm/pic16/features.h,
3892         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3893         * device/include/pic16/float.h: changes reentrant keyword with
3894         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3895         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3896         updated target build-libraries to include objects from gptr,
3897         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3898         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3899         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3900         all function headings,
3901         * src/SDCCmain.c: added global parameter userIncDirsSet,
3902         * (parseCmdLine): when option -I is encountered add directory to
3903         userIncDirsSet too,
3904         * src/version.awk: added space between control and long,
3905         * src/pic16/NOTES: added some notes for the port,
3906         * src/pic16/gen.c: added prototype for mov2fp function,
3907         * (fReturnpic16[]): properly named return value registers,
3908         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3909         * (aopForSym): added code to handle symbols with onStack flag set,
3910         symbols onStack are allocated PTRSIZE bytes,
3911         * (aopFreeAsmop): handles special case where asmops are stack objects,
3912         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3913         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3914         added argument lock to trace flaws in allocating temporary registers
3915         when developing port,
3916         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3917         * (pic16_popRegFromString): reenabled allocating a direct register
3918         from string,
3919         * (assignResultValue): various beautifications,
3920         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3921         referenced function argument,
3922         * (genIpush): reenabled to allow stacked arguments, handles only
3923         ic->parmPush iCodes,
3924         * (genCall, genPcall): major changes to allow for variable argument
3925         functions, fixed a bug with falsely restoring stack pointer after
3926         returning from call,
3927         * (genFunction): pending code for critical function,
3928         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3929         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3930         * (genNearPointerGet): fixed bug with indirect reading, was always
3931         reading from INDF0
3932         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3933         pointers,
3934         * (genAddrOf): rewrote code to take address of a stacked function parameter
3935         * (genCast): fixed casting to generic pointer type,
3936         * src/pic16/gen.h: added AOP_STA,
3937         * (struct asmop): added field stk,
3938         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3939         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3940         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3941         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3942         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3943         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3944         generic pointers,
3945         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3946         and library paths,
3947         * (pic16_port structure): generic pointer size is set to 3,
3948         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3949         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3950         compiler warning,
3951         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3952         operand is an iTemp,
3953
3954 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3955
3956         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3957         * debugger/mcs51/simi.c: addapt new syntax of s51
3958
3959 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3960
3961         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3962         * src/pic16/pcode.c: commented out some calls to free() in order to
3963         fix bug #989576,
3964
3965 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3966
3967         * src/SDCCicode.h,
3968         * src/SDCCicode.c (isiCodeInFunctionCall),
3969         * src/avr/ralloc.c (selectSpil),
3970         * src/pic/ralloc.c (selectSpil),
3971         * src/pic16/ralloc.c (selectSpil),
3972         * src/ds390/ralloc.c (selectSpil),
3973         * src/hc08/ralloc.c (selectSpil),
3974         * src/xa51/ralloc.c (selectSpil),
3975         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3976         stack in the middle of a function call sequence (fixes bug #1020268)
3977         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3978         costs associated with the minimum switch case.
3979
3980 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3981
3982         * src/SDCC.lex: fixed bug #1030549
3983
3984 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3985
3986         * src/SDCCcse.h (struct cseDef),
3987         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3988         over a function call if the CSE is derived from a symbol whose
3989         address has been taken (fixes bug #1029883)
3990         * support/regression/tests/bug-1029883: a new regression test for
3991         this bug
3992
3993 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3994
3995         * src/hc08/gen.c (emitinline): fixed bug #1029778
3996         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3997         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3998         and starts toward RFE #905167)
3999
4000 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4001
4002         * src/pic16/gen.c (mov2f): New function to move an operand to
4003         another without considering if it is a literal or a register,
4004         * (pic16_sameRegs): don't check if they are both AOP_REG,
4005         * (AccRsh): removed andmask=0 lines,
4006         * (genLeftShift): duplicated to be improved in future versions,
4007         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4008         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4009         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4010         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4011         * (insertBankSwitch): fixed inserting banksel directives algorithm
4012         for instructions that follow a skip instruction, this fixes a report
4013         for broken subtraction code generation,
4014         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4015         iCode is a left op, just in case result and right share the same
4016         registers
4017
4018 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4019
4020         * src/hc08/main.c,
4021         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4022         preservation of HX
4023         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4024         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4025         on 2004-09-12; it was buggy
4026
4027 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4028
4029         * src/SDCCsymt.h: removed RESULT_CHECK
4030         * src/SDCCast.c,
4031         * src/SDCCglue.c,
4032         * src/SDCCval.c,
4033         * src/pic/glue.c,
4034         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4035
4036 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4037
4038         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4039         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4040         configuration values no more rejected by compiler, they are assigned
4041         to configuration registers with a warning message instead,
4042         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4043         the for-loop so last conf register is emitted too,
4044         * (_pic16_initPaths): link library libsdcc.lib by default,
4045         * (_hasNativeMulFor): modified test for multiplication according to
4046         Raphael Neider's remarks. Integer multiplication is also done with
4047         support functions,
4048         * device/include/pic16/pic18fregs.h: corrected type error in while
4049         testing and including 18f6720 header file
4050
4051 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4052
4053         * src/pic16/device.h (pic16_options): removed field use_crt,
4054         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4055         until an optimization to handle single bits is added,
4056         * (pic16_loadFSR0): moved before genUnpackBits,
4057         * (genAnd): some white lines removed,
4058         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4059         leave_reset flags in pic16_options when using crt modules,
4060
4061 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4062
4063         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4064           for bugs 898889 & 979599. Also used some safer print instructions.
4065
4066 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4067
4068         * src/pic16/device.h (pic16_options_t): added field use_crt,
4069         crt_name, no_crt,
4070         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4071         catch a probable future bug,
4072         * src/pic16/gen.c: aopIdx function commented out,
4073         * (genAssign): commented out old code which used aopIdx,
4074         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4075         code, added if conditionals to take into account the --use-crt
4076         command line options,
4077         * src/pic16/main.c (pic16_optionsTable): added new command line
4078         options, --use-crt= and --no-crt,
4079         * (_pic16_linkEdit): now the proper crt object is added in the
4080         linker command line except than when --no-crt is specified,
4081         * src/pic16/pcode.c,
4082         * src/pic16/pcode.h: added some structures and functions for a new
4083         optimization scheme to compansate for instruction overhead between
4084         same iCodes, this scheme is currently under development and is not
4085         working in any way,
4086         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4087         to && operator,
4088         * device/lib/pic16/startup/crt0i.c,
4089         * device/lib/pic16/startup/crt0iz.c: added global char variable
4090         __uflags to force the generation of an idata section
4091
4092 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4093
4094         * doc/Makefile,
4095         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4096         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4097
4098 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4099
4100         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4101         Frieder) and clarified the default code optimization mode
4102
4103 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4104
4105         * src/SDCC.lex (doPragma, process_pragma),
4106         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4107         "opt_code_size", and "opt_code_balanced"
4108         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4109         regrouped options by category, added support for category headers
4110         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4111         and "--opt-code-size"
4112         * doc/sdccman.lyx: documented these new options and pragmas
4113         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4114         preference into account
4115
4116 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4117
4118         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4119           geniCodePreDec): Fixed bug 904237 by generating a warning
4120         * src/SDCCerr.h,
4121         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4122
4123 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4124
4125         * src/pic/device.c : When no max ram set validate full memory range.
4126         * src/pic/pcode.c,
4127         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4128
4129 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4130
4131         * device/lib/_gptrget.c,
4132         * device/lib/_gptrput.c: updated comment
4133         * device/lib/calloc.c,
4134         * device/lib/free.c,
4135         * device/lib/malloc.c,
4136         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4137         * src/SDCCcse.c (cseBBlock),
4138         * src/SDCCicode.c (printOperand, geniCodeArray),
4139         * src/SDCCicode.h (struct operand): fixed bug 868103
4140         * support/regression/tests/bug-868103.c: added
4141         * src/SDCCast.c (searchLitOp),
4142         * src/SDCCcse.h (struct cseDef),
4143         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4144         * src/SDCCicode.h (struct operand),
4145         * src/SDCCsymt.h (struct sym_link),
4146         * src/avr/gen.c (hasInc),
4147         * src/ds390/gen.c (hasInc),
4148         * src/hc08/gen.c (genPlusIncr, hasInc),
4149         * src/mcs51/gen.c (hasInc),
4150         * src/pic16/glue.c (pic16_printIvalChar),
4151         * src/pic16/ralloc.c (regWithIdx),
4152         * src/xa51/gen.c (hasInc) : removed warnings
4153         * src/SDCCast.c (createBlock): added comment ???
4154         * src/hc08/ralloc.c: updated comments
4155
4156 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4157
4158         * doc/sdccman.lyx: updated section on switch statements, added
4159         section about semaphore locking
4160         * doc/Makefile: added option -info for latex2html
4161         * device/lib/_gptrget.c,
4162         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4163
4164 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4165
4166         * src/pic/device.h,
4167         * src/pic/device.c,
4168         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4169          maxram is less than 0x100.
4170
4171 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4172
4173         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4174
4175 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4176
4177         * src/port.h,
4178         * src/mcs51/main.c,
4179         * src/ds390/main.c,
4180         * src/z80/main.c,
4181         * src/hc08/main.c,
4182         * src/pic/main.c,
4183         * src/pic16/main.c,
4184         * src/avr/main.c,
4185         * src/xa51/main.c
4186         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4187         a jump table is the best form for a switch statement, including
4188         automatic insertion of missing cases to make the case range
4189         continuous. Developed in collaboration with Frieder Ferlemann.
4190
4191 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4192
4193         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4194         accumulator result if it needs sign extension
4195
4196 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4197
4198         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4199
4200 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4201
4202         * device/lib/gbz80/printf.c,
4203         * device/lib/z80/printf.c: removed define for NULL
4204
4205 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4206
4207         * as/xa51/xa_link.c,
4208         * device/examples/ds390/ow390/ad26.c,
4209         * device/examples/ds390/ow390/cnt1d.c,
4210         * device/examples/ds390/ow390/counter.c,
4211         * device/examples/ds390/ow390/ds2480.h,
4212         * device/examples/ds390/ow390/ds2480ut.c,
4213         * device/examples/ds390/ow390/findtype.c,
4214         * device/examples/ds390/ow390/gethumd.c,
4215         * device/examples/ds390/ow390/owllu.c,
4216         * device/examples/ds390/ow390/ownetu.c,
4217         * device/examples/ds390/ow390/swt12.c,
4218         * device/examples/ds390/ow390/swtloop.c,
4219         * device/examples/ds390/ow390/temp.c,
4220         * device/examples/ds390/ow390/temp10.c,
4221         * device/examples/ds390/ow390/thermo21.c,
4222         * device/examples/ds390/ow390/tinilnk.c,
4223         * device/examples/ds390/ow390/tstfind.c,
4224         * device/examples/serialcomm/windows/serial.cpp,
4225         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4226         * device/include/reg51.h: fixed line endings for cvs
4227
4228 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4229
4230         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4231         packRegsForAccUse, packRegisters): new accumulator register
4232         packing algorithm
4233         * support/regression/ports/hc08/support.c (_putchar): suppress
4234         warning of unused variable
4235         * src/SDCCicode.c: added SWAP entry to codeTable
4236
4237 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4238
4239         * device/lib/sprintf.c: forgot to add this file before previous commit
4240
4241 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4242
4243         * src/pic16/gen.c (genPackBits): added operand right in function
4244         parameters, load result directly if p_type is POINTER (that is
4245         called by genNearPointerSet)
4246         * (genUnPackBits): added operand left in function parameters,
4247         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4248         FSR0 if accessing bitfields,
4249
4250 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4251
4252         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4253           _print_format; updated printf, sprintf, vsprintf
4254         * device/include/asm/default/features.h: corrected comment/define
4255         * device/lib/Makefile.in: added sprintf.c
4256         * device/lib/libsdcc.lib: added sprintf module
4257         * device/lib/printf_large.c,
4258         * device/lib/vprintf.c,
4259         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4260           into these 3 files
4261         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4262         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4263         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4264           hc08 test
4265         * support/regression/tests/zeropad.c: define idata as data for hc08
4266
4267 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4268
4269         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4270         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4271         labels are referenced at least once (even if a reference is not found)
4272         * src/hc08/gen.c (emitcode): set isComment flag for comments
4273         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4274         loads), rules 6a..6b (optimize jumps to return)
4275
4276 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4277
4278         * device/lib/acosf.c (acosf),
4279         * device/lib/asinf.c (asinf),
4280         * device/lib/atanf.c (atanf),
4281         * device/lib/ceilf.c (ceilf),
4282         * device/lib/cosf.c (cosf),
4283         * device/lib/coshf.c (coshf),
4284         * device/lib/cotf.c (cotf),
4285         * device/lib/fabsf.c (fabsf),
4286         * device/lib/floorf.c (floorf),
4287         * device/lib/log10f.c (log10f),
4288         * device/lib/logf.c (logf),
4289         * device/lib/sinf.c (sinf),
4290         * device/lib/sinhf.c (sinhf),
4291         * device/lib/sqrtf.c (sqrtf),
4292         * device/lib/tanf.c (tanf),
4293         * device/lib/tanhf.c (tanhf),
4294         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4295         replaced all instances of "reentrant" in the library functions
4296         defined in math.h with this macro.
4297         * support/regression/tests/float_trans.c: reenabled test for hc08
4298
4299 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4300
4301         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4302         erroneously deleted
4303
4304 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4305
4306         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4307         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4308         multi-byte volatile operands are used
4309         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4310         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4311         initialization to area GSINIT0 so that it would always precede
4312         any static initializers in GSINIT
4313         * support/regression/tests/zeropad.c: fixed idata define for hc08
4314         * support/regression/tests/bug-927659.c,
4315         * support/regression/tests/float_trans.c: disabled tests for hc08
4316         pending missing library routines
4317         * .version: increased version number to 2.4.4 - hc08 port now passes
4318         regression tests
4319
4320
4321 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4322
4323         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
4324         * Makefile.common.in,
4325         * as/Makefile,
4326         * as/hc08/Makefile.in,
4327         * as/mcs51/Makefile.in,
4328         * as/z80/Makefile.in,
4329         * debugger/mcs51/Makefile.in,
4330         * device/include/Makefile.in,
4331         * device/lib/Makefile.in,
4332         * doc/Makefile,
4333         * link/Makefile,
4334         * link/z80/Makefile.in,
4335         * packihx/Makefile.in,
4336         * sim/ucsim/main_in.mk,
4337         * sim/ucsim/avr.src/Makefile.in,
4338         * sim/ucsim/doc/Makefile.in,
4339         * sim/ucsim/gui.src/serio.src/Makefile.in,
4340         * sim/ucsim/hc08.src/Makefile.in,
4341         * sim/ucsim/s51.src/Makefile.in,
4342         * sim/ucsim/xa.src/Makefile.in,
4343         * sim/ucsim/z80.src/Makefile.in,
4344         * src/Makefile.in,
4345         * support/cpp2/Makefile.in,
4346         * support/librarian/Makefile,
4347         * support/makebin/Makefile: added DESTDIR to the install path proposed
4348         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
4349         * doc/sdccman.lyx: added DESTDIR documentation
4350
4351 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
4352
4353         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
4354         instruction for interrupt handlers, use fast returns when returning
4355         from high priority interrupts
4356
4357 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4358
4359         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
4360         code generation
4361         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
4362         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
4363         bugs, ported much of Bernhard's code from mcs51
4364         * src/mcs51/gen.c (genSend),
4365         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
4366         than one when calling a reentrant function
4367         * device/lib/_mullong.c: defined an alternate struct layout for big
4368         endian ports (hc08)
4369
4370 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4371
4372         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
4373         test
4374
4375 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4376
4377         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
4378         are sane and complete before asking the port its prefered parameter
4379         passing method (fixes bug #1017633)
4380         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
4381         and _ret3
4382
4383 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4384
4385         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
4386         problem in bitfields >= 8 bits.
4387
4388 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4389
4390         * src/SDCCsymt.c: undid changes that were not meant to be committed
4391
4392 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4393
4394         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
4395
4396 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
4397
4398         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
4399           copied and wrong bit got inverted
4400
4401 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4402
4403         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
4404         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
4405         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
4406         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
4407         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
4408         assignments to bitfields at known addresses
4409         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
4410         reads from bitfields at known addresses
4411         * src/hc08/ralloc.c (packRegisters),
4412         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
4413         genhc08Code): optimize pointer get values used as conditionals
4414         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
4415         and branch
4416
4417 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4418
4419         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
4420         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
4421         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
4422         as conditionals
4423
4424 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4425
4426         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
4427
4428 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4429
4430         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
4431         related problems
4432
4433 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
4434
4435         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
4436
4437 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4438
4439         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
4440         mcs51 port
4441
4442 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
4443
4444         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
4445
4446 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4447
4448         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
4449         cases use more compact code.
4450
4451 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
4452
4453         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
4454
4455 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4456
4457         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
4458
4459 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4460
4461         * src/SDCCsymt.h,
4462         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
4463         parameter of changePointer() from symbol* to sym_link*
4464         * src/SDCCast.c (decorateType): call changePointer() for CAST op
4465         * src/SDCCsymt.c (compareType): void* type is castable to other
4466         pointers, but not necesarily an exact match.
4467         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
4468         is no longer blindly treated as an exact match.
4469         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
4470
4471 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
4472
4473         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
4474
4475 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
4476
4477         * src/pic/gen.c,
4478         * src/pic/pcode.c,
4479         * src/pic/ralloc.h,
4480         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
4481
4482 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
4483
4484         * src/pic/device.c,
4485         * src/pic/device.h,
4486         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
4487
4488 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4489
4490         * src/mcs51/gen.c (emitcode): fixed bug #992819
4491
4492 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
4493
4494         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
4495           there's no need to make it worse
4496
4497 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4498
4499         * src/mcs51/ralloc.c (deassignLR),
4500         * src/ds390/ralloc.c (deassignLR),
4501         * src/hc08/ralloc.c (deassignLR),
4502         * src/z80/ralloc.c (deassignLR),
4503         * src/pic/ralloc.c (deassignLR),
4504         * src/pic16/ralloc.c (deassignLR),
4505         * src/avr/ralloc.c (deassignLR),
4506         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
4507         rlivePoint): fixed another part of bug #971834
4508
4509 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4510
4511         * src/z80/main.c: enabled "critical" keyword
4512         * src/z80/mappings.i,
4513         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
4514         functions (fixes bug #979646)
4515         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
4516
4517 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4518
4519         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
4520           such as c:\mydir.
4521
4522 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
4523
4524         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
4525           doesn't disable too much optimizations
4526
4527 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4528
4529         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
4530
4531 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
4532
4533         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
4534
4535 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
4536
4537         * src/pic/gen.c tidied up tabs
4538         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
4539         * src/pic/main.c tidied up tabs
4540         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
4541         * src/pic/pcoderegs.c tidied up tabs
4542         * src/pic/ralloc.c tidied up tabs
4543
4544 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
4545
4546         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
4547         to S_FIXED for pic16 port and when symbol is not in level 0,
4548         allocate for S_REGISTER storage class and pic16 port, too,
4549         * src/pic16/device.h: prototype for checkSym,
4550         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
4551         * (pic16_assignConfigWordValue): test the value and the mask to
4552         validate that the value is suitable for the configuration word,
4553         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
4554         collect extern declared symbols, don't emit symbol twice, check
4555         first if symbol is in publics set first,
4556         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
4557         * added command line '--fstack' which enables an experimental
4558         feature for stack access, too buggy to be used yet...
4559         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
4560         * (pic16_allocDirReg): when register has storage class S_REGISTER
4561         allocate in pic16_dynAccessRegs,
4562         * device/include/pic16/pic18f????.h: modified configuration word
4563         naming convention, words started as CONFIG0H but should be CONFIG1H
4564
4565 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
4566
4567         * device/include/mcs51reg.h: fixed bug 970993
4568
4569 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
4570
4571         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
4572         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
4573         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
4574         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
4575         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
4576         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
4577           error/warning numbers,
4578           added function setWarningDisabled()
4579         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
4580         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
4581           _memcmp.c _memmove.c calloc.c realloc.c free.c
4582         * support/regression/tests/malloc.c: added tests for new functionality
4583         * support/regression/tests/zeropad.c: added tests for truncated initializers
4584           and initialized char arrays starting with '\x0'
4585         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
4586
4587 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
4588
4589         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
4590
4591 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4592
4593         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
4594         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
4595         peephole 177.e. Thanks to anonymous
4596
4597 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
4598
4599         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
4600         function isn't used in the source but referenced as a
4601         variable initializer then declare it as extern in .asm file
4602
4603 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
4604
4605         * .version: increased version number to 2.4.3
4606
4607         Adding version extension according to ChangeLog CVS revision
4608         * src/Makefile.in (target all): added dependency 'version.h'
4609         * (rule version.h): added rule to create version.h from ChangeLog,
4610         * (rule dep): added dependency version.h,
4611         * src/version.awk: AWK script to create version.h
4612         * src/SDCCdwarf2.c (dwWriteModule),
4613         * src/SDCCglue.c (initialComments),
4614         * src/SDCCmain.c (printVersionInfo): modified to write after
4615         version string the version extension number,
4616         * src/SDCCutil.c: included "version.h"
4617         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
4618         number,
4619         * src/SDCCutil.h: added prototype for getBuildNumber
4620
4621         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
4622         includeDirsSet, too,
4623         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
4624         const char [] is found in function prototype...
4625
4626         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
4627         moving to WREG with source is already in WREG,
4628         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
4629         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
4630         * (aopForSym): stack'ed symbols are partially supported, added
4631         if-clause to support symbols in FARSPACE,
4632         * (sameRegs): added test for AOP_ACC to see if registers are same,
4633         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
4634         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
4635         * (pic16_popRegFromString): will not allocate a new register if it
4636         doesn't find one by name, bug may have introduced...
4637         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
4638         * (genIpush): revived to use pic16 port's stack,
4639         * (genAddrOf): added incomplete case for stack'ed operand,
4640         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
4641         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
4642         can handle multibyte operands,
4643         * src/pic16/glue.c (pic16_printIval*): some debug info added,
4644         * (pic16initialComments): added message for MPLAB compatibility
4645         mode enabled,
4646         * src/pic16/main.h: prototype for pic16_mplab_comp,
4647         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
4648         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
4649         * (_pic16_linkEdit): NEW, handles link stage, transferred here
4650         because of increased complexity of procedure,
4651         * (_process_pragma): stack pragma changed to format 'stack pos len',
4652         emit symbol '_stack_end' to conform with gplink,
4653         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
4654         to search for register,
4655         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
4656         PO_GPR_REGISTER,
4657         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
4658         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
4659         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4660         case for PO_GPR_REGISTER,
4661         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
4662         dies, the new era is ahead !...
4663         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
4664         pic16_dynInternalRegs,
4665         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
4666         * (pic16_allocDirReg): minor optimizations and bug fixes,
4667         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
4668
4669         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
4670         load stack and frame pointer with address of 'stack_end' symbol
4671
4672 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
4673
4674         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
4675         without source code but only variable initializers
4676
4677 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
4678
4679         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
4680         external are not declared as extern to reduce overhead while linking
4681
4682 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
4683
4684         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
4685
4686 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
4687
4688         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
4689           Yee Keat for the patch
4690         * src/SDCCast.c (decorateType): fixed bug #979599
4691         * src/ds390/gen.h: removed local fReturnSizeDS390
4692         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
4693         * src/ds390/gen.c (genAnd, genOr, genXor),
4694         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
4695
4696 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
4697
4698         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
4699         add relFilesSet to $3, manipulate $2 to handle linking of object
4700         files without source files in command line,
4701         * device/include/pic16 (all headers): added ID location macros,
4702         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
4703         entries for ID location bytes,
4704         * (pic16_assignIdByteValue): NEW,
4705         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
4706         added field dumpcalltree to pic16_options_t,
4707         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
4708         is used instead of pic16_Gstack_base_addr, check if (ifx) before
4709         emitting rFalseIfx label after check_carry label,
4710         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
4711         pic16_emitDIRegs), NEW
4712         * (pic16glue): dump .calltree file when option --calltree found,
4713         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
4714         * (_pic16_genAssemblerPreamble): emit ID locations after
4715         configuration registers,
4716         * (pic16_linkCmd): modifications of the link command,
4717         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
4718         * (pic16_pCodeInitRegisters): don't init stack registers,
4719         * (pic16_findPrevInstruction): fixed bug,
4720         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
4721         bug with immediate registers,
4722         * (buildCallTree): traces stack push and pop,
4723         * (pct2): dump also stack usage for each function,
4724         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
4725         * (pic16_allocDirReg): various modifications,
4726         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
4727         fixed to 1,
4728
4729 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
4730
4731         * src/pic16/pcode.c: removed buggy double colon
4732
4733 2004-07-01 Borut Razem <borut.razem AT siol.net>
4734
4735         * support/scripts/sdcc.nsi: added include/pic16 to setup
4736
4737 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
4738
4739         * device/lib/Makefile.in: fixed bug in target objects-pic16,
4740         * device/lib/pic16/Makefile: prefixed with dash (-) command under
4741         target 'clean',
4742         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
4743         specific command line arguments. Also added sample lkr script
4744         for placing a variable at a specific memory bank.
4745         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
4746         at a specific memory bank,
4747         * (pic16_dump_isection): fixed bug which caused string literals to
4748         be omitted when dumping idata section,
4749         * (pic16_groupRegistersInSection): added code to handle registers
4750         in specific memory banks,
4751         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
4752         public, all references are renamed too,
4753         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
4754         AOP_DPTR2,
4755         * (pic16_storeForReturn): added case to handle when dest is WREG,
4756         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
4757         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
4758         pic16_rel_udata, check to see if that register is marked as being
4759         a member of a specific memory bank,
4760         * (pic16_printIvalCharPtr): added code to add string literals either
4761         to code or the idata sections,
4762         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
4763         also accept the 'udata' pragma,
4764         * src/pic16/main.h: new structure types sectName and sectSym
4765         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
4766         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
4767         * (pic16_findPrevInstruction): fixed, it returned nothing,
4768         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
4769         instruction combinations,
4770         * (pic16_FixRegisterBanking): heavily reorganised,
4771         * (pic16_AnalyzeBanking): if generating banksel directives is
4772         disabled, then don't call FixRegisterBanking at all,
4773         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
4774         completely removed,
4775         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
4776
4777 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
4778
4779         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
4780         Phuah Yee Keat <yk.phuah AT nestac.com>
4781
4782 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4783
4784         * src/pic16/glue.c (pic16createInterruptVect): function now emits
4785         correctly the IVT even if it is relocated to some other location
4786
4787 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
4788
4789         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
4790         * device/include/pic16/pic18f2220.h: NEW,
4791         * device/lib/pic16/libdev/pic18f2220.c: NEW,
4792         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
4793         * src/pic16/device.c (struct Pics16): added info for 18f2220,
4794         * src/pic16/device.h (struct pic16_options): added ivt_loc and
4795         nodefaultlibs, ivt_loc is the location of the interrupt vector
4796         table, and nodefaultlibs signs that default libraries should not be
4797         linked in link stage,
4798         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
4799         according to --ivt-loc argument,
4800         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
4801         when pragma stack is found,
4802
4803 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4804
4805         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
4806         256 (range check), 257 (do while), 258.a-f (bit banging
4807         f.e. on 3-wire SPI bus)
4808
4809 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4810
4811         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
4812         variables used exclusively within a loop
4813
4814 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
4815
4816         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
4817
4818 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4819
4820         * src/SDCClrange.c (computeClash): fixed bug #971834
4821
4822 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4823
4824         * src/mcs51/gen.c (genCmp): fixed bug #975903
4825         * src/hc08/gen.c (operandsEqu),
4826         * src/ds390/gen.c (operandsEqu),
4827         * src/z80/gen.c (operandsEqu),
4828         * src/pic/gen.c (operandsEqu),
4829         * src/pic16/gen.c (operandsEqu),
4830         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
4831         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
4832
4833 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4834
4835         * src/SDCCcse.c (cseBBlock): fixed bug #966963
4836
4837 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
4838
4839         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4840         default case in switch statement,
4841         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4842         to eliminate problem with initialisation of pointers, but problem
4843         still exists,
4844         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4845         * (emitStaticSegment): removed various lines emitting debug info,
4846         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4847         added processor registers for utilizing EEPROM,
4848         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4849         configurable and set 8
4850
4851 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4852
4853         * .version: increased version number to 2.4.2,
4854
4855         Cumulative patch for pic16 port
4856         * src/pic16/device.c: changed scheme to dump initial values for
4857         variables in idata segment, all print_idata* functions were removed,
4858         now the pic16_printIval* will be called,
4859         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4860         * _pic16_printPointerType, pic16_printPointerType,
4861         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4862         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4863         NEW, similar to the respective functions in SDCCglue.c,
4864         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4865         way, emitting hex bytes,
4866         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4867
4868 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4869
4870         * src/avr/ralloc.c (serialRegAssign),
4871         * src/xa51/ralloc.c (serialRegAssign),
4872         * src/pic/ralloc.c (serialRegAssign),
4873         * src/pic16/ralloc.c (serialRegAssign),
4874         * src/hc08/ralloc.c (serialRegAssign),
4875         * src/z80/ralloc.c (serialRegAssign),
4876         * src/ds390/ralloc.c (serialRegAssign),
4877         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4878
4879 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4880
4881         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4882         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4883
4884 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4885
4886         Cumulative patch for pic16 port:
4887         * src/pic16/device.h (typedef PIC16_device) modified fields for
4888         defining microcontrollers,
4889         * src/pic16/device.c: added new info for all devices in Pics16 array,
4890         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4891         to be optimised out by the pCode optimiser,
4892         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4893         specially, bug reported by G.M. Gallant,
4894         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4895         as force'd so that cannot be optimised out by pCode optimiser,
4896         * src/pic16/pcode.c,
4897         * src/pic16/pcodepeeph.c,
4898         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4899         they are disabled by default, but can be enabled explicit with
4900         command argument --denable-peeps, for testing,
4901         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4902         --pomit-ivt in COMPILE_FLAGS
4903
4904 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4905
4906         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4907           compilation on MSVC
4908
4909 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4910
4911         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4912
4913 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4914
4915         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4916         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4917
4918 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4919
4920         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4921         would only assign 0x300001 register.
4922
4923 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4924
4925         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4926         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4927
4928 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4929
4930         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4931         for ds80c400
4932         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4933         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4934         added peephole 254 (left shift), 255 (jump table)
4935
4936 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4937
4938         * device/lib/Makefile.in: removed comment line with model-pic16,
4939         * (target port-specific-objects-pic16): the libraries and objects
4940         are copied to the build directory form the device/lib/pic16/bin
4941         directory
4942
4943         Cumulative patch concerning pic16 port:
4944         * library directory has been re-organized,
4945         * added support for PIC18F1220,
4946         * added headers and library sources for chips 18f1220,18f6520,
4947         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4948
4949         * configuration registers setting has changed, now each supported
4950         device has a complete description of the registers it uses,
4951         * all initialisations are moved to idata sections, these section
4952         can be absolute or relocatable,
4953         * fixed initialisation of codespace variables,
4954         * fixed warning about PCLATU and gpsim,
4955         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4956         * (genAssign): use table reads when assigning from variables in codespace,
4957         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4958         char/int variables placed in codespace,
4959         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4960         registers set in .asm file, no need for --pomit-config-words anymore,
4961         * (pic16glue): some 8051 legacy segments are commented out
4962         (to be removed completely),
4963         * added support for alternative assembler and linker with --asm=
4964         and --link= command line arguments,
4965         * peepholes are disabled automatically in the port, no need to
4966         specify on command line,
4967         * port supports natively char/int/long multiplication, but converts
4968         all divisions to support functions,
4969         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4970         to the file set in variable $2,
4971         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4972         strings in ASCII format and not in hex,
4973         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4974         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4975         allocate proper register if iCodes aren't temporary,
4976
4977 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4978
4979         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4980
4981 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4982
4983         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4984         is commented out
4985
4986 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4987
4988         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4989         computed address is reused
4990         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4991         multi-byte bitfields
4992
4993 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4994
4995         * src/z80/gen.c: (genArrayInit): must check for pointers too
4996
4997 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4998
4999         * support/regression/tests/zeropad.c: never meant to commit the
5000           nestedstruct test: removed, added check for GCC version
5001
5002 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5003
5004         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5005         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5006         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5007           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5008           bugs 928906 and 954082 half-empty initializers
5009         * src/SDCCsymt.h,
5010         * src/SDCCsymt.c (getAllocSize): added for above fix
5011         * src/z80/gen.c (genArrayInit): fixed bug 741044
5012         * support/regression/tests/zeropad.c: added tests
5013
5014 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5015
5016         * src/pic16/device.c (pic16_dump_section): corrected bug which
5017         caused some symbols of the libraries to be misplaced
5018
5019 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5020
5021         * src/pic16/glue.c,
5022         * src/pic16/ralloc.h,
5023         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5024         to fix conflict with pic port
5025
5026 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5027
5028         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5029         externs configuration variables,
5030         * src/pic16/ralloc.h,
5031         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5032         prototype in header, commented out some debug messages
5033
5034 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5035
5036         * src/pic16/glue.c,
5037         * src/pic16/main.c,
5038         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5039         for gpasm COFF object generation. Thanks to D. Hawkins for
5040         his patch info
5041
5042 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5043
5044         * src/ds390/main.c,
5045         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5046         Brock for spotting this)
5047         * src/ds390/gen.c (genEndFunction),
5048         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5049         interrupt handler and critical. Disable push/pop optimizations when
5050         peephole optimizations disabled.
5051
5052 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5053
5054         Updated pic16 library sources and headers.
5055         * device/lib/pic16/pic18f*/ ,
5056         * device/include/pic16/*.h: modified to handle structured SFR
5057         definitions
5058
5059 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5060
5061         * src/port.h (PORT structure): added hook initPaths, now each
5062         port can declare its own default search paths,
5063         which can been seen with the --print-search-dirs option,
5064         see pic16 port for example,
5065         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5066         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5067         * (doPrintSearchDirs): NEW, replaces in a central manner the
5068         printing of search dirs which was split in set*Paths functions,
5069         * (main): added call to port->initPaths and doPrintSearchDirs,
5070         * src/avr/main.c,
5071         * src/ds390/main.c,
5072         * src/hc08/main.c,
5073         * src/izt/i186.c,
5074         * src/izt/tlcs900h.c,
5075         * src/mcs51/main.c,
5076         * src/pic/main.c,
5077         * src/pic16/main.c: modified port structures to reflect addition of
5078         initPaths hook,
5079
5080         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5081         * (pic16_dump_section): for registers in same address reserve memory once,
5082         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5083         to no_banksel,
5084         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5085         result is greater in size than right or left,
5086         * (pic16_genUMult8X8_8): there are some cases where the result can
5087         be 16 bits size, so handle these,
5088         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5089         * (pic16_outBitC): modified to emit pcodes,
5090         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5091         or not,
5092         * (genDivOneByte): implemented algorithm to divide 8-bits,
5093         * (genCmp): uncommented goto, but issues still exist,
5094         * (genAnd): fixed a bug with variables >8bits,
5095         * (genPackBits): optimization added that uses BCF/BSF to change a
5096         single bit,
5097         * (genAssign): fixed bug when assigning floating point literals,
5098         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5099         __sdcc_gsinit_startup label,
5100         * src/pic16/main.c (_pic16_init): removed search directory
5101         initialisations,
5102         * (_pic16_initPaths): NEW, used to initialise search directories,
5103         * (_hasNativeMulFor): support functions for all except char/int
5104         multiplication, and char division,
5105         * (PIC16_port struct): modified entry for native mul support,
5106         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5107         no_banksel option,
5108         * (buildCallTree): call to register_usage is ifdef'ed out,
5109
5110 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5111
5112         * device/include/string.h: applied Stas Sergeev's patch to make this
5113         header file compatible with the preprocessor -Wundef option
5114         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5115         failure (fixes bug #941458)
5116
5117 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5118
5119         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5120         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5121         that the variable, not the function, should be static
5122         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5123         to be consistent with non-literal case
5124
5125 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5126
5127         * src/SDCCast.c (isConformingBody): fixed bug #949967
5128         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5129         convilong): fixed bug #952086
5130
5131 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5132
5133         * src/SDCCmem.c (allocVariables): fixed bug #955321
5134
5135 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * src/hc08/main.c (_hc08_genAssemblerEnd),
5138         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5139         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5140         completely eliminated the use of a temporary file
5141         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5142         when more than one file linked
5143         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5144
5145 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5146
5147         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5148         which fixes bug #543481
5149         * support/regression/tests/bug-751703.c: fixed comments left from a
5150         cut and paste error
5151         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5152         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5153         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5154         scopes
5155         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5156         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5157         are now changed to underscores in moduleName
5158
5159 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5160
5161         * as/mcs51/lkmem.c: better fix for bug #954173
5162
5163 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5164         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5165
5166         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5167         * device/include/c8051f000.h,
5168         * device/include/c8051f120.h,
5169         * device/include/c8051f300.h,
5170         * device/include/c8051f310.h,
5171         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5172         PWM16) and detab'ed
5173
5174 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5175
5176         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5177         and mailing lists, doc'ed --no-peep-comments, removed reference
5178         to knoppix (newest version has no LyX/LaTeX), other minor changes
5179         * src/SDCCglue.c (glue): save 2 bytes stack space with
5180         option --main-return. The ljmp could probably be avoided too
5181
5182 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5183
5184         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5185
5186 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5187
5188         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5189         * src/SDCCopt.c (isLocalWithoutDef),
5190         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5191         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5192         (credit to Maarten Brock for patch #949363, on which this is based)
5193         * support/regression/tests/bug-751703.c: some test cases of extern used
5194         within inner scopes.
5195
5196 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5199         SPEC_STRUCT
5200         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5201         struct definitions
5202         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5203         dwWriteLabel): fix to create valid debugger symbols even when
5204         the module name has non-alphanumeric symbols in it
5205         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5206         when a variable's allocation has been optimized away
5207
5208
5209 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5210
5211         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5212         * src/hc08/main.c,
5213         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5214         * src/mcs51/main.c,
5215         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5216         * src/ds390/main.c,
5217         * src/z80/gen.c (z80_emitDebuggerSymbol),
5218         * src/z80/main.c,
5219         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5220         * src/pic/main.c,
5221         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5222         * src/pic16/main.c,
5223         * src/avr/gen.c (avr_emitDebuggerSymbol),
5224         * src/avr/main.c,
5225         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5226         * src/xa51/main.c,
5227         * src/SDCCdebug.c (emitDebuggerSymbol),
5228         * src/SDCCdebug.h,
5229         * src/port.h: added a debugger struct to the port struct. Added a
5230         callback for defining debugger symbols
5231
5232         * src/SDCCast.c (createLabel),
5233         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5234         with isitmp = 1
5235         * src/SDCCicode.h,
5236         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5237         iCode back to the ast for the function
5238
5239         * src/hc08/ralloc.c (hc08_assignRegisters),
5240         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5241         unneeded fields from the regs struct.
5242         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5243         pushReg() & pullReg() functions instead of emitcode()
5244
5245         * src/hc08/gen.c (genLabel, genhc08Code),
5246         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5247
5248         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5249         debugger hooks
5250
5251         * src/hc08/gen.c (genEndFunction, genhc08Code),
5252         * src/hc08/gen.h,
5253         * src/mcs51/gen.c (genEndFunction, gen51Code),
5254         * src/mcs51/gen.h,
5255         * src/ds390/gen.c (genEndFunction, gen390Code),
5256         * src/ds390/gen.h,
5257         * src/z80/gen.c (genEndFunction, genZ80Code),
5258         * src/z80/gen.h,
5259         * src/z80/z80.h,
5260         * src/pic/gen.c (genEndFunction, genpic14Code),
5261         * src/pic/gen.h,
5262         * src/pic16/gen.c (genEndFunction, genpic16Code),
5263         * src/pic16/gen.h,
5264         * src/avr/gen.c (genEndFunction, genAVRCode),
5265         * src/avr/gen.h,
5266         * src/xa51/gen.c (genEndFunction, genXA51Code),
5267         * src/xa51/gen.h,
5268         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5269         specific code to cdbFile.c and out of the backend code generators
5270
5271         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5272         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5273         starting address is now 0
5274
5275         * as/hc08/asm.h,
5276         * as/hc08/m08pst.c,
5277         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5278         assembler directive for DWARF support
5279         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5280
5281         * src/src.dsp,
5282         * src/Makefile.in,
5283         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5284
5285 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5286
5287         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5288         and inappropriate peephole optimization in jump tables
5289
5290 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5291
5292         * as/hc08/m08pst.c,
5293         * src/SDCCglue.c: sdccopt works for the hc08 port now
5294
5295 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5296
5297         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5298
5299 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5300
5301         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5302
5303 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5304
5305         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5306         rules
5307         * src/SDCCmain.c,
5308         * src/SDCCglobl.h,
5309         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5310         comments from the peephole optimizer replacement rules
5311         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5312         symbols
5313         * src/SDCCcse.c (updateSpillLocation),
5314         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5315         equivalents
5316         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5317         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5318         objects far pointers
5319
5320 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * src/SDCCsymt.h: a missing part of my last change
5323         * src/pic/ralloc.c (regTypeNum),
5324         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
5325
5326 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5327
5328         * src/SDCCicode.h,
5329         * src/SDCCicode.c (aggrToPtrDclType),
5330         * src/SDCCptropt.h,
5331         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
5332         ptrPseudoSymConvert),
5333         * src/pic/ralloc.c (regTypeNum),
5334         * src/pic16/ralloc.c (regTypeNum),
5335         * src/hc08/ralloc.c (regTypeNum),
5336         * src/ds390/ralloc.c (regTypeNum),
5337         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
5338         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
5339
5340 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5341
5342         * link/z80/lkmain.c (afile),
5343         * as/hc08/lkmain.c (afile),
5344         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
5345         prevent a pointer problem when a filename has no directory and
5346         no extension specified.
5347
5348 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5349
5350         * link/z80/lkmain.c (afile): allow periods in directory names
5351         * link/z80/lkmain.c (afile),
5352         * as/mcs51/lkmain.c (afile),
5353         * as/hc08/lkmain.c (afile): allow linker script file to have an
5354         extension other than ".lnk"
5355         * link/z80/lklex.c (getfid),
5356         * link/z80/lkmain.c (parse),
5357         * as/mcs51/lklex.c (getfid),
5358         * as/mcs51/lkmain.c (parse),
5359         * as/hc08/lklex.c (getfid),
5360         * as/hc08/lkmain.c (parse): Support comments in the linker script
5361         file on lines by themselves and after filenames
5362
5363 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5364
5365         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
5366
5367 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5368
5369         * src/z80/peeph-z80.def: removed some peephole rules that don't
5370         work with multibyte arithmetic (fixed bug #937126)
5371         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
5372         to registers and not global variables
5373         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
5374         geniCodePreInc, geniCodePostDec, geniCodePreDec,
5375         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
5376         checking for assignments not internally generated (fixed bug #931895)
5377         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
5378         structure member (fixed bug #930072)
5379
5380 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5381
5382         * src/SDCCmain.c (linkEdit),
5383         * src/hc08/main.c (_hc08_parseOptions),
5384         * as/hc08/Makefile.in,
5385         * as/hc08/aslink.h,
5386         * as/hc08/asm.h,
5387         * as/hc08/m08pst.c,
5388         * as/hc08/lkrloc.c (relr, rele),
5389         * as/hc08/lkarea.c (lnkarea)
5390         * as/hc08/lkmain.c (afile, parse),
5391         * as/hc08/lkelf.c: support for ELF output
5392         * as/hc08/lks19.c (s19),
5393         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
5394
5395 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5396
5397         * as/mcs51/lkihx.c: Fixed bug #899105.
5398
5399 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5400
5401         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
5402         .dsp files from Unix to DOS.
5403
5404 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5405
5406         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
5407         function pointers; we have been compliant for several months now.
5408         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
5409         change that was accidently commented out
5410         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
5411         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
5412         bug #922319
5413
5414 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5415
5416         * src/hc08/gen.c: output of all of the internal debugging information
5417         is now controlled by the D() macro; it is disabled by default
5418
5419 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5420
5421         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
5422         harder to keep the same registers during a CAST iCode
5423         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
5424         long via int can be done in a single cast, if the signedness is
5425         correct.
5426         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
5427         putchar() in tinibios.c in ds390's library
5428
5429 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
5430
5431         * src/SDCCast.c (decorateType): fixed bug #898889,
5432         cast result of a literal complement too
5433         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
5434         fixed check for bitfields
5435
5436 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
5437
5438         * src/SDCCicode.c (geniCodeLogic): made it static,
5439         (geniCodeLogicAndOr): added in order to fix bug #905492,
5440         (ast2iCode): fixed bug #905492
5441         * support/regression/tests/bug-905492.c: added
5442         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
5443         (processParms): fixed bug #927659: don't copy parms, this will clear
5444         decorated flag
5445         * support/regression/tests/bug-927659.c: added
5446
5447 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
5448
5449         * src/SDCCast.c (addCast): don't cast float to char
5450         * device/lib/libsdcc.lib: added _memmove
5451
5452 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
5453
5454         * device/lib/large/Makefile: fixed parallel execution by
5455         replacing `make` by `$(MAKE)`
5456
5457 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5458
5459         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
5460         offsets (fixes bug #923936)
5461
5462 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
5463
5464         * device/lib/small/Makefile: fixed parallel execution by
5465         replacing `make` by `$(MAKE)`
5466
5467 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5468
5469         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
5470
5471 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
5472
5473         * src/pic/gen.c (genCpl): multi-byte complements were not working.
5474         * src/regression/Makefile: Regression test was not running.
5475
5476 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
5477
5478         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
5479         complement if possible
5480         * src/SDCCval.c (valComplement),
5481         * src/SDCCicode.c (operandOperation): fixed complement of literal
5482         * support/regression/tests/onebyte.c (testComplement): added
5483
5484 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
5485
5486         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
5487         return an optimized tree; actually replace actParm with the new tree
5488         * src/SDCCast.h: added some parantheses to remove side effects
5489         * support/regression/tests/bug-920866.c
5490
5491 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
5492         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
5493         Bit operands were not being handled properly in the pic14 port.
5494         (now src/regression/add.c passes again).
5495
5496 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5497
5498         * src/SDCC.y (labeled_statement): case and default no longer require
5499         a following statement (RFE #893037)
5500
5501 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5502
5503         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
5504         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
5505         disabled (fixes bug #916294)
5506         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
5507         "mov a,acc"; patch provided by Lenny Story
5508         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
5509
5510 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5511
5512         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
5513         functions
5514         * src/ds390/gen.c (genFunction, genEndFunction),
5515         * src/ds390/ralloc.c (ds390_assignRegisters),
5516         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
5517         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
5518         pushed if there are parameters passed on the stack. Also, a cleaner
5519         way to decide if r0/r1 should be pushed/popped. (Together they fix
5520         bug #918693)
5521
5522 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5523
5524         * doc/sdccman.lyx,
5525         * device/lib/mcs51/crtpagesfr.asm,
5526         * device/lib/mcs51/crtxinit.asm,
5527         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
5528         to avoid confusion with Si Lab's SFRPAGE register.
5529
5530 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5531
5532         * src/SDCCglue.c (emitMaps): allow public sfr variables
5533         * src/SDCCglue.c (initialComments): include compiler build date
5534         with compiler version and put the timestamp of the generated
5535         assembly file on a serperate line to be less confusing.
5536         * src/port.h: added genInitStartup hook
5537         * src/avr/main.c,
5538         * src/ds390/main.c,
5539         * src/hc08/main.c,
5540         * src/pic/main.c,
5541         * src/pic16/main.c,
5542         * src/xa51/main.c,
5543         * src/z80/main.c: genInitStartup initialize as NULL (default to
5544         historical behaviour)
5545         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
5546         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
5547         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
5548         library instead of hard coding it into the compiler.
5549         * support/regression/ports/mcs51-stack-auto/spec.mk,
5550         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
5551         * device/lib/mcs51/Makefile,
5552         * device/lib/small/Makefile,
5553         * device/lib/large/Makefile,
5554         * device/lib/mcs51/crtpagesfr.asm,
5555         * device/lib/mcs51/crtstart.asm,
5556         * device/lib/mcs51/crtxclear.asm,
5557         * device/lib/mcs51/crtxinit.asm,
5558         * device/lib/mcs51/crtclear.asm,
5559         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
5560         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
5561         and into user configurable files.
5562         * device/lib/clean.mk: clean mcs51 directory too
5563         * support/regression/tests/longlit.c: added static to T1 declaration
5564         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
5565         accesses in the initialization code
5566
5567 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5568
5569         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
5570         OSCTRIMVAL as noted in bug #916008
5571
5572 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5573
5574         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
5575         in loops with multiple exits (reported as incorrect registers
5576         used by Martin Helmling in Sdcc-user list)
5577
5578 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5579
5580         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
5581         made ds390 register extensions look less like error messages
5582
5583 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5584
5585         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
5586         reported by Adam Wozniak in Sdcc-user list
5587
5588 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
5589
5590         * src/SDCCast.c (decorateType): fixed with bug and promotion in
5591         arithmetic optimizations, added debug output
5592
5593 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
5594
5595         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
5596         * sdcc.spec: updated and split sdcc into 3 rpms
5597         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
5598         needed for literals of LEFT_OP and '+'
5599         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
5600         introduced RESULT_TYPE_NOPROM
5601         (geniCodeMultiply): fixed logic for decision if mul is optimized to
5602         left shift
5603         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
5604         limited promotion to int only for '*'
5605         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
5606
5607 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
5608
5609         * src/pic16/gen.c (genSkip),
5610         (genc16bit2lit), (gencjneshort): commented out
5611         (is_LitOp): new helper function, checks operand type
5612         (genCmpEq): rewritten
5613
5614 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
5615
5616         * support/regression/tests/bug-908454.c: added
5617
5618 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
5619
5620         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
5621         * src/SDCCicode.c (usualBinaryConversions): op needs int type
5622         (geniCodeCast): cosmetic, don't preserve bit storage class
5623         (geniCodeLeftShift): added promotion
5624         (geniCodeLogic): fixed regression
5625         * src/SDCCsymt.c (computeTypeOr): accept bits too
5626         (compareType): 2nd part of fix for bug #908454, needed for bitfields
5627
5628 2004-03-07  Borut Razem <borut.razem AT siol.net>
5629
5630         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
5631
5632 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
5633
5634         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
5635         version of pic16_genPackRegisters which does not check if ic is a
5636         CAST operator,
5637         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
5638         function cause string1.c regression test fails
5639
5640 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
5641
5642         * sim/ucsim/configure.in,
5643         * sim/ucsim/configure,
5644         * sim/ucsim/doc/Makefile.in: use docdir
5645         * src/SDCC.y: fixed sbit atrributes
5646         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
5647         * src/SDCCast.c (decorateType): |^& need special promotion handling
5648         * src/SDCCast.h,
5649         * src/SDCCsymt.h: moved definition of RESULT_TYPE
5650         * src/SDCCsymt.h (computeType),
5651         * src/SDCCicode.c: computeType() needs op
5652         * src/SDCCsymt.c (checkTypeSanity),
5653         * doc/sddman.lyx: "plain" bitfields are unsigned
5654         * src/SDCCsymt.c (computeTypeOr): added
5655         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
5656         |^& ops
5657         * src/SDCCval.c (val*): computeType() needs op
5658         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
5659         * support/regression/tests/onebyte.c: added tests for |^&
5660
5661 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
5662
5663         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
5664         for writing icode into asm output.
5665
5666 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
5667
5668         * src/pic16/device.c: added some debug lines enabled
5669         with macro DEBUG_CHECK,
5670         * src/pic16/genarith.c: more debug in genPlus,
5671         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
5672         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
5673         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
5674         * (aopForSym): onStack symbols are re-placed in data memspace,
5675         and onStack flag is cleared,
5676         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
5677         copy temporary pcodeop,
5678         * (genPcall): added warning for not updating PCLATU,
5679         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
5680         always true for pic16 port,
5681         * (genMultOneWord): NEW, supports integer multiplication,
5682         * (genMult): modified to call genMultOneWord,
5683         * (ifxForOp): added warning when return NULL,
5684         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
5685         flag is set before call to operandFromSymbol for implicit
5686         added structures,
5687         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
5688         options.intlong_rent are set by default,
5689         * (_hasNativeMulFor): modified to allow port generation of integer
5690         multiplication,
5691         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
5692         set regtype to REG_SFR for all registers, restricting seting the
5693         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
5694
5695 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5696
5697         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
5698         more than 500 times in the regression tests
5699
5700 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5701
5702         * support/Util/SDCCerr.h,
5703         * support/Util/SDCCerr.c,
5704         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5705         enumerator_list),
5706         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
5707         for symbol conflicts.
5708         * support/valdiags/tests/enum.c,
5709         * support/valdiags/tests/tentdecl.c,
5710         * support/valdiags/tests/struct.c: expect possible error messages
5711         referring to original symbol definitions.
5712         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
5713         * src/SDCCsymt.h,
5714         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
5715
5716 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
5717
5718         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
5719
5720 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
5721
5722         * src/pic16/ralloc.c (newReg): fixed bug #908929
5723
5724 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5725
5726         * src/ds390/gen.c: added missing #include "main.h"
5727
5728 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
5729
5730         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
5731         checking if symbol is already in set,
5732         * src/pic16/device.h: prototype for checkAddSym,
5733         * src/pic16/gen.c: (_G): added entry interruptvector,
5734         * (assignResultValue): removed some commented out lines,
5735         * (genFunction): check for ISR via sym->type, absolute section for
5736         interrupt code is created via a new pBlock, the goto instruction is
5737         placed now correctly at the interrupt vector position, changed all
5738         references from ivec to _G.interruptvector,
5739         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
5740         is the interrupt is a high priority one, same for return from ISR,
5741         * src/pic16/glue.c: changed all calls of addSetHead for publics and
5742         externs to calls of checkAddSym,
5743         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
5744         pic16_pcode_verbose flag is set,
5745         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
5746         * src/pic16/pcoderegs.c: message about how many registers are saved
5747         will only be emitted if pic16_pcode_verbose flag is set,
5748
5749 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5750
5751         * src/ds390/ralloc.h,
5752         * src/ds390/ralloc.c (ds390_regWithIdx),
5753         * src/ds390/gen.c (emitcode),
5754         * src/ds390/main.h,
5755         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
5756         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5757         ds390operandCompare, getRegsRead, getRegsWritten,
5758         initializeAsmLineNode): customized instruction size calculation for
5759         ds390, started basis for some register optimizations
5760         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
5761         corresponding assembly output
5762         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
5763         missing push/pop of r0/r1. Optimized push/pops
5764
5765 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5766
5767         * src/mcs51/main.c (instructionSize): fixed ACALL size
5768         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
5769
5770 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
5771
5772         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
5773         the sorting of rlist with NULL elements
5774         * (print_idataType, print_idata): NEW to create idata sections
5775         * src/pic16/device.h: idataSymSet new variable
5776         * src/pic16/gen.c (genFunction): fixed some bugs in string
5777         comparing, improved the absolute section creation for ISRs,
5778         added FSR0L/FSR0H in registers that are saved in an ISR,
5779         * (genInline): fixed the processing of inline snippets,
5780         now they undergo no process by the peephole optimizer
5781         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
5782         are placed in idataSymSet,
5783         * (pic16emitStaticSeg): extern symbols are added in externs,
5784         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
5785         switching when aboslute variables are placed in access bank memory
5786         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
5787         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
5788         commented out with #if,
5789         * (pic16_packRegisters): reintroduce the check for CAST because some
5790         symbols are not correctly handled,
5791         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
5792         pCodeInstruction instead of pCode,
5793         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
5794         pCodeAsmDir definition,
5795         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
5796         directive, then the argument directive is emitted without the leading
5797         tab, hack for inline labels which must be in the first column,
5798         * (compareLabel,pic16_findNextInstruction),
5799         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
5800         * (insertBankSwitch): modified for the new pCodeAsmDir,
5801
5802 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5803         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
5804
5805         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
5806         instance,
5807         * (pushSide): commented out with #if,
5808         * (assignResultValue): fixed some typos in saving
5809         registers,
5810         * (genPcall): FIXED and sync'ed with genCall,
5811         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
5812         * (genNearPointerGet): fixed to handle some more cases,
5813         implementation scheme via table reads,
5814         * (genConstPointerGet): modified to access code memory correct,
5815         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
5816         and improved to handle some cases
5817         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
5818         instead of "RETLW" for init data
5819         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
5820         not IN_DIRSPACE, work around to reduce bank switching when aboslute
5821         variables are placed in access bank memory (<0x80 and >=0xf80),
5822         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
5823         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
5824         TBLWT_POSTDEC,TBLWT_PREINC
5825         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
5826         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
5827         directives
5828         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
5829         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
5830         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
5831         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
5832
5833 2004-02-29  Borut Razem <borut.razem AT siol.net>
5834
5835         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
5836         support/Util/findme.h, support/Util/system.h: enhance binary relative
5837         search for lib and include by using findProgramPath()
5838
5839 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5840
5841         * src/SDCCpeeph.h,
5842         * src/SDCCpeeph.c (pcDistance),
5843         * src/port.h,
5844         * src/mcs51/ralloc.h,
5845         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5846         * src/mcs51/main.h,
5847         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5848         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5849         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5850         size calculation port specific, started basis for some register
5851         optimizations
5852         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5853         missing push/pop of r0/r1. Optimized push/pops
5854         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5855         * device/lib/_modsint.c (_modsint),
5856         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5857         and stack version so regression tests pass
5858
5859 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5860
5861         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5862         * src/SDCCast.c (decorateType): catch another small optimization
5863         with '?' operator
5864         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5865         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5866         modified to finally use computeType() all over SDCC,
5867         see Feature Request #877103
5868         * src/SDCCval.h: cosmetic
5869         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5870         valCompare(); regression tested in muldiv.c
5871         * support/regression/tests/muldiv.c (testMod): mod sign follows
5872         dividend only
5873
5874 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5875
5876         * src/SDCCast.c (decorateType): fixed bug #902362
5877         * doc/INSTALL.txt: fixed install instructions for win32
5878
5879 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5880
5881         * device/include/Makefile.in (install): fixed by replacing spaces
5882         by tabs
5883         * doc/README.txt,
5884         * doc/INSTALL.txt: updated for release
5885         * doc/sdccman.lyx: added warning for --xstack being buggy
5886
5887 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5888
5889         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5890         to eliminate build warnings.
5891         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5892
5893 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5894            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5895
5896         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5897         removed -penable-stack, added comment for stack pragma, added
5898         warning for not initializing the stack/frame registers, removed
5899         comment at interrupts section
5900
5901         Stack is made permanent, there is no ability to disable stack usage.
5902         * src/pic16/device.h,
5903         * src/pic16/device.c: removed all references to USE_STACK macro,
5904         * src/pic16/device.c (pic16_dump_section): when no elements in
5905         rlist, free rlist before return,
5906         * (pic16_dump_int_registers): NEW, internal registers are a new set
5907         of general purpose registers reused by each function,
5908         * (checkAddReg): returns 1 if registers is added to set,
5909         * (pic16_groupRegistersInSection): when a registers is of type
5910         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5911         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5912         SRCASECMP macro is moved here from device.c
5913         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5914         PO_PCLATU, PO_PRODL, PO_PRODH,
5915         * (pic16_pCodeOpType, genMinus,
5916         changed compares to "a" register, with AOP_ACC,
5917         * (pic16_genPlus): fixed some bugs and indented properly,
5918         * (pic16_addSign): changed size to size+offset in the MOVWF
5919         instruction,
5920         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5921         multiply 8-bit operand by literal, result is 8-bit,
5922         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5923         multiply 2 8-bit operand, result is 8-bit,
5924         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5925         genUMult8X*_16,
5926         * src/pic16/gen.c: changed accUse to contain WREG only,
5927         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5928         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5929         true, do not use immediate addressing any more unless sym is a
5930         pointer in codespace,
5931         * (aopForRemat): do not use immediate addressing when symbol not in
5932         codespace and when symbol's address is requested,
5933         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5934         accUse size (= 1),
5935         * (aopGet): added case for AOP_ACC and don't return "accumulator
5936         bug" but WREG instead,
5937         * (popGetTempReg): pushes contents of temporary register in stack,
5938         * (popReleaseTempReg): pops contents of temporary register from
5939         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5940         * (pic16_popGet): separated case AOP_ACC to return register WREG
5941         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5942         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5943         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5944         the use of immediate pointers to certain cases only.
5945
5946         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5947         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5948         * (assignResultValue, genCall, genRet): modified to use the new
5949         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5950         genPcall is still broken,
5951         * (genFunction): added code to create 'A' type pBlocks when
5952         interrupt functions are generated, code not extensively tested yet,
5953         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5954         * (genEndFunction): modified so ISRs pop stored registers from stack,
5955         * (genMultOneByte): cleanup,
5956         * (AccRsh): added flag andmask, to and result with appropriate mask,
5957         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5958         * (genDataPointerGet): fixed and reenabled its use,
5959         * (genNearDataPointerGet): bugs fixed,
5960         * (genDataPointerSet): bugs fixed,
5961         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5962         pic16_DumpSymbol, pic16_DumpOp,
5963         * src/pic16/genutils.h: function prototypes for the above functions,
5964         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5965         pointers,
5966         * (pic16emitRegularMap): many many many improvements, but needs a
5967         major cleanup,
5968         * src/pic16/main.c: enable_stack in pic16_options is removed,
5969         * (_pic16_parseOptions): removed command line options -penable-stack,
5970         * (_process_pragma): emit stack symbol only when stack pragma is
5971         processed,
5972         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5973         redirected to FSR0L/FSR0H pair,
5974         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5975         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5976         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5977         for immediates,
5978         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5979         * (dumpPicOptype): NEW,
5980         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5981         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5982         with movff instruction,
5983         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5984         added pic16_int_regs, some packRegsFor* functions are commented out,
5985         because produce errors,
5986         * src/pic16/NOTES: minor modifications
5987
5988 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5989
5990         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5991         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5992         --pack-iram.
5993         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5994         * as/mcs51/lkaomf51.c: fixed bug #895763
5995
5996 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5997
5998         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5999
6000 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6001
6002         * doc/sdccman.lyx: added details about the HC08 storage classes and
6003         interrupts, fixed the register usage info for z80 & gbz80
6004
6005 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6006
6007         * doc/sdccman.lyx: added more pic16 port documentation
6008         * device/include/pic16/: added header pic18fregs.h
6009
6010 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6011
6012         * doc/sdccman.lyx: added Vangelis' contribution
6013
6014 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6015
6016         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6017         extend to the next CALL or PCALL, not just to the next CALL.
6018
6019 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6020
6021         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6022
6023 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6024
6025         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6026         bug #895752 and a better fix for bug #716790
6027
6028 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6029
6030         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6031
6032 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6033
6034         * doc/sdccman.lyx: minor changes, minor changed
6035
6036 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6037
6038         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6039         which can't handle SDCC_NEWONEBYTEOPS,
6040         (geniCodeMultiply): removed conversion from mult to shift for pic14
6041         and pic16
6042
6043 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6044
6045         * src/hc08/gen.h,
6046         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6047         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6048         thus fixing bug #895406
6049
6050 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6051
6052         * device/lib/_modsint.c,
6053         * device/lib/_modslong.c: sign follows divisor only
6054         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6055         signs or signedness can be ignored
6056         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6057         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6058         added optimization for IFX,
6059         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6060         arguments;
6061         reenabled optimization for IFX, which was removed on 2004-01-11
6062         * src/SDCCast.h: added return type IFX
6063         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6064         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6065         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6066         SDCC_OLDONEBYTEOPS selects the old behaviour
6067         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6068         changed again and commented promotion rule
6069         * src/SDCCval.c (valDiv): promotion no longer necessary
6070         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6071         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6072         rewritten
6073         * support/regression/tests/onebyte.c: added
6074
6075 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6076
6077         * gen.c (genInline): reverted to old code for assemnling inline
6078         code because of bug reported James Chadd
6079
6080 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6081
6082         * ralloc.h: missing declarations from previous patch,
6083         seems that patch for ralloc.h was never applied, fixed
6084
6085 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6086            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6087
6088         * pcode.c,
6089         * pcode.h,
6090         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6091         indirect addressing. Marked FSR0 as deprecated
6092         * gen.c (pointerCode): commented out, not needed now
6093         (pic16_popGet2p): new MOVFF helper function
6094         (genGenPointerGet),
6095         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6096         (shiftRLong): removed duplicate debugging info
6097
6098 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6099
6100         * src/ds390/gen.c (genNearPointerGet),
6101         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6102         optimization with bits, but not bitfields.
6103         * src/ds390/ralloc.c (packRegisters),
6104         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6105
6106 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6107
6108         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6109
6110 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6111
6112         * src/SDCCsymt.h,
6113         * src/SDCCicode.c (operandFromSymbol),
6114         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6115         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6116         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6117         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6118         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6119         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6120         bug #892038
6121         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6122         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6123         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6124         * src/SDCCsymt.c (newSymbol),
6125         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6126         enumerator_list),
6127         * src/SDCCval.h,
6128         * src/SDCCval.c (newiList): fixed bug #885705
6129
6130 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6131
6132         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6133         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6134
6135 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6136
6137         * device/include/c8051f120.h,
6138         * device/include/c8051f300.h,
6139         * device/include/c8051f310.h: added/updated header files for Silicon
6140         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6141         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6142         in new section Submitting patches
6143
6144 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6145
6146         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6147         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6148         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6149         genGenPointerSet),
6150         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6151         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6152         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6153         genGenPointerSet),
6154         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6155         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6156         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6157         genGenPointerSet),
6158         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6159         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6160         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6161         genGenPointerSet): fixed bug #892400
6162         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6163         to eliminate build warnings.
6164         * src/SDCCast.c (processParms),
6165         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6166         fixed bug 751859
6167         * support/valdiag/valdiag.py: added GCC to the list of defines active
6168         when compiling with gcc
6169
6170 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6171
6172         * support/Util/SDCCerr.h,
6173         * support/Util/SDCCerr.c,
6174         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6175         with an incomplete type (fixed bug #883734)
6176         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6177
6178 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6181
6182 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6183
6184         * src/SDCCast.c (decorateType),
6185         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6186         function pointer implementation
6187         * support/regression/tests/funptrs.c: added tests to verify both forms
6188         of function pointers work correctly. Added tests to verify parameters
6189         are passed in the correct order.
6190
6191 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6192
6193         * device.c (regCompare): registers are sorted by ascending
6194         address and increasing size,
6195         * main.c (_pic16_finaliseOptions): removed the declaration
6196         of compiler macro MCU. Now a macro of the format pic18fxxxx
6197         will be defined from the command line
6198
6199 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6200             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6201
6202         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6203         PCOP_RLCF was overwritten!
6204         * gen.c (genSkip): commented out calls to pic16_emitcode,
6205         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6206         * (genlshTwo),
6207         * (genRRC): added debugging info,
6208         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6209         overwritten while shifting,
6210         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6211         overwritten while shifting,
6212         * (AccLsh),
6213         * (AccRsh),
6214         * (shiftLLeftOrResult),
6215         * (shiftRLeftOrResult),
6216         * (shiftRLong),
6217         * (shiftLLong): Implemented with pic16_emitpcode
6218         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6219         * (genLeftShift): Fixed bug, operand for shift by variable always
6220         was "and"ed with 0x0f,
6221         * (genLeftShiftLiteral),
6222         * (genrshTwo),
6223         * (genRightShiftLiteral): added debugging info,
6224         * (genrshFour): added comment,
6225         * (genRightShift): determined signedness from operand "left"
6226         instead of "result"
6227
6228 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6229
6230         * src/SDCCicode.c (geniCodeParms),
6231         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6232         function pointers, fixed function pointer bugs #861242 and #861896
6233
6234 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6235
6236         * device/include/c8051f000.h,
6237         * device/include/c8051f120.h,
6238         * device/include/c8051f300.h: added header files for Silicon
6239         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6240
6241 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6242
6243         * src/SDCCast.c (processParams): added new type flow and restructured
6244         (gatherAutoInit): added new type flow
6245         (addCast): cosmetic changes
6246         (getLeftResultType): added new type flow for array indices, patch
6247         provided by Stas, see FR #877103
6248         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6249         array index patch by Stas
6250         * src/SDCCast.h: added prototype getResultTypeFromType()
6251         * src/SDCCval.h,
6252         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6253         * src/pic/glue.c (pic14emitStaticSeg),
6254         * src/pic16/glue.c (pic16emitStaticSeg),
6255         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6256         for initialization of symbols
6257         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6258         * support/Util/SDCCerr.h:
6259         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6260         * .version: bumped version number to 2.3.8
6261         * device/include/Makefile.in (install),
6262         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6263         avoid warnings
6264
6265 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6266
6267         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6268         Slade Rich fixed an optimization bug
6269         * src/pic/pcodepeep.c,
6270         * src/pic/pcoderegs.c
6271         * doc/Makefile (install): added test for directory
6272
6273 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6274
6275         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6276         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6277         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6278         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6279         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6280         * as/mcs51/asexpr.c (term),
6281         * as/hc08/asexpr.c (term): fixed bug #887146
6282
6283 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6284
6285         * src/z80/gen.c (genMult): handle single byte result product
6286         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6287         DUMMY_READ_VOLATILE (fixed bug #886367)
6288
6289 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6290
6291         * support/regression/tests/libmullong.c: fixed logic, on little endian
6292         hosts we ended without a mullong_wrapper()
6293
6294 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6295
6296         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6297         virus/worm forged address usage.
6298
6299 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6300
6301         Fixed promotion, it should be done on AST level:
6302         * src/SDCCast.c (addCast): added promotion to int
6303         (decorateType): updated call to upCast()
6304         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6305         usualUnaryConversions()
6306
6307 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6308
6309         * support/regression/tests/literalop.c (mulWrapper): Added a
6310         wrapper to remove integer overflow warnings.
6311
6312         * support/regression/tests/float_trans.c: Made work on host.
6313
6314         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6315         location of sz80.
6316
6317         * support/regression/generate-cases.py (main): Changed from inline
6318         to a main method.
6319
6320         * doc/Makefile (install): Changed to depth first to get rid of
6321         missing directory install warning.
6322
6323         * as/Makefile (install-doc): Made work on Mac.
6324
6325 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
6326
6327         * src/SDCCast.c: added an additional type flow in decorateType() of
6328         opposite direction, see feature request #860006; it's enabled at runtime
6329         by setting the environment variable SDCC_NEWTYPEFLOW
6330         * src/SDCCast.h: changed prototype of decorateType()
6331         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
6332         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
6333         'char' to 'int' can be omitted, if both operands are 'unsigned char';
6334         see feature request #877103
6335         * src/SDCCval.c: updated call of decorateType()
6336         (valBitwise): fixed bug #882876
6337         (valMinus): added promotion
6338         (valLogicAndOr): result is unsigned
6339         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
6340         * src/SDCCsymt.c (computeType),
6341         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
6342         must not cause an unsigned operation
6343         * src/pic/glue (pic14emitRegularMap),
6344         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
6345
6346 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
6347
6348         * src/pic/pcode.c (PCodeID): commented out left over debug code
6349
6350 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
6351
6352         * support/valdiag/tests/overflow.c: added shift tests
6353         * src/pic/device.c,
6354         * src/pic/gen.c,
6355         * src/pic/gen.h,
6356         * src/pic/glue.c,
6357         * src/pic/main.c,
6358         * src/pic/pcode.c,
6359         * src/pic/pcode.h,
6360         * src/pic/pcodepeep.c,
6361         * src/pic/pcoderegs.c,
6362         * src/pic/ralloc.c,
6363         * src/pic/ralloc.h: applied patch from Slade Rich;
6364         added support for multiple code pages and multiple RAM banks on the
6365         PIC 14 port. The ASM files now no longer simply assume all the
6366         code / RAM are in the same page / bank. This means the linker can
6367         safely allocate code/RAM of separate ASM files to different pages/banks.
6368         * doc/sdccman.lyx: added Slade's tips
6369         * src/mcs51/peeph.def: fixed bug #880768
6370
6371 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6372
6373         * src/hc08/ralloc.c (rematStr): fixed bug #879282
6374         * src/SDCCast.c (decorateType): fixed bug #880197
6375
6376 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
6377
6378         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
6379         getopt.h.
6380
6381         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
6382         strtof is not part of C89 and isn't included with Mac OS X.
6383
6384 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6385
6386         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
6387         shiftL2Left2Result): fixed bug #879326
6388         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6389         (genMultOneByte): fixed bug in signed vs unsigned multiplication
6390         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
6391         address fetch for clr instruction
6392         * device/lib/hc08/_mulint.c: created optimized assembly version
6393         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
6394
6395 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
6396
6397         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
6398         proposed in FR #877103
6399
6400 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
6401
6402         * src/SDCCval.c (cheapestVal): added missing checks
6403         * src/SDCCicode.c (usualBinaryConversions): fixed condition
6404         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
6405
6406 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
6407
6408         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
6409         equal operands
6410
6411 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
6412
6413         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
6414         loaded with the linker search paths (-L arguments) and the libraries
6415         to be linked with the current source (-l arguments). Changes
6416         currently will affect only the pic16 port.
6417         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
6418         include path the port specific paths and port specific libraries,
6419         * gplink command now contains the $3 argument,
6420         * src/pic16/device.h,
6421         * src/pic16/device.c,: structure PIC_device is made public and
6422         renamed to PIC16_device, the same for variable Pics which is renamed
6423         to Pics16. Updated all references to them.
6424         * src/pic16/glue.c (pic16glue): corrected bug with code
6425         initialization which bypassed the variable initializations block.
6426
6427         * device/lib/pic16/Makefile.rules: removed --penable-stack from
6428         COMPILE_FLAGS and added the --nostdinc option
6429
6430 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6431
6432         * device/include/mc68hc908jb8.h: Register defs for another member
6433         of the hc08 family. Contributed by Bjorn Bringert - thanks!
6434
6435 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
6436
6437         Documenting changes from previous commits.
6438         * configure.in (version 1.56),
6439         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
6440         when generating output files to configure the pic16 library,
6441         but now I've commented it out, since gputils aren't installed in the
6442         SF compile farm, so library won't compile
6443
6444         * device/lib/Makefile.in (version 1.56): initially I've added in
6445         target 'all' the prerequestive 'model-pic16' so it compiled the
6446         pic16 library, but now I've commented it out for the same reasons
6447         above,
6448         * added targets 'model-pic16' and 'objects-pic16' to compile the
6449         library
6450         * added target 'port-specific-objects-pic16' to handle the
6451         generated libraries and copy them into the build/ directory
6452         * added target 'clean-intermediate-pic16' to clean intermediate
6453         files into pic16 directory
6454         * in target 'installdirs' added line to create directory pic16 in
6455         the installation path
6456
6457         * device/include/Makefile.in (version 1.11): in target 'install'
6458         added lines to copy all header files to installation path,
6459         * in target 'installdirs' added line create directory for pic16
6460         headers in the installation path
6461
6462 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
6463
6464         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
6465          a function call
6466
6467 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
6468
6469         * configure,
6470         * device/lib/configure.in,
6471         * device/lib/configure: fixed for autoconf 2.57
6472
6473 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6474
6475         * src/z80/main.c (_parseOptions): fixed the portmode= command line
6476         option so that it actually works. Made it specific to the z80, since
6477         the gbz80 doesn't have these kinds of I/O ports.
6478
6479 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6480
6481         * device/include/z180.h,
6482         * device/lib/_memcpy.c,
6483         * device/lib/_memmove.c,
6484         * device/lib/_mulint.c,
6485         * device/lib/ser_ir.c,
6486         * device/lib/ser_ir_cts_rts.c,
6487         * device/lib/_strcmp.c,
6488         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
6489         * src/z80/main.c (_process_pragma): add support for pragmas bank and
6490         portmode; added deprecation warning for bank= and protmode= forms.
6491         Also, guard against buffer overflow.
6492         * src/z80/gen.c (aopGet): generate better code for sfr banked read
6493
6494 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6495
6496         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
6497         changed interrupt vector table generation to only emit declared vectors.
6498         * device/include/Makefile.in: added missing backslash
6499         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
6500
6501 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6502
6503         Mainly changes to support compilation of the device libraries
6504         * src/pic16/device.c: stack is allocated via symbol and not
6505         via literal number. The symbol is placed in the corresponding
6506         position of the data ram
6507         * (pic16_dump_section): relocatable and absolute uninitialized
6508         data are now emitted in sorted order to reduce section naming,
6509         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
6510         weren't marked as being in the access bank,
6511
6512 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
6513
6514         Added portion of GNU PIC Library under the directory
6515         device/include/pic16 and device/lib/pic16. These files
6516         contain the declarations of SFRs for the PIC18Fxx2 devices.
6517         The directory is initialized via configure from toplevel.
6518
6519 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
6520
6521         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
6522         the spilllocations to be compared correctly
6523
6524 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6525
6526         * src/SDCCast.c (decorateType): fixed bug introduced today
6527
6528 2004-01-12  Borut Razem <borut.razem AT siol.net>
6529
6530         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
6531         doc/sdccman.lyx: upper case pragmas are deprecated
6532
6533 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
6534
6535         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
6536         in simpler and even better code
6537
6538 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
6539
6540         * src/SDCCicode.c (operandOperation): fixed bug #874819
6541         * src/SDCCast.c (decorateType): fixed
6542         char foo (unsigned long ul) { return ul > 0; }
6543
6544 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6545
6546         * doc/sdccman.lyx: Moved and added some sections, small changes
6547         all over. Telling LaTeX to be less strict with word spacing
6548         to better keep the right margin. Changed some notes about
6549         maintainance of the ports in section 3.2.1 - is it OK like this?
6550
6551 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
6552
6553         SDCC source changes:
6554         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
6555         convilong): modified to inform the pic16 port that builtin functions
6556         are external
6557
6558         PIC16 PORT specific changes:
6559         * src/pic16/device.c pic16_dump_equates() added,
6560         processor registers declared internally by the port are emitted in
6561         the translation as equates,
6562         * src/pic16/gen.c: inline code is passed unprocessed to the
6563         translation,
6564         * (pic16_popGetLit2): fnuction modified to take second operand as
6565         pCodeOp pointer and not as literal,
6566         * (popRegFromIdx): prefixed with pic16_,
6567         * (pic16_popCombine2): modified to receive already allocated pCode
6568         operands,
6569         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
6570         * (genFunction): initializes local stack frame and pushes on stack
6571         all the registers used by this function,
6572         * (genEndFunction): restores all registers from stack and restores
6573         stack frame,
6574         * src/pic16/glue.c (pic16emitRegularMap): various changes and
6575         improvements,
6576         * (pic16glue): changed the program startup sequence,
6577         * added new dbName code 'A' for functions placed in absolute section
6578         * src/pic16/main.c: added function attribute _naked,
6579         * added pragma 'code' to place a fnuction at an absolute address,
6580         * added command line arguments --debug-ralloc and --pcode-verbose,
6581         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
6582         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
6583         * (pic16_newpCodeOpLit2): modified to take the second operand as
6584         pCodeOp pointer,
6585         * (pic16_printpBlock): modified to emit each function in a separate
6586         section,
6587         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
6588         UPPER for immediate operands,
6589         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
6590         instruction,
6591         * src/pic16/peeph.def: all peepholes with movff are commented out,
6592         because there is a problem in the pcode peep optimizer,
6593         * src/pic16/ralloc.c: the register allocator can now reuse local
6594         function symbols for another function. This saves register usage.
6595         * src/pic16/ralloc.h: added flag isLocal in structure regs,
6596
6597         Added file src/pic16/NOTES with information about program writing on
6598         the current port version.
6599
6600 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6601
6602         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
6603         and peephole 252 (array access)
6604
6605 2004-01-09  Borut Razem <borut.razem AT siol.net>
6606
6607         * src/SDCCmain.c : fixed #872250: -l command line defined library
6608           files are scanned before standard library files
6609
6610 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6611
6612         * src/SDCCast.c (decorateType): fixed bug #874046
6613
6614 2004-01-09  Borut Razem <borut.razem AT siol.net>
6615
6616         * support/scripts/sdcc.nsi: remove previous installation
6617
6618 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6619
6620         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
6621         bytes for last interrupt vector (mcs51)
6622         * sdcc.spec: fixed typo
6623
6624 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6625
6626         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
6627         gen51Code): more efficient parameter receive for --model-large
6628         ("bug" #845294)
6629
6630 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6631
6632         * src/ds390/main.c,
6633         * src/z80/main.c: added missed needLinkerScript flags (more than
6634         one port structure defined in these file)
6635         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
6636         bug #795325
6637
6638 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
6639
6640         * src/SDCCmain.c: removed various references to DEFAULT_PORT
6641         * src/port.h: added flag needLinkerScript in port->linker
6642         structure to inform whether to create a .lnk file or not,
6643         * src/avr/main.c,
6644         * src/ds390/main.c,
6645         * src/hc08/main.c,
6646         * src/mcs51/main.c,
6647         * src/pic/main.c,
6648         * src/pic16/main.c,
6649         * src/xa51/main.c,
6650         * src/z80/main.c: changed appropriately to configure
6651         needLinkerScript flag
6652         * src/pic/gen.c,
6653         * src/pic16/gen.c (genAddrOf): fixed bug #863624
6654         * src/pic/glue.c: added variable udata_section_name to
6655         override default uninitialized data segment definition for
6656         devices only with SHAREBANK memory (reported from Erik Epetrich)
6657         * (pic14emitOverlay): modified to emit a commented overlay segment
6658         directive when no overlay data exist
6659         * (picglue): modified to emit uninitialized data segment
6660         according to udata_section_name
6661         * src/pic/main.c (_pic14_parseOptions): added command line
6662         options --udata-section-name=[name] to override default
6663         udata definition name
6664         * modified _linkCmd and _asmCmd to include compiler passed
6665         arguments via -W option
6666         * src/pic16/main.c: added $l in _asmCmd, changed extension for
6667         object file from '.rel' to '.o' in port->linker structure,
6668         changed size of fptr from 2 to 3 in port structure
6669
6670 2004-01-07  Borut Razem <borut.razem AT siol.net>
6671
6672         * support/scripts/sdcc.nsi: update PATH
6673         * support/scripts/sdcc.ico: craeted
6674
6675 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
6676
6677         * device/include/Makefile.in: fix install
6678         * doc/Makefile: fix install
6679
6680 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6681
6682         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
6683         in bug #860505
6684         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
6685         how the function variable allocation summary is displayed; also
6686         include information about variables allocated to the overlay
6687         segment
6688
6689 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6690
6691         * as/mcs51/lkmain.c: Help about -Y option
6692         * as/mcs51/lkarea.c: Fixed gcc warnings
6693
6694 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6695
6696         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
6697         fixed warning
6698         * support/valdiag/tests/overflow.c: added
6699         * src/SDCCast.c (decorateType),
6700         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
6701         LEFT_OP (left shift)
6702
6703 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6704
6705         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
6706         (default behaviour).
6707
6708 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6709
6710         A python script to validate compiler diagnostic messages. It can be
6711         used to verify that sdcc complains about bad c source code and
6712         gives a good location of the error.
6713         * support/valdiag/Makefile,
6714         * support/valdiag/valdiag.py,
6715         * support/valdiag/tests/*
6716
6717 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6718
6719         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
6720         * src/SDCCsymt.c (newEnumType),
6721         * src/SDCCsymt.h
6722         * support/Util/SDCCerr.c,
6723         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
6724         enum related bugs.
6725         * support/regression/tests/enum.c: added test for enum values that
6726         require at least 2 bytes of storage.
6727
6728 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6729
6730         * src/common.h: added ifndef/define/endif macros
6731         around the header file.
6732         Bug reported from Jesus Calvino-Fraga
6733
6734 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
6735
6736         * sdcc.spec: updated
6737         * device/include/Makefile.in: don't install CVS directories
6738         * device/lib/Makefile.in: added removal of CVS directories after install
6739         * doc/Makefile: fixed install, added local_icons
6740         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
6741         * src/mcs51/gen.c (genRightShift): fixed bug #870788
6742         * src/ds390/gen.c (genRightShift): fixed bug #870788
6743         * src/SDCCast.c (decorateType): fixed bug #870781
6744
6745 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
6746
6747         PIC16 port related changes:
6748         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
6749         added variable stackPos,
6750
6751         * gen.c: genCall, assignResultValue: added support for
6752         pushing/retrieving function parameters to/from stack,
6753         genFunction,genEndFunction: setup stack frame for the
6754         generated function,
6755         genAddrOf: will be changed according to bug 863624
6756
6757         * added files genutils.c and genutils.h which contain gen*
6758         debugged and optimised functions extracted from gen.c
6759
6760         * glue.c: added variable 'externs' which holds extern symbols,
6761         pic16emitRegularMap: is modified to properly handle relocatable
6762          symbols under the new scheme,
6763         pic16createInterruptVect: is modified
6764         pic16printPublics: is modified to emit 'global' assembler directives,
6765         added pic16_printExterns to print extern symbols,
6766         pic16glue: initializes stack/frame pointer in the beginning of
6767         the assembly output. Temporary hack, will be corrected later,
6768         because gplink yet does not support stack and SDCC does not
6769         yet support a type of crt0.o object to create the final binary.
6770
6771         * Removed many lines that contain 8051 legacy code.
6772         * The code is finally placed under a 'code' directive.
6773         * Added port specific options.
6774
6775         * _process_pragma: simplified since now we do not need *special*
6776         include file to define SFR registers. But a separate header
6777         will be needed. This will be developed later.
6778         * _pic16_parseOptions: added, parses port specific options:
6779         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
6780         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
6781         --preplace-udata-with=
6782
6783         * _pic16_setDefaultOptions: modified to initialize section names,
6784         but hack is temporarly out of order since it needs improvement.
6785         * _pic16_genAssemblerPreamble: configuration words are emitted by
6786         their address instead of their name. This part is incomplete and
6787         supports only the 18Fxx2 devices. Other devices will emit an error
6788         during assembly since they do not contain the same set of config
6789         registers
6790         * _pic16_genIVT: is modified,
6791
6792         * pcode.c: added definitions for some hardware registers that are needed
6793         for stack support
6794         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
6795         All PCI entries are updated. Now LFSR is supported.
6796         * Removed pic16_pciTRIS is mentioned by mdubuc in source
6797         * added pic16_newpCodeOpLit2 to support instructions with
6798         two literal arguments
6799         * pic16_pCode2str: corrected code that emits assembler instructions
6800         with two literal operands and those that have an access bit modifier
6801         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
6802         this fixes a bug which caused some labels to be lost, when an
6803         assembler directive was added, i.e. banksel,
6804         * pic16_FixRegisterBanking: improved logic that causes the insertion
6805         of bank switching,
6806         * InlineFunction: functions that are called once, are not any more
6807         inlined. This can be a port option in the future,
6808
6809         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
6810
6811         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
6812         hold the corresponding uninitialized symbols,
6813         * pic16_allocProcessorRegister: registers have explicit marked the
6814         accessBank field,
6815         * pic16_allocInternalRegister: registers are explicit marked as
6816         not used,
6817         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
6818         processing list, so bit registers were lost,
6819         *
6820
6821         * ralloc.h: added field 'accessBank' and original symbol operand
6822         in register definition,
6823         * removed the field isMapped from register definition,
6824
6825         ** Several functions have been removed from various sources:
6826         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
6827         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
6828         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
6829         pic16_assignRelocatableRegisters
6830
6831         ** others have been introduced:
6832         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
6833         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
6834
6835 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
6836
6837         * support/scripts/inc2h.pl: changed definition of BIT_AT
6838         to emit 'sbit at' instead of 'bit at'. This was a request.
6839
6840         PIC16 port related preliminary changes:
6841         * gen.c: prefixed function popRegFromString with
6842         pic16_ and all references to it corrected
6843         * pcode.c: all pic16_pc_* hardware registers prefixed
6844         with underscore (_),
6845         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6846         * ralloc.c: newReg(): when register is REG_SFR then
6847         set address to rIdx,
6848         pic16_allocProcessorRegister(): marks register wasUsed=0
6849         pic16_writeUsedRegs(): added a call to assign processor
6850         registers via pic16_assignFixedRegisters
6851
6852 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6853
6854         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6855         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6856         variables in unused register banks.  Also the SSEG is placed
6857         wherever there is enough space for it, and IDATA can be anywhere
6858         in internal RAM.  For now compile using -Wl-Y[stack_size].
6859         The mem file is different for this option as well, since it
6860         makes no sense of talking about DSEG lenght.
6861
6862 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6863
6864         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6865         in certain cases, e.g. when ROM assignment, patch provided
6866         from Albert den Haan.
6867
6868 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6869
6870         Many signedness and type propagation fixes:
6871         * src/SDCCicode.c: made geniCodeCast() static
6872         replaced SPEC_ by IS_ (cosmetic)
6873         (operandOperation): fixed div and mod operation
6874         (usualBinaryConversions): added support for promotion of char
6875         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6876         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6877         (geniCodeAdd): an array index will stay unsigned, even if promoted
6878         from char to int
6879         (geniCodeArray): ditto
6880         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6881         * src/SDCCsymt.c (computeType): added more support for char;
6882         promotion of char is selectable by promoteCharToInt, fixed signedness
6883         for all cases
6884         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6885         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6886         * src/SDCCval (val*): replaced signedness calculation by
6887         computeType()
6888         rearranged if-branches (cosmetic)
6889         (valShift): added warning W_SHIFT_CHANGED
6890         (valCompare): fixed problem with different types
6891         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6892         * support/regression/tests/literalop.c: added many cases
6893         * support/regression/tests/ast_constant_folding.c: changed finally to
6894         'unsigned int'
6895         * .version: new year, new version: 2.3.7
6896         * src/SDCCmain.c (main): applied patch #866468
6897         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6898         provided by Scott Bronson
6899         * doc/sdccman.lyx: updated documentation for sdcdb
6900         updated and added chapter tips
6901
6902 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * src/SDCCsymt.h: missing from yesterday's commits
6905
6906 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6907
6908         * src/SDCC.y (struct_or_union_specifier),
6909         * support/Util/SDCCerr.c,
6910         * support/Util/SDCCerr.h: verify that struct & union tags are used
6911         as declared.
6912
6913 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6914
6915         * src/SDCCglobl.h: missing from yesterday's commits
6916
6917 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6918
6919         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6920         sft_attributes, struct_declaration, parameter_declaration,
6921         type_name, start_block, declaration_list),
6922         * src/SDCC.lex (check_type): support redefinition of typedef names
6923
6924 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6925
6926         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6927         aligned xdata arrays. Erik helped me with the if clause.
6928
6929 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6930
6931         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6932         warning
6933
6934 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6935
6936         * src/SDCCast.h,
6937         * src/SDCCast.c (newAst_),
6938         * src/SDCCicode.h,
6939         * src/SDCCicode.c (ast2iCode, newiCode),
6940         * src/SDCCglobl.h,
6941         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6942         expr, statement, expression_statement, selection_statement,
6943         iteration_statement, expr_opt, jump_statement): foundation for tracking
6944         sequence points
6945         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6946         point code too)
6947
6948 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6949
6950         * support/Util/SDCCerr.c,
6951         * src/SDCCast.h,
6952         * src/SDCCast.c (createCase, createDefault, decorateType),
6953         * src/SDCClabel.c (labelUnreach),
6954         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6955         to error messages.
6956         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6957         (with thanks to Stas Sergeev)
6958         * device/include/time.h,
6959         * device/lib/time.c (CheckTime): suppress unreachable code warning
6960
6961 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6962
6963         * src/SDCCast.c (createIvalCharPtr),
6964         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6965         bug #753752)
6966         * support/regression/tests/nullstring.c: tests for these two bugs
6967
6968 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         * support/Util/SDCCerr.h,
6971         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6972         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6973         about storage class and 'at' used inside struct or union
6974         * src/SDCCBBlock.c (iCodeFromeBBlock),
6975         * src/SDCCcse.c (ifxOptimize),
6976         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6977         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6978         printIval, emitStaticSeg, emitOverlay),
6979         * src/SDCClabel.c (deleteIfx),
6980         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6981         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6982         gatherAutoInit, processParms),
6983         * support/Util/SDCCerr.h,
6984         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6985         reporting for post-parse errors.
6986
6987 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6990         implicit casts via union; they don't work on big endian systems
6991         (possible fix for bug #861138)
6992
6993 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6994
6995         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6996         * src/mcs51/main.c: fixed the fix for bug #737001
6997
6998 2003-12-15  Borut Razem <borut.razem AT siol.net>
6999
7000         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7001
7002 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7003
7004         * support/makebin/makebin.c: put output in binary mode
7005
7006 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7007
7008         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7009         xdata and data memory on startup. Set the environment variable
7010         SDCC_NOGENRAMCLEAR to disable this.
7011         * src/mcs51/peephole.def,
7012         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7013         (allows non-interrupt and interrupt code to safely compete for a resource
7014         without the non-interrupt code having to disable interrupts)
7015
7016 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7017
7018         * src/SDCCicode.c (geniCodeAdd),
7019         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7020         with valFromType if type might be a pointer and host is big endian).
7021         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7022         types, not just integer types.
7023         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7024         multiply defined with mismatching "at" address.
7025
7026 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7027
7028         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7029         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7030         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7031         with embedded nulls (fixed bug #753752)
7032
7033 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7034
7035         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7036         Apparently this did not see much testing (endless loop)
7037
7038 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7039
7040         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7041
7042 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7043
7044         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7045         gracefully handle NULL memmap pointers
7046
7047 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7048
7049         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7050         instead of deleting the iCode when an operand is volatile
7051         * src/z80/gen.c (genDummyRead),
7052         * src/mcs51/gen.c (genDummyRead),
7053         * src/ds390/gen.c (genDummyRead),
7054         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7055         not just IC_RIGHT
7056         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7057         * src/SDCC.y: fixed bug #850420
7058
7059 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7060
7061         Applied z80 i/o port patch from Peter Townson and fixed some operators
7062         to better handle operands in A register.
7063         * device/include/z180.h
7064         * src/SDCC.y
7065         * src/SDCCglue.c
7066         * src/z80/gen.c
7067         * src/z80/gen.h
7068         * src/z80/main.c
7069         * src/z80/peeph-z80.def
7070         * src/z80/peeph.def
7071         * src/z80/z80.h
7072
7073 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7074
7075         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7076
7077 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7078
7079         * device/lib/hc08/_mullong.c: Removed extra #endif
7080
7081 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7082
7083         * sim/ucsim/hc08.src/inst.cc,
7084         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7085         carries from x to h
7086         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7087         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7088         * device/include/stdarg.h: fixed varargs for hc08
7089         * device/lib/Makefile.in,
7090         * device/lib/hc08/Makefile,
7091         * device/lib/hc08/_mulint.c,
7092         * device/lib/hc08/_mullong.c: fixed some endian problems
7093
7094 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7095
7096         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7097         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7098         * device/lib/_gptrget.c,
7099         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7100
7101 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7102
7103         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7104         * src/SDCCast.c (astErrors): fixed bug #846007
7105         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7106
7107 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7108
7109         * src/SDCCast.c (decorateType): disabled a transformation I added in
7110         revision 1.188 (access to fields of a structure at an absolute address);
7111         it breaks with bitfields, extern declarations, and gcse analysis.
7112         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7113         could be assigned through a pointer, so don't complain.
7114         * src/SDCCast.c (astErrors),
7115         * src/SDCCast.h,
7116         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7117
7118 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7119
7120         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7121         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7122         output of __config directives, since gpasm now supports them
7123         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7124         pre-processor macro, i.e. -DMCU=p18f452
7125         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7126         and modified to handle 'cast' icode similarly to '=' icode
7127         * src/pic16/device.h (typedef struct PIC_device): added field
7128         'extMIface' to indicate that chip has external memory interface
7129         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7130         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7131         18F8720
7132
7133 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7134
7135         * src/SDCC.y (pointer): fixed bug #846006
7136         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7137         * src/SDCCast.c (decorateType): fixed bug #846009
7138         * src/ds390/peeph.def,
7139         * src/ds390/gen.c (genAnd, genOr),
7140         * src/mcs51/peeph.def,
7141         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7142
7143 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7144
7145         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7146         * src/SDCCdflow.c
7147         * src/SDCCcse.c
7148         * src/SDCCcse.h
7149         * src/SDCCBBlock.h
7150         * src/SDCCBBlock.c
7151
7152 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7153
7154         fixed bug #845089
7155         * src/SDCCbitv.h,
7156         * src/SDCCbitv.c: added function to free a bitvector
7157         * src/SDCClrange.h,
7158         * src/SDCClrange.c: added function to recompute the liveranges
7159         * src/avr/ralloc.c,
7160         * src/ds390/ralloc.c,
7161         * src/hc08/ralloc.c,
7162         * src/mcs51/ralloc.c,
7163         * src/pic/ralloc.c,
7164         * src/pic16/ralloc.c,
7165         * src/xa51/ralloc.c,
7166         * src/z80/ralloc.c: recompute the liveranges after register packing
7167
7168 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7169
7170         * src/SDCCloop.c (newInduction): fixed bug #845630
7171
7172 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7173
7174         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7175         inadvertantly left behind from my 2003-11-12 change
7176
7177 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7178
7179         Updated headers I neglected to commit yesterday.
7180         * src/SDCClrange.h,
7181         * src/SDCCicode.h
7182
7183 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7184
7185         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7186         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7187         * src/SDCCopt.c (eBBlockFromiCode),
7188         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7189         the creation of the key hash table from the sequencing so it can be used
7190         earlier (for some GCSE bug fixes still pending)
7191
7192 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7193
7194         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7195         * support/regression/tests/addsub.c: testing genPlus shortcut
7196
7197 2003-11-15  Borut Razem <borut.razem AT siol.net>
7198
7199         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7200
7201 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7202
7203         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7204         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7205         ordering is immaterial.
7206         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7207
7208 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7209
7210         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7211         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7212         (SIGSEV) of bug #840381
7213         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7214         unlink new file before rename if new and old filenames are the same)
7215
7216 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7217
7218         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7219         uninitialized variables) for the mcs51. Set environment variable
7220         SDCC_GENRAMCLEAR to test.
7221         xdata initialization slightly shorter
7222
7223 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7224
7225         * src/SDCCsymt.h,
7226         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7227         #838241 & 780691 (basicly the same bug)
7228         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7229         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7230
7231 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7232
7233         * src/SDCCmain.c (linkEdit): "fix" #834252
7234
7235 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7236
7237         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7238         * src/SDCCast.h,
7239         * src/SDCC.y: fixed bug #819403
7240
7241 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7242
7243         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7244         the reentrant attribute.
7245         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7246         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7247         simulation
7248         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7249         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7250         erroneously reduced to a literal.
7251         * src/hc08/ralloc.c (packRegisters, rematStr),
7252         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7253         some cases
7254
7255 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7256
7257         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7258         * doc/sdccman.lyx: changed from 'article' to 'book'
7259         * doc/Makefile: readded test_suite_spec and cdbfileformat
7260
7261 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7262
7263         * device/include/stdlib.h: include malloc.h to comply with ANSI
7264         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7265
7266 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7267
7268         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7269         * doc/clean.mk: also remove *.out files
7270         * doc/sdccman.lyx: some additions, larger top/bottom margins
7271
7272 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7273
7274         * src/SDCC.y: fixed bug #837365
7275         * support/regression/tests/bitopcse.c
7276         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7277         a symbol (might be valop instead)
7278         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7279         * device/lib/clean.mk: added hc08 to the cleaning list
7280
7281 2003-11-04  Borut Razem <borut.razem AT siol.net>
7282
7283         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7284           made 2003-11-04
7285         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7286           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7287           malloc is declared in standard stdlib.h
7288
7289 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7290
7291         * device/lib/hc08/Makefile: need to clean .rel not .o files
7292         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7293
7294 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7295
7296         * src/port.h,
7297         * src/hc08/main.c,
7298         * src/mcs51/main.c,
7299         * src/ds390/main.c,
7300         * src/z80/main.c,
7301         * src/avr/main.c,
7302         * src/pic/main.c,
7303         * src/pic16/main.c,
7304         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7305         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7306         tests (which uses the port's oclsExpense function)
7307         * src/SDCC.y,
7308         * src/SDCCast.c,
7309         * src/SDCCicode.c,
7310         * src/hc08/gen.c,
7311         * src/ds390/gen.c,
7312         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7313
7314 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7315
7316         * src/SDCCcse.c (ifxOptimize),
7317         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7318         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7319         deleting the IFX iCode.
7320         * src/hc08/ralloc.c: reduced unneeded slocs
7321         * src/hc08/gen.c: fixed bug in asmopToBoolean
7322
7323 2003-11-04  Borut Razem <borut.razem AT siol.net>
7324
7325         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
7326           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7327           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
7328           transferred to configure
7329
7330 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
7331
7332         Use headers defined in the C[++] standards:
7333         * sim/ucsim/gui.src/serio.src/fileio.cc
7334         * sim/ucsim/gui.src/serio.src/frontend.cc
7335         * sim/ucsim/gui.src/serio.src/main.cc
7336         * sim/ucsim/gui.src/serio.src/posix_signal.cc
7337         * support/Util/NewAlloc.c
7338         * as/hc08/lklibr.c
7339         * as/mcs51/lklibr.c
7340         * as/z80/aslist.c
7341         * as/z80/assym.c
7342
7343 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7344
7345         * Added MSVC projects for hc08 assembler and linker:
7346         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
7347         /as/hc08/link_hc08.dsp
7348
7349 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
7350
7351         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
7352
7353 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
7354
7355         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
7356
7357 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7358
7359         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
7360
7361 2003-10-31  Borut Razem <borut.razem AT siol.net>
7362
7363         * support/cpp2/cpplib.h,
7364           support/cpp2/cpplib.c,
7365           support/cpp2/cpplex.c,
7366           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
7367           to switch _asm block preprocessing on / off. Default is
7368           #pragma preproc_asm +
7369
7370 2003-10-31  Borut Razem <borut.razem AT siol.net>
7371
7372         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
7373           when outputting comment blocks (when executed with -C option) and
7374           _asm (SDCPP specific) blocks
7375
7376 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7377
7378         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
7379
7380 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
7381
7382         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
7383
7384 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
7385
7386         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
7387         * src/SDCCast.c (decorateType): fixed bug #832664
7388
7389 2003-10-31  Borut Razem <borut.razem AT siol.net>
7390
7391         * support\cpp2\cpplex.c: fixed for SDCPP:
7392           comments(when executed with -C option) and _asm blocks
7393           were included even if they where in skipped #if block.
7394           Applied solution from GCC cpp 3.3.2
7395
7396 2003-10-31  Borut Razem <borut.razem AT siol.net>
7397
7398         * src/SDCC.lex: sdcc now understands both formats:
7399           '# <line_number> <file_name>' and
7400           '#line <line_number> <file_name>'
7401         * support/cpp2/cppmain.c: sdcpp now generates the standard
7402           '# <line_number> <file_name>' instead of former
7403           '#line <line_number> <file_name>'
7404
7405 2003-10-30  Borut Razem <borut.razem AT siol.net>
7406
7407         * support/cpp2/cpphash.h,
7408         * support/cpp2/cpplib.h
7409         * support/cpp2/cpplex.c,
7410         * support/cpp2/cppmain.c,
7411         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
7412
7413 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7414
7415         Fixed a number of problems revealed by bug #827883.
7416         * src/SDCCloop.c (loopInvariants): Spill location of the
7417         result operand should be recomputed if extracted from
7418         a loop. Also, don't extract assignments of an iTemp
7419         from a literal.
7420         * src/SDCCast.c (isConformingBody): loop reversal should
7421         not occur if the control variable is involved with a
7422         relational operator.
7423
7424 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
7425
7426         * .version: bumped to 2.3.6 to reflect the big improvements
7427         made by Erik and Klaus. Thanks!
7428
7429 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
7430
7431         Replaced the livrange code.
7432         * src/SDCClrange.c: added new LR code
7433         * src/SDCCloop.c,
7434         * src/SDCCBBlock.h: removed remainig parts from old LR code
7435         * src/ds390/ralloc.c,
7436         * src/ds390/gen.c: minor fixes to make it work with new code
7437
7438 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7439
7440         * as/hc08/asm.h,
7441         * as/hc08/lkrloc.c,
7442         * src/hc08/gen.c,
7443         * src/hc08/ralloc.c: Fix various warnings related to the hc08
7444         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
7445         (tweaked fix for bug #818696)
7446
7447 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7448
7449         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
7450
7451 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7452
7453         * src/SDCCmain.c,
7454         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
7455         * src/mcs51/gen.c (gencjneshort),
7456         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
7457         more efficient (per Scott Bronson's suggestion)
7458
7459 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7460
7461         Extended the semantics of the critical keyword to include
7462         individual statements. See RFE #827755 and #799831
7463         * src/SDCC.y
7464         * src/SDCCicode.c
7465         * src/SDCCopt.c
7466         * src/SDCCast.c
7467         * support/Util/SDCCerr.c
7468         * support/Util/SDCCerr.h
7469         * src/mcs51/gen.c
7470         * src/ds390/gen.c
7471         * src/hc08/gen.c
7472
7473 2003-10-19  Borut Razem <borut.razem AT siol.net>
7474
7475         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
7476
7477 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7478
7479         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
7480         Fixed bug #818696
7481         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
7482         and predecrement operand is displayed
7483
7484 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7485
7486         * src/SDCCval.c (valMinus): fixed bug #826041
7487
7488 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7489
7490         Some hc08 related updates that I missed earlier
7491         * sim/ucsim/stypes.h
7492         * support/regression/ports/hc08/spec.mk
7493
7494 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7495
7496         New target "hc08" for the Motorola 68hc08 family of micros
7497
7498         * configure
7499         * configure.in
7500         * Makefile
7501         * src/hc08/*
7502         * src/SDCCmain.c
7503         * src/port.h
7504         * sim/ucsim/hc08.src/*
7505         * sim/ucsim/configure.in
7506         * src/ucsim/configure
7507         * sim/ucsim/packages_in.mk
7508         * as/hc08/*
7509         * as/Makefile
7510         * device/include/mc68hc908qy.h
7511         * device/lib/hc08/*
7512         * device/lib/Makefile.in
7513         * support/regression/ports/hc08/*
7514         * support/regression/Makefile
7515
7516 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7517
7518         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
7519         regression test
7520         * src/ds390/gen.c (genCast): fixed bug #821957
7521
7522 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
7523
7524         * device/lib/logf.c: "fixed" overlay bug
7525         * support/regression/ports/host/spec.mk: added m library
7526         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
7527         * support/regression/tests/float_trans: added (for Eric)
7528
7529 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
7530
7531         * src/mcs51/gen.c (genCpl): fixed bug
7532         http://sf.net/mailarchive/message.php?msg_id=6263915
7533
7534 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
7535
7536         * src/SDCCast.c (decorateType): added extended constant folding
7537         * src/SDCCsymt.c (computeType): cleanup
7538         * src/SDCCval.c (valShift): minor optimization
7539         * support/regression/tests/ast_constant_folding.c: added
7540
7541 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7542
7543         * src/SDCCmain.c: removed some unintended changes
7544
7545 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7546
7547         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
7548         * src/z80/gen.c: fixed part of bug #817589
7549         * src/SDCCsymt.c (checkFunction): fixed bug #817895
7550
7551 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
7552
7553         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
7554         * src/SDCCcflow.c
7555         * src/SDCCcse.c
7556         * src/SDCCdflow.c
7557         * src/SDCClabel.c
7558         * src/SDCClrange.c
7559         * src/SDCCmem.c
7560         * src/SDCCopt.c
7561         * src/SDCCpeeph.c
7562         * src/SDCCset.c
7563         * src/avr/ralloc.c
7564         * src/ds390/ralloc.c
7565         * src/izt/ralloc.c
7566         * src/mcs51/ralloc.c
7567         * src/pic/ralloc.c
7568         * src/pic16/ralloc.c
7569         * src/xa51/ralloc.c
7570         * src/z80/ralloc.c
7571         * src/z80/gen.c: removed unused label "release:"
7572
7573 2003-10-06  Borut Razem <borut.razem AT siol.net>
7574
7575         * src/SDCC.lex: removed definition of unused variables
7576           save_optimize and save_options
7577
7578 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
7579
7580         * clean.mk: removed '=' in "-maxdepth=1"
7581         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
7582         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
7583
7584 2003-10-06  Borut Razem <borut.razem AT siol.net>
7585
7586         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
7587           my_unput() replaced by unput()
7588
7589 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
7590
7591         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
7592         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
7593         type-punned pointer will break strict-aliasing rules"
7594         Old LR behaviour is again default; Klaus' LR can be choosen by
7595         defining the environment variable LRKLAUS
7596         * src/SDCCBBlock.h
7597         * src/SDCCloop.c
7598         * src/SDCClrange.c
7599         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
7600         * clean.mk: fixed removal of files in bin/CVS/
7601         * device/lib/clean.mk: fixed removal of directories small and large
7602         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
7603         * src/SDCCicode.c,
7604         * src/SDCCval.c: removed superflous test for pedantic
7605
7606 2003-10-05  Borut Razem <borut.razem AT siol.net>
7607
7608         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
7609           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
7610           message "unmatched #pragma SAVE and #pragma RESTORE"
7611
7612 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7613
7614         * doc/sdccman.lyx: various additions and updates (interrupts, inline
7615           assembly, critical functions, atomic, nojtbound)
7616
7617 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
7618
7619         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
7620         * src/SDCCBBlock.h
7621         * src/SDCCloop.c
7622         * src/SDCCloop.h
7623         * src/SDCClrange.c
7624
7625 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7626
7627         * src/z80/gen.h,
7628         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7629         * src/mcs51/gen.h
7630         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7631         * src/ds390/gen.h
7632         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
7633         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
7634         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
7635
7636 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7637
7638         * src/z80/gen.c (genRet): fixed bug #524753
7639         * src/z80/gen.c (genCast): fixed internal error on cast from
7640         pointer to long
7641         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
7642         fix for bug #477835 to the z80
7643         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
7644         for tracking iCodes in the peephole optimizer for z80
7645
7646 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7647
7648         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
7649         the other part of bug #814548
7650         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
7651
7652 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
7653
7654         * src/SDCCcse.c: fixed part of bug #814548
7655
7656 2003-09-28  Borut Razem <borut.razem AT siol.net>
7657
7658         * src/asm.c: rewrite of printILine() to use temporary file instead
7659           a pipe
7660         * src/xa51/main.c: commented out declaration of int rewinds
7661
7662 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7663
7664         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
7665
7666 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7667
7668         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
7669         * src/asm.c (printILine): Fixed bug #811015
7670
7671 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7672
7673         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
7674         freeing.
7675
7676 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7677
7678         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
7679         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
7680         to correctly handle general case of AOP_PAIRPTR
7681         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
7682
7683 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7684
7685         * src/mcs51/ralloc.c (fillGaps),
7686         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
7687         register positioning bug)
7688
7689 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
7690
7691         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
7692
7693 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7694
7695         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
7696         genCodePointerGet, genGenPointerGet, genFarPointerSet,
7697         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
7698         (ralloc doesn't intentionally do this now, but perhaps later)
7699         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
7700         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
7701         register positioning bugs (Fixed bug #762602 and #795325)
7702         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
7703         (Fixed bug #808779)
7704         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
7705         lines that --i-code-in-asm generates
7706
7707 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7708
7709         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
7710         trying to fclose a FILE* that was already closed.
7711
7712 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7713
7714         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
7715         of const struct should be treated as if const themselves)
7716
7717 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
7718
7719         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
7720
7721 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7722
7723         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
7724         Unix (/n) and DOS (/r/n) line terminations.
7725
7726 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7727
7728         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
7729         bug #613775
7730
7731 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7732
7733         * src/mcs51/gen.c (genFunction, genEndFunction),
7734         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
7735         and restore of EA so that stack offsets to parameters are
7736         correct when using both critical and reentrant/stack-auto.
7737         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
7738         size (can be triggered in error if sloc is shared between
7739         different sized objects)
7740         * device/include/float.h: fixed macros to explicitly use
7741         unsigned long where needed
7742
7743 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
7744
7745         Feature req. 799831: added code to allow nesting of critical functions
7746         * src/mcs51/gen.c (genFunction, genEndFunction)
7747         * src/ds390/gen.c (genFunction, genEndFunction)
7748
7749 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7750
7751         * src/SDCCsymt.c (sclsFromPtr),
7752         * src/SDCCsymt.h,
7753         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
7754         support for standard C idiom of memory mapped variables; for
7755         example, *((xdata int*)0x1234) = 1 is now internally equivalent
7756         to xdata int at 0x1234 tempvar = 1.
7757         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
7758         provided by Akiya ISHIDA
7759
7760 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
7761
7762         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
7763         * src/SDCCval.c (constVal): added reduction from int to char
7764         * src/SDCCval.c (valMult, valDiv): fixed sign handling
7765         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
7766         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
7767         to ignore the sign
7768         * support/regression/tests/shifts.c: fixed
7769
7770 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7771
7772         * src/z80/gen.c (genXor): Fixed bug #805445
7773
7774 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7775
7776         Fixed bug #621531 (const & volatile confusion in the type chain).
7777         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
7778         refer to the const or volatile state of the pointer itself.
7779
7780         * src/SDCCast.c
7781         * src/SDCCglue.c
7782         * src/SDCCicode.c
7783         * src/SDCCsymt.c
7784         * src/SDCCval.c
7785         * src/SDCC.y
7786         * src/SDCCsymt.h
7787         * src/pic/gen.c
7788         * src/pic/ralloc.c
7789         * src/pic16/gen.c
7790         * src/pic16/ralloc.c
7791         * support/regression/tests/const.c
7792
7793 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7794
7795         When checking for duplicated modules, use absolute paths
7796         instead of relative paths.  Files changed:
7797
7798         * as/mcs51/lklib.c
7799         * link/z80/lklib.c
7800
7801 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7802
7803         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
7804
7805 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7806
7807         * device/include/string.h: added size_t typedef, changed
7808         prototypes to use size_t, eliminated separate reentrant and
7809         non-reentrant declarations, added _memmove declaration
7810         * device/lib/_memcpy.c: changed to use size_t instead of int,
7811         changed /4 to >>2 to avoid division library call
7812         * device/lib/_memcmp.c,
7813         * device/lib/_memset.c,
7814         * device/lib/_strncat.c,
7815         * device/lib/_strncpy.c,
7816         * device/lib/_strncmp.c: changed to use size_t instead of int
7817         * device/lib/_memmove.c: new file (fixed bug #772294)
7818         * device/lib/Makefile.in: added _memmove.c
7819         * device/lib/z80/asm_strings.s: fixed bug #772290
7820         * support/regression/tests/bitfields.c: attempt to fix host assertion
7821         failure on amd64-unknown-linux2.2
7822
7823 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7824
7825         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
7826         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
7827         * as/z80/asmain.c (main): fixed bug #801766
7828
7829 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
7830
7831         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
7832         compilers
7833
7834 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7835
7836         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
7837         reported in bug #800609
7838
7839 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7840
7841         * Top header beautifications in src/pic16 directory:
7842           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7843           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7844           pcoderegs.h, ralloc.c, ralloc.h
7845         * main.c: added top header and GPL license notice
7846         * pcode.c: fixed the if-conditional warning
7847
7848 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7849
7850         * device/lib/_mullong.c: replaced int by short for gcc
7851
7852 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7853
7854         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7855         and JUMPTABLE iCodes properly now (worked by accident before)
7856         * src/mcs51/gen.c (leftRightUseAcc),
7857         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7858         iCode properly now. Use getSize instead of nRegs since a & b
7859         aren't part of the nRegs tally.
7860
7861 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7862
7863         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7864         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7865           before instructions that use the _STATUS register
7866
7867 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7868
7869         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7870         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7871         fetching of the pointer
7872         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7873         copied from genNearPointerSet()
7874         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7875         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7876         If they pop r0/r1 they must be called in the opposite order than aopOp().
7877         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7878         (resp. --stack-auto), prepared for --xstack
7879
7880 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7881
7882         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7883
7884 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7885
7886         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7887         these ports have their own __sdcc_external_start()
7888
7889 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7890
7891         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7892         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7893         type for bits was changed. It resulted in bit variables becoming
7894         global, which is not permitted in PIC 14 assembly output.
7895
7896 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7897
7898         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7899
7900 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7901
7902         Z80 and MCS51 linkers complaint if a public symbol is defined
7903         in more than one library module:
7904
7905         * as/mcs51/lklib.c
7906         * link/z80/lklib.c
7907         * as/mcs51/Makefile.in
7908
7909 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7910
7911         A few small changes that speed up the peephole optimizer.
7912
7913         * src/SDCCpeeph.c
7914
7915 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7916
7917         Try to make the peephole optimizer smarter by maintaining
7918         an association between the assembly source code and the
7919         iCodes that originated them. Put this information to use
7920         with a new peephole rule condition "notVolatile" so that
7921         the rules can be aggressive yet still safe.
7922
7923         * src/SDCCpeeph.c
7924         * src/SDCCpeeph.h
7925         * src/mcs51/gen.c
7926         * src/mcs51/peeph.def
7927
7928 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7929
7930         Fixed bug #741761
7931
7932         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7933         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7934         if the left or right operand symbols have the accuse flag set.
7935
7936 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7937
7938         Changed the type of the result of the ! (NOT) operator to char;
7939         previously it returned the same type as the source. This allows
7940         us to eliminate all the genFloatNot functions (all of its target
7941         implementations were very buggy) since !float can use the same
7942         code as !long now.
7943
7944         * src/SDCCicode.c (ast2iCode): ! returns char
7945         * src/mcs51/gen.c (genNot, genNotFloat),
7946         * src/ds390/gen.c (genNot, genNotFloat),
7947         * src/z80/gen.c (genNot, genNotFloat),
7948         * src/pic/gen.c (genNot, genNotFloat),
7949         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7950
7951 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7952
7953         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7954         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7955            during interrupts. Ensure WSAVE is located at a shared bank address.
7956         2. Fixed page selection in some places
7957         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7958            the registers name strings.
7959         4. Fixed "signed / unsigned compare" compiler warnings.
7960         5. The PIC port manages its own allocation of the general purpose
7961            registers, but makes no attempt to reuse them. As a result when
7962            compiling it soon runs out of general purpose registers. Some
7963            additional code was added to the files pcode.c and device.c to walk
7964            through the function call tree and rename the registers so that they
7965            get reused.
7966
7967         * src/pic/device.c
7968         * src/pic/gen.c
7969         * src/pic/glue.c
7970         * src/pic/pcode.c
7971         * src/pic/pcode.h
7972         * src/pic/ralloc.c
7973         * src/pic/ralloc.h
7974         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7975         genPlus() & genMinus() when the result is the same as left or right
7976
7977 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7978
7979         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7980
7981 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7982
7983         Made bitfield a distinct type from bit so that bitfields
7984         convert as per ANSI C and bits retain their traditional
7985         boolean style behaviour. Implemented bitfield support in
7986         the z80 port.
7987
7988         * src/SDCCsymt.h,
7989         * src/SDCCsymt.c,
7990         * src/SDCCast.c,
7991         * src/cdbFile.c,
7992         * src/mcs51/gen.c,
7993         * src/ds390/gen.c: bit v bitfield split
7994         * src/z80/gen.c: New support for bitfields
7995         * support/regression/tests/bitfields.c: reenabled z80,
7996         added more tests
7997
7998 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7999
8000         Rules 246.x, 247.x relate to bitfields, the others speed up
8001         access to xdata mapped I/O devices.
8002
8003         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8004
8005 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8006
8007         Cleaned up genPackBits and genUnpackBits and added two helper
8008         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8009         for literal assignments in genPackBits (thanks to Frieder for
8010         reminding me).
8011
8012         * src/mcs51/gen.c
8013         * src/ds390/gen.c
8014
8015 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8016
8017         Fixed bug #748310 (pointer to function type mishandled when the
8018         function name is omitted). Also fixed a SIGSEGV when a function
8019         attribute (reentrant, etc) is used on a non-function or on a
8020         function but misplaced before the parameter list.
8021
8022         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8023         bug #748310
8024         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8025         * support/Util/SDCCerr.h,
8026         * support/Util/SDCCerr.c: Added func attr misuse error msg
8027
8028 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8029
8030         Fixed bug #787649 by anonymous
8031         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8032         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8033
8034 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8035
8036         Fixed numerous bitfield problems.
8037
8038         * src/SDCC.y: More bitfield related error checking
8039         * src/SDCCsymt.h,
8040         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8041         * support/Util/SDCCerr.h,
8042         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8043         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8044         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8045         * support/regression/tests/bitfields.c: tests added
8046
8047 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8048
8049         Made the constant following the "interrupt" keyword optional. If
8050         omitted, the function will not automatically be given an entry
8051         in the interrupt vector table (similar to #pragma NOIV, but
8052         less syntacticly kludgy). The interrupt number is also now
8053         range checked. Also fixed a bug in the high order bit example
8054         in the manual.
8055
8056         * src/SDCC.y
8057         * src/SDCCmem.c
8058         * src/SDCCglue.c
8059         * src/SDCCsymt.h
8060         * support/Util/SDCCerr.c
8061         * support/Util/SDCCerr.h
8062         * doc/sdccman.lyx
8063
8064 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8065
8066         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8067         * src/SDCCicode.c (operandOperation): rewritten some ops
8068         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8069         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8070         other type
8071         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8072         be re-activated by defining REDUCE_LITERALS)
8073         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8074         unsigned, but are signed by default
8075         * src/SDCCval.c (constVal): rearranged
8076         * src/SDCCval.c (valMod): preliminary fix
8077         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8078         * support/regression/literalop.c: added, work in progress
8079
8080 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8081
8082         Generate warnings for useless declarations like "char data;"
8083         that don't do what new users expect.
8084
8085         * src/SDCC.y
8086         * support/Util/SDCCerr.h
8087         * support/Util/SDCCerr.c
8088
8089 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         * src/SDCCval.c (valMult): fix overflow detection of negative int
8092
8093 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8094
8095         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8096
8097         Changes to support big endian targets:
8098
8099         * src/ports.h
8100         * src/SDCCglue.c
8101         * src/avr/main.c
8102         * src/ds390/main.c
8103         * src/izt/i186.c
8104         * src/mcs51/main.c
8105         * src/pic/main.c
8106         * src/pic16/main.c
8107         * src/xa51/main.c
8108         * src/z80/main.c
8109
8110 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8111
8112         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8113         * device/lib/time.c: fixed warning "integer overflow in expression"
8114
8115 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8116
8117         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8118         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8119         constants are unsigned; added recognition of "u" flag for unsigned
8120         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8121         * src/SDCCval.c (valDiv, valMod): fixed signdness
8122         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8123         signedness of modulo, left and right shift
8124         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8125         * support/Util/SDCCerr.h: added warning W_INT_OVL
8126         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8127         * src/SDCCast.c (ast_print): improved output of constants
8128
8129 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8130
8131         Fixed some warnings when building with MSVC:
8132
8133         * as\mcs51\asdata.c
8134         * as\z80\asdata.c
8135         * as\mcs51\asm.h
8136         * as\z80\asm.h
8137         * link\z80\aslink.h
8138         * link\z80\lkdata.c
8139         * link\z80\lkeval.c
8140         * link\z80\lkgb.c
8141         * link\z80\lkihx.c
8142         * link\z80\lks19.c
8143         * link\z80\lksym.c
8144         * support\cpp2\cpplib.c
8145         * src\ds390\gen.c
8146         * src\mcs51\gen.c
8147
8148 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8149
8150         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8151
8152 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8153
8154         * support\librarian\clean.mk: Do not remove Makefile.
8155         * support\librarian\Makefile: added.
8156
8157 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8158
8159         Added librarian to MSVC build:
8160         * all.dsp
8161         * sdcc.dsw
8162         * support\librarian\librarian.dsp
8163
8164         'configure' not needed for librarian, removed:
8165         * support\librarian\configure
8166         * support\librarian\configure.in
8167         * support\librarian\config_in.h
8168         * support\librarian\Makefile.in
8169
8170         Hopefully these ones built the librarian and the rest of sdcc properly:
8171         * Makefile
8172         * Makefile.common.in
8173
8174         Messed up 'configure', so revert to previous version:
8175         * configure
8176         * configure.in
8177
8178 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8179
8180         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8181         there, while the mantissa of a double is "only" 53 bits wide.
8182
8183 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8184
8185         Adding sdcclib to the build.  MSVC project coming soon.
8186         Files added/changed:
8187
8188         * support\librarian\clean.mk
8189         * support\librarian\configure
8190         * support\librarian\configure.in
8191         * support\librarian\config_in.h
8192         * support\librarian\Makefile.bcc
8193         * support\librarian\Makefile.in
8194         * support\librarian\sdcclib.c
8195         * Makefile.bcc
8196         * Makefile
8197         * Makefile.common.in
8198         * configure
8199         * configure.in
8200
8201 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8202
8203         Linker now complaints if linked modules have conflicting options, for
8204         example, one compiled using --model-large and another one compiled with
8205         --model-small.  The following files were modified:
8206
8207         * as\mcs51\asdata.c
8208         * as\mcs51\aslink.h
8209         * as\mcs51\asm.h
8210         * as\mcs51\asmain.c
8211         * as\mcs51\asout.c
8212         * as\mcs51\i51pst.c
8213         * as\mcs51\lkdata.c
8214         * as\mcs51\lklibr.c
8215         * as\mcs51\lkmain.c
8216         * as\z80\asdata.c
8217         * as\z80\asm.h
8218         * as\z80\asmain.c
8219         * as\z80\asout.c
8220         * as\z80\z80pst.c
8221         * link\z80\aslink.h
8222         * link\z80\lkdata.c
8223         * link\z80\lklibr.c
8224         * link\z80\lkmain.c
8225         * src\SDCCglue.c
8226
8227 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8228
8229         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8230         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8231
8232 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8233
8234         * src/z80/mappings.i: fix _mul[us][int,long] entries
8235
8236 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8237
8238         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8239
8240 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8241
8242         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8243         * support/regression/tests/bitopcse.c: added
8244         fixed warning:
8245         * src/avr/gen.c:
8246         * src/pic/gen.c:
8247         * src/pic16/gen.c:
8248         * src/z80/gen.c:
8249         * src/xa51/gen.c:
8250
8251 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8252
8253         added support for new library format to z80, gbz80 linkers:
8254         *link/z80/aslink.h
8255         *link/z80/lklex.c
8256         *link/z80/lklib.c
8257         *link/z80/lklist.c
8258
8259 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8260
8261         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8262         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8263
8264 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8265
8266         added DUMMY_READ_VOLATILE:
8267         * src/SDCC.y:
8268         * src/avr/gen.c:
8269         * src/xa51/gen.c:
8270         * src/z80/gen.c:
8271         * src/pic/gen.c:
8272         * src/pic16/gen.c:
8273         * src/mcs51/gen.c:
8274         * src/ds390/gen.c:
8275         * src/SDCCcse.c (algebraicOpts): many improvements
8276         * src/SDCCcse.h: removed algebraicOpts()
8277         * src/SDCCicode.c (picDummyRead): added
8278
8279 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8280
8281         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8282         "Insufficient space in data memory".
8283
8284 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8285
8286         * src/mcs51/gen.c: fixed bug #771358
8287         * src/z80/gen.c: fixed bug #759087
8288
8289 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8290
8291         * src/pic16/glue.c: minor cleanup by Vangelis
8292
8293 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8294
8295         * device/include/regc515c.h: fixed #758477
8296         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8297         * device/lib/_gptrput.c: saved a few bytes
8298         * my tab spacing is 8, yours too?)
8299         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8300         * device/lib/serial.c: process RX bytes earlier than TX bytes
8301         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8302
8303 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8304
8305         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8306
8307 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8308
8309     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8310
8311 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8312
8313         * device/lib/Makefile.in: bad fix, reverted to 1.43
8314
8315 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8316
8317         * device/lib/Makefile.in: added missing z80 object files
8318
8319 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8320
8321         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8322         pic16 progress by Vangelis:
8323         * src/SDCCglobl.h:
8324         * src/SDCCmain.c:
8325         * src/pic/Makefile:
8326         * src/pic:
8327         * pic/Makefile:
8328         * pic16/device.c:
8329         * pic16/device.h:
8330         * pic16/gen.c:
8331         * pic16/gen.h:
8332         * pic16/genarith.c:
8333         * pic16/glue.c:
8334         * pic16/main.c:
8335         * pic16/pcode.c:
8336         * pic16/pcode.h:
8337         * pic16/pcodepeep.c:
8338         * pic16/peeph.def:
8339
8340 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8341
8342     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
8343
8344 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8345
8346     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
8347     added gbz80 build to MSVC project.
8348     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
8349     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
8350     from 8051 stuff and setup so it links using a .lnk file.
8351
8352 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8353
8354     * support/librarian/sdcclib.c: sdcc librarian.
8355     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
8356     with sdcclib.
8357
8358 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8359
8360     * as/mcs51/lkmain.c: properly handle extensions in function afile.
8361
8362 2003-07-02  Borut Razem <borut.razem AT siol.net>
8363
8364         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
8365         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
8366         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
8367         src/xa51/main.c, src/z80/main.c:
8368         virtualization of glue() function: each port has it's own glue function,
8369         which is accessed by do_glue function pointer in PORT.general structure
8370
8371 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
8372
8373         * DS800C400 fun, improved ROM interface and tinibios.
8374
8375 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
8376
8377         * More support for DS80C400. Now includes beginning of interface to ROM.
8378
8379 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
8380
8381         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
8382
8383 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8384
8385         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
8386
8387 2003-06-19  Borut Razem <borut.razem AT siol.net>
8388
8389         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
8390
8391 2003-06-19  Borut Razem <borut.razem AT siol.net>
8392
8393         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
8394         fixed Z80 port - crt0.o: cannot open.
8395
8396 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
8397
8398         * support/Util/MySystem.c (merge_command): revert bad fix
8399
8400 2003-06-18  Borut Razem <borut.razem AT siol.net>
8401
8402         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
8403
8404 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8405
8406         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8407         option --use-stdout sends errors to stdout instead of stderr.
8408
8409 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
8410
8411         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
8412
8413 2003-06-15  Borut Razem <borut.razem AT siol.net>
8414
8415         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
8416         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
8417         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
8418         fixed width array of pointers replaced with sets;
8419         multiple include and lib paths ared transferred to preprocessor and linker
8420         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
8421         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
8422         fixed width array of pointers
8423         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
8424         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
8425         fixupPath(), getPathDifference()
8426         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
8427         fixed width array of pointers
8428
8429 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
8430
8431         * src/pic16/ralloc.c: fix warnings
8432         * src/pic16/pcode.c: fix warning
8433
8434 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
8435
8436          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
8437         know all the details, but essentially this set of changes enable
8438         the pic16 port to generate movff instructions and generate assembler
8439         directives,
8440         * src/SDCCmain.c:
8441         * src/pic16/gen.c:
8442         * src/pic16/glue.c:
8443         * src/pic16/pcode.c:
8444         * src/pic16/device.c:
8445         * src/pic16/main.c:
8446         * src/pic16/pcode.h:
8447         * src/pic16/pcoderegs.c:
8448         * src/pic16/ralloc.c:
8449         * src/pic16/ralloc.h:
8450
8451 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8452
8453         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
8454         added option --vc, so sdcc errors and warnings are compatible with
8455         Microsoft Visual Studio.
8456
8457 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8458
8459         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
8460           device/lib/libfloat.lib: added atof function.
8461
8462 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
8463
8464         * doc/sdccman.lyx: updated to Lyx 1.3
8465         * doc/cdbfileformat.lyx: updated to Lyx 1.3
8466         * doc/test_suite_spec.lyx: updated to Lyx 1.3
8467         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
8468
8469 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
8470
8471         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
8472
8473 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8474
8475         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
8476           additions to the "related tools/documentation" section
8477
8478 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
8479
8480         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
8481
8482 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
8483
8484         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
8485         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
8486
8487 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
8488
8489         * doc/sdccman.lyx: fix double dash and other minor things
8490         * doc/Makefile: fix double dash
8491
8492 2003-05-28  Karl Bongers(patches from Martin Helmling)
8493         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
8494           condition and ignore commands.
8495
8496 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8497
8498         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
8499           is in parts still quite out of date, I did changes as far as I felt makes sense
8500           for a non-native english speaker.
8501           Please feel free to add to the manual or to correct my changes.
8502         * doc/Makefile: undid touching the date of intermediate tex files.
8503
8504 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8505
8506         * doc/sdccman.lyx: Manual has an index now
8507
8508 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
8509
8510         Finalize muluint/mulsint and mululong/mulslong merging:
8511         * device/lib/_mulint.c
8512         * device/lib/_mullong.c
8513         * device/lib/gbz80/mul.s
8514         * device/lib/gbz80/stubs.s
8515         * device/lib/z80/mul.s
8516         * device/lib/z80/stubs.s
8517         * src/SDCCsymt.c (initCSupport)
8518
8519 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8520
8521         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
8522         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
8523           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
8524           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
8525           instead of /Zm500.
8526
8527 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8528
8529         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
8530           the regression tests I'm not brave enough to enable 245.b, 245.c
8531         * doc/sdccman.lyx: added latex preamble for hyperref package.
8532           Using pdflatex this will give you a hyperlinked pdf file with
8533           bookmarks. (prepend '%' before /usepackage if this breaks something)
8534
8535 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8536
8537          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
8538
8539 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
8540
8541         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
8542
8543 2003-05-21    <johan AT balder>
8544
8545         * src/SDCCglue.c (printIval): fixed bug #739934
8546
8547 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8548
8549         Applied patch from bug 737905 (renamed yylineo to mylineno):
8550         * src/altlex.c
8551         * src/SDCCast.c
8552         * src/SDCglobl.h
8553         * src/SDCC.lex
8554         * src/SDCCsymt.c
8555         * src/SDCCval.c
8556         * src/pic16/pcode.c: Cleaned warnings
8557         * src/pic16/pcodeflow.c: Cleaned warnings
8558         * src/pic16/pcoderegs.c: Cleaned warnings
8559
8560 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
8561
8562         * src/pic16/pcode.c: Cleaned warnings
8563         * src/pic16/pcodepeep.c: Cleaned warnings
8564         * src/pic16/ralloc.c: Cleaned warnings
8565
8566 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
8567
8568         * doc/sdccman.lyx: fixed bug 739745
8569         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
8570
8571 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
8572
8573         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
8574         it can be defined with CFLAGS when running configure
8575         * src/SDCCmain.c: fixed compiling + linking with object files
8576
8577 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
8578
8579         * configure.in: configure for pic16 port,
8580             added --disable-pic16-port
8581         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
8582         * src/SDCCmain.c: linkOptions is changed to set *,
8583             added if/endif conditional macros to remove options help
8584             messages from optionsTable when a port is not configured, added
8585             support for the PIc16 port in the ports table, when executing
8586             the compiler with no port specified on command line, a default
8587             port is selected with the new macro DEFAULT_PORT which is
8588             defined in port.h, in setDefaultOptions() linkOptions is removed
8589             from initialization assignment, since now it is a set,
8590             parseCmdLine uses setParseWithComma for linkOptions, in
8591             linkEdit() linkOptions are accessed with new function indexSet()
8592             which returns the i'th item of a set variable. See SDCCset.c, in
8593             linkEdit() when calling buildCmdLine(), added linkOptions as
8594             last argument. Now users can pass arguments to gplink via the
8595             -Wl option, main() uses pic16glue() to glue up pic16 programs
8596         * src/SDCCpeeph.c: various changes to support pic16
8597         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
8598             return the i'th item of the set
8599         * src/SDCCset.h: added function prototype for indexSet()
8600         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
8601         * src/clean.mk: added pic16 in CLEANALLPORTS variable
8602         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
8603             added macro DEFAULT_PORT
8604         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
8605         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
8606             generated
8607         * src/pic16/glue.c: commented out some error producing lines
8608         * src/pic16/main.c: __config directives are commented out to stop
8609             gpasm complaining and test the linkage with gplink, _linkCmd and
8610             _asmCmd changed to be more gplink and gpasm friendly
8611         * src/pic16/peeph.def: peep rule 3 is commented out, since it
8612             produced an error when parsed, peep rule 12 is added to utilize
8613             movff, but it is commented out since the pCode does not support
8614             yet a command with 2 address arguments
8615
8616 2003-05-18    <johan AT balder>
8617
8618         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8619         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
8620 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
8621
8622         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
8623   Added feature to script commands from file.
8624
8625 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
8626
8627         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
8628         * src/SDCCutil.c: include ctype.h for win32
8629
8630 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
8631
8632         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
8633
8634 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
8635
8636         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
8637   Fixed so you can set breakpoints prior to run, run does not stop
8638   on entry now.  Add tbreak.  Other enhancements and fixes for use
8639   with ddd.
8640
8641 2003-05-12  Borut Razem <borut.razem AT siol.net>
8642
8643         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
8644
8645 2003-05-11  Borut Razem <borut.razem AT siol.net>
8646
8647         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
8648         the path of bin directory, so that PATH is the only env. variable, which has to be set
8649         in case of standard installation.
8650         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
8651         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
8652         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
8653
8654 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8655
8656         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
8657         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
8658         temp files are in the port dir; clean the gen/test directory when
8659         generating new test.c
8660         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
8661         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
8662         * support/regression/tests/zeropad.c: added
8663
8664 2003-05-09    <johan AT balder>
8665
8666         * src/SDCCglue.c: fixed bug #597940
8667
8668 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
8669
8670         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8671   cache sfr, optimize next,step, fix off by one sourceline,
8672   support ddd list function.
8673         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
8674
8675 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
8676
8677         * support/regression/HTMLgen.py: added compare_s2f()
8678         * support/regression/Makefile: redo 1.27
8679         * support/regression/generate-cases.py: redo 1.5
8680
8681 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
8682
8683         * support/regression/tests/float.c: workaround 33 bit hex constant
8684         * support/regression/tests/simplefloat.c: fix division for host
8685
8686 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
8687
8688         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
8689         that tame's the PIC's over-aggressive optimizer.
8690
8691 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8692
8693          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
8694          support for MSVC.
8695
8696 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
8697
8698         Initial support for DS80C400. "Hello world" runs on TINIm400
8699         (with polled I/O).
8700
8701 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
8702
8703          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
8704          * Some notes on ddd usage added in debugger/README
8705          Martin Helmling adding more features and fixes for ddd GUI debugger.
8706          Code added for nexti, stepi, up, down, and other adjustments.
8707
8708 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
8709
8710         * src/pic/pCodepeep.c non-wildcard asmops are now handled
8711         * src/pic/peeph.def Added two rules to optimize carry manipulation
8712         * src/pic/* removed debug printfs
8713
8714 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
8715
8716         * debugger/mcs51/cmd.c: added header newalloc.h
8717
8718 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
8719
8720         * as/Makefile: new EXEEXT
8721         * as/z80/Makefile: remove trailing slash of BUILDIR
8722         * as/z80/clean.mk: new EXEEXT
8723         * Makefile.common.in: add to CFLAGS (and others), don't replace it
8724         * support/cpp2/Makefile.in: new EXEEXT
8725         * src/pic/glue.c (pic14emitRegularMap): fixed warning
8726
8727 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
8728
8729         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
8730         EXEEXT was introduced to fix all related problems with targets
8731         "clean", "install" and "uninstall"; a couple of further flaws
8732         especially with "clean" have been fixed too
8733         * as/mcs51/Makefile.in
8734         * as/mcs51/clean.mk
8735         * as/z80/Makefile
8736         * Makefile
8737         * clean.mk
8738         * debugger/mcs51/Makefile.in
8739         * debugger/mcs51/clean.mk
8740         * link/z80/Makefile
8741         * link/z80/Makefile.in
8742         * link/z80/clean.mk
8743         * link/Makefile
8744         * packihx/Makefile.in
8745         * packihx/clean.mk
8746         * sim/ucsim/Makefile
8747         * sim/ucsim/clean.mk
8748         * sim/ucsim/avr.src/Makefile.in
8749         * sim/ucsim/avr.src/clean.mk
8750         * sim/ucsim/s51.src/Makefile.in
8751         * sim/ucsim/s51.src/clean.mk
8752         * sim/ucsim/xa.src/Makefile.in
8753         * sim/ucsim/xa.src/clean.mk
8754         * sim/ucsim/z80.src/Makefile.in
8755         * sim/ucsim/z80.src/clean.mk
8756         * sim/ucsim/main_in.mk
8757         * sim/ucsim/packages_in.mk
8758         * sim/ucsim/gui.src/Makefile.in
8759         * sim/ucsim/gui.src/serio.src/Makefile.in
8760         * sim/ucsim/gui.src/serio.src/clean.mk
8761         * src/Makefile.in
8762         * src/clean.mk
8763         * support/cpp2/Makefile.in
8764         * support/cpp2/clean.mk
8765         * support/makebin/Makefile
8766         * support/makebin/clean.mk
8767         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
8768         * doc/sdccman.lyx: --program-suffix no longer needed
8769
8770 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
8771
8772          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
8773          Martin Helmling added support for ddd GUI debugger.
8774          Code added to display assembly, set variables, and other commands
8775          to interface to ddd.
8776
8777 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
8778
8779         * as/Makefile: fix target clean
8780         * as/clean.mk: fix target clean
8781         * as/z80/clean.mk: fix target clean
8782
8783 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
8784
8785         * Makefile.common.in: added  AT EXEEXT AT
8786         * configure.in: removed all mingw32 stuff
8787         * configure: rebuilt from configure.in
8788         * doc/sdccman.lyx: updated section "installation"
8789         * support/scripts/sdcc_mingw32: adapted to configure
8790         * support/scripts/sdcc_cygwin_mingw32: added
8791
8792 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
8793
8794         * src/pic Added object file support for the PIC port
8795         * src/pic Applied patch from Craig Franklin (this started the object file support)
8796         * src/regression Updated the PIC regression tests for object files
8797
8798 2003-04-20  Borut Razem <borut.razem AT siol.net>
8799
8800         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
8801           lklex.c: In function `getfid':
8802           lklex.c:203: warning: array subscript has type `char'
8803         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
8804           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
8805         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
8806           stack handling macros
8807
8808 2003-04-19  Borut Razem <borut.razem AT siol.net>
8809
8810         * "handling space characters in file path" task:
8811         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
8812         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
8813         * support/Util/MySystem.h: make it self-sufficient
8814         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
8815           src/z80/main.c, sdcc/as/mcs51/lklex.c:
8816           handling space characters in file path
8817         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
8818           (it will be used by assemblers, which have their own includes, e.g. gpasm)
8819         * support/Util/MySystem.c: handling space characters in executable's path
8820
8821 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
8822
8823         * as/z80/Makefile: fix permanent rebuild of z80
8824         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
8825         * support/regression/tests/bitfields.c: added Johan's bitfields.c
8826
8827 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
8828
8829         * src/SDCCopt.c: add special case optimization to replace modulo by
8830           a power of two with a bitwise AND.
8831
8832 2003-04-18    <johan AT balder>
8833
8834         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
8835
8836 2003-04-17    <johan AT balder>
8837
8838         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8839         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8840
8841 2003-04-13  Borut Razem <borut.razem AT siol.net>
8842
8843         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8844         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8845           fixed mingw problem in adl_NORMALIZE_PATH
8846
8847 2003-04-12  Borut Razem <borut.razem AT siol.net>
8848
8849         * fixed "#pragma SAVE/RESTORE can not be nested":
8850         * src/SDCC.lex: reworked pragma handling functions
8851         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8852         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8853
8854 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8855
8856         * src/SDCCutil.c (pathEquivalent): defined but not used
8857         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8858         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8859         * configure: rebuilt from configure.in
8860         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8861         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8862         * device/include/Makefile.in: replace sdcc_datadir
8863         * device/lib/Makefile.in: replace sdcc_datadir
8864         * Makefile.common.in: add LDFLAGS from configure
8865         * packihx/Makefile.in: use LDFLAGS
8866         * src/Makefile.in: use LDFLAGS
8867         * support/cpp2/Makefile.in: add LDFLAGS from configure
8868         * support/makebin/Makefile: use LDFLAGS
8869         * .version: bumped version number to 2.3.5
8870
8871 2003-04-12  Borut Razem <borut.razem AT siol.net>
8872
8873         * completed "different paths" task:
8874         * src/SDCCmacro.c: fixed bug in handling quotes
8875         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8876         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8877
8878 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8879
8880         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8881
8882 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8883
8884         * ds390/gen.c ds390/peeph.def: fix bug 706781
8885
8886 2003-04-11  Borut Razem <borut.razem AT siol.net>
8887
8888         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8889
8890 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8891
8892         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8893         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8894          set - this bit used to not be set...).
8895         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8896           bad code in PIC Port
8897         * src/regression/and2.c added to test bug 609268
8898         * src/regression/Makefile added and2.c to regression test
8899
8900
8901 2003-04-08    <johan AT CP255758-A>
8902
8903         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8904         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8905         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8906
8907 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8908
8909         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8910         fix bug #487815
8911         * support/cpp2/Makefile.in: fix bug #487815
8912         * configure: rebuilt from configure.in
8913         * Makefile.common.in: docdir changed, new path suffixes
8914         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8915         * sdcc_vc_in.h: reflect changes from sdccconf.h
8916         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8917         * src/SDCCutil.h: remove BINDIR hack
8918         * doc/sdccman.lyx: update new path hierarchy
8919
8920 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8921
8922         * src/SDCCpeeph.c: added okToRemoveSLOC test
8923
8924 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8925
8926         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8927
8928 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8929
8930         * src/SDCCpeeph.c: added labelIsReturnOnly test
8931         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8932
8933 2003-04-05    <johan AT balder>
8934
8935         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8936         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8937         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8938         * src/SDCCast.c: fixed a warning
8939         * src/SDCCast.h: fixed a warning
8940         * src/SDCCicode.c (operandFromAst): fixed a warning
8941
8942 2003-04-04    <johan AT balder>
8943
8944         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8945         * src/SDCCast.c (decorateType): fixed bug #715076
8946         * src/SDCC.y: fixed bug #702907
8947
8948 2003-04-03    <johan AT balder>
8949
8950         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8951         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8952         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8953         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8954         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8955
8956 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8957
8958         * _decdptr.c: fix return values
8959         * _gptrget.c: fix return values
8960         * _gptrgetc.c: fix return values
8961         * _gptrput.c: fix return values
8962         * _mulint.c: fix return values
8963         * as/z80/Makefile: fix 'make -j' problem
8964
8965 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8966
8967         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8968         * configure.in: big cleanup, updated to autoconf 2.5x
8969         * configure: rebuilt from configure.in
8970         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8971         * sdcc_vc_in.h: reflect changes from sdccconf.h
8972         * doc/Makefile: fixed a flaw in "make install"
8973
8974 2003-04-02    <johan AT balder>
8975
8976         * src/ds390/gen.c (genCmp): no comments
8977         * src/mcs51/gen.c (genCmp): no comments
8978         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8979         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8980
8981 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8982
8983         * support/regression/generate-cases.py: place generated file in given sub directory
8984         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8985         * support/regression/Makefile: improvements for 'make -j';
8986         side effect: it's simpler and faster now
8987
8988 2003-03-31  Borut Razem <borut.razem AT siol.net>
8989
8990         * src/z80/main.c: link-{port} and as-{port} defined without path
8991         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8992
8993 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8994
8995         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8996
8997 2003-03-30  Borut Razem <borut.razem AT siol.net>
8998
8999         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9000           changed type of list parameter to set
9001         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9002         * src/port.h: changed type of do_assemble() parameter to set
9003         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9004           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9005           definition of "cppoutfilename" macro with NULL value in preProcess()
9006         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9007         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9008         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9009           replaced with set *binPathSet
9010         * shash_add() deallocates the item, if allready exsists, before adding the new one
9011         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9012
9013 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9014
9015         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9016           a nested for loop bug in the PIC port
9017         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9018           for loops
9019
9020 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9021
9022         * support/Util/dbuf.h: remove C++ stuff to make it portable
9023
9024 2003-03-28  Borut Razem <borut.razem AT siol.net>
9025
9026         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9027           literal strings in stringLiteral()
9028         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9029         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9030           to the project
9031
9032 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9033
9034         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9035
9036 2003-03-26    <johan AT balder>
9037
9038         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9039         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9040         * src/SDCCast.c (decorateType): fixed " -v < 3"
9041
9042 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9043
9044         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9045         Added Lenny Story's debug infrastructure changes:
9046         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9047         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9048         * src/cdbFile.c: added
9049         * src/SDCCdebug.c: added
9050         * src/SDCCdebug.h: added
9051         * src/SDCCast.c (createFunction)
9052         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9053         * src/SDCCmain.c (parseCmdLine, main)
9054         * src/SDCCmem.c (redoStackOffsets)
9055         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9056         * src/SDCCsymt.h
9057         * src/common.h
9058         * src/avr/gen.c (genAVRCode)
9059         * src/ds390/gen.c (gen390Code)
9060         * src/mcs51/gen.c (gen51Code)
9061         * src/pic/gen.c (genpic14Code)
9062         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9063         * src/xa51/gen.c (genXA51Code)
9064         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9065
9066 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9067
9068         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9069         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9070
9071 2003-03-22    <johan AT balder>
9072
9073         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9074
9075 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9076
9077         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9078         * doc/cdbfileformat.lyx: added, written by Lenny Story
9079         * doc/Makefile: added cdbfileformat.lyx
9080         * doc/clean.mk: added cdbfileformat.lyx
9081
9082 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9083
9084         * src/mcs51/peeph.def: fix bug #705773
9085
9086 2003-03-20    <johan AT balder>
9087
9088         An sfr/sbit can have an "at #" AND an initializer
9089         * src/SDCCsymt.c (checkSClass):
9090         * src/SDCCmem.c (allocGlobal):
9091         * src/SDCCmem.c (allocLocal):
9092         * src/SDCCast.c (createBlock):
9093
9094 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9095
9096         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9097
9098 2003-03-16    <johan AT balder>
9099
9100         Undid the hackup of const and volatile, the problem is much bigger
9101         * src/SDCC.y:1.65
9102         * src/SDCCast.c:1.171
9103         * src/SDCCglue.c:1.138
9104         * src/SDCCicode.c:1.146
9105         * src/SDCCsymt.c:1.150
9106         * src/SDCCval.c:1.65
9107
9108 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9109
9110         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9111         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9112
9113 2003-03-13    <johan AT balder>
9114
9115         Hackup const and volatile modifiers in type chains a bit:
9116         * src/SDCC.y:1.63
9117         * src/SDCCast.c:1.169
9118         * src/SDCCglue.c:1.136
9119         * src/SDCCicode.c:1.143
9120         * src/SDCCsymt.c1.146
9121         * src/SDCCsymt.h1.59
9122         * src/SDCCval.c:1.63
9123
9124 2003-03-12    <johan AT balder>
9125
9126         * src/SDCCBBlock.h: more LRH debugging junk
9127         * src/SDCCcflow.h: more LRH debugging junk
9128         * src/SDCCloop.c: more LRH debugging junk
9129         * src/SDCC.y (struct_declaration): fixed bug #697590
9130         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9131         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9132         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9133
9134 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9135         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9136         test function names must now match exactly).
9137         * src/SDCCcse.c: added special case in findCheaperOp to allow
9138         extending a short integer. Makes less awful code for bug 700121 test case.
9139
9140 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9141
9142         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9143         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9144
9145 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9146
9147         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9148         actually called (operandsNotEqual() was called for all
9149         operandsNotEqualX tests).
9150
9151 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9152
9153         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9154         with shorter literals. Fixes bug 700121.
9155
9156 2003-03-11    <johan AT balder>
9157
9158         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9159
9160 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9161
9162         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9163         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9164
9165 2003-03-10  Borut Razem <borut.razem AT siol.net>
9166
9167         * src/SDCCmain.c: pipe preprocessor's output
9168         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9169         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9170         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9171         which closes all pipes in pipeSet set
9172         * src/SDCCset.c: free deleted item in function deleteSetItem()
9173         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9174         moved from z80 to src subproject
9175         * .version: increased version number to 2.3.4
9176
9177 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9178
9179         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9180         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9181         * support/regression/ports/xa51/spec.mk: fix typo
9182
9183 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9184
9185         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9186
9187 2003-03-09  Borut Razem <borut.razem AT siol.net>
9188
9189         * src/SDCCmain.c: pipe preprocessor's output
9190         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9191         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9192         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9193         which closes all pipes in pipeSet set
9194         * src/SDCCset.c: free deleted item in function deleteSetItem()
9195         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9196         moved from z80 to src subproject
9197
9198 2003-03-09  Borut Razem <borut.razem AT siol.net>
9199
9200         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9201         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9202         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9203         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9204         * src/SDCCglobl.h: unification of WIN32 native definitions
9205
9206 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9207
9208         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9209
9210 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9211
9212         * src/configure.in:   check for endianess (even while cross-compiling)
9213         * src/configure:      check for endianess (even while cross-compiling)
9214         * src/configure_in.h: check for endianess (even while cross-compiling)
9215         * src/avr/gen.c:        remove old endianess stuff
9216         * src/mcs51/gen.c:      remove old endianess stuff
9217         * src/ds390/gen.c:      remove old endianess stuff
9218         * src/pic/gen.c:        remove old endianess stuff
9219         * src/pic/genarith.c:   remove old endianess stuff
9220         * src/pic/glue.c:       fix endianess check
9221         * src/pic16/gen.c:      remove old endianess stuff
9222         * src/pic16/genarith.c: remove old endianess stuff
9223         * src/pic16/glue.c:     fix endianess check
9224         * src/xa51/gen.c:       remove old endianess stuff
9225         * src/z80/gen.c:        fix endianess check
9226         * src/SDCCglue.c:       fix endianess check
9227         * src/ds390/peeph.def: fix bug 700036
9228
9229 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9230
9231         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9232         * src/configure: find appropriate data-types on host for SDCC's int and long
9233         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9234         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9235         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9236
9237 2003-03-07    <johan AT balder>
9238
9239         Just a big NOOP:
9240                 some minor cleanups before the big shot
9241                 OP_DEFS and OP_USES now use Kevin's protection
9242                 new option --nolabelopt
9243
9244         * src/SDCCBBlock.c:
9245         * src/SDCCast.c,:
9246         * src/SDCCcflow.c:
9247         * src/SDCCcse.c:
9248         * src/SDCCicode.c:
9249         * src/SDCCicode.h:
9250         * src/SDCClabel.c:
9251         * src/SDCCloop.c:
9252         * src/SDCCmain.c:
9253         * src/ds390/ralloc.c:
9254         * src/mcs51/ralloc.c:
9255         * src/pic/ralloc.c:
9256         * src/xa51/ralloc.c:
9257         * src/z80/ralloc.c:
9258
9259 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9260
9261         * src/pic/pcode.c (get_op): fix 64 bit warnings
9262         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9263         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9264         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9265         * support/regression/tests/malloc.c: fix 64 bit warnings
9266
9267 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9268
9269         * src/mcs51/gen.c (genMinus): fixed bug 696436
9270
9271 2003-03-02  Borut Razem <borut.razem AT siol.net>
9272
9273         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9274
9275 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9276
9277         * configure.in: test for mkstemp
9278         * sdccconf_in.h: add HAVE_MKSTEMP
9279
9280 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9281
9282         * device/include/ctype.h: removed warning while using --stack-auto
9283         * device/include/malloc.h: removed warning while using --stack-auto
9284         * device/include/string.h: removed warning while using --stack-auto
9285
9286 2003-02-23  Borut Razem <borut.razem AT siol.net>
9287
9288         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9289         because NDEBUG is defined (see man assert)
9290         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9291
9292 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9293
9294         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9295         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9296
9297 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9298
9299         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9300         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9301
9302 2003-02-18    <johan AT balder>
9303
9304         * as/mcs51/asmain.c (asmbl): module can start with a digit
9305         * as/z80/asmain.c (asmbl): module can start with a digit
9306
9307 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9308
9309         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9310         * src/asm.c: fix pipe() for Mingw32
9311
9312 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9313
9314         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9315         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9316         make -V work again; --c1mode reads now from stdin
9317         * doc/sdccman.lyx: added --c1mode
9318         * support/Util/SDCCerr.c: new messages for c1 mode
9319         * support/Util/SDCCerr.h: new messages for c1 mode
9320         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9321
9322 2003-02-15    <johan AT balder>
9323
9324         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
9325
9326 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
9327
9328         * doc/sdccman.lyx: Environment variables, -o and other minor things
9329
9330 2003-02-14    <johan AT balder>
9331
9332         * src/xa51/main.c: before anyone really tries to use it :)
9333
9334         * Install doc's in share/sdcc/doc
9335         * removed some obsolete files
9336         * Do a proper make distclean and uninstall
9337         M Makefile.common.in
9338         R sdccbuild.sh
9339         M as/Makefile
9340         M device/include/Makefile.in
9341         M device/lib/Makefile.in
9342         M doc/sdccman.lyx
9343         M link/Makefile
9344         M sim/ucsim/doc/Makefile.in
9345         M src/clean.mk
9346         R src/avr/peeph.rul
9347         R src/xa51/peeph.rul
9348         M support/cpp2/Makefile.in
9349         M support/makebin/Makefile
9350
9351
9352 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
9353
9354         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
9355
9356 2003-02-10  Borut Razem <borut.razem AT siol.net>
9357
9358         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
9359         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
9360         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
9361         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
9362         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
9363         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
9364         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
9365         src/z80/Makefile.bcc: Borland Makefile cleanup
9366         * as/z80/Makefile.bcc: Added Borland Makefile
9367         * support/cpp2/borland.h: Removed
9368
9369 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
9370
9371         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
9372         * src/SDCC.lex: new pragma NOIV
9373         * src/SDCCglobl.h: new pragma NOIV
9374         * src/SDCCmem.c: new pragma NOIV
9375
9376 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9377
9378         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
9379
9380 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
9381
9382         * src/SDCCmain.c: signal handling is switched off by --debug
9383         * doc/Makefile: small fix for install; use clean.mk again
9384         * doc/clean.mk: clean *.pdf and *.html too
9385
9386 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
9387
9388         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
9389         * device/lib/printfl.c: fix a ds390 bug by making it portable
9390         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
9391         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
9392         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
9393         * debugger/mcs51/cmd.c: converted multi-line string literals
9394         * sim/ucsim/globals.cc: converted multi-line string literals
9395         * src/SDCCmain.c: introduced signal handler to remove temp files
9396         * doc/Makefile: small tweaks, implement clean
9397         * doc: removed generated files
9398
9399 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9400
9401         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
9402         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
9403         Address Record is not correctly generated for DS390."
9404
9405 2003-02-02  Borut Razem <borut.razem AT siol.net>
9406
9407         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
9408         * as/mcs51/asm.h: fixed compilation with Borland C
9409         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
9410         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
9411         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
9412         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
9413         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
9414         src/z80/Makefile.bcc: delete $(LIB) only if exist
9415         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
9416
9417 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
9418
9419         * device/include/malloc.h: introduced NULL
9420         * device/include/string.h: introduced NULL
9421         * device/include/stdlib.h: introduced NULL
9422         * device/lib/_memcpy.c: removed NULL
9423         * device/lib/_strcat.c: removed NULL
9424         * device/lib/_strchr.c: removed NULL
9425         * device/lib/_strcmp.c: removed NULL
9426         * device/lib/_strcpy.c: removed NULL
9427         * device/lib/_strcspn.c: removed NULL
9428         * device/lib/_strlen.c: removed NULL
9429         * device/lib/_strncat.c: removed NULL
9430         * device/lib/_strncmp.c: removed NULL
9431         * device/lib/_strncpy.c: removed NULL
9432         * device/lib/_strpbrk.c: removed NULL
9433         * device/lib/_strrchr.c: removed NULL
9434         * device/lib/_strspn.c: removed NULL
9435         * device/lib/_strstr.c: removed NULL
9436         * device/lib/_strtok.c: removed NULL
9437         * device/lib/malloc.c: removed NULL, include own header
9438
9439 2003-02-02    <johan AT balder>
9440
9441         * 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
9442         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
9443         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
9444         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
9445         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
9446         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
9447
9448 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9449
9450         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
9451         area 'DATA'"
9452
9453 2003-02-01    <johan AT balder>
9454
9455         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
9456
9457 2003-01-31    <johan AT CP255758-A>
9458
9459         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
9460
9461 2003-01-30    <johan AT balder>
9462
9463         * src/SDCCBBlock.c: automatic bug detection
9464         * src/SDCCicode.c: automatic bug detection
9465
9466 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9467
9468         * src/SDCCglobl.h:   now --xram-size 0 works
9469         * src/SDCCmain.c:    now --xram-size 0 works
9470
9471 2003-01-29    <johan AT balder>
9472
9473         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
9474
9475 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9476
9477         * as/mcs51/aslink.h: Added options --xram-size and --code-size
9478         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
9479         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
9480         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
9481         * src/SDCCglobl.h:   Added options --xram-size and --code-size
9482         * src/SDCCmain.c:    Added options --xram-size and --code-size
9483
9484 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
9485
9486         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
9487         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
9488
9489 2003-01-27    <johan AT balder>
9490
9491         * src/SDCC.y: fixed bug #613764
9492
9493 2003-01-26    <johan AT balder>
9494
9495         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
9496         * src/SDCCsymt.h: fixed bug #673374
9497         * src/SDCCglue.c: fixed bug #661910
9498         * src/SDCCast.c: fixed bug #458099 and 673374
9499
9500 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
9501
9502         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
9503         * as/mcs51/strcmpi.h: added
9504         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
9505         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
9506         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
9507         * as/mcs51/assym.c: strcmpi -> as_strcmpi
9508         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
9509         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
9510         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
9511         * as/mcs51/Makefile.aslink: new module strcmpi
9512         * as/mcs51/Makefile.asx8051: new module strcmpi
9513         * as/mcs51/Makefil.bcc: new module strcmpi
9514         * as/mcs51/Makefile.in: new module strcmpi
9515         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
9516
9517 2003-01-26    <johan AT balder>
9518
9519         * src/SDCCglue.c: reverted back to 1.124
9520         * src/SDCCast.c: reverted back to 1.156
9521         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
9522
9523 2003-01-25    <johan AT balder>
9524
9525         * src/SDCCglue.c: A better fix for bug #661910
9526         * src/SDCCast.c: A better fix for bug #661910
9527         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
9528
9529 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9530
9531         * src/Makefile.in: remove spawn.o
9532         * src/SDCCmain.c: remove spawn.h
9533         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
9534         * src/spawn.c: removed
9535         * src/spawn.h: removed
9536         * support/regression/ports/ds390/spec.mk: link with -r
9537
9538 2003-01-24    <johan AT CP255758-A>
9539
9540         * src/ds390/gen.c (aopOp): fixed bug #667458
9541         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
9542         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
9543         (createIvalCharPtr): an ival doesn't always have a storage class anymore
9544
9545 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
9546
9547         * src/mcs51/peeph.def: better assembler identation by Frieder
9548         * src/mcs51/gen.c: better assembler identation by Frieder
9549
9550 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
9551
9552         * as/z80/string.h: removed for gcc 3.2
9553         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
9554         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
9555
9556 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9557
9558         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
9559         * src/SDCCpeeph.c (replaceRule): fix bug #663503
9560         * support/regression/Makefile: separate temp files for ports
9561         * support/regression/generate-cases.py: separate temp files for ports
9562         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9563         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
9564
9565 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
9566
9567         * moved tinitalk to device/examples/ds390
9568
9569 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
9570
9571         * as/mcs51/lkmem.c: rflag is for DS390
9572         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
9573         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
9574                          (linkEdit): move mem- and map-files the same way as ihx-files
9575         * src/z80/main.c (_setDefaultOptions): removed --generic
9576         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
9577         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
9578         * src/pic/glue.c (picglue): --c1mode works again
9579         * src/pic16/glue.c (pic16glue): --c1mode works again
9580         * src/asm.c (printCLine): fix #660034
9581
9582 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
9583
9584         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
9585         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
9586         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
9587         * as/mcs51/lkmem (summary): better fix for sp problem
9588         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
9589         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
9590         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
9591                                               remove --stack-after-data
9592
9593 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
9594
9595         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
9596         * src/SDCCutil.c (join): ugly bug: missing '\0'
9597         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
9598
9599 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9600
9601         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
9602         * src/port.h: typo
9603         * src/pic/main.c (_asmCmd): gpasm supports -o
9604         * src/z80/main.c: more general macros
9605         * device/lib/Makefile.in: remove intermediate files
9606
9607 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
9608
9609         * .version: Bumped version number to 2.3.3
9610         * src/SDCCBBlock.c: new option -o
9611         * src/SDCCglobl.h: new option -o
9612         * src/SDCCglue.c: new option -o
9613         * src/SDCCmain.c: new option -o
9614         * src/asm.c: new option -o
9615         * src/ds390/main.c: new option -o
9616         * src/pic/glue.c: new option -o
9617         * src/pic/pcode.c: new option -o
9618         * src/pic/ralloc.c: new option -o
9619         * src/pic16/glue.c: new option -o
9620         * src/pic16/pcode.c: new option -o
9621         * src/pic16/ralloc.c: new option -o
9622         * src/z80/main.c: new option -o
9623         * device/lib/Makefile.in: use -o
9624         * support/regression/ports/ds390/spec.mk: use -o
9625         * support/regression/ports/gbz80/spec.mk: use -o
9626         * support/regression/ports/mcs51/spec.mk: use -o
9627         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
9628         * support/regression/ports/z80/spec.mk: use -o
9629         * support/regression/ports/ucz80/spec.mk: use -o
9630         * support/regression/ports/xa51/spec.mk: use -o
9631         * support/regression/fwk/lib/timeout.c: fix usage string
9632
9633 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
9634         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
9635
9636 2003-01-07    <johan AT balder>
9637
9638         * src/SDCCast.c (decorateType): fixed bug #600035
9639
9640 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
9641         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
9642         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
9643         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
9644         * src/pic/pcode.c: outcommented unused variable to remove warnings
9645         * src/pic/ralloc.c: outcommented unused variable to remove warnings
9646
9647 2003-01-06    <karl AT turbobit.com>
9648         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
9649    regression tests.
9650
9651 2003-01-06    <johan AT balder>
9652
9653         * src/SDCCicode.c: fixed array add
9654
9655 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
9656         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
9657         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
9658
9659 2003-01-04    <johan AT balder>
9660
9661         * src/SDCCval.c (getNelements): fixed the initialized array of structures
9662
9663 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9664         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
9665
9666 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9667         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
9668         * support/regression/tests/bug-524697.c: fit mem usage into 8032
9669
9670 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
9671         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
9672
9673 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
9674         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
9675
9676 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
9677         * src/mcs51/main.c: removed {bindir}{sep} from aslink
9678
9679 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9680
9681     * in \sdcc\as\mcs51\ changed these files in order to create an
9682     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
9683     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
9684     following files to include the previous two files: aslink.dsp,
9685     Makefile.aslink, Makefile.bcc, and Makefile.in.
9686
9687     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
9688     .adb instead of .cdb
9689
9690 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9691
9692         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
9693         value from option --iram-size.
9694
9695 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9696
9697         * \sdcc\as\mcs51\lklist.c: added boundary check before using
9698         dram[] array.
9699
9700 2002-09-18    <wiml AT hhhh.org>
9701
9702         * SDCClrange.h: exposed setFromRange() and setToRange()
9703         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
9704           packRegsForAccUse() (bug 542397)
9705         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
9706           multiple times and emitting the fetch operations more than once
9707           added aopGetUsesAcc() function to allow binary operators to
9708           fetch their operands in the correct order; made genMinus() emit
9709           compact code for X = LITERAL - Y
9710
9711 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9712         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
9713         sprintf() in line 1267.
9714
9715 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9716         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
9717         like ports.
9718
9719 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9720         Changes to aslink (All the changes are marked with 'JCF'):
9721
9722         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
9723         summary().
9724
9725         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
9726         area BSEG.  Also moves, if possible, the DATA area down into the internal
9727         ram so more space is available.
9728
9729         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
9730         sflag.
9731
9732         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
9733         not bytes.  Function summary() which creates a memory usage summary
9734         file with extension .mem.  Reports of overlaping stack and small stack
9735         size.  If the space for the stack is less than 16 bytes aslink trows a
9736         warning.
9737
9738         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
9739         the 8051.  Option 'y' for memory summary output file.
9740
9741         Changes to sdcc (All the changes are marked with 'JCF'):
9742
9743         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
9744
9745         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
9746         overlaying area for it (uses RegBankUsed[4]).
9747
9748         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
9749         bank zero as used by default.  By default aslink locates the stack
9750         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
9751         the creation of the .mem file.  Delegates the allocation of data area
9752         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
9753         the begining of the stack area to aslink.
9754
9755         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
9756         glue() in SDCCglue.c creates an area for it.
9757
9758 2002-09-03  Borut Razem <borut.razem AT siol.net>
9759         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
9760         sdcc/src/pic/glue.c:
9761         introduced atexit() handler for teporay files removal in case of
9762         errors, assertions, ...
9763
9764 2002-08-29  Borut Razem <borut.razem AT siol.net>
9765         * sdcc/support/cpp2/auto-host_vc_in.h:
9766         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
9767         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
9768         Maybe there is a similar problem with BORLANDC? It should be checked!
9769
9770         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
9771         corrected improper use of assert: the assignment to clr variable was done inside the assert.
9772         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
9773         was not executed, and the compiler (cl) launched a warning:
9774         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
9775
9776 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9777         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
9778
9779 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
9780         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
9781
9782         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9783           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
9784           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
9785           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9786           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
9787           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
9788           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
9789         - added Release configuration in VS projects
9790         - review of compiler an linker options
9791         - VC .exe files are generated in bin_vc directory, not to interfere
9792           with binaries generated from other projects (cygwin, mingw, bcc ...)
9793
9794         * sdcc/src/yacc.dsp: added
9795
9796         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
9797         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
9798         and insert the version number definitions from .version
9799
9800         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
9801
9802         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
9803         added - genarate auto-host.h using auto-host_vc_in.h as template
9804
9805         * sdcc/sdcc_vc.h,
9806         removed from CVS, generated automatically
9807
9808 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
9809         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
9810
9811 2002-08-11  Borut Razem <borut.razem AT siol.net>
9812         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
9813
9814 2002-08-10  Borut Razem <borut.razem AT siol.net>
9815         * src/SDCCmain.c (main):
9816         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
9817         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
9818         The consequence was that some temporary files were not removed.
9819
9820         * src/SDCCglue.c:
9821         unification of code in functions tempfilename() and tempfile():
9822         function tempnam() is defined in Visual Studio 6.0 and .NET
9823
9824         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
9825
9826         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
9827           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
9828         - removed compiler command line option /WX: Treats all warnings as errors
9829         - update a list of source files, included into the project
9830
9831         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
9832           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
9833         changed project type to Generic Project so that can be correcly converted to VS.NET project
9834
9835         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
9836
9837         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
9838
9839         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9840
9841         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9842         added return 0 statements after assert() to make compiler happy
9843
9844         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9845         added newline in the def file to keep MSC compiler satisfied
9846
9847         * sdcc/src/z80/gen.c:
9848         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9849           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9850         - solved MSC error in function aopDump()
9851
9852         * sdcc_vc.h: define PREFIX as "\\sdcc"
9853
9854 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9855         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9856
9857 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9858         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9859         - Rewrote the register banking algorithm.
9860         - Added pCode live-range analysis to registers (for now, only non-used and
9861         singly-used registers optimized away)
9862
9863         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9864
9865         * 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.
9866
9867 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9868         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9869
9870 2002-04-22  Michael Hope  <michaelh AT vroom>
9871
9872         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9873
9874         * configure.in (DD_COPT): Added include support required for gbdk.
9875
9876         * .version: Bumped version number just to increase it.
9877
9878         * src/SDCCmain.c: Added -nostdinc to the default options.
9879
9880 2002-04-15  Michael Hope  <michaelh AT vroom>
9881
9882         * device/lib/z80/printf.c (sprintf): Added.
9883
9884         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9885
9886         * src/z80/peeph.def: Added transpose redundent load rule.
9887
9888         * src/z80/main.c: Added force callee saves for jaune.
9889
9890         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9891
9892         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9893
9894 2002-03-28  Johan Knol  <johan AT balder>
9895
9896         * src/SDCCval.c: fixed bug #532436
9897
9898 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9899         * /src/port.h:
9900         Added "char *Processor" field to the port structure.
9901
9902         * /src/SDCCmain.c:
9903         Added -p option. Allows port dependent processor to be specified.
9904
9905         * all ports:
9906         Initialized the new field char *Processor field to NULL in all ports
9907
9908         * /src/pic/*:
9909         Compiler generated registers for interrupt context saving
9910         were not getting allocated.
9911
9912 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9913
9914         * /src/SDCCast.c:
9915         Fixed left shift. Will promote the left side of a left shift
9916         if a) left shifting more than size of operand or b) when assigned
9917         to something size > size of left side
9918
9919 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9920         * src/pic/*
9921         tons of changes. Register allocation has been
9922         rewritten. Added customization for the various PICs. Flow
9923         analysis is restructured. ...
9924
9925         * src/pic/device.h:
9926         Added
9927
9928         * src/pic/device.c:
9929         Added. device.c is a PIC port hack to accomodate variations
9930         in PIC devices.
9931
9932 2002-03-13  Michael Hope  <michaelh AT vroom>
9933
9934         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9935
9936 2002-03-04  johanknol  <johanknol AT manik>
9937
9938         * /src/SDCCval.c: fixed
9939
9940         const unsigned char arr[][2] = { { 0, 1 } };
9941         t18.c:1: error: Initializer element is not constant
9942
9943 2002-03-04  bela  <bela AT manik>
9944
9945         * /device/include/mcs51reg.h:
9946         ds89c420 register definition update
9947
9948 2002-03-03    <johan AT FRIJA>
9949
9950         * support/Util/SDCCerr.c: did something, but don't no why anymore
9951
9952         * support/regression/tests/bug-524691.c: made it a little less shy
9953
9954         * src/SDCCast.c (decorateType): fixed bug #524697
9955
9956         * src/SDCCast.c: made some lineno improvements
9957
9958         * src/SDCCval.c (getNelements): changed warning to error
9959
9960         * src/SDCCglue.c (printIvalArray): changed warning to error
9961
9962         * src/SDCCicode.c: fixed a warning for mingw
9963
9964         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9965
9966         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9967
9968 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9969
9970         * src/ds390/peeph.def:
9971         Added some more peephole rules
9972
9973         * src/ds390/gen.c: Various fixes & enhancements
9974
9975         * src/SDCClrange.c, src/SDCClrange.h:
9976         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9977
9978         * src/ds390/ralloc.c:
9979         various fixes & enhancements (ds390) specific
9980
9981         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9982         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9983         from rallocs.
9984
9985         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9986
9987 2002-03-02    <johan AT FRIJA>
9988
9989         * src/SDCCast.c (decorateType): fixed bug #524708
9990
9991         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9992
9993         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9994
9995 2002-03-01  Michael Hope  <michaelh AT vroom>
9996
9997         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9998
9999         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10000
10001 2002-03-01    <johan AT FRIJA>
10002
10003         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10004
10005         * src/SDCCast.c (decorateType): fixed bug #524209
10006
10007         * src/SDCCval.c (valNot): fixed bug #524195
10008
10009 2002-02-26    <johan AT balder>
10010
10011         * src/xa51/gen.c: fixed a warning
10012
10013         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10014
10015         * src/SDCCast.c (decorateType): fixed bug #522534
10016
10017 2002-02-23    <johan AT balder>
10018
10019         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10020
10021 2002-02-22    <johan AT balder>
10022
10023         * src/SDCCast.c: fixed bug #514865
10024
10025         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10026
10027 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10028
10029         * sdcc/src/SDCCloop.c:
10030         Previous fix was not good. basic blocks that have "break" or "return" are
10031         not really partof a loop , but live ranges used in these blocks should
10032         be live thru the entire loop, so set partOfLoop but don't add them to
10033         loop region
10034
10035 2002-02-21    <johan AT FRIJA>
10036
10037         * src/SDCCcse.c: fixed bug #514308
10038
10039 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10040
10041         * src/SDCCloop.c:
10042         Fixed BUG #519583. If a conditional block ended in a return/break
10043         statement inside a loop, it was not being considered part of the loop.
10044
10045         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10046
10047 2002-02-10  Karl Bongers <karl AT turbobit.com>
10048
10049         * debugger/*:
10050         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10051         with lots of comments and notes.
10052
10053         * device/examples/test2.c:
10054         Fix bug, "red" variable not being initialized(compiler complained).
10055
10056         * device/examples/Makefile, examples/test3.c:
10057         Add Makefile in device/examples folder, compiles test3.c
10058         for use as a multiple module SDCDB test case.
10059
10060         * sim/ucsim/cmd.src/cmdset.cc:
10061         Took out debug printfs in ucsim "next" command.
10062
10063         * sim/ucsim/xa.src:
10064         Karl and Johan start ucsim XA support.  Most dissassembly working,
10065         about 75% emulation done(plenty of work remaining).
10066
10067         * sim/ucsim/z80.src:
10068         Add Z80 support to ucsim, add test-ucz80 regression test,
10069         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10070         Notice z80 compiler fails on examples/test3.c/crc code.
10071
10072 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10073
10074         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10075         Added support for --parms-in-bank1
10076
10077         * src/ds390/peeph.def:
10078         added a few more peephole optimzations
10079
10080         * src/ds390/main.c:
10081         1) added __builtin_inp & __builtin_outp used to read in data of given length
10082            from a memory mapped port
10083         2) added __builtin_memcmp
10084         3) added __builtin_swapw swap bytes of a short
10085
10086         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10087         1) handle multiple send & receives from register bank1
10088         2) ralloc can now allocate DPTR1 to some liveRanges
10089
10090         * src/SDCCsymt.c, src/SDCCsymt.h:
10091         changes to handle multiple sends & receives
10092
10093         * src/SDCCptropt.h:
10094         added some pointer arithmetic optimization
10095
10096         * src/SDCCptropt.c:
10097         added some pointer arithmetic optimizations but not stable yet so not
10098         called from anywhere (will get this working shortly)
10099
10100         * src/SDCCopt.c: fixed for multiple sends & receives
10101
10102         * src/SDCCmain.c:
10103         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10104         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10105            set preprocessor defines (depending on options)
10106
10107         * src/SDCCicode.c, src/SDCCicode.h:
10108         changes made to handle multiple sends & receives
10109
10110         * src/SDCCglobl.h:
10111         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10112
10113         * src/SDCCcse.c, src/SDCCcse.h:
10114         added function findbackward def (to be used in upcoming optimization)
10115
10116         * src/SDCCcflow.c, src/SDCCcflow.h:
10117         added function returnAtEnd - to determine if a basic block terminates with
10118         a RETURN iCode
10119
10120         * src/SDCCast.c, src/SDCCast.h:
10121         added option parms-in-bank1
10122
10123         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10124         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10125         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10126         adjusted for --parms-in-bank1 option
10127
10128         * device/include/string.h:
10129         donot redefine "reentrant" keyword
10130
10131         * device/include/ds80c390.h: Added some more SFRs
10132
10133 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10134
10135         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10136
10137 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10138
10139         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10140
10141 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10142
10143         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10144
10145 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10146
10147         * Added --xram-movc option
10148
10149 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10150
10151         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10152
10153 2002-01-11  Johan Knol
10154
10155         * Added math lib of Jesus Calvino-Fraga
10156
10157 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10158
10159         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10160         * support/regression/Makefile: new target test-mcs51-stack-auto
10161         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10162
10163 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10164
10165         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10166
10167 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10168
10169         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10170
10171 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10172
10173         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10174
10175         * src/SDCCglue.h: add definition for printIvalChar()
10176
10177 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10178
10179         * src/SDCCast.c: fix #498138 by Johan
10180
10181         * src/SDCCglue.c: fix #498138 by Johan
10182
10183 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10184
10185         * support/regression/Makefile: fix clean
10186
10187         * support/regression/ports/ds390/support.c: fix transmission of last character
10188
10189 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10190
10191         * /sdcc/src/ds390/gen.c:
10192         a) improved computing address of stack variable
10193         b) took out some #if 0 code
10194         c) improved parmBytes adjustment
10195         d) improved genPlusIncr & genMinusIncr
10196         e) genCmp could generate bad code (when left assigned to DPTR)
10197         f) Fixed bug in hasInc
10198
10199         * /sdcc/src/ds390/ralloc.c:
10200         a) packRegsForSupport could mess up live information (Fixed)
10201         b) packRegsDPTRuse could be incorrect for left & right shift
10202
10203         * /sdcc/src/mcs51/ralloc.c:
10204         packRegsForSupport could mess up the live information (Fixed)
10205
10206         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10207
10208         * /sdcc/src/SDCCast.c:
10209         can reverse a loop even if function call is present as long
10210         as the loop control variable is local & is not passed as parameter
10211
10212 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10213
10214         * /sdcc/ChangeLog: *** empty log message ***
10215
10216         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10217         More builtin function additions for TININative
10218
10219         * /sdcc/src/ds390/ralloc.c:
10220         Had broken the regression testsuite
10221
10222         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10223
10224         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10225         Added funcattr hasStackParms will be set for reentrant functions when there
10226         are paramteres on the stack, this helps in minimizing frame pointer generation
10227         typeFromStr can handle function pointers now
10228
10229         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10230         *** empty log message ***
10231
10232 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10233
10234         * /src/ds390/gen.c, /src/ds390/main.c:
10235         More builtin function additions for TININative
10236
10237         * /src/ds390/ralloc.c:
10238         Had broken the regression testsuite
10239
10240         * /src/SDCCast.c: Fixed a bug in dumptree
10241
10242         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10243         Added funcattr hasStackParms will be set for reentrant functions when there
10244         are paramteres on the stack, this helps in minimizing frame pointer generation
10245         typeFromStr can handle function pointers now
10246
10247         * /doc/builtins.txt, /doc/TININative.txt:
10248         *** empty log message ***
10249
10250
10251 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10252
10253         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10254         ALPHA version for -mTININative
10255
10256         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10257         updated to reflect changes in the port structure
10258
10259         * /src/port.h:
10260         added function do_assemble (similar to do_link) if non-null this function
10261         will be called to do assembly (-mTININative) requires a multi command
10262         assembly
10263         added function genAssemblerEnd will be called to generate assembler Epilogue
10264
10265         * /src/SDCCsymt.c:
10266         added _JavaNative to debug info printing
10267
10268         * /src/SDCCmain.c: added option --tini-libid
10269         added port->do_assemble function (-mTININative) has a multi command assemble
10270
10271         * /src/SDCCglue.c: Disabled "constExpr" check
10272         added port->genAssemblerEnd function
10273
10274         * /src/SDCCglobl.h: Added option --tini-libid value
10275
10276         * /src/SDCCast.h:
10277         tookout optimizeCompare from the header (has no external references)
10278
10279         * /src/SDCCast.c: made one more function "static"
10280
10281 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10282
10283         * src/z80/mappings.i: Added z80asm support.
10284
10285         * src/z80/main.c: Added z80asm support on --asm=z80asm
10286
10287         * src/z80/gen.c: Fixed asm portability issues.
10288
10289         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10290
10291         * src/SDCCglue.c (printExterns): Added global/extern split.
10292
10293 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10294
10295         * support/regression/Makefile: added test for mcs51 model large
10296
10297         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10298
10299         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10300
10301 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10302
10303         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10304
10305 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10306
10307         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10308
10309         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10310
10311 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10312
10313         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10314
10315         * support/regression/tests/simplefloat.c: Port to mcs51.
10316
10317 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10318         * support/regression/tests/bug-485362.c: Added.
10319
10320         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10321
10322         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
10323
10324         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
10325
10326         * src/z80/gen.c (aopDump): Added a dump function.
10327
10328 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
10329         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
10330
10331         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
10332
10333         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
10334
10335         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
10336
10337         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
10338
10339         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
10340
10341         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
10342
10343         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
10344
10345         * support/regression/ports/ds390/support.c: Use tinibios.
10346
10347         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
10348
10349 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
10350
10351         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
10352         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
10353
10354         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
10355
10356         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
10357
10358 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
10359
10360         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
10361
10362         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
10363         (packRegsForIYUse): Created and optimised.
10364
10365 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10366
10367         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
10368 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
10369
10370         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
10371
10372         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
10373
10374         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
10375
10376 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10377
10378         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
10379
10380         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
10381
10382 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10383
10384         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
10385
10386         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
10387
10388         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
10389
10390 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
10391
10392         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
10393         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
10394         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
10395
10396         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
10397
10398         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
10399         (genNotFloat): Added.
10400         (genUminusFloat): Added.
10401
10402         * device/lib/z80/Makefile: Added floating pt stubs.
10403
10404         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
10405
10406         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
10407
10408         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
10409
10410 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
10411
10412         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
10413
10414         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
10415
10416         * sdcc/support/regression/Makefile: Add port ds390.
10417
10418         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
10419
10420         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
10421
10422         * sdcc/support/regression/ports/ds390/spec.mk: Added.
10423
10424         * sdcc/support/regression/ports/ds390/support.c: Added.
10425
10426         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
10427
10428         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
10429
10430         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
10431
10432 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10433
10434         * device/include/malloc.h: Added z80 and gbz80 support.
10435
10436         * device/lib/gbz80/heap.s: Added.
10437
10438         * device/lib/z80/heap.s: Added.
10439
10440         * device/lib/malloc.c: Added z80 and gbz80 support.
10441
10442         * support/regression/tests/malloc.c (testMalloc): Added.
10443
10444         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
10445
10446         * support/regression/tests/bug-478094.c: Added.
10447
10448         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
10449
10450 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
10451
10452         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
10453
10454         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
10455
10456         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
10457
10458         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
10459
10460         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
10461
10462 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
10463
10464         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
10465
10466 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
10467
10468         * support/regression/tests/bug-477927.c: Added.
10469
10470         * src/z80/peeph.def: Added minor rules.
10471
10472         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
10473
10474         * src/z80/peeph.def: Added jump optimisation modification.
10475
10476 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
10477
10478         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
10479
10480 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
10481
10482         * support/regression/tests/funptrs.c: Added.
10483
10484 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
10485
10486         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
10487
10488 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
10489
10490         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
10491
10492         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
10493
10494         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
10495         (movLeft2ResultLong): Created.
10496
10497         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
10498         (joinPushes): Added.  Joins two char pushes into a word push.
10499
10500 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
10501
10502         * support/cpp2/Makefile.in (install): Added creation of dest dir.
10503
10504         * support/makebin/Makefile (install): Added creation of dest dir.
10505
10506 2001-10-24 Karl Bongers <karl AT turbobit.com>
10507
10508         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
10509
10510 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
10511
10512         * src/z80/ralloc.c: Turned off faulty pack for one use.
10513
10514         * src/z80/peeph-gbz80.def: Removed redundent restart options.
10515
10516         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
10517
10518 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
10519
10520         * support/regression/Makefile: Improved clean
10521
10522         * support/regression/ports/gbz80/spec.mk: Added clean
10523
10524         * support/regression/ports/host/spec.mk: Added clean
10525
10526         * support/regression/ports/z80/spec.mk: Added clean
10527
10528         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
10529
10530         * support/regression/ports/mcs51/timeout.c: little improvements
10531
10532 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
10533
10534         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
10535
10536         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
10537
10538         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
10539
10540 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
10541
10542         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
10543
10544         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
10545
10546 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
10547         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
10548
10549         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
10550
10551         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
10552
10553         * src/mcs51/main.c (_linkCmd): Added bin path to command.
10554
10555         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
10556
10557         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
10558
10559         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
10560
10561         * support/regression/tests/longor.c: Added.
10562
10563 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
10564
10565         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
10566
10567         * as/mcs51/aslink.h: define PATH_MAX
10568
10569         * as/mcs51/asm.h: define PATH_MAX
10570
10571         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
10572
10573         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
10574
10575         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
10576
10577         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
10578
10579         * src/SDCCglobl.h: define PATH_MAX
10580
10581         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
10582
10583         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
10584
10585 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
10586
10587         * src/z80/gen.c (gencjneshort): Fixed
10588
10589         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
10590
10591 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
10592
10593         * support/regression/tests/bug-469671.c: Added.
10594
10595         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
10596
10597 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
10598
10599         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
10600
10601         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
10602
10603 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
10604
10605         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
10606
10607         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
10608
10609         * src/device/lib/_mullong.c : removed hint: nooverlay bug
10610
10611         * src/device/lib/_divuint.c : removed hint: nooverlay bug
10612
10613         * src/device/lib/_divulong.c: removed hint: nooverlay bug
10614
10615         * src/device/lib/_moduint.c : removed hint: nooverlay bug
10616
10617         * src/device/lib/_modulong.c: removed hint: nooverlay bug
10618
10619 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
10620
10621         * 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.
10622
10623         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
10624
10625         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
10626
10627 2001-10-07    <johan AT FRIJA>
10628
10629         * device/lib/gets.c (gets): fixed the return value.
10630
10631 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
10632         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
10633
10634         * 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.
10635
10636         * 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.
10637
10638         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
10639
10640         * src/pic/gen.c: Removed Safe_strdup.
10641
10642         * configure.in: Added option to enable libgc support.
10643
10644         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
10645         (bitVectUnion): Optimised.
10646         (bitVectIntersect): Optimised.
10647         (bitVectBitsInCommon): Optimised.
10648         (bitVectCplAnd): Optimised.
10649
10650         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
10651
10652 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10653
10654         * src/SDCCmain.c: distinguish between assembler debug and plain options
10655
10656         * src/avr/main.c:   remove standard assembler options
10657
10658         * src/ds390/main.c: remove standard assembler options
10659
10660         * src/mcs51/main.c: remove standard assembler options
10661
10662         * src/port.h: removed "PENDING" comment
10663
10664 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10665
10666         * src/device/lib/_mulint.c  : new, with assember functions
10667
10668         * src/device/lib/_mullong.c : new, with assember functions
10669
10670         * src/device/lib/_divuint.c : with assember functions
10671
10672         * src/device/lib/_divsint.c : with assember functions
10673
10674         * src/device/lib/_divulong.c: with assember functions
10675
10676         * src/device/lib/_divslong.c: with assember functions
10677
10678         * src/device/lib/_moduint.c : with assember functions
10679
10680         * src/device/lib/_modsint.c : with assember functions
10681
10682         * src/device/lib/_modulong.c: with assember functions
10683
10684         * src/device/lib/_modslong.c: with assember functions
10685
10686         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
10687
10688         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
10689
10690         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
10691                                       replaced _mululong.c and _mulslong.c by _mullong.c
10692
10693 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
10694
10695         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
10696
10697 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10698
10699         * src/SDCCglue.c: test, if win32api is available for MINGW
10700
10701 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
10702
10703         * src/SDCCsymt.c: no more _modifier in printTypeChain()
10704         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
10705         * support/regression/ports/gbz80/spec.mk: removed GENERIC
10706         * support/regression/ports/host/spec.mk: removed GENERIC
10707         * support/regression/ports/mcs51/spec.mk: removed GENERIC
10708         * support/regression/ports/z80/spec.mk: removed GENERIC
10709
10710 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
10711
10712         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
10713
10714         * support/regression/tests/bug-467035.c: Created.
10715
10716 2001-10-01    <johan AT FRIJA>
10717
10718         * src/SDCC.y: fixed bug #466586 part 1
10719
10720 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
10721
10722         * SDCCicode.c: z80 has no generic pointers
10723         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
10724
10725 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
10726
10727         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
10728
10729 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
10730
10731         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
10732
10733         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
10734
10735 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
10736
10737         * configure.in: Fixed up so that ucsim is only configured once.
10738
10739         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
10740
10741         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
10742         (getPathDifference): As above.
10743
10744         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
10745
10746         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
10747
10748 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
10749         * .version: Updated to 2.3.1
10750
10751         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
10752         Added copyright header.
10753
10754         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
10755         (assemble): Added support for macro based assembler commands.
10756         (linkEdit): Added support for macro based linker commands.
10757         (preProcess): Changed the pre-processor to use macros.
10758         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
10759         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
10760
10761         * device/lib/z80/crt0.s: Added module name for debugging.
10762
10763 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
10764
10765         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10766
10767         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
10768
10769         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
10770
10771         * src/Makefile.in: Added SDCCmacro and SDCCutil
10772
10773 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
10774
10775         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
10776
10777 2001-09-16    <johan AT FRIJA>
10778
10779         * 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.
10780
10781 2001-09-15    <johan AT FRIJA>
10782
10783         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
10784         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
10785
10786 2001-09-11    <johan AT FRIJA>
10787
10788         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
10789
10790 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
10791
10792         * support/regression/tests/bug-460444.c: Added test case.
10793
10794         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
10795         (genCast): Added justification for all of the asserts.
10796
10797 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
10798
10799         * support/regression/support.c: _xdata replaced by xdata
10800
10801         * support/regression/spec.mk: removed _generic
10802
10803 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
10804
10805         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
10806
10807         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
10808         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
10809
10810         * src/z80/peeph.def: Added a rule to optimise shift then compare.
10811
10812         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
10813
10814         * support/regression/tests/bug-460010.c: Added test case.
10815
10816         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
10817
10818 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
10819
10820         * support/regression/Makefile: inter-port-clean adjusted for mcs51
10821
10822         * support/regression/testfwk.c: removed workaround for bug #436344
10823
10824         * support/regression/tests/bp.c: use less memory with mcs51
10825
10826         * support/regression/tests/bug-441448.c: use less memory
10827
10828         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
10829
10830         * support/regression/collate-results.py: typo
10831
10832 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
10833
10834         * support/regression/tests/fetchoverlap.c: Added new test case.
10835
10836         * support/regression/tests/bp.c: Added new test case.
10837
10838         * support/regression/tests/bug-448984.c: Added new test case.
10839
10840         * support/regression/tests/pow2shifts.c: Added new test case.
10841
10842         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10843         (genlshTwo): Fixed right shift for count > 8.
10844
10845         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10846
10847 2001-09-08    <johan AT FRIJA>
10848
10849         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10850
10851 2001-09-07    <johan AT FRIJA>
10852
10853         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10854
10855         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10856
10857 2001-09-06    <johan AT FRIJA>
10858
10859         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10860         * bernhard noted me at this: "() equals to (void)" (1.38)
10861
10862 2001-09-05    <johan AT FRIJA>
10863
10864         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10865
10866 2001-09-04    <johan AT FRIJA>
10867
10868         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10869
10870
10871 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10872
10873         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10874
10875 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10876
10877         * link/z80/aslink.h: Fixed path for PATH_MAX
10878
10879 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10880
10881         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10882
10883         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10884
10885         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10886
10887         * 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.
10888
10889 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10890
10891         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10892         (genCmp): Fixed up genCmp for the GB with longs.
10893
10894         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10895
10896         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10897
10898         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10899
10900         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10901
10902 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10903
10904         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10905
10906 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10907
10908         * 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.
10909
10910         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10911
10912 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10913
10914         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10915
10916         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10917
10918 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10919
10920   * sim/ucsim/configure:    little improvement of Cygwin-detection
10921   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10922   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10923   * support/regression/tests/bug-221100.c: small changes for mcs51
10924   * support/regression/tests/bug-221168.c: small changes for mcs51
10925   * support/regression/tests/bug-227710.c: small changes for mcs51
10926   * support/regression/tests/staticinit.c: small changes for mcs51
10927   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10928   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10929   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10930
10931 $Revision$