168b52d70fb1e7a048ce0fd76b973e6fa19d662d
[fw/sdcc] / ChangeLog
1 2006-06-29 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * src/SDCCicode.h: removed buggy semicolon in unused macro
4         * src/SDCClrange.c (findPrevUseSym, rlivePoint): fixed bug #1486853,
5         search for previous definiton of auto symbols too,
6         (findPrevUse): fixed logic of emitWarnings
7
8 2006-06-26 Raphael Neider <rneider AT web.de>
9
10         * src/pic16/gen.c (genFunction, genEndFunction): also preserve
11           PCLATH and PCLATU on interrupts, potentially fixes #1505141
12
13 2006-06-25 Raphael Neider <rneider AT web.de>
14
15         * device/lib/pic/libm: NEW, added math library functions
16         * device/lib/pic/libsdcc: NEW; added float support functions
17         * device/lib/pic/{Makefile.in,configure.in,configure}: added libm/
18         * device/include/pic/{limits.h,errno.h,sdcc-lib.h,float.h,math.h}:
19           NEW, added math related headers
20         * device/include/asm/pic/features.h: NEW
21         * src/pic/gen.c (emitpcode_real): emit warning on NULL pCodeOp,
22           (popGet): allow larger offsets for AOP_PCODE,
23           (genDataPointerSet): handle literals explicitly, more debug output,
24           (genAssign): fixed for float using aopLiteral ;-)
25         * src/pic/glue.c (pic14createInterruptVect): inserted pagesel before
26           GOTO initialisation routine
27         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): set wasUsed
28           flag on registers, fixes #1469043 (local variables do not work)
29         * src/pic/main.c (_pic14_do_link),
30         * src/pic16/main.c (_pic16_linkEdit): use fullDstFileName if
31           available
32
33 2006-06-25 Borut Razem <borut.razem AT siol.net>
34
35         * device/lib/pic16/libc/stdio/sprintf.c: return the number of
36           characters printed (not including the trailing '\0' used to end
37           output to strings). Problem detected in regression test bug-927659.c.
38           NOTE: printf() family functions should return int instead
39           unsigned int!
40         * device/lib/pic16/libc/stdio/vfprintf.c: "%%" prints "%", unknown
41           specifier are printed as themselves
42         * sdcc/support/regression/tests/bug1057979.c: pic16 printf doesn't
43           support flags, width and precision specifiers
44
45 2006-06-24 Borut Razem <borut.razem AT siol.net>
46
47         * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16
48           to the list of sdcc tagrets not supporting bit type
49         * sdcc/support/regression/tests/bug-905992.c.c: excluded regression
50           testfor pic16 due to bug:
51           [ 1511794 ] pic16: regression test bug-895992.c fails
52
53 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
54
55         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
56         * src/SDCCglue.c (initPointer), fixed bug 1496419
57         * support/regression/tests/bug1496419.c: new, added
58
59 2006-06-22 Borut Razem <borut.razem AT siol.net>
60
61         * support/regression/ports/pic16/support.c: use gpsim usart module from
62           libgpsim_modules library
63
64 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
65
66         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
67         IP0H to IPH0.
68
69 2006-06-19 Raphael Neider <rneider AT web.de>
70
71         * src/pic/glue.h,src/pic16/glue.h: added prototypes
72         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
73           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
74           (pic14printExterns,pic14printPublics,pic16printPublics,
75           pic16_printExterns): use new functions to emit symbols
76           (picglue,pic16glue): emit publics before emitting externs
77         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
78           locally defined functions to avoid bug #1443651
79         * support/regression/tests/bug-716242.c: removed pic16 workaround
80         * support/regression/ports/pic16/spec.mk: ignore errors during build
81
82 2006-06-19 Raphael Neider <rneider AT web.de>
83
84         * src/pic/glue.h: added pic14aopLiteral prototype
85         * src/pic/glue.c (pic14aopLiteral): return unsigned int
86         * src/pic/gen.c: removed stdint.h dependency
87           (aopGet): use Safe_strdup()
88           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
89           (genDataPointerSet): use pic14aopLiteral()
90         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
91           for pic16; thanks to Bernhard and Maarten
92
93 2006-06-18 Borut Razem <borut.razem AT siol.net>
94
95         * support/regression/tests/structflexarray.c: flexible array members
96           not supported by gcc < 3
97         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
98           GUI tool by default
99         * src/pic/gen.c: don't include [p]strdin.h on solaris
100         * support/Util/pstdint.h: addad svn attributes
101         * support/regression/tests/constantRange.c,
102           support/regression/tests/rotate.c: include inttypes.h instead
103           stdint.h on solaris, addad svn attributes
104
105 2006-06-18 Raphael Neider <rneider AT web.de>
106
107         * src/SDCCsymt.c (initCSupport): change return type of divschar to
108           int for PIC16
109         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
110           (pic16_genMinusBits): simplified sign-extension
111           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
112             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
113             adjusted to correctly handle mixed-signed operands, disabled
114             now unused multiplciation routines
115         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
116           (assignResultValue): added argument denoting the size of the result
117             as returned by the function (fixes upcasts in assigning from
118             function calls: char foo(); int i = foo();)
119           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
120             function result to assignResultValue
121           (genMult): disabled inlined multiplication code
122           (genDiv): augmented to also handle the modulus operator, fixed to
123             handle mixed-signed operands correctly
124           (genMod): simply call genDiv, disabled unused code
125           (genAssign): fixed missing (sign-)extension on result
126         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
127             valid char operands, allow signed operands for native code, added
128             division and modulo operator handling
129         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
130
131         As a consequence, onebyte.c (if split into two files) and muldiv.c
132         pass regression tests.
133
134 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
135
136         * doc/Makefile.in: two runs of makeindex seem needed to get
137         correct page references in the index of sdccman.pdf
138         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
139
140 2006-06-17 Borut Razem <borut.razem AT siol.net>
141
142         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
143
144 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
145
146         * doc/sdccman.lyx: updated, added (porting source code, debugging),
147         mentioned ec2drv and paulmon
148
149 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
150
151         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
152           consecutive abs areas
153           (find_empty_space, allocate_space): added map to handle codemap or
154            xdatamap,
155           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
156            absolute idata and xdata
157         * as/mcs51/lkmem.c (summary2): updated legend
158
159 2006-06-16 Raphael Neider <rneider AT web.de>
160
161         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
162
163 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
164
165         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
166           1208515
167         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
168
169 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
170
171         * src/port.h (struct PORT): added field gp_tags, to hold the tag
172         value of generic pointers,
173         * src/avr/main.c,
174           src/ds390/main.c,
175           src/hc08/main.c,
176           src/izt/i186.c,
177           src/izt/tlcs900h.c,
178           src/mcs51/main.c,
179           src/pic/main.c,
180           src/pic16/main.c,
181           src/xa51/main.c,
182           src/z80/main.c: PORT structure, added elements for gp_tags field,
183         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
184         fields in the PORT structure of each port,
185         * src/SDCCast.c (decorateType): allow processing of generic pointers
186         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
187         S_FIXED symbols
188
189 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
190
191         * link/z80/lkgb.c,
192         * link/z80/lkgg.c,
193         * src/pic16/gen.c,
194         * src/pic16/main.c,
195         * src/pic16/pcode.c,
196         * src/pic/main.c,
197         * src/pic/pcoderegs.c,
198         * src/SDCCicode.c,
199         * src/SDCCmain.c,
200         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
201           bug 1504689 on minGW
202
203 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
204
205         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
206
207 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
208
209         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
210
211 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
212
213         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
214           for optimization
215
216 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
217
218         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
219         to a char variable. Fixed bug #1504211
220         * device/include/pic16/adc.h,
221         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
222         and fixed bug #1364390
223
224 2006-06-10 Borut Razem <borut.razem AT siol.net>
225
226         * CVSROOT: removed the CVS left-over
227
228 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
229
230         * as/hc08/asmain.c (asexit),
231         * as/hc08/lkmain.c (lkexit),
232         * as/mcs51/asmain.c (asexit),
233         * as/mcs51/lkmain.c (lkexit),
234         * src/SDCCglue.c (DEFSETFUNC),
235         * src/SDCCmain.c (linkEdit, assemble),
236         * support/librarian/sdcclib.c (AddRel),
237           replaced unlink() by standard C remove()
238         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
239         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
240           gatherImplicitVariables): new, added to fix bug 608752,
241           (createFunction): added gatherImplicitVariables()
242         * src/SDCCast.h: added createRMW prototype
243         * src/SDCCsymt.h (struct symbol): added infertype
244         * support/regression/tests/bug608752.c: new, added
245
246 2006-06-10 Raphael Neider <rneider AT web.de>
247
248         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
249           multibyte dummy reads (fixes #1503234)
250
251 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
252
253         * device/include/mcs51/compiler.h: new, added header file to enable
254           creating common sfr definition header files for different compilers
255
256 2006-06-05 Raphael Neider <rneider AT web.de>
257
258         * src/pic16/{pcode.h,genarith.c}:
259           introduced pCodeOp combining any two pCodeOps (previously only
260           two register operands could be combined), removed pcop2 from
261           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
262         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
263         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
264           rewritten to use new PO_TWO_OPS
265         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
266         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
267           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
268           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
269           (pic16_get_op): embraced return arg to allow #define return(x),
270             added new case for combined opcodes
271           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
272           (pic16_pCode2str,pic16_getRegFrompCodeOp,
273            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
274
275 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
276
277         * src/SDCCval.c (checkConstantRange): added
278         * src/SDCCval.h: added checkConstantRange
279         * support/Util/SDCCerr.c,
280         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
281         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
282         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
283         * src/SDCCast.c (decorateType): added checkConstantRange,
284         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
285         can be emitted with the correct always true/false warning,
286         added optimization for double '!';
287         result of decorateType() must be assigned back to the tree, because
288         decorateType() can change the tree
289         * src/SDCCicode.c (geniCodeLogic),
290         (geniCodeAssign): replaced new checkConstantRange, added warnings,
291         (checkConstantRange): removed, it was only a fragment which never
292         emitted a warning
293         * src/SDCCsymt.c (computeType): fixed promotion for
294         "-1 < (unsigned bit) b"
295         * src/pic/ralloc.c (packRegsForAssign),
296         * src/pic16/ralloc.c (packRegsForAssign),
297         * src/hc08/ralloc.c (packRegsForAssign),
298         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
299         from mcs51
300         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
301         * support/regression/tests/constantRange.c: added
302         * support/valdiag/tests/constantRange.c: added
303         * support/valdiag/valdiag.py: added -DPORT_HOST=1
304
305 2006-06-02 Borut Razem <borut.razem AT siol.net>
306
307         * support/regression/ports/pic16/support.c: increase stack size
308           to 255 bytes
309         * support/regression/Makefile.in: sort tests by name so that the
310           resutlts can be compared on different machines / platforms
311
312 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
313
314         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
315         * src/ds390/gen.c (emitLabel): new, added,
316           (genDjnz): fixed stack overflow bug,
317           (throughout): cosmetic changes to sync with mcs51/gen.c,
318           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
319         * src/mcs51/gen.c (genEndFunction): small optimization,
320           (throughout): cosmetic changes to sync with ds390/gen.c
321
322 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
323
324         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
325           (_print_format): fixed printing pointers
326         * src/mcs51/gen.c (emitLabel, movb): new, added,
327           (genAssign): small optimization,
328           (genDjnz): fixed stack overflow bug,
329           (throughout): replaced sprintf with SNPRINTF,
330           replaced mcs51_regWithIdx with REG_WITH_INDEX,
331           replaced emitcode("mov", "b,...") with MOVB(...),
332           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
333           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
334         * src/mcs51/peeph.def: added rules 140 and 264
335         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
336           so they may get optimized into registers
337
338 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
339
340         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
341           immediately when encountered,
342           (printUsage): always use stderr even on windows
343
344 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
345
346         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
347         (processParms): fixed bug #1247551
348         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
349         parseCmdLine, main): print '--version' to stdout,
350         print 'help' to stdout if --help is given,
351         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
352         arguments are given; fixed --help
353
354 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
355
356         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
357         * support/regression/tests/bug-1493710.c: added
358
359 2006-05-27 Borut Razem <borut.razem AT siol.net>
360
361         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
362           static instead auto
363         * support/regression/ports/pic16/support.c: increase stack size
364           from default 64 bytes to 128 bytes
365         * support/regression/tests/staticinit.c,
366           support/regression/tests/float.c: regression tests fully enabled
367           for pic16 port by putting the initialized data arrays into the code
368           section
369         * support/regression/ports/pic16/spec.mk: don't link default libraries.
370           This was changed by mistake in the previous version.
371
372 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
373
374         * src/pic16/gen.c (genFunction, genEndFunction): some
375         beautifications, fixed bug with falsely restoring FSR2 in large
376         stack model, thanks to Beau E. Cox for reporting the bug
377
378 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
379
380         * debugger/mcs51/break.c,
381         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
382           use %p to print pointers, made address variables unsigned
383         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
384         * debugger/mcs51/symtab.c (parseSymbol): must return something
385         * src/mcs51/gen.c (aopForSym): small optimization,
386            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
387           (freeAsmop): added missing break,
388           (aopPut): removed parameter bvolatile, determine it inside the function,
389           (saveRegisters, unsaveRegisters): small optimization,
390           (genIpush): removed pointless check,
391           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
392           replaced sprintf with SNPRINTF,
393           replaced strcpy with strncpyz,
394           updated aopPut calls,
395           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
396         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
397
398 2006-05-24 Borut Razem <borut.razem AT siol.net>
399
400         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
401           modification of test for the pic16 port, put the array to the code
402           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
403
404 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
405
406         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
407         * support/Util/pstdint.h: added
408
409 2006-05-22 Borut Razem <borut.razem AT siol.net>
410
411         * src/regression/Makefile: removed bool2.c test, added -q linker option
412         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
413           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
414           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
415           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
416           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
417           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
418           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
419           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
420           define SUPPORT_BIT_TYPES 0, removed unused bit variables
421
422 2006-05-22 Raphael Neider <rneider AT web.de>
423
424         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
425           bug #1492360 (problematic due to generic pointers, see code)
426
427 2006-05-22 Borut Razem <borut.razem AT siol.net>
428
429         * support/regression/ports/pic16/specs.mk: removed stack size linker
430           directive
431         * support/regression/tests/array.c,
432           support/regression/tests/bitopcse.c,
433           support/regression/tests/bug-908454.c,
434           support/regression/tests/malloc.c: modified for pic16 regression test
435         * support/regression/tests/bitfields.c:
436           pic16 - excluded bitfileds of size > 8
437         * support/regression/tests/bp.c: pic16 - reduced data size
438         * support/regression/tests/bug-221100.c: pic16 - reduced data size
439         * support/regression/tests/bug-460010.c:
440           pic16 - used the absolute address the fits in memory
441         * support/regression/tests/bug-716242.c:
442           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
443         * support/regression/tests/float.c:
444           pic16 - excluded - data size too big
445         * support/regression/tests/onebyte.c:
446           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
447         * support/regression/tests/shifts.c:
448           pic16 - function names probably have to differ in first X characters
449           (gpasm limitation?)
450         * support/regression/tests/staticinit.c:
451           pic16 - excluded some tests due error: no target memory available for
452           section ".idata"
453
454 2006-05-22 Borut Razem <borut.razem AT siol.net>
455
456         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
457           second try. Thanks Stas Sergeev once more.
458
459 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
460
461         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
462           (genLeftShift, genRightShift): fixed bug 1491627
463         * src/hc08/peeph.def (rules 7, 8.x): added
464         * support/regression/tests/shifts.c (ShiftLeftByParam,
465           ShiftRightByParam, testShiftByParam): added to test variable shifting
466
467 2006-05-20 Raphael Neider <rneider AT web.de>
468
469         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
470         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
471           (allocReg): add only new registers to dynAllocRegs,
472           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
473             #1489055, #1445850, and probably #1483693
474
475 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
476
477         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
478         bug in for-loop that didn't emit the last of CONFIG and ID registers
479
480 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
481
482         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
483           with offset
484         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
485           1489016, 1434401 and 1490124
486         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
487           1489016, 1434401 and 1490124
488
489 2006-05-17 Borut Razem <borut.razem AT siol.net>
490
491         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
492           thanks Stas Sergeev
493
494 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
495
496         * device/include/mcs51/P89c51RD2.h,
497         * device/include/mcs51/P89LPC901.h,
498         * device/include/mcs51/P89LPC922.h,
499         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
500
501 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
502
503         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
504         to fix missing stack pragma in compiled binary object file,
505
506 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
507
508         * support/packihx/configure.in,
509         * support/packihx/configure: removed warning, autoconf >= 2.5x can
510         determine sizeof basic types even while cross compiling
511
512 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
513
514         * src/avr/gen.c (aopop),
515         * src/ds390/gen.c (aopOp),
516         * src/hc08/gen.c (aopOp),
517         * src/mcs51/gen.c (aopop),
518         * src/pic16/gen.c (pic16_aopOp),
519         * src/pic/gen.c (aopOp),
520         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
521         if size of operand is smaller than spill location
522
523 2006-05-12 Borut Razem <borut.razem AT siol.net>
524
525         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
526           have to have CR/LF line endings even if they are checked out on *nix
527           or on WIN32 in cygwin binmode
528
529 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
530
531         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
532         * device/include/ds80c390.h: added sfr16 definitions
533         * src/ds390/gen.c,
534         * src/ds390/gen.h,
535         * src/ds390/main.c,
536         * src/ds390/ralloc.c,
537         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
538           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
539           bit returning functions
540         * support/regression/tests/sfr16.c: enabled test on ds390
541
542 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
543
544         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
545         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
546
547 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
548
549         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
550         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
551           (cl_address_space constructor): removed expensive initialization,
552           (cl_address_space::get_cell): extended for late initialization,
553           (cl_address_space::*): use late initialization,
554           (cl_address_decoder::activate): removed expensive initialization,
555           This reduced regression test running time by 25%
556
557 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
558
559         * packihx/,
560         * configure.in,
561         * configure,
562         * sdcc.dsw,
563         * Makefile.bcc,
564         * Makefile.in,
565         * support/packihx/Makefile.in,
566         * support/packihx/clean.mk,
567         * support/packihx/Makefile.bcc,
568         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
569
570 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
571
572         * src/SDCCval.c (valNot): fix for regression test failure
573           of not.c on big endian hosts
574
575 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
576
577         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
578
579 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
580
581         * device/lib/mcs51/Makefile.in: changed string comparison operator
582           to = for POSIX compliance; == is bash extension
583
584 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
585
586         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
587           kosmonaut_pirx
588
589 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
590
591         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
592         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
593         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
594         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
595         bug report #1478657,
596
597 2006-05-05 Borut Razem <borut.razem AT siol.net>
598
599         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
600           making the html
601
602 2006-05-02 Borut Razem <borut.razem AT siol.net>
603
604         * doc/Makefile.in: removed *.ind dependency since there is no rule to
605           create *.ind, which made make to fail if invoked with -j 2
606
607 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
608
609         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
610           Hubert Sack for patch 1479782
611
612 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
613
614         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
615
616 2006-05-01 Raphael Neider <rneider AT web.de>
617
618         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
619           (create_pic): store only prefix-free device name,
620           (init_pic): check for device names with "16" prefix,
621           (list_valid_pics),
622         * src/pic/device.h (struct PIC_device),
623         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
624             stored device name,
625         * device/include/pic/pic12f{635,675,629,683}.h,
626         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
627         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
628         * device/include/pic/pic16f505.h,
629         * device/lib/pic/libdev/pic16f505.c: removed
630         * device/include/pic/pic14devices.txt: added support for pic12f
631             devices, removed unsupported non 16-bit devices
632             [above changes provided by patch from Zik Saleeba]
633         * src/pic/*, src/pic16/*, device/include/pic16/*,
634           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
635
636 2006-05-01 Borut Razem <borut.razem AT siol.net>
637
638         * configure.in, configure, doc/Makefile.in:
639           sync with nightly build makefile - latex, dvipdf and dvips
640           not needed any more
641
642 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
643
644         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
645         in the library source
646
647 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
648
649         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
650
651 2006-04-28 Raphael Neider <rneider AT web.de>
652
653         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
654         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
655           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
656         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
657
658 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
659
660         * device/lib/pic/libdev/Makefile.in,
661         * device/lib/hc08/Makefile.in,
662         * device/lib/gbz80/Makefile.in,
663         * device/lib/z80/Makefile.in,
664         * device/lib/ds390/Makefile.in,
665         * device/lib/ds400/Makefile.in: added srcdir to include search path,
666         thanks to Borut for the bug report
667         * configure.in,
668         * configure: always create doc/Makefile independent from --enable-doc
669         * Makefile.in: always install from directory doc independent from
670         --enable-doc
671         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
672         removed
673         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
674         * doc/Makefile.in: install *.txt if present
675         * device/include/Makefile.in (install): added installation of pic/*.inc
676         and pic/*.txt files again, they were erroneously removed
677
678 2006-04-28 Raphael Neider <rneider AT web.de>
679
680         * src/pic/{gen.c,main.h,pcode.c},
681         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
682             concerning signedness with casts
683
684 2006-04-28 Raphael Neider <rneider AT web.de>
685
686         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
687             definition of an interrupt handler,
688         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
689             interrupt handler stuff from picglue() to separate routine,
690           (picglue): enabled definition of intr handlers in files w/o main()
691
692 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
693
694         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
695           compilation with MSVC 2005 Express Edition (VC8)
696
697 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
698
699         * device/lib/Makefile: fixed build of gbz80 lib
700
701 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
702
703         * support/regression/tests/bug-460010.c,
704         * support/regression/tests/bug-524691.c,
705         * support/regression/tests/bug-716242.c: removed conditional defines
706           that are already in testfwk.h
707
708 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
709
710         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
711           (AccAXRsh1): added, shift right by 1,
712           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
713            AccAXLrl1
714         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
715
716 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
717
718         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
719         remove cast to same type
720         * src/SDCCast.c (decorateType): fix for RFE 1475742,
721         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
722         * as/z80/Makefile,
723         * link/z80/Makefile: removed, they have moved to
724         Makefile.in files
725         * configure,
726         * configure.in: replaced duplicate message about ucsim by missing sdcpp
727         * install-sh: fix bug #1204398 by setting umask 0022
728         * device/lib/Makefile: separate build of z80 and gbz80 lib
729
730 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
731
732         Enabled VPATH feature: changed nearly all Makefiles (149 files).
733         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
734
735         One basic decision: e.g. src/clean.mk includes further files. In order
736         to make this work there are two solutions:
737         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
738           run configure on them. This way they can use
739           'include $(srcdir)/port-clean.mk'
740         - always include clean.mk by the Makefile at the same level. To avoid
741           that `make clean` tries to include and build Makefile.dep the
742           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
743           implemented, because now even `make uninstall` doesn't create
744           Makefile.in. clean.mk could be eliminated by pasting it in
745           Makefile.in.
746
747         * debugger/mcs51/Makefile.in: build own objects from library sources
748         (SLIB, SDCC) in current directory
749
750         * configure, configure.in: renamed --disable-device-lib-build in
751         --disable-device-lib; added --enable-doc, the required tools are
752         searched by configure; added result message; the toolchain for the
753         belonging ports are now only built, if the port is enabled.
754
755         * support/regression/*: all output is written in directory gen, because
756         the fwk and ports directories don't livet in the build tree using vpath
757
758         * doc/sdccman.lyx: renamed --disable-device-lib-build to
759         --disable-device-lib, added --enable-doc, added section VPATH
760
761         * sim/ucsim/configure.in,
762         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
763         z80 are enabled by default
764
765 2006-04-24 Raphael Neider <rneider AT web.de>
766
767         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
768             to config word, "pic14_"-prefixed some extern functions
769           (pic14_emitConfigWord): emit __config directive(s) if assignment to
770             config word has been found
771         * src/pic/device.h: added prototypes
772         * src/pic/pcode.c: added "pic14_"-prefix where needed
773         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
774             fixup
775         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
776             words,
777           (pic14emitRegularMap): ignore config words,
778           (pic14createInterruptVect): moved generating __config directives away
779           (picglue): have __config directives emitted
780
781 2006-04-24 Borut Razem <borut.razem AT siol.net>
782
783         * doc/Makefile: sync with nightly build makefile
784
785 2006-04-24 Raphael Neider <rneider AT web.de>
786
787         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
788             registers that have not been assigned proper liveranges,
789             fixes #1469504 and #1474602,
790           (pCodeRegOptimizeRegUsage): fixed typo in comment
791
792 2006-04-24 Borut Razem <borut.razem AT siol.net>
793
794         * device/examples/main8051.c: deleted - it was removed from CVS
795           24.mar.2000 and after that modified 18.feb.2001, so it reappered
796           after the transition to Subversion
797         * src/SDCCalloc.h: deleted - it was removed  from CVS
798           3.feb.2001 and after that modified 18.feb.2001, so it reappered
799           after the transition to Subversion
800         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
801           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
802           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
803           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
804
805 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
806
807         * as/asx8051.dsp: added mcs51/strcmpi.h
808         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
809         * as/hc08/aslink.h: updated lnksect prototype
810         * as/hc08/asm.h,
811         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
812         * as/hc08/asmain.c,
813         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
814           (newdot): handle A_ABS
815         * as/hc08/asout.c,
816         * as/mcs51/asout.c (outarea): output address
817         * as/hc08/lkaomf51.c,
818         * as/mcs51/lkaomf51.c: disabled unused array UsageType
819         * as/hc08/m08pst.c,
820         * as/mcs51/i51pst.c,
821         * as/z80/z80pst.c: "ABS" is not A_OVR
822         * as/hc08/lkarea.c (newarea): read a_addr,
823           (lnkarea): added codemap array, sort absolute areas to the front,
824            combine all GSINITx/GSFINAL,
825           (find_empty_space, allocate_space): new functions,
826           (lnksect): return next address, handle absolute sections
827         * as/mcs51/lkarea.c (newarea): read a_addr,
828           lnksect2 prototype changed,
829           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
830           (find_empty_space, allocate_space): new, factored out of lnksect2,
831           (lnksect2): return next address, handle absolute sections
832         * as/hc08/lkhead.c,
833         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
834         * as/hc08/lklibr.c (addfile, fndsym),
835         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
836           index out of range and detect both '\' and '/'
837         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
838         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
839           regression tests (ds390 cannot return bool yet)
840         * doc/sdccman.lyx: changed version number, document changed --no-peep,
841           document critical interrupts on z80, document changed SDCC define
842         * src/asm.c (_asxxxx_mapping): fixed .org directive,
843           (_a390_mapping): added .org directive
844         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
845           (genMultOneByte): fixed warnings
846         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
847           ones
848         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
849         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
850           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
851         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
852         * src/pic16/main.c: removed newReg prototype
853         * src/pic16/pcode.c,
854         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
855           warnings
856         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
857           ones
858         * src/pic16/ralloc.c
859         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
860           to fix warnings
861         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
862           from short to PIC_OPTYPE
863         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
864         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
865           optype from short to PIC_OPTYPE
866         * src/port.h: made int_size unsigned to fix warnings
867         * src/SDCC.y: fixed warning on MSVC
868         * src/SDCCicode.c (getArraySizePtr): return unsigned int
869         * src/SDCCopt.c (convertToFcall): fixed warnings
870         * src/SDCCsymt.h: removed double prototype for genSymName
871         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
872           offset int to fix warnings
873
874 2006-04-22 Borut Razem <borut.razem AT siol.net>
875
876         * doc/sdccman.lyx, */Makefile, */Makefile.in:
877           references to CVS replaced with Subversion
878
879 2006-04-21 Borut Razem <borut.razem AT siol.net>
880
881         * doc/sdccman.lyx, */Makefile, */Makefile.in:
882           references to CVS replaced with Subversion
883
884 2006-04-19 Borut Razem <borut.razem AT siol.net>
885
886         * src/version.awk: adapted for svn
887         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
888           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
889           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
890           /binutils-avr/etc/*.vi, *.jin: removed all properties
891           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
892
893 2006-04-19 Borut Razem <borut.razem AT siol.net>
894
895         * CVS to Subversion migration completed
896
897 2006-04-18 Borut Razem <borut.razem AT siol.net>
898
899         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
900           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
901
902 2006-04-17 Borut Razem <borut.razem AT siol.net>
903
904         * device/include/Makefile.in: added pic/*.inc to the installation
905
906 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
907
908         * support/regression/collate-results.py: fixed output in case of
909         a valdiag error
910         * support/regression/generate-cases.py: fixed splitting of pathnames
911         with dots
912         * as/hc08/lklibr.c (addfile),
913         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
914
915 2006-04-11 Raphael Neider <rneider AT web.de>
916
917         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
918         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
919         * src/pic16/pcode.c (assignValnums): fixed #1460578
920
921 2006-04-11 Raphael Neider <rneider AT web.de>
922
923         * device/lib/pic/libdev/*.c,
924         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
925           fixes #1468739, enables compilation in --std-c99 mode
926         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
927
928 2006-04-11 Raphael Neider <rneider AT web.de>
929
930         * src/pic/device.c (find_device): removed debug output
931           (list_valid_pics): enabled verbose listing of supported devices
932         * device/include/stdbool.h: define bool as char for pic14/16 as well
933
934 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
935
936         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
937
938 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
939
940         * .version: bumped version to 2.5.6
941         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
942
943 2006-04-06 Raphael Neider <rneider AT web.de>
944
945         * .version: bumped version to 2.5.6 (pic14 ABI changed)
946         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
947         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
948           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
949             pic14_constructAbsMap
950           (pic14printPublics): declare absolute global symbols as global
951           (pic14createInterruptVect),
952         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
953           (newReg): assume new registers unused, use correct name in
954             hashtable (reg->name instead of name), more debugLog output
955         * src/pic/device.h (PIC_device): added fields for verbose output
956         * src/pic/device.c: moved device definition to pic14devices.txt,
957             added routines for runtime parsing of pic14devices.txt,
958             added support for second config word
959         * src/pic/main.c (_process_pragma): removed #pragma maxram,
960           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
961           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
962           (_pic14_parseOptions): moved pCodeInitRegisters here
963           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
964         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
965           (pCodeInitRegisters): rewrapped comments, perpared new approach to
966             handling the pseudo stack
967         * device/lib/Makefile.in: ignore failures in objects-pic16,
968         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
969         * device/lib/pic/NEWS: document new dependency on picXXX.lib
970         * device/lib/pic/Makefile.subdir,
971         * device/lib/pic16/Makefile.subdir: improved clean rules
972         * device/lib/pic/libdev/: NEW, pic14 device libraries
973         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
974         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
975         * device/include/Makefile.in: create subdir and install pic14 headers
976         * device/include/pic/p16f_common.inc: removed unused declarations
977         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
978             PICs from inc2h.pl v1.6,
979             replaced BIT_AT macros with struct declarations
980         * device/include/pic/pic14devices.txt: definition of supported devices,
981             all above improvements contributed by Zik Saleeba, thanks
982         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
983         * support/scripts/sdcc.nsi: also install pic14 device libraries and
984             headers
985
986 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
987
988         * device/include/mcs51/c8051f410.h: added interrupt numbers,
989         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
990           thanks to Charles Olds
991
992 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
993
994         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
995
996 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
997
998         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
999         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
1000         * support/regression/bug1464657.c: added, new test
1001
1002 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1003
1004         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
1005           version number
1006
1007 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1008
1009         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
1010           --no-peep and --peep-file <file> are used don't use default rules but
1011           do use the <file>
1012
1013 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1014
1015         * src/mcs51/gen.c (genCall): fixed bug 1457608
1016
1017 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1018
1019         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
1020         changes seem to cause (trigger?) problems with the build system.
1021
1022 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
1023
1024         * src/SDCCpeeph.c (operandsLiteral): new, added,
1025           (callFuncByName): inserted operandsLiteral
1026         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
1027
1028 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1029
1030         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
1031         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
1032
1033 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1034
1035         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
1036           implemented patch 1120823 Thanks to Willy De la Court (normal
1037           interrupts need an interrupt number now if they are made critical),
1038           and enabled nesting of critical functions though not for gbz80
1039           (genCritical, genEndCritical): added functions
1040           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
1041         * src/z80/mappings.i: added "ei" to all mappings
1042
1043 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1044
1045         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
1046         submitted by the Debian SDCC maintainer Aurelien Jarno:
1047         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
1048         archive with gcc 4.1 on mips and wrote the patch"
1049
1050 2006-03-16 Raphael Neider <rneider AT web.de>
1051
1052         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
1053           the left operand is shorter than the result (c* = lit-c* + int),
1054           fixes bug #1450796
1055         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
1056           OP_SYMBOL
1057
1058 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1059
1060         * src/.version: increased version number to 2.5.5
1061         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1062         linking is done manually in pic16 port's _linkEdit,
1063         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1064         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1065         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1066         allocate asmop as AOP_ACC,
1067         (aopForRemat): added parameter 'bool result' in function declaration,
1068         (pic16_aopGet): return AOP_ACC when accessing WREG,
1069         (pic16_popGetTempReg): minor modification,
1070         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1071         'pic16_allocWithIdx',
1072         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1073         calling function in absolute addresses,
1074         (genAssign): take into account AOP_ACC asmop,
1075         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1076         * src/pic16/pcoderegs.c: some debug functions and lines added,
1077         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1078         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1079         register too,
1080         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1081         call to allocReg, not by manually allocating a new one,
1082         (pic16_assignRegisters): now before going through the register
1083         allocating functions mark all registers as free. This eliminates some
1084         side effects resulting from peephole parser done earlier in the backbone
1085
1086 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1087
1088         * src/SDCCicode.c (geniCodeLogic),
1089         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1090
1091 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1092
1093         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1094           (genSend): bugfix, do not allocate and free twice,
1095           (shiftRLong): handle partially overlapping aops
1096         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1097
1098 2006-03-08 Borut Razem <borut.razem AT siol.net>
1099
1100         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1101           for pic16
1102
1103 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1104
1105         * support/regression/tests/bug1409955.c: new, added
1106         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1107         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1108           (aopForSym, aopOp): increment asmop.allocated if reused,
1109           (freeAsmop): decrement asmop.allocated and check for zero instead of
1110           using asmop.freed,
1111           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1112           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1113            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1114            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1115            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1116            genSignedRightShift, genRightShift, genDataPointerGet,
1117            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1118            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1119             in reverse order from allocation,
1120           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1121             added swappedLR to keep track
1122         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1123           pdata & code for GCC, z80, gbz80 & hc08
1124         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1125
1126 2006-03-08 Raphael Neider <rneider AT web.de>
1127
1128         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1129
1130 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1131
1132         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1133         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1134         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1135
1136 2006-03-06 Borut Razem <borut.razem AT siol.net>
1137
1138         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1139           made the linker quiet
1140
1141 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1142
1143         * src/pic16/gen.c (genPcall): fixed bug #1443644
1144         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1145         which dumps before the function entry point a data byte which represents
1146         the number of the local variables used by the specified function, added
1147         'xinst' for initial support for Extended Instruction Support,
1148         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1149         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1150         port->fun_prefix anymore (may change later),
1151         (genFunction, genEndFunction): do not store/restore local registers for
1152         _main (this should take care the --main-return command line option in
1153         the future),
1154         (genOr): removed some legacy pic-port instructions,
1155         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1156         performing operations with SFR's causes data to be written more than
1157         once to each SFR. Perhaps SFRs should be handled in special cases...
1158         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1159         pcode.h
1160         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1161         into account for stack starting position,
1162         (struct OPTIONS pic16_optionsTable): added command line argument
1163         --extended or -y for Extended Instruction Support,
1164         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1165         (deassignLRs): *** perhaps the most important change, old 'for' code
1166         (commented out for reference), didn't account for some registers which
1167         were left marked 'not free' after a pointer operation. The change
1168         reduces register usage a lot in some cases
1169
1170 2006-03-04 Borut Razem <borut.razem AT siol.net>
1171
1172         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1173           _clean
1174         * support/regression/tests/bug-524697.c: decreased array size for
1175           mcs51 to fit into the internal RAM
1176         * support/regression/Makefile.in: a little bit more verbose
1177
1178 2006-03-03 Borut Razem <borut.razem AT siol.net>
1179
1180         * support/regression/fwk/lib/testfwk.c,
1181           support/regression/fwk/include/testfwk.h: introduced function
1182           _prints(), nonrecursive _printn(), call _initEmu() from main()
1183         * support/regression/ports/gbz80/support.asm,
1184           support/regression/ports/ucz80/support.asm,
1185           support/regression/ports/z80/support.asm,
1186           support/regression/ports/ds390/support.c,
1187           support/regression/ports/hc08/support.c,
1188           support/regression/ports/host/support.c,
1189           support/regression/ports/mcs51/support.c,
1190           support/regression/ports/xa51/support.c: added empty _initEmu()
1191           function
1192         * support/regression/ports/pic16/gpsim.cmd,
1193           support/regression/ports/pic16/spec.mk,
1194           support/regression/ports/pic16/support.c,
1195           support/regression/Makefile.in: added pic16 regression test
1196
1197 2006-03-01 Raphael Neider <rneider AT web.de>
1198
1199         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1200           genConstPointerGet): use safe way of generating MOVFF to cover
1201             literals as well as registers, fixes bug #1440527
1202         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1203             dereference
1204           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1205             more correctly, fixes bug #1232186
1206           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1207         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1208             gplink guess the correct processor in more cases, applied patch
1209             from Till Riedel attached to and fixing bug #1436552
1210
1211 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1212
1213         * support/regression/tests/array.c: added, contains check for #1434401
1214         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1215
1216 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1217
1218         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1219         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1220         * device/include/mcs51/c8051f326.h,
1221         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1222         * device/include/mcs51/c8051f000.h,
1223         * device/include/mcs51/c8051f018.h,
1224         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1225           PCON_IDLE,PCON_STOP and added sfr16 definitions
1226
1227 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1228
1229         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1230           genGetWord): fixed bug 1409955
1231
1232 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1233
1234         * device/include/hc08/mc68hc908gp32.h,
1235         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1236
1237 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1238
1239         * src/SDCCast.c (constExprValue): return NULL if not a value
1240         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1241         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1242         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1243
1244 2006-02-13 Borut Razem <borut.razem AT siol.net>
1245
1246         * src/regression/ptrarg.c: added, fails due to bug #1430967
1247         * src/regression/Makefile: ptrarg.c added, ...
1248
1249 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1250
1251         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1252         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1253
1254 2006-02-11 Borut Razem <borut.razem AT siol.net>
1255
1256         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1257           print "Processor: xxx" message to stdout only if --verbose
1258
1259 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1260
1261         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1262         * support/regression/tests/bug1426356.c: added
1263         * support/regression/tests/bitfields.c: removed 2 tests
1264
1265 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1266
1267         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1268         * device/include/mcs51/c8051f330.h,
1269         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1270           PCON_IDLE,PCON_STOP and added sfr16 definitions
1271         * device/lib/_divsint.c,
1272         * device/lib/_divuint.c,
1273         * device/lib/_divulong.c,
1274         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1275           register bank bug for small stackauto
1276
1277 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1278
1279         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1280
1281 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1282
1283         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1284         * all.dsp: corrected several bin paths
1285         * device/include/mcs51/c8051f120.h,
1286         * device/include/mcs51/c8051f300.h,
1287         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1288           to PCON_IDLE,PCON_STOP
1289         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1290         * device/lib/printf_large.c (output_float): fixed bug 1388703
1291         * support/regression/tests/bug1057979.c: added test for bug 1388703
1292
1293 2006-02-08 Raphael Neider <rneider AT web.de>
1294
1295         * src/pic/pcode.c (pciTRIS): fixed typo,
1296           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1297           (LinkFlow): fixed handling of flows that end in a call,
1298           (ReuseReg): perform safety check earlier
1299         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1300             to work with flows at the beginning of a pBlock,
1301             fixes #1426557 (Symbol not previously defined),
1302           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1303             usage information
1304           (RemoveUnusedRegisters): update register usage info
1305         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1306             created, reuse existing ones instead
1307         * src/pic/gen.c (genPcall): fixed #1424719
1308
1309 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1310
1311         * link/z80/lkmain.c,
1312         * link/z80/lklex.c,
1313         * link/z80/lkdata.c,
1314         * link/z80/aslink.h: fixed build on current cygwin:
1315         replaced getline() by lk_getline()
1316
1317 2006-02-01 Borut Razem <borut.razem AT siol.net>
1318
1319         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1320           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1321           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1322           src/regression/bool1.c, src/regression/bool2.c,
1323           src/regression/bool3.c, src/regression/call1.c,
1324           src/regression/compare.c, src/regression/compare10.c,
1325           src/regression/compare2.c, src/regression/compare3.c,
1326           src/regression/compare4.c, src/regression/compare5.c,
1327           src/regression/compare6.c, src/regression/compare7.c,
1328           src/regression/compare8.c, src/regression/compare9.c,
1329           src/regression/configword.c, src/regression/for.c,
1330           src/regression/inline.c, src/regression/mult1.c,
1331           src/regression/nestfor.c, src/regression/or1.c,
1332           src/regression/pointer1.c, src/regression/ptrfunc.c,
1333           src/regression/rotate1.c, src/regression/rotate2.c,
1334           src/regression/rotate3.c, src/regression/rotate4.c,
1335           src/regression/rotate5.c, src/regression/rotate6.c,
1336           src/regression/rotate7.c, src/regression/string1.c,
1337           src/regression/struct1.c, src/regression/sub.c,
1338           src/regression/sub2.c, src/regression/switch1.c,
1339           src/regression/while.c, src/regression/xor.c,
1340           src/regression/create_stc, src/regression/simulate,
1341           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1342           regression tests
1343         * src/regression/gpsim_assert.h: added
1344
1345 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1346
1347         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1348         ((void (code *) (void)) 0) ();
1349         * as/hc08/aslex.c,
1350         * as/hc08/aslink.h,
1351         * as/hc08/asm.h,
1352         * as/hc08/asmain.c,
1353         * as/hc08/lkdata.c,
1354         * as/hc08/lklex.c,
1355         * as/hc08/lkmain.c,
1356         * as/mcs51/aslex.c,
1357         * as/mcs51/aslink.h,
1358         * as/mcs51/asm.h,
1359         * as/mcs51/asmain.c,
1360         * as/mcs51/lkdata.c,
1361         * as/mcs51/lklex.c,
1362         * as/mcs51/lkmain.c,
1363         * as/z80/aslex.c,
1364         * as/z80/asm.h,
1365         * as/z80/asmain.c: fixed build on current cygwin:
1366         replaced getline() by as_getline()
1367
1368 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1369
1370         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1371         declarator in the symbol chain
1372         * src/SDCCsymt.h,
1373         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1374         parameter list for function pointers
1375         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1376         * support/regression/tests/bug-716242.c: added
1377
1378 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1379
1380         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1381         offset if possible
1382         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1383
1384 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1385
1386         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1387         inifinitely recurseable, added static
1388         * support/regression/tests/bug-1408066.c: added
1389
1390 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1391
1392         * src/SDCCicode.h,
1393         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1394         renamed, added possibility to create "postLoopLbl"-labels
1395         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1396         newiTempLoopHeaderLabel
1397         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1398         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1399         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1400         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1401         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1402         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1403         (basicInduction): fixed bug #136564, made static,
1404         (loopInduction): changed parameter of basicInduction, made static,
1405         (addPostLoopBlock): added
1406         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1407         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1408         findLoopEndSeq
1409         * support/regression/tests/bug-136564.c: added
1410         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1411         --std-sdcc99 to LIBSDCCFLAGS
1412
1413 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1414
1415         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1416         while loop
1417         * support/regression/tests/bug-1406131.c: added
1418
1419 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1420
1421         * src/SDCCast.c (decorateType): fix promotion of unary minus
1422         * src/SDCCsymt.c (computeType): beautified
1423         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1424         (valUnaryPM, valComplement): fix sign and promotion,
1425         (valNot): ANSI: result type is int (SDCC: unsigned char)
1426         * support/regression/tests/uminus.c: speedup by removing superflous
1427         test case 'int'
1428         * support/regression/tests/onebyte.c: added promotion and signedness
1429         tests for unary minus
1430         * support/regressions/tests/bug-477927.c: disable warning about
1431         uninitialized variables
1432         * support/regression/tests/not.c: added
1433
1434 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1435
1436         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1437         * src/mcs51/gen.c (gen51Code): show final register usage after
1438         fillGaps in asm with --i-code-in-asm
1439         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1440         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1441         incUsed, rliveClear, adjustIChain): made static,
1442         (setFromRange): excluded because it's unused,
1443         (findPrevUseSym, markWholeLoop): added,
1444         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1445         through all branches of predecessors enables sdcc to emit the warning
1446         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1447         (rlivePoint): made static, added parameter emitWarnings which is only
1448         true during the first run out of two,
1449         (findRecursiveSucc, findRecursivePred): removed,
1450         (computeLiveRanges): made static, added parameter emitWarnings,
1451         (dumpIcRlive): added for debugging only
1452         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1453         removed prototype of setFromRange()
1454         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1455         in call of computeLiveRanges()
1456         * support/regression/tests/bug-895992.c: added
1457         * support/regression/tests/bug-971834.c: added
1458         * support/valdiag/tests/bug-895992.c: added
1459         * support/valdiag/tests/bug-971834.c: added
1460
1461 2005-12-18 Raphael Neider <rneider AT web.de>
1462
1463         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1464           (genUnpackBits): improved code for direct operands,
1465           (genPackBits): improved code for literal assignment to bitfields
1466             and for direct destination operands (no FSR indirection),
1467             prevented redundant AND, fixes #1362800,
1468           (AccLsh): added parameter to disable masking of the result
1469         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1470           skip instructions with side-effects (like incfsz),
1471           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1472         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1473         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1474           fixes #1375263
1475
1476 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1477
1478         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1479         volatile variables as spill location
1480
1481 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1482
1483         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1484         replacing literals
1485         * support/regression/tests/bug-1376320.c: added
1486
1487 2005-12-08 Raphael Neider <rneider AT web.de>
1488
1489         * src/pic/device.c: renamed is_shared to pic14_is_shared
1490         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1491         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1492           (is_valid_identifier): added for above workaround
1493
1494 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1495
1496         * device/lib/Makefile.in: fixed to enable port-specific-objects
1497         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1498           char, thanks Hubert Sack
1499         * doc/sdccman.lyx: documented --xstack-loc,
1500           elaborated a bit more on interrupts and pitfalls,
1501           removed "setjmp/longjmp unsupported",
1502           documented some unsupported C99 features
1503         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1504         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1505           if, thanks Hubert Sack
1506         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1507         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1508           make make_library
1509         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1510           regression tests can report resource usage (rfe 700441)
1511         * support/regression/collate-results.py: report resource usage
1512         * support/regression/ports/ds390/spec.mk,
1513         * support/regression/ports/hc08/spec.mk,
1514         * support/regression/ports/mcs51/spec.mk,
1515         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1516         * support/regression/ports/ds390/uCsim.cmd,
1517         * support/regression/ports/hc08/uCsim.cmd,
1518         * support/regression/ports/mcs51/uCsim.cmd,
1519         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1520         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1521           library, use the default one
1522         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1523           building the library
1524
1525 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1526
1527         * config.dsp: added dependency on .version and configure_vc.awk
1528         * device/include/setjmp.h: updated for --stack-auto and --xstack
1529         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1530         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1531         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1532         * device/lib/libsdcc.lib: added _setjmp
1533         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1534           (decorateType): fixed bug 1372851,
1535           (optimizeGetHbit): fixed warning
1536         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1537           array initialisation
1538         * support/regression/tests/bug1057979.c: added test for bug 1358192
1539         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1540
1541 2005-12-03 Borut Razem <borut.razem AT siol.net>
1542
1543         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1544           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1545
1546 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1547
1548         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1549         createIval): implement symbol independant "flexible array member",
1550         (createIvalCharPtr): implemented flexible array initialisation with a
1551         string
1552         * src/SDCCsymt.c (copyStruct): removed,
1553         (getSize): fixed misleading comment,
1554         (getAllocSize): removed, the additional allocation size is now in
1555         sym->flexArrayLength,
1556         (checkStructFlexArray): new, syntax checks for flexible array members,
1557         (compStructSize): added syntax checks for "flexible array members"
1558         (copyStruct): removed,
1559         (copyLinkChain): removed inefficient fix for bug 770487
1560         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1561         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1562         symbol->flexArrayLength
1563         * src/SDCCerr.c,
1564         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1565         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1566         * support/regression/tests/structflexarray.c: added
1567         * support/valdiag/tests/structflexiblearray.c: added
1568
1569 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1570
1571         * src/SDCCast.c (decorateType): fixed bug 1368489
1572         * support/Util/SDCCerr.c,
1573         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1574
1575 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1576
1577         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1578           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1579
1580 2005-11-27 Borut Razem <borut.razem AT siol.net>
1581
1582         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1583           support/cpp2/mkdeps.h: added command line option
1584           -obj-ext=<extension> to SDCPP to define object file externion, used
1585           for generation of make dependencies (-M)
1586         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1587
1588 2005-11-26 Borut Razem <borut.razem AT siol.net>
1589
1590         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1591           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1592           added pic and pic16 libraries
1593
1594 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1595
1596         * device/include/float.h: Corrected typo in prototype of __fsgt
1597
1598 2005-11-25 Borut Razem <borut.razem AT siol.net>
1599
1600         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1601           added creation of model-mcs51-stack-auto libraries
1602
1603 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1604
1605         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1606         and fields-list too
1607         * src/SDCCast.c (createIvalArray): removed obsolete comment
1608
1609 2005-11-24 Borut Razem <borut.razem AT siol.net>
1610
1611         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1612           added missing device/lib/mcs51/crt*.asm sources
1613
1614 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1615
1616         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1617
1618 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1619
1620         * device/lib/_fs2schar.c,
1621         * device/lib/_fs2sint.c,
1622         * device/lib/_fs2slong.c: optimized inline asm
1623
1624 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1625
1626         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1627           Better handling of floats between -1.0 and 0.0.
1628
1629 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1630
1631         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1632           (the missing "if"s prohibited removal of redundant labels)
1633
1634 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1635
1636         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1637           Properly convert floats between -1.0 and 0.0 to long, int, and char
1638           types (max integer value of negative floats tends to zero).
1639         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1640           Removed changes made so to work properly with floats between
1641           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1642           and _fs2char.c
1643
1644 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1645
1646         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1647         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1648         (genCast) cosmetic change
1649         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1650         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1651         from mcs51
1652         * support/regression/tests/bitfields (testSignedBitfields): added
1653
1654 2005-11-18 Borut Razem <borut.razem AT siol.net>
1655
1656         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1657         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1658           introduced SILENT option to make building of pic16 libraries less
1659
1660 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1661
1662         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1663           Now they work properly with floats between -1.0 and 0.0
1664         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1665
1666 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1667
1668         * src/SDCCicode.c (printOperand): added missing else
1669
1670 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1671
1672         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1673         reformatted for better readability
1674         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1675         signed bitfields
1676
1677 2005-11-17 Borut Razem <borut.razem AT siol.net>
1678
1679         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1680           introduced SILENT option to make building of pic16 libraries less
1681           verbose - used for nightly snapshot build
1682         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1683           available on Win32 platforms.
1684         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1685           medium, large, pic and pic16
1686
1687 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1688
1689         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1690           printf("%f"...) sets fraction to zero.
1691
1692 2005-11-16 Raphael Neider <rneider AT web.de>
1693
1694         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1695           fixes #1357221
1696         * src/pic/gen.c (genIfx): implemented for CARRY bit
1697         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1698           to generic pointers, fixes #1357332,
1699           (pic16_movLit2f): NEW,
1700           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1701
1702 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1703
1704         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1705
1706 2005-11-11 Raphael Neider <rneider AT web.de>
1707
1708         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1709         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1710           compute pointer's type from operand,
1711           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1712           improved single bit reads, fixes bug #1353379
1713
1714 2005-11-09 Borut Razem <borut.razem AT siol.net>
1715
1716         * support/scripts/sdcc.nsi: added lib/pic to the package
1717
1718 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1719
1720         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1721
1722 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1723
1724         * support/regression/tests/bug1348008.c: added
1725         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1726         * support/regression/tests/bug1337835.c: updated comment
1727
1728 2005-11-06 Borut Razem <borut.razem AT siol.net>
1729
1730         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1731           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1732           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1733           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1734           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1735           dynamic construction of cl_error_class and derivates - 2.nd try
1736
1737 2005-11-05 Borut Razem <borut.razem AT siol.net>
1738
1739         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1740           bug, which caused Bus Errors on sparc solaris
1741
1742 2005-11-04 Borut Razem <borut.razem AT siol.net>
1743
1744         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1745           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1746           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1747           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1748           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1749           and derivates to resolve the initialization problem on OSX
1750
1751 2005-11-02 Borut Razem <borut.razem AT siol.net>
1752
1753         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1754           corrected typo - #include <winsock2.h>
1755
1756 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1757
1758         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1759           (_asxxxx_mapping): added org directive for future enhancements
1760
1761 2005-11-01 Borut Razem <borut.razem AT siol.net>
1762
1763         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1764           enabled sockets on WIN32
1765         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1766
1767 2005-10-31 Borut Razem <borut.razem AT siol.net>
1768
1769         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1770           WIN32 backslash path delimiters should be escaped when used in C strings
1771         * support/regression/tests/bitfields.c: exclude failing assertions for
1772           __CYGWIN32__ and __MINGW32__ hosts
1773
1774 2005-10-30 Borut Razem <borut.razem AT siol.net>
1775
1776         * src/SDCCutil.c: corrected double comparison typo
1777
1778 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1779
1780         * device/lib/medium/Makefile: added for new memory model medium
1781         * device/include/asm/mcs51/features.h: updated for medium/pdata
1782         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1783           added Multiply & Accumulate sbit's and MAC0_PAGE define
1784         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1785         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1786         * device/lib/_mullong.c: update for medium model
1787         * device/lib/incl.mk: added medium model
1788         * doc/sdccman.lyx: documented medium model
1789         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1790         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1791         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1792         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1793           (allocParms): set SCLS and OCLS to pdata for medium model
1794         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1795           for pdata,
1796           (powof2): return <0 if not power of 2
1797         * src/avr/gen.c (genBitWise): use updated powof2
1798         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1799           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1800           (shiftLLeftOrResult): use B if necessary
1801         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1802         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1803         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1804         * support/regression/Makefile.in: added test-mcs51-medium
1805         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1806
1807 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1808
1809         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1810         specifier unsigned
1811         * device/lib/time.c (mktime): fixed bug 1334315
1812
1813 2005-10-28 Raphael Neider <rneider AT web.de>
1814
1815         * device/include/pic/p16f_common.inc: added common declarations
1816         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1817
1818 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1819
1820         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1821           (aopPutUsesAcc): added to predict accumulator use,
1822           (assignResultValue): save acc if necessary,
1823           (genMinusDec): store result if indirectly addressed,
1824           (genDivOneByte):  save acc if necessary,
1825           (movLeft2Result): bugfix if left already in acc,
1826           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1827             attention to accumulator use (esp. pdata),
1828           (genReceive): receive pdata correctly
1829         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1830         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1831
1832 2005-10-27 Raphael Neider <rneider AT web.de>
1833
1834         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1835
1836 2005-10-27 Raphael Neider <rneider AT web.de>
1837
1838         * .version: changed version to 2.5.4
1839         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1840         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1841           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1842             arithmetics support routines
1843         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1844         * device/lib/Makefile.in: also create installdir for pic
1845
1846         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1847           pic14 port as well
1848         * src/pic/device.c (dump_sfr): rewritten to delegate register
1849           placement to the linker (use `extern sym' rather than sym EQU addr),
1850           (validAddress): fixed to check last specified address
1851         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1852           (popGetLit): truncate literal value to 8 bit,
1853           (popGet): moved assert to more appropriate place
1854           (popGetExternal): create pCode operand from and mark the according
1855             symbol as being `extern'
1856           (popGetAddr): added sanity check on immediate's offset, provide
1857             GPOINTER tag on demand
1858           (aopPut): fixed for immediates,
1859           (mov2w_op): move operand's address or contents to WREG (depending on
1860             operand type), safer variant of mov2w,
1861           (movwf,call_libraryfunc): NEW, handy abbreviations,
1862           (get_argument_pcop,get_return_val_pcop,pass_argument,
1863           get_returnvalue): interface for accessing function parameters and
1864             return values,
1865           (assignResultValuei,genRet): use new parameter/return value interface
1866           (pic14_getDataSize): back to old version handling generic pointers,
1867           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1868             provided implementation and/or fixed old one,
1869           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1870             calls, removed legacy 8051 reference code
1871           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1872           (loadSignToC): NEW, move the operands sign bit to CARRY,
1873           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1874             genRightShiftSigned, accepts negative shift counts,
1875           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1876           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1877             generic pointers, __data pointers and __code pointers,
1878           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1879             and signed bitfields, limit bitfields to 8 bit,
1880           (genDataPointerGet): fixed number of bytes read,
1881           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1882           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1883             pointers to constant data are no longer assumed to point to __code
1884             space, removed invalid pointer types,
1885           (bitpatternFromVal): retrieve the PICs representation of an integer
1886             or float literal,
1887           (genDataPointerSet): fixed assigning to po_immediate operands,
1888           (genGenPointerSet): implemented as library call,
1889           (genIfx): fixed incorrect condition,
1890           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1891             provide GPOINTER tag according to destination's storage class,
1892           (genCast): added code to handle casting to generic pointers, added
1893             sign-/zero extension of the result
1894           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1895         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1896         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1897           extend the result
1898         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1899           address/register resides in the shared banks
1900           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1901             put all variables into separate sections (have the linker arrange
1902             them)
1903           (picglue): put init code and interrupt handlers in separate sections
1904         * src/pic/main.c: added port specific options table, modified to PORT
1905           structure to make GPOINTERs 3 byte, added pic14_options
1906           (_pic14_do_link): private linking routine (update paths to libraries,
1907             add libsdcc.lib by default)
1908         * src/pic/main.h: declare pic14_options
1909         * src/pic/pcode.c: fixed instructions i/o relations,
1910           (RegCond): reverted to correct version,
1911           (newpCodeOpLit): truncate literals to 8 bit,
1912           (genericPrint): added debug output,
1913           (getRegFromInstruction): fixed for various operand types, simplified
1914           (BuildFlow): fixed broken handling of isntructions with labels
1915           (LinkFlow): start at last instruction in flow (skip trailing comments),
1916             pass the flow on to the next instruction after CALL
1917           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1918           (insertPCodeInstruction): fixed inserting after a skip instruction,
1919           (DoBankSelect): fixed for labeled instructions
1920           (OptimizepBlock): honor --nopeep switch
1921           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1922         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1923         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1924           (pCodeOptime2pCodes): allow disabling this optimization via
1925             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1926             but is still buggy), started implementation of a dataflow based
1927             pCode optimization (CSE + dead code elimination)
1928           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1929         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1930           names are independant of the stack location and therefore portable across
1931           devices
1932
1933 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1934
1935         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1936           (selectSpil): fixed bug 1337835 by not spilling bit variables
1937         * support/regression/tests/bug1337835.c: added test for this bug
1938         * src/mcs51/peeph.def: restart after rule 3.c,
1939           addded rules 263.x to optimize loading constants
1940
1941 2005-10-26 Raphael Neider <rneider AT web.de>
1942
1943         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1944         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1945           (genAssign): emit warning when casting literals to generic pointer
1946             type, also applies when taking the address of a fixed variable,
1947           (genCast): improved casting to generic pointers
1948         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1949           extern variables, added verbose error message
1950         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1951
1952 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1953
1954         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1955         carry must be complemented too
1956         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1957         could be emitted by genMinus
1958         * src/SDCCval.c (constVal): fixed bug 1305065
1959
1960 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1961
1962         * src/SDCCast.c (addCast): added promotion for bit variables
1963         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1964         promotion casts + optimisation
1965         (optimizeGetWord): fix warning 'i' might be used uninitialized
1966         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1967         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1968
1969 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1970
1971         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1972         all chars are promoted to int; promotion should be handled in SDCCast.c
1973
1974 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1975
1976         * device/lib/_strcmp.c: Fixed bug 1326457
1977
1978 2005-10-11 Raphael Neider <rneider AT web.de>
1979
1980         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1981         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1982
1983 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1984
1985         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1986         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1987
1988 2005-10-04 Raphael Neider <rneider AT web.de>
1989
1990         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1991           device/lib/pic16/pics.all: added pic18f1320
1992         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1993
1994 2005-09-30 Raphael Neider <rneider AT web.de>
1995
1996         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1997         * src/pic16/devices.inc: NEW, provides device descriptions
1998         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1999
2000 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
2001
2002         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
2003           GETHBIT
2004
2005 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
2006
2007         * doc/sdccman.lyx: updated Highest Order Bit documentation,
2008           documented Any Order Bit, Higher Order Byte and Higher Order Word
2009         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
2010         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
2011           (optimizeGetAbit): new, to get any bit, not only the high bit,
2012           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
2013           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
2014           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
2015           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
2016             RIGHT_OP: also try GETBYTE, GETWORD optimization,
2017             GETABIT, GETBYTE, GETWORD: decorate them,
2018           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
2019           (ast_print): added GETABIT, GETBYTE, GETWORD
2020         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
2021         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
2022           (geniCodeBinary): new generic binary icode,
2023           (ast2iCode): added GETABIT, GETBYTE, GETWORD
2024         * src/port.h: updated comment for PORT.hasExtBitOp
2025         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
2026           (genGetByte): new, to get a single byte,
2027           (genGetWord): new, to get a word from a long,
2028           (gen51Code): added GETABIT, GETBYTE, GETWORD
2029         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
2030
2031 2005-09-23 Raphael Neider <rneider AT web.de>
2032
2033         * configure.in, configure: have device/lib/pic configured
2034         * device/lib/Makefile.in: added model-pic14
2035         * device/lib/clean.mk: added pic/ to clean rule
2036         * device/lib/pic: added rudimentary pic14 library providing support
2037           functions for multiplication/division/generic pointer access
2038         * src/SDCCopt.c (convilong): mark support functions as extern
2039           for pic14 port as well
2040         * src/pic/gen.c (genMult): added assertions,
2041           (genpic14Code): emit warning on unhandled iCodes
2042         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
2043         * src/pic/pcode.c (pCodeOpCopy),
2044         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
2045           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
2046           SFR_REGISTER}), made safe for future extensions
2047         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
2048           instructions even if preceeded by SKIP instructions (also remove
2049           them); removed unused code
2050         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
2051           prevents leaving parts of the structure uninitialized after copying
2052
2053 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
2054
2055         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
2056           ago by me
2057         * support/regression/tests/addsub.c: added test for the bug
2058
2059 2005-09-21 Raphael Neider <rneider AT web.de>
2060
2061         * device/include/pic16/pic18f1220.h,
2062           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2063         * device/lib/pic16/Makefile.rules: added missing opening paren
2064         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2065           are provided in genutils.c,
2066           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2067           operand/result sizes,
2068           (genCmp): assert on NULL pointers first, then check deref'ed values
2069         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2070           result size
2071
2072 2005-09-18 Raphael Neider <rneider AT web.de>
2073
2074         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2075           as these are now unused,
2076           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2077         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2078           local, avoids uninitialized pointer dereference on r->name
2079         * src/pic16/ralloc.c (newReg): fixed indentation
2080
2081 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2082
2083         * src/SDCCval.c (constVal): fixed bug 730366
2084         * support/Util/SDCCerr.c,
2085         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2086
2087 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2088
2089         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2090
2091 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2092
2093         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2094
2095 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2096
2097         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2098           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2099         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2100           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2101         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2102         * packihx/packihx.c (hexDigit): made c unsigned char
2103         * as/mcs51/lklibr.c (fndsym),
2104         * link/z80/lkgb.c (gb),
2105         * link/z80/lklibr.c (fndsym),
2106         * link/z80/lkrloc.c (relr),
2107         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2108         * src/SDCC.lex (checkCurrFile, process_pragma),
2109         * src/SDCCglue.c (spacesToUnderscores),
2110         * src/SDCCmain.c (setParseWithComma, processFile),
2111         * src/asm.c (tvsprintf, printCLine),
2112         * src/avr/gen.c (emitcode, aopPut),
2113         * src/ds390/gen.c (emitcode),
2114         * src/hc08/gen.c (emitcode, emitinline),
2115         * src/mcs51/gen.c (emitcode, genInline),
2116         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2117           tokenizeLineNode),
2118         * src/pic/ralloc.c (debugLog),
2119         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2120           tokenizeLineNode),
2121         * src/pic16/ralloc.c (debugLog),
2122         * src/z80/main.c (_process_pragma):
2123            made all ctype.h function calls safe
2124         * src/SDCCopt.c: include math.h for fabs
2125         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2126           and used them throughout the code to make ctype.h function calls safe
2127         * src/ds390/main.c (asmLineNodeFromLineNode),
2128         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2129         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2130            unsigned char*
2131         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2132           (newpCodeAsmDir): made ctype.h function calls safe
2133         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2134           pic16_emitcode):  made lbp unsigned char*
2135         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2136           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2137         * src/xa51/gen.c (emitcode),
2138         * src/z80/gen.c (_emit2): made lbp unsigned char*
2139         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2140            char*
2141
2142 2005-09-05 Raphael Neider <rneider AT web.de>
2143
2144         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2145           access bank splitpoint
2146
2147 2005-09-05 Raphael Neider <rneider AT web.de>
2148
2149         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2150
2151 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2152
2153         * .version: changed to version 2.5.3
2154         * doc/sdccman.lyx: changed version to 2.5.3,
2155           documented --codeseg and --constseg and pragma codeseg and constseg,
2156           documented bit parameters (reentrant) and bit returning
2157         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2158            currFunc->recvSize, but is this ok for all ports?
2159           (ast2iCode): result of ~ on unsigned char must be cast to int for
2160            bool to work
2161         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2162           function pointers in bit space
2163         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2164           (processFuncArgs): call port.reg_parm() with reentrancy info
2165         * src/port.h,
2166         * src/avr/main.c,
2167         * src/ds390/main.c,
2168         * src/hc08/main.c,
2169         * src/pic/main.c,
2170         * src/pic16/main.c,
2171         * src/xa51/main.c,
2172         * src/z80/main.c: port.reg_parm prototype extended with
2173           "bool reentrant" parameter
2174         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2175           options.stackAuto for allocating bit register parameters
2176         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2177           (genSend): set BitBankUsed if it is,
2178           (selectRegBank): factored out of genCall for use in genPcall,
2179           (genCall): removed redundant dtype assignmen, use selectRegBank,
2180           (genPcall): handle returning in Carry properly, save in F0 if needed,
2181           (genReceive): handle bit register parameters
2182         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2183           (mcs51_assignRegisters): enable bit registers for all reentrant
2184            functions and don't set BitBankUsed unconditionally
2185         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2186         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2187         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2188
2189 2005-08-27 Borut Razem <borut.razem AT siol.net>
2190
2191         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2192         ppc-osx (Darwin) does not support -u option. It seems that it is
2193         supported only on Linux - GNU cp
2194
2195 2005-08-25 Borut Razem <borut.razem AT siol.net>
2196
2197         * sim/ucsim/gui.src/serio.src/Makefile.in,
2198           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2199           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2200           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2201           install and strip, since the strip at /usr/ccs/bin should be used
2202           on solaris
2203
2204 2005-08-24 Borut Razem <borut.razem AT siol.net>
2205
2206         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2207
2208 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2209
2210         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2211         ffffffffu
2212
2213 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2214
2215         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2216         * as/mcs51/lkmain.c (link_main): fixed warning
2217         * device/include/stdbool.h: ds390 has no advanced bit support yet
2218         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2219         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2220         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2221           and updated their macros
2222         * src/SDCCval.c (constVal): updated comment for renamed b_long
2223
2224 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2225
2226         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2227         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2228           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2229           (oprio): set priority for '['
2230         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2231            and adb_24_bit
2232         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2233         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2234         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2235         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2236           added overlayable BIT_BANK area
2237         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2238           (summary2): explain 'T' in legenda
2239         * as/mcs51/lkrloc.c: replaced old K&R style,
2240           (relr): added R_BIT processing,
2241           (errmsg): added "Bit-addressable relocation error",
2242           (adb_bit): added for converting from byte- to bit-addressable space,
2243           (adb_24_bit): added for converting from byte- to bit-addressable space
2244         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2245            used in reentrant functions now even as return value
2246         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2247         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2248           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2249         * src/SDCCglobl.h: added indicator BitBankUsed
2250         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2251            the bit registers b0-b7
2252         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2253           (geniCodeCast): fixed bug 1263853,
2254           (geniCodeLogicAndOr): put result in bool or char,
2255           (geniCodeReceive): added parameter func for accessing the return type,
2256           (geniCodeFunctionBody): pass func to geniCodeReceive
2257         * src/SDCCmain.c: added indicator BitBankUsed
2258         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2259         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2260           (checkSClass): don't put automatic bool/bit on stack,
2261           (checkFunction): removed check on function cannot return bit
2262         * src/SDCCsymt.h: added newBoolLink prototype
2263         * src/mcs51/gen.c (rb1regs): added bit registers,
2264           (movc): created for assigning to carry,
2265           (pushReg, popReg): created for pushing registers,
2266           (sameRegs): check both AOP_REG and AOP_CRY types,
2267           (aopOp): handle bit registers,
2268           (aopPut): optimization no self-assign,
2269           (saveRegisters): push reg->base (bits) only once for bit registers,
2270            and use pushReg,
2271           (unsaveRegisters): pop reg->base only once and use popReg,
2272           (assignResultValue): added parameter func and return in carry for bits,
2273           (genIpush): optimization no reload in A if not changed,
2274           (genSend): bit parameters in reentrant functions are passed in bit
2275            registers by first assigning to bits in B, then save registers and
2276            copy B to bits,
2277           (genCall): handle returning in Carry properly, save it in F0 if needed,
2278           (genPcall): updated assignResultValue call, this is not safe yet for bit
2279            returning function !!!
2280           (genFunction): don't generate equ's for bit registers and use pushReg,
2281           (genEndFunction): take care of bit returning functions and use popReg,
2282           (genRet): return bit in Carry,
2283           (genIfx): optimize bit registers and other directly addressable bits,
2284           (genReceive): updated assignResultValue call
2285         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2286           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2287            registers when using stack-auto
2288         * src/mcs51/ralloc.c (_G): added allBitregs,
2289           (regs8051): added the bit registers,
2290           (createStackSpil): use macro IS_BIT,
2291           (getRegBit): added to allocate a bit register, else spill,
2292           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2293           (updateRegUsage): factored out to ease stepping while debugging,
2294           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2295            also allocate bit registers,
2296           (fillGaps): handle bit registers,
2297           (findAllBitregs): added to create bit vector with all bit registers,
2298           (mcs51_allBitregs): returns this bit vector,
2299           (mcs51_assignRegisters): when using stack-auto use bit registers for
2300            passing parameters and creating local variables
2301         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2302
2303 2005-08-22 Borut Razem <borut.razem AT siol.net>
2304
2305         * device/lib/Makefile.in: replaced find option -or with -o
2306           to make it run on solaris
2307
2308 2005-08-22 Raphael Neider <rneider AT web.de>
2309
2310         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2311           fixes #1265442 (crash on Solaris)
2312
2313 2005-08-20 Borut Razem <borut.razem AT siol.net>
2314
2315         * configure, configure.in: added tests for libsocket and libnsl libraries,
2316           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2317           from support/regression/Makefile.in
2318         * support/regression/Makefile.in: added
2319         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2320         * sim/ucsim/libtool: regenerated on sparc-solaris
2321         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2322           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2323           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2324           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2325           sparc-solaris, which doesn't use GNU ld linker
2326         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2327         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2328
2329 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2330
2331         * src/mcs51/peeph.def: updated comments
2332
2333 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2334
2335         * device/lib/_gptrget.c,
2336         * device/lib/_gptrput.c: slightly shorter
2337         * doc/sdccman.lyx: incremented version
2338         * src/mcs51/peeph.def: moved peephole comments to the line of first
2339           change to better keep line correlation, reanimated 186.e
2340         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2341
2342 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2343
2344         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2345           David Saxton with quotes around file name.
2346
2347 2005-08-15 Borut Razem <borut.razem AT siol.net>
2348
2349         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2350           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2351           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2352           make tests run on x86_64 platform
2353
2354 2005-08-13 Raphael Neider <rneider AT web.de>
2355
2356         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2357           as it might be executed DURING a build (parallel make is wonderful)
2358
2359 2005-08-13 Raphael Neider <rneider AT web.de>
2360
2361         * device/lib/Makefile.in (port-specific-objects-pic16):
2362           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2363         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2364           dependency
2365         * device/lib/pic16/Makefile.rules: build subdirs before creating
2366           the library, removed builddir rule, create $(builddir) early in
2367           recurse rule, use empty recurse rule for leaf directories
2368         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2369           mkdir errors (race condition), removed duplicate suffix "hex"
2370           from clean rules
2371         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2372         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2373           prevents mkdir -p from aborting on Alpha
2374
2375 2005-08-12 Raphael Neider <rneider AT web.de>
2376
2377         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2378           db-statements in order to allow for arrays of pointers in code
2379           sections to be placed without interspersed 0-padding, fixes
2380           bug #1256215
2381         * (emitStatistics): fixed division by zero for pic18f1220
2382         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2383           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2384         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2385         * (pic16_pCodeConstString): keep track of already emitted string
2386           literals to prevent "duplicate definitions of symbol _str_NR"
2387         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2388           debug message
2389         * device/lib/Makefile.in: ignore failing PIC16 library builds
2390         * device/lib/pic16/Makefile: do not build if gputils are missing
2391         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2392
2393 2005-08-10 Raphael Neider <rneider AT web.de>
2394
2395         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2396           my last commit)
2397
2398 2005-08-10 Raphael Neider <rneider AT web.de>
2399
2400         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2401           Rokas' patch to add the new fixed point type "__fixed16x16"
2402         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2403           functions for __fixed16x16 arithmetics
2404         * device/lib/pic16: reimplemented the build system to support
2405           a separate build directory, better handling of libio (create
2406           the library in a separate subdir for each architecture) and
2407           easier configuration (centralized in Makefile.common)
2408
2409 2005-08-07 Raphael Neider <rneider AT web.de>
2410
2411         * src/pic16/gen.c (genrshTwo): fixed sign extension
2412         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2413         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2414           added T0CONbits
2415         * device/include/pic16/pic18f4220.h: NEW, header for
2416           pic18f4220 and pic18f4320
2417         * device/include/pic16/pic18fregs.h: added new devices,
2418           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2419         * device/include/pic16/signal.h: resolved name clashes
2420           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2421           to also allow testing for interrupt enable bits, added
2422           comments on how to use the macros
2423         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2424         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2425           register definitions for the devices
2426         * device/lib/pic16/pics.all: added new devices
2427         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2428           allocated memory
2429         * device/lib/pic16/libc/stdlib/memfree: do not count
2430           the block header as free memory
2431         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2432           simplified and added missing end-of-blocklist-marker
2433           (reported by Peter Onion, fixes #1252814)
2434         * (_mergeHeapBlock): fixed loop condition
2435         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2436           len==0, restructured code
2437         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2438           up a bit, reduced bitfield accesses, prevent endless loops
2439           in case of heap corruption
2440         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2441           "unreferenced arguments/must return a value" warnings
2442         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2443           replaced BAUDREG with SPBRG
2444         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2445           device/lib/pic16/debug/gstack/gstack.c: replaced
2446           _naked, _asm, _endasm with __naked, __asm, __endasm
2447
2448 2005-08-05 Raphael Neider <rneider AT web.de>
2449
2450         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2451           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2452
2453 2005-08-05 Borut Razem <borut.razem AT siol.net>
2454
2455         * device/lib/Makefile.in: added missing ';'
2456         * configure: removed ^M characters
2457
2458 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2459
2460         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2461           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2462           License
2463
2464 2005-08-04 Borut Razem <borut.razem AT siol.net>
2465
2466         * configure.in: pic16 libraries build 2nd try - enable running
2467           configure in device/lib/pic16
2468         * configure: regenerated from configure.in
2469         * device/lib/Makefile.in: create $(PORT)/bin directory
2470
2471 2005-08-03 Raphael Neider <rneider AT web.de>
2472
2473         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2474           to get/set values via pointers
2475         * (genUnpackBits,genPackBits): changed detection of
2476           ptr->bitfield vs. sym.bitfield, fixed access via generic
2477           pointers, removed dead (wrong) code for multibyte bitfields
2478         * (genNearPointerGet, genGenPointerGet): removed useless code,
2479           fixed bitfield detection, fixes #1250594
2480         * (genNearPointerSet): removed useless code
2481         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2482           and introduced macro pic16_emitpcode that conditionally emits
2483           the origin of the following pCode (useful for debugging SDCC)
2484         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2485         * (createDefmap): fixed handling of LFSR for --optimize-df
2486
2487 2005-08-02 Borut Razem <borut.razem AT siol.net>
2488
2489         * device/lib/Makefile.in: pic16 libraries build enabled since
2490           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2491
2492 2005-08-02 Raphael Neider <rneider AT web.de>
2493
2494         * src/pic16/gen.c (genPackBits): removed deprecated warning
2495         * (genGenPointerSet): fixed bitfield detection
2496
2497 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2498
2499         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2500
2501 2005-07-31 Raphael Neider <rneider AT web.de>
2502
2503         * device/lib/pic16/libdev/pic18f458.c,
2504           device/include/pic16/pic18f458.h: added missing T0CONbits
2505
2506 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2507
2508         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2509
2510 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2511
2512         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2513
2514 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2515
2516         * device/include/mcs51/at89c51ed2.h: added.
2517
2518 2005-07-23 Raphael Neider <rneider AT web.de>
2519
2520         * src/pic/gen.h: added emitpcode macro for debugging
2521         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2522           and replace by macro adding debug information on demand
2523         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2524         * (gencjne): tried to fix; replaced with correct (slower) code
2525         * (gen{Unp,P}ackBits): fixed single bit access
2526         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2527         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2528           previous instruction
2529         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2530           register has to be handled with care (forbidding movement
2531           of assignments/uses, removing assignments completely, ...)
2532         * (pCodeOptime2pCodes): make use of regIsSpecial
2533         * added lots of debugging output (commented out)
2534         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2535           from being reused as result UNLESS it is known to work
2536
2537 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2538
2539         * support/Util/dbuf.h: include <stddef.h> for size_t
2540         * .version: changed to version 2.5.2
2541
2542 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2543
2544         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2545
2546 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2547
2548         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2549           (genModOneByte): removed needless psha/pula
2550
2551 2005-07-22 Raphael Neider <rneider AT web.de>
2552
2553         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2554           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2555         * src/pic/gen.c (resolveIfx): do not "invent" labels
2556         * (genSkipc): changed to positive logic
2557         * (genSkipCond): removed as no longer needed
2558         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2559           backport from PIC16
2560         * (genLeftShift): check operands are in different registers
2561         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2562           INCF does not update CARRY...
2563         * src/pic/main.c: fixed _linkCmd
2564         * src/pic/pcode.c (unlinkpCode): added inactive code
2565         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2566           alive (do not assign result and operand overlapping registers)
2567
2568 2005-07-22 Raphael Neider <rneider AT web.de>
2569
2570         * src/pic/device.c (dump_sfr): replaced register declaration with
2571           call to emitSymbolToFile() to avoid duplicate symbols
2572         * (assignRelocatableRegisters): do not declare external symbols
2573         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2574           right (take size of type, not etype)
2575         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2576         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2577         * (packRegsForAccUse): disabled assignment of WREG as
2578           the result reg to prevent occurence of just fixed #1235003,
2579           fixes #1242954
2580         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2581           symbols (avoids duplicate symbols in .asm file)
2582         * (pic14emitRegularMap): use emitSymbolToFile()
2583         * src/pic/gen.c (aopOp): fixed spillLocation handling
2584         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2585         * (genDataPointerSet): removed unneccessary variables/output
2586
2587 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2588
2589         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2590         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2591
2592 2005-07-21 Raphael Neider <rneider AT web.de>
2593
2594         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2595           architecture cannot handle them efficiently, fixes bug #1235003
2596         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2597           check for empty sets before using them (fixes bug #1232190)
2598
2599 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2600
2601         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2602           (lnksect2): generate warnings for memory overlap
2603         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2604           constseg to set the name of these segments so you can instruct the linker
2605           to place them in banks
2606         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2607         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2608           added code_seg and const_seg to options
2609         * src/SDCCglue.c (emitMaps): use options.const_seg,
2610           (createInterruptVect): put interrupt vectors in segment HOME,
2611           (glue): put HOME before static segment and put the main glue in HOME,
2612           (glue): use options.code_seg
2613         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2614         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2615           these segments so you can instruct the linker to place them in banks
2616           (linkEdit): use code_loc for HOME segment which should be the first
2617           segment in code memory now
2618         * src/SDCCmem.c: fixed more stuff like bug 1238386
2619         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2620           (changePointer): don't change function pointers to code pointers for
2621           banked functions,
2622           (compareType): added exceptional check for banked function pointers
2623         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2624         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2625           after static in code memory
2626         * src/mcs51/gen.c: added aopLiteralLong prototype,
2627           (aopForSym): use getSize for functions,
2628           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2629           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2630           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2631           the segment,
2632           (genPcall): use call for literal function pointers and generate banked
2633           calls over the one trampoline so there's only one place for the user to
2634           modify according to his/hers hardware,
2635           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2636           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2637         * src/mcs51/main.c: added keyword banked,
2638           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2639         * support/Util/SDCCerr.c,
2640         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2641           needed for passing the bank and address to the trampoline
2642         * device/lib/mcs51/crtbank.asm: added for bankswitching
2643         * device/lib/mcs51/Makefile: added crtbank
2644
2645 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2646
2647         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2648           for fields at offset 0 of a struct or union as reported
2649           on 2005-07-07 in the developer mailing list.
2650
2651 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2652
2653         * src/SDCCmem.c: fixed bug 1238386
2654
2655 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2656
2657         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2658           (patch #1144962), added peephole 300, enabled 259.x
2659         * doc/sdccman.lyx: removed screenshot and provided link instead
2660
2661 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2662
2663         * doc/sdccman.lyx: added section about debugging with ddd
2664         * doc/figures/ddd_example.eps: screenshot of debugging session
2665
2666 2005-07-04 Raphael Neider <rneider AT web.de>
2667
2668         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2669           like CODE pointers, fixes #1115683
2670         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2671           call, fixes bugs #1232211, #1228110,
2672           fixed wrong casts to pCodeFlow from pCodeInstructions
2673
2674 2005-07-04 Raphael Neider <rneider AT web.de>
2675
2676         * src/pic/gen.c (popGet): changed assert to allow for
2677           bit operands
2678         * (popGetAddr): changed signature to provide
2679           an additional index, patched all call sites
2680         * (genCmpEq): handle literal-like operands correctly
2681         * (genAddrOf): added sanity checks on __code/__data pointers
2682         * (genAssign): added handling of symbols from __code section
2683         * (gencjne): do not generate code for comparisons whose result
2684           is neither stored nor used, fixes bug #1171114
2685         * (AccLsh, AccRsh): operate on operand instead of WREG
2686         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2687           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2688           by known count
2689         * rewrote complete shift-by-literal logic, commented unused
2690           functions out
2691         * (genConstPointerGet): get multiple bytes (if result size > 1),
2692           fixed handling of non-immediate addresses
2693         * (genPointerGet): handle CODE pointers like CONST pointers
2694         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2695         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2696           operand is to be treated as a literal or not
2697         * (mov2w,genPcall,genCmpEq),
2698           src/pic/genarith.c: use aop_isLitLike() to decide between
2699           literal/register contents
2700         * (addSign): added missing offset
2701         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2702           only emit comment in debug-mode,
2703           use {aop,op}_isLitLike throughout the file
2704         * src/pic/glue.c: fix initializers for pointers (work in progress)
2705         * src/pic/pcode.c (get_op): honor index on _const symbols
2706         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2707         * (dumppBlock): added pCode size estimation
2708         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2709           check for IS_SYMOP before OP_SYMBOL'ing
2710         * fixed indentation, compacted switch-statements
2711         * (allocReg): find free register and allocate it instead of
2712           allocating new registers all the time
2713         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2714           registers as its operands (necessary only for multibyte GETs)
2715
2716 2005-07-01 Raphael Neider <rneider AT web.de>
2717
2718         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2719           debugging .asm-output macros FENTRY + FEXIT
2720         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2721           way... I wonder...
2722         * (emitpComment): NEW, printf to pCode
2723         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2724           offset handling
2725         * (popGetAddr): NEW, variant of popGet to access an immediates
2726           high(er) bytes instead of the n'th byte of memory they reference,
2727           replaced popGet with popGetAddr where neccessary
2728         * (genDataPointerGet): reactivated and fixed implementation
2729         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2730           accesses
2731         * (genDataPointerSet): fixed multibyte assignments
2732         * (genpic14Code): fixed --i-code-in-asm handling
2733         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2734         * (genPlus): fixed index-out-of-bounds error
2735         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2736         * src/pic/ralloc.c: added debugging output macro FENTRY2
2737         * (spillThis): fixed indentation, enbraced for-body for clarity
2738         * (rematStr): commented out as now unused
2739         * (regTypeNum): commented out special spill case (overwrites
2740           arbitrary values)
2741         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2742
2743 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2744
2745         * doc/sdccman.lyx: documented sfr16/sfr32,
2746           added example for using storage class with function pointers
2747         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2748
2749 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2750
2751         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2752         * device/lib/_itoa.c,
2753         * device/lib/_ltoa.c: optimized codesize
2754         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2755           but don't know how to suppress the double warning.
2756         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2757         * support/Util/SDCCerr.c,
2758         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2759
2760 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2761
2762         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2763           fixed old K&R prototypes
2764         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2765         * device/lib/_gptrget.c,
2766         * device/lib/_gptrgetc.c,
2767         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2768           also new versions for small generic pointers and banked generic pointers
2769         * src/port.h: added const_name
2770         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2771         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2772         * src/SDCCcse.c (findPrevIc): check all associative operators
2773         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2774         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2775         * src/SDCCmem.c: updated comments,
2776           set far-space to 0 for pdata, results in optimized code
2777         * src/SDCCmem.h: added macro CONST_NAME
2778         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2779           moving the info into the highest bits, see also gptrget/gptrput
2780         * src/src.dsp: added sdcc.ico to project files
2781         * src/avr/gen.c (genCast): fixed bug 0x%d
2782         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2783         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2784           relation between ptr_type and DCL_TYPE,
2785           (genCast): fixed bug 0x%d
2786         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2787           (CODE)" for const_name
2788         * src/hc08/gen.c (genCast): fixed bug 0x%d
2789         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2790           (hc08_port): added "CONST (CODE)" for const_name
2791         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2792           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2793           between ptr_type and DCL_TYPE,
2794           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2795           operand* and took AOP() inside function so sfr-ness can be checked,
2796           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2797           new prototype,
2798           (genFunction, genEndFunction): optimized stack setup,
2799           (genMinus): optimized for literals with ending zeroes (in bytes),
2800           (genCast): fixed bug 0x%d
2801         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2802           (mcs51_port): added "CONST (CODE)" for const_name
2803         * src/mcs51/peeph.def: made rule 226 more generic
2804         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2805         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2806         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2807         * src/z80/main.c (z80_port): added NULL for const_name,
2808           (gbz80_port): added NULL for const_name
2809         * support/regression/tests/bug663539.c,
2810         * support/regression/tests/sfr16.c: new tests
2811
2812 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2813
2814         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2815
2816 2005-06-24 Raphael Neider <rneider AT web.de>
2817
2818         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2819           corrected typos...
2820         * device/include/pic16/signal.h: added USBIF
2821           and SIG_USB
2822
2823 2005-06-24 Raphael Neider <rneider AT web.de>
2824
2825         * device/lib/pic16/libdev/pic18f2455.c,
2826           device/include/pic16/pic18f2455.h: NEW
2827         * device/include/pic16/pic18fregs.h,
2828           device/lib/pic16/pics.all,
2829           src/pic16/device.c: added 18f2455
2830         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2831           device/include/pic16/{pic18f[68][567].h,usart.h}:
2832           replaced MULTIPLE_USARTS define with more relaible
2833           compatibility sfrs (for USART access)
2834
2835 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2836
2837         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2838           and the output asm file line is printed on two lines.
2839
2840 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2841
2842         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2843           BGT, BLE, BHI, and BLS instructions
2844         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2845           genCmpEq): removed
2846         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2847           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2848           fixes bug #1216342
2849         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2850
2851 2005-06-15 Raphael Neider <rneider AT web.de>
2852
2853         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2854         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2855         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2856           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2857           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2858
2859 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2860
2861         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2862           Marcel Telka in bug #1215704
2863
2864 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2865
2866         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2867           located in shared memory bank.
2868
2869 2005-05-31 Raphael Neider <rneider AT web.de>
2870
2871         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2872           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2873           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2874
2875 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2876
2877         * device/lib/_strncpy.c: fixed the fix
2878
2879 2005-05-26 Raphael Neider <rneider AT web.de>
2880
2881         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2882           initializers with \0, bug #1208187
2883         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2884           intializers with \0, bug #1208187
2885
2886 2005-05-26 Raphael Neider <rneider AT web.de>
2887
2888         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2889           initializers with \0, bug #1208187
2890         * src/pic16/main.c (_process_pragma): added sanity checks
2891           for stack position and size, emit warnings when appropriate
2892
2893 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2894
2895         * device/lib/_strncpy.c: fixed not filling with \0
2896
2897 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2898
2899         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2900           createFunction),
2901         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2902           compound_statement),
2903         * src/SDCCsymt.h,
2904         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2905
2906 2005-05-24 Raphael Neider <rneider AT web.de>
2907
2908         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2909
2910 2005-05-24 Raphael Neider <rneider AT web.de>
2911
2912         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2913           TRISE definitions, closes bug #1162453
2914
2915 2005-05-22 Raphael Neider <rneider AT web.de>
2916
2917         * src/pic16/main.c (_process_pragma): check for missing
2918           arguments to pragmas code and udata
2919         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2920           consistency fixes to match other headers (thanks to Jim Paris)
2921         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2922
2923 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2924
2925         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2926
2927 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2928
2929         * support/regression/tests/bug1198642.c: new test
2930         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2931         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2932         * support/scripts/resource.h,
2933         * support/scripts/resource.rc,
2934         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2935         * support/scripts/sdcc.ico: added 32x32 icon
2936
2937 2005-05-18 Raphael Neider <rneider AT web.de>
2938
2939         * device/lib/pic16/libdev/pic18f*.c,
2940         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2941           keywords to "__sfr" and "__at (X)"
2942         * device/include/pic16/pic18fregs.h: added pic18f4520
2943         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2944           #1203088 (MPLAB compatibility)
2945
2946 2005-05-17 Raphael Neider <rneider AT web.de>
2947
2948         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2949         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2950         * device/lib/pic16/pics.all: added new devices
2951         * src/pic16/device.c: added support for pic18f4520
2952
2953 2005-05-16 Raphael Neider <rneider AT web.de>
2954         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2955         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2956         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2957           convenience function for bit access
2958
2959 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2960
2961         * device/lib/printf_large.c: fixed bug 1193299
2962         * support/regression/tests/bug1057979.c: added test %3.3s
2963
2964 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2965
2966         * device/include/mcs51/8051.h,
2967         * device/include/mcs51/8052.h: made parseable with lint
2968         * device/include/mcs51/lint.h: added include file for (sp)lint
2969         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2970         * doc/cdbfileformat.lyx,
2971         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2972
2973 2005-05-14 Raphael Neider <rneider AT web.de>
2974
2975         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2976         * device/lib/pic16/libc/stdlib/itoa.c (new)
2977         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2978         * device/lib/pic16/libio/Makefile: exclude subdir according to
2979           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2980         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2981         * src/pic16/gen.c (genFunction): prevent annoying warning
2982         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2983           nameclashes on BeOS
2984         * support/cpp2/cppmain.c (cpp_output_string): new
2985         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2986           fixes bug 1116802
2987
2988 2005-05-13 Borut Razem <borut.razem AT siol.net>
2989
2990         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2991
2992 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2993
2994         * .version: changed to version 2.5.1; back to bleeding edge development
2995
2996 2005-05-11 Borut Razem <borut.razem AT siol.net>
2997
2998         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2999           generate PDF version 1.3 documents
3000
3001 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3002
3003         * .version: changed to version 2.5.0
3004
3005 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3006
3007         * doc/sdccman.lyx: updated weblinks, index and smaller updates
3008
3009 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3010
3011         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
3012         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
3013         well as many smaller updates.
3014         * .version: changed to version 2.5.0-pre1
3015
3016 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3017
3018         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
3019
3020 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
3021
3022         * support/regression/tests/bug1185672.c: added
3023         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
3024           bug 1185672
3025         * src/mcs51/gen.c (genCall): added comments, made it look safer
3026         * src/mcs51/gen.c (genEndFunction): simplified
3027
3028 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
3029
3030         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
3031
3032 2005-04-14 Borut Razem <borut.razem AT siol.net>
3033
3034         * fixed bug 1045046 - SIGSEGV with really simple code?:
3035           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
3036           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
3037
3038 2005-04-14 Borut Razem <borut.razem AT siol.net>
3039
3040         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
3041           src/pic16/device.h: temporarily disabled experimental #inline pragma
3042           for 2.5.0 release
3043
3044 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
3045
3046         * device/include/z80/stdio.h,
3047         * device/include/z80/string.h: removed these highly incomplete files so
3048           SDCC can use the default ones in device/include/
3049
3050 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3051
3052         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
3053         gcc warning.
3054         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
3055         fix sdcpp warnings.
3056
3057 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3058
3059         * device/include/malloc.h: removed redundant __reentrant prototypes
3060         * device/lib/_mullong.c: added working xstack variant in asm (C version
3061           doesn't pass regression tests)
3062         * device/lib/bpx.c: used __data and made bpx char for mcs51
3063         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3064           (createFunction): fixed bug with xstackPtr
3065         * src/SDCCcse.c: corrected comments
3066         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3067           (killDeadCode, eBBlockFromiCode): removed unused code
3068         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3069           corrected comments
3070         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3071           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3072           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3073           (genModOneByte): fixed warning in MSVC
3074         * src/mcs51/main.c (): added comments
3075         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3076
3077 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3078
3079         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3080
3081 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3082
3083         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3084
3085 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3086
3087         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3088         characters arrays of larger size than the declared one.
3089
3090 2005-04-10 Borut Razem <borut.razem AT siol.net>
3091
3092         * src/pic/gen.c (genInline),
3093           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3094           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3095           (findNextInstruction), (findPrevInstruction),
3096           (findInstructionUsingLabel),
3097           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3098         * src/pic/pcode.c (findLabel): added missing '\n'
3099         * src/src.dsp: added SDCCdwarf2.c to the project
3100
3101 2005-04-09 Borut Razem <borut.razem AT siol.net>
3102
3103         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3104
3105 2005-04-08 Raphael Neider <rneider AT web.de>
3106
3107         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3108           into the chain after a given one) and mergeDefmapSymbols (combine
3109           defmap entries for each symbol per pcode)
3110         * (createDefmap): have defmap entries merged in the end
3111         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3112           a symbol before replacing one access type's symbol, merge symbols in
3113           the end (replacement symbol might already have an entry)
3114         * (assignValnums): keep reference to written WREG intact
3115
3116 2005-04-08 Raphael Neider <rneider AT web.de>
3117
3118         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3119           Alpha)
3120
3121 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3122
3123         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3124         bytes
3125
3126 2005-04-07 Raphael Neider <rneider AT web.de>
3127
3128         * device/include/pic16/usart.h: added compatibility defines for
3129           devices with more than one USART
3130         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3131
3132 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3133
3134         * device/lib/Makefile.in: updated for port specific include
3135
3136 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3137
3138         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3139
3140 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3141
3142         * device/include/8051.h,
3143         * device/include/8052.h,
3144         * device/include/at89S8252.h,
3145         * device/include/at89c55.h,
3146         * device/include/at89x051.h,
3147         * device/include/at89x51.h,
3148         * device/include/at89x52.h,
3149         * device/include/mcs51reg.h,
3150         * device/include/reg51.h,
3151         * device/include/reg764.h,
3152         * device/include/regc515c.h,
3153         * device/include/sab80515.h: (re)moved these 12 files
3154         * device/include/mcs51/8051.h,
3155         * device/include/mcs51/8052.h,
3156         * device/include/mcs51/at89S8252.h,
3157         * device/include/mcs51/at89c55.h,
3158         * device/include/mcs51/at89x051.h,
3159         * device/include/mcs51/at89x51.h,
3160         * device/include/mcs51/at89x52.h,
3161         * device/include/mcs51/mcs51reg.h,
3162         * device/include/mcs51/reg51.h,
3163         * device/include/mcs51/reg764.h,
3164         * device/include/mcs51/regc515c.h,
3165         * device/include/mcs51/sab80515.h: and added them here
3166
3167 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3168
3169         * device/include/stdarg.h: changed SDCC specific keywords to double
3170           underlined form.
3171         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3172           mcs51 and ds390.
3173         * device/include/hc08/mc68hc908gp32.h,
3174         * device/include/hc08/mc68hc908jb8.h,
3175         * device/include/hc08/mc68hc908jkjl.h,
3176         * device/include/hc08/mc68hc908qy.h: fixed comments
3177         * device/include/mcs51/README: updated
3178         * device/include/mcs51/c8051f120.h: added PINRSF
3179         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3180         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3181           amidst code. Also inline is not supported.
3182
3183 2005-04-06 Raphael Neider <rneider AT web.de>
3184
3185         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3186         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3187           callers stack/frame pointers
3188
3189 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3190
3191         * device/include/pic16/usart.h: added, missing in previous commit,
3192         * device/include/pic16/adc.h: fixed typo,
3193         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3194         commit,
3195         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3196         <p18fxxx.inc>
3197         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3198         uninitialized because a bug appears with gplink
3199         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3200         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3201         complains for unrecognised option
3202
3203 2005-04-05 Raphael Neider <rneider AT web.de>
3204
3205         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3206           structs as well (using memcpy)
3207         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3208           on ISRs (GOTO has no label)
3209         * src/pic16/device.h: added OF_OPTIMIZE_DF
3210         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3211           new data flow analysis/optimization
3212         * src/pic16/pcode.c: added (prototypes for and implementation of)
3213           dataflow analysis functions, fixed pCodeInstructions' inCond and
3214           outCond values, made RCALL a branch instruction
3215         * (pic16_unlinkpCode): keep C line if possible
3216         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3217           C line moved if possible
3218         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3219         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3220           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3221         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3222           new flow)
3223         * (pic16_getJumptabpCode): NEW, needed in...
3224         * (LinkFlow): fixed handling of jumptables, calls and conditional
3225           branches
3226         * (pic16_InsertCommentAfter): NEW
3227         * (pic16_pCodeReplace): made verbose and flow preserving
3228         * (AnalyzeFlow): added call to data flow analysis
3229         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3230         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3231         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3232
3233 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3234
3235         * src/SDCCast.c (decorateType): fixed bug #1105626
3236
3237 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3238
3239         * device/include/asm/pic16/features.h,
3240         * pic18f*.h headers,
3241         * device/include/pic16/adc.h,
3242         * device/include/pic16/delay.h,
3243         * device/include/pic16/i2c.h,
3244         * device/include/pic16/malloc.h,
3245         * device/include/pic16/stdio.h,
3246         * device/include/pic16/stdlib.h,
3247         * device/include/pic16/string.h,
3248         * device/lib/pic16/libc/stdio/printf_tiny.c,
3249         * device/lib/pic16/libc/stdio/printf_small.c,
3250         * device/lib/pic16/libc/stdio/strmgpsim.c,
3251         * device/lib/pic16/libc/stdio/strmmssp.c,
3252         * device/lib/pic16/libc/stdio/strmusart.c,
3253         * device/lib/pic16/libc/stdio/vfprintf.c,
3254         * device/lib/pic16/libc/stdlib/ltoa.c,
3255         * device/lib/pic16/libc/stdlib/putchar.c,
3256         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3257         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3258         * device/lib/pic16/libc/stdlib/memchrram.c,
3259         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3260         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3261         * device/lib/pic16/libio/adc/adcbusy.c,
3262         * device/lib/pic16/libio/adc/adcread.c,
3263         * device/lib/pic16/libio/adc/adcsetch.c,
3264         * device/lib/pic16/libio/usart/ubaud.c,
3265         * device/lib/pic16/libio/usart/ubusy.c,
3266         * device/lib/pic16/libio/usart/udrdy.c,
3267         * device/lib/pic16/libio/usart/uopen.c,
3268         * device/lib/pic16/libio/usart/uputc.c,
3269         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3270         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3271         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3272         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3273         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3274         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3275         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3276         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3277         specific keywords to double underlined form,
3278         * device/lib/pic16/libc/Makefile.rules,
3279         * device/lib/pic16/libsdcc/Makefile.rules,
3280         * device/lib/pic16/libm/Makefile,
3281         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3282         to compile with C standard set in Makefile.common
3283         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3284         rand.c and crc.c in compilation process,
3285         * device/lib/pic16/libsdcc/int/divuint.c,
3286         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3287         `c' from signed to unsigned,
3288         * device/lib/pic16/startup/crt0.c,
3289         * device/lib/pic16/startup/crt0i.c,
3290         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3291         keywords to double underlined form, bug fixes in _do_cinit function
3292         which prevented the correct initialization of the .idata segment,
3293         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3294         core to enter a infinite loop
3295         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3296
3297 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3298
3299         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3300
3301 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3302
3303         * device/include/Makefile.in: add support for hc08 subdirectory
3304         * device/include/hc08/: new subdirectory
3305         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3306         Lucas Loizaga, thanks!
3307         * device/include/hc08/mc68hc908qy.h,
3308         * device/include/hc08/mc68hc908gp32.h,
3309         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3310         their own directory. Changed internal macro names to use the compiler
3311         reserved namespace. Changed SDCC specific keywords to double
3312         underlined form.
3313         * device/include/math.h,
3314         * device/include/malloc.h,
3315         * device/include/stdarg.h,
3316         * device/include/stdbool.h
3317         * device/include/string.h,
3318         * device/include/tinibios.h,
3319         * device/include/ds400rom.h,
3320         * device/include/8051.h,
3321         * device/include/8052.h,
3322         * device/include/80c51xa.h,
3323         * device/include/at89c55.h,
3324         * device/include/at89S8252.h,
3325         * device/include/at89x51.h,
3326         * device/include/at89x52.h,
3327         * device/include/ds80c390.h,
3328         * device/include/reg764.h,
3329         * device/include/regc515c.h,
3330         * device/include/sab80515.h,
3331         * device/include/mcs51/c8051f000.h,
3332         * device/include/mcs51/c8051f018.h,
3333         * device/include/mcs51/c8051f020.h,
3334         * device/include/mcs51/c8051f040.h,
3335         * device/include/mcs51/c8051f060.h,
3336         * device/include/mcs51/c8051f120.h,
3337         * device/include/mcs51/c8051f300.h,
3338         * device/include/mcs51/c8051f310.h,
3339         * device/include/mcs51/c8051f320.h,
3340         * device/include/mcs51/c8051f330.h,
3341         * device/include/mcs51/c8051f350.h,
3342         * device/include/z180.h: Changed SDCC specific keywords to double
3343         underlined form.
3344
3345 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3346
3347         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3348         18F4455,
3349         * (pic16_assignConfigWordValue): disable testing of configuration
3350         register value with config mask,
3351         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3352         function with port->fun_prefix,
3353         * (genFunction): when generating a naked interrupt function never
3354         create an absolute segment placed in interrupt vector address, place
3355         the actual interrupt function at IVA instead, when an interrupt
3356         function is generated with unspecified interrupt then do not create
3357         the absolute section,
3358         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3359         code for generating a call to generic pointer get/put function with
3360         a call to function pic16_callGenericPointer(),
3361         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3362         the call to the generic pointer get/put functions with prefixing the
3363         function name with port->fun_prefix,
3364         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3365         * src/pic16/main.c (_process_pragma): prefix function with
3366         port->fun_prefix,
3367         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3368         calling assembler, old 18Fxxxx macro is deprecated,
3369         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3370         PC_ASMDIR in while condition,
3371         * (findInstruction): add PC_ASMDIR in while condition,
3372         * (buildCallTree): prefix main with port->fun_prefix,
3373         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3374         identifier for variable with banked access in instructions BTFSS,
3375         BTFSC, BCF, BSF, BTG
3376         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3377         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3378         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3379         perform optimization when enviroment variable NO_REG_OPT is set,
3380         * (insideLRBlock): NEW, return 1 if register is inside an
3381         INF_LOCALREGS block,
3382         * (RemoveRegFromLRBlock): remove a register that is completely
3383         eliminated by register optimization, but it is still left in local
3384         register store/restore in/from stack block,
3385         * (Remove2pcodes): after removing register, check to see if it
3386         should be removed from local register store/restore in/from stack
3387         block,
3388         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3389         DUMMY_READ_VOLATILE,
3390
3391         * device/include/pic16/adc.h: minor prototype modifications and
3392         update,
3393         * device/include/pic16/malloc.h: added GPL notice various
3394         modifications,
3395         * device/include/pic16/stdint.h: NEW, standard header for ints
3396         * device/include/pic16/delay.h: NEW, header for delay functions,
3397         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3398         delay1mtcy,
3399         * device/include/pic16/signal.h: NEW, header providing helper macros
3400         for implementing signal handlers,
3401         * device/include/pic16/stdio.h: added prototypes for functions,
3402         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3403         prototypes for stdin and stdout, added macro PUTCHAR to
3404         automatically implement putchar function prototype,
3405         * device/include/pic16/usart.h: modified and updated USART library,
3406         * device/lib/pic16/libio/adc/,
3407         * device/lib/pic16/libio/i2c: some modifications to improve library
3408         performance,
3409         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3410         family of functions,
3411         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3412         family of functions and other sources,
3413         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3414         of the PIC18Fxx[28] devices,
3415         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3416         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3417         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3418         _do_cinit function, because the previous failed when local variables
3419         where not placed in the same memory bank,
3420         * device/lib/pic16/libsdcc/char/: various modifications to improve
3421         library performance,
3422         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3423         information on the new functions of the c library and more...
3424
3425 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3426
3427         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3428
3429 2005-03-26 Raphael Neider <rneider AT web.de>
3430
3431         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3432           if condition == CARRY)
3433         * (genCmp): adapted to new genSkipc semantics
3434         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3435           on rIfx (genCmp was broken)
3436
3437 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3438
3439         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3440         * src/z80/main.c (_keywords[]),
3441         * src/SDCCglobal.h (struct options),
3442         * src/SDCC.y,
3443         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3444         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3445         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3446         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3447         always available in leading double underscore form. The C99 support is
3448         mostly missing, but it's a start.
3449         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3450         reserved identifier "__data".
3451
3452 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3453
3454         * src/mcs51/peeph.def: fixed bug 1170013
3455
3456 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3457
3458         * device/include/mcs51reg.h: fixed bug 842007
3459
3460 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3461
3462         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3463         last time.
3464
3465 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3466
3467         * src/port.h (struct PORT),
3468         * src/avr/ralloc.c (avr_assignRegisters),
3469         * src/avr/main.c,
3470         * src/ds390/ralloc.c (ds390_assignRegisters),
3471         * src/ds390/main.c,
3472         * src/hc08/ralloc.c (hc08_assignRegisters),
3473         * src/hc08/main.c,
3474         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3475         * src/mcs51/main.c,
3476         * src/pic/ralloc.c (pic14_assignRegisters),
3477         * src/pic/main.c,
3478         * src/pic16/ralloc.c (pic16_assignRegisters),
3479         * src/pic16/main.c,
3480         * src/xa51/ralloc.c (xa51_assignRegisters),
3481         * src/xa51/main.c,
3482         * src/z80/ralloc.c (z80_assignRegisters),
3483         * src/z80/ralloc.h,
3484         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3485         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3486         * src/SDCCcse.h,
3487         * src/SDCCdflow.c (computeDataFlow),
3488         * src/SDCCdflow.h,
3489         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3490         * src/SDCCloop.h,
3491         * src/SDCCcflow.c (*),
3492         * src/SDCCcflow.h,
3493         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3494         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3495         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3496         immedDom() returning wrong block; probably fixes bug #1160833)
3497
3498 2005-03-20 Borut Razem <borut.razem AT siol.net>
3499
3500         * support/scripts/inc2h.pl: WIN32 port
3501
3502 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3503
3504         * device/lib/makefile.in: added abs.c and labs.c
3505
3506 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3507
3508         * device/include/stdint.h: added
3509         * device/lib/abs.c: added
3510         * device/lib/labs.c: added
3511         * device/include/stdlib.h: added abs() and labs() prototypes
3512         * device/lib/libsdcc.lib: added abs and labs
3513         * device/include/float.h,
3514         * device/lib/_fsmul.c,
3515         * device/lib/printf_fast.c,
3516         * device/lib/printf_tiny.c: updated comments
3517
3518 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3519
3520         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3521         bug #1164313
3522
3523 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3524
3525         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3526         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3527
3528 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3529
3530         * device/lib/printf_large.c: removed inline assembly for portability and
3531           readability. Use printf_fast if speed or size are more important.
3532         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3533         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3534
3535 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3536
3537         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3538         prevent compiler warning
3539
3540 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3541
3542         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3543         moved to level 0 and declared as static. Also they are explicit
3544         placed in access bank. This was necessery because some times they
3545         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3546         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3547         optimizations. Currently only compare to unsigned char is implemented,
3548         * src/pic16/gen.c: added fReturnIdx array,
3549         * (struct resolvedIfx) is moved to gen.h and made public,
3550         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3551         * (aopForSym): added an optimization to directly store in stack of
3552         the operand of a SEND iCode,
3553         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3554         but as registers instead (AOP_REG) using the fReturnIdx array,
3555         * (pic16_freeAsmop): remove the freed register from the
3556         _G.sregsAlloc field,
3557         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3558         a compare of 'WREG',
3559         * (pic16_popGetTempRegCond): changed function prototype, now
3560         function takes also a bitVector argument v which holds the current
3561         set of registers that are allocated for stack access by aopForSym,
3562         registers allocated in aopForSym for accessing stack symbols are not
3563         any more part of the functions usedRegs field,
3564         * (genCall): some times aopOp is called for a stack variable to be
3565         send, aopForSym might perform the push, if this is true make sure
3566         that genCall doesn't push the variable twice by testing _G.resDirect,
3567         * (genFunction): changed testing for unspecified interrupt number
3568         from 256 to INTNO_UNSPEC,
3569         * modified selection scheme of frame pointer generation. Previously
3570         if function did use local registers a frame pointer was generated,
3571         now a frame pointer is generated only if function has arguments
3572         (that need PLUSW2 register access), or has stack arguments, or the
3573         compiler is not instructed to omit the frame pointer,
3574         * (genEndFunction): before restoring local registers that were saved
3575         in the function preamble, also restore the registers that *might*
3576         have been allocated for stack access,
3577         * (genRet): removed some old comments,
3578         * (genCmp, the active (RN's) version): added a call to the
3579         pic16_genCmp_special function to perform the compare with a more
3580         robust and optimized way,
3581         * (genInline): a feature has been added in inline code generation,
3582         which allows a wildcard variable substitution when writing inline
3583         assembly. Code is incomplete and experimental therefore undocumented,
3584         * (genCast): changed order of aopOp for result and right to allow
3585         aopForSym to directly load the result if possible,
3586         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3587         perform an optimized compare on some selected special occasions,
3588         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3589         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3590         generate an IVT any more,
3591         * src/pic16/main.c (pic16_optionsTable): added command line option
3592         --optimize-cmp,
3593         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3594         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3595         macros,
3596         * src/pic16/NOTES: Raphael Neider added in list of active developers
3597         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3598         jumptable_end to prevent bug #,
3599         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3600         inCond and outCond fields,
3601         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3602         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3603         turn off register spilling,
3604         * (packRegsForOneUse): synced with other ports' versions although it
3605         is not used currently,
3606         * (pic16_packRegisters): added an optimization while reading
3607         structure bitfields, some registers may be saved (malloc code is
3608         decreased by 80 bytes)
3609
3610 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3611
3612         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3613         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3614         this can be optimized more?
3615
3616 2005-03-10 Raphael Neider <rneider AT web.de>
3617
3618         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3619           genNearPointerGet): (hopefully) fixed access to bitfields via
3620           pointers (p->bitN = x; and x = p->bitN; failed)
3621
3622 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3623
3624         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3625
3626 2005-03-09 Raphael Neider <rneider AT web.de>
3627
3628         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3629
3630 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3631
3632         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3633         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3634           (regTypeNum): set REG_BIT type if necessary
3635         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3636         * support/regression/tests/critical.c: check bug 1144613
3637
3638 2005-03-02 Raphael Neider <rneider AT web.de>
3639
3640         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3641
3642 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3643
3644         * src/avr/ralloc.c (serialRegAssign),
3645         * src/ds390/ralloc.c (serialRegAssign),
3646         * src/hc08/ralloc.c (serialRegAssign),
3647         * src/mcs51/ralloc.c (serialRegAssign),
3648         * src/pic/ralloc.c (serialRegAssign),
3649         * src/pic16/ralloc.c (serialRegAssign),
3650         * src/xa51/ralloc.c (serialRegAssign),
3651         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3652
3653 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3654
3655         * src/SDCCast.c (decorateType): fixed bug 1124787
3656
3657 2005-02-20 Hubert Sack <sack AT digiplan.de>
3658         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3659
3660         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3661         patch #1121755
3662
3663 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3664
3665         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3666         to keep the correct label reference count when adding/removing references
3667         to labels. A peephole file using this is appended to patch #1144962.
3668
3669 2005-02-14 Raphael Neider <rneider AT web.de>
3670
3671         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3672         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3673         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3674           retrievals of result operand's value on assignment
3675
3676 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3677
3678         * device/include/pic16/string.h: modified prototype for memccpy()
3679         to memccpy(void *, void *, char, size_t)
3680         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3681         check whether to omit frame pointer or not,
3682         * (genInline): convert all occurences of "\n" to LF in inline
3683         assembler blocks, this helps formatting the inline text,
3684         * (pic16_loadFSR0): modified prototype,
3685         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3686         removed some 8051 legacy code,
3687         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3688         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3689         before allocating temporary registers in functions,
3690
3691 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3692
3693         * support/regression/tests/bitvars.c: corrected the "fix"
3694
3695 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3696
3697         * support/regression/tests/bitvars.c,
3698         * support/regression/tests/bitwise.c,
3699         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3700
3701 2005-02-10 Raphael Neider <rneider AT web.de>
3702
3703         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3704           different size for Alpha
3705         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3706
3707 2005-02-09 Raphael Neider <rneider AT web.de>
3708
3709         * src/SDCC.lex(doPragma) : save and restore warning options as well
3710           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3711         * have #pragma less_pedantic set the errorlevel to WARNING
3712           (fixes #1117001)
3713         * (cloneOptimize) : fixed wrong malloc's size
3714         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3715           facilitate correct handling of #pragma (save|restore)
3716
3717 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3718
3719         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3720
3721 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3722
3723         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3724
3725 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3726
3727         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3728
3729 2005-02-02 Raphael Neider <rneider AT web.de>
3730
3731         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3732         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3733         * (pic16_storeForReturn): fixed to allow returning function pointers
3734         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3735         * device/include/pic16/{stddef.h,stdbool.h}: added
3736
3737 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3738
3739         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3740
3741 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3742
3743         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3744         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3745          appeared to be required
3746
3747 2005-01-31 Borut Razem <borut.razem AT siol.net>
3748
3749         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3750           include/mcs51 and include/z80 directories to the package
3751
3752 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3753
3754         * src/hc08/gen.c (genFunction): fixed bug #1112752
3755
3756 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3757
3758         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3759
3760 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3761
3762         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3763
3764 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3765
3766         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3767
3768 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3769
3770         * device/include/c8051fxxx.h: removed these 6 files
3771         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3772
3773 2005-01-26 Raphael Neider <rneider AT web.de>
3774
3775         * src/pic16/gen.c (genAssign): fixed assignment from longs
3776           in codespace (were cut to three bytes)
3777         * (genDummyRead): implemented (except for CODESPACE...),
3778           fixed bug #1108575
3779         * src/pic16/glue.c (emitStatistics): beautified
3780         * device/lib/pic16/libm/Makefile: added include path
3781
3782 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3783
3784         * src/z80/gen.c (aopPut): fixed bug #1103902
3785
3786 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3787
3788         * device/lib/expf.c: fixed bug #1095792
3789
3790 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3791
3792         * device/lib/pic16/libm: added Math library sources
3793
3794 2005-01-24 Raphael Neider <rneider AT web.de>
3795
3796         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3797           to enable upcast to pCodeOpReg2 (there is no type tag to
3798           differenciate the two and pic16_popGet2p cast into PCOR2)
3799         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3800           (sizeof(sectNames) changed to sizeof(sectName))
3801           Both patches fix segfaults under MinGW.
3802
3803 2005-01-23 Raphael Neider <rneider AT web.de>
3804
3805         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3806           Safe_[mc]?alloc()'ed variables
3807         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3808           of (byte sized) temporaries (assign them to WREG for now)
3809         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3810           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3811           this might fix SIGSEGVs on MinGW...
3812         * src/SDCCopt.c (killDeadCode): restored original behaviour
3813           (volatile operands might get thrown away though)
3814
3815 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3816
3817         * src/pic16/gen.c: fixed bug #1106975,
3818         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3819         pointer update, INTCON is saved, global interrupts are disabled and
3820         restored after updateing TOS.
3821         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3822         * added function attribute 'shadowregs' to take advantage of shadow
3823         registers,
3824         * added function attribute 'wparam' as an alternative to the wparam
3825         pragma,
3826         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3827         user declares a non-ISR function as 'shadowregs',
3828         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3829
3830 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3831
3832         * .version: bumped version number to 2.4.8
3833         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3834         pic16 port,
3835         * device/lib/pic16/libio/i2c/: I2C module support library,
3836         * device/include/pic16/i2c.h: I2C support library header,
3837         * device/lib/pic16/libc/stdio/: standard IO support sources,
3838         * (printf_small.c): printf_small() source, supports float print,
3839         * (printf_tiny.c): printf_tiny() source, does not support floats,
3840         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3841         enable global optimizations for entire library source, other
3842         Makefiles in the source tree are also modified to reflect this,
3843         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3844         function,
3845         * doc/sdccman.lyx: updated to reflect new changes,
3846         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3847         sym->onStack if-case,
3848         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3849         sbit, idata, _idata, xdata, _xdata,
3850         * added pragma library, to link an external library, (see doc),
3851         * removed command line options, --pomit-config-words, --pomit-ivt,
3852         --pleave-reset-vector,
3853         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3854         when calling assembler to reflect memory model used, also define
3855         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3856         reflect stack model used,
3857         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3858         on stack return NULL,
3859
3860 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3861
3862         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3863           of the operands is volatile. Fixes #1020220
3864
3865 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3866
3867         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3868         * (OptimizeRegUsage): make sure that there is really no other flow where
3869           the first pCode is used
3870
3871 2005-01-22 Raphael Neider <rneider AT web.de>
3872
3873         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3874           to fix #1106967 (pCode->seq are not set up correctly)
3875
3876 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3877
3878         * src/SDCCglue.c (glue): make sure code area is declared before the
3879         static initialization area.
3880
3881 2005-01-21 Raphael Neider <rneider AT web.de>
3882
3883         * device/lib/Makefile.in: fixed test for pic16 install dir
3884         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3885           optimizations
3886         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3887           added --optimize-goto compiler switch and pragma wparam documentation
3888         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3889         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3890           and PRODH closing bug #1071770 (peephole optimizer)
3891
3892 2005-01-19 Raphael Neider <rneider AT web.de>
3893
3894         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3895           cmdLine buffers (used when calling sdcpp...) are large enough
3896           (MAX_PATH=256 truncates arguments leading to system halts when
3897           used in MinGW...)
3898         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3899         * (genUminus): rewritten to for efficiency
3900         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3901           used uninitialized in some cases)
3902         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3903           copy the third byte from the int -- now assumes 0x80 (data memory)
3904         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3905           operands (genAddLit expects the iCode's operands to swapped as
3906           well), fixed leftover bytes (crashed for short left operands)
3907         * (pic16_genMinusDec): performance improvements, removed false
3908           PIC14 emitSKPNCs
3909         * (pic16_genMinus): fixed to cope with differently sized operands
3910         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3911           for --obanksel > 1
3912         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3913         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3914           new banksel optimization
3915         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3916           analysis for temporary registers (segfaults...)
3917         * src/pic16/peeph.def: added rule
3918
3919 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3920
3921         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3922         which converts a float number to its ASCII representation
3923         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3924         functions to convert the fractional and integer part of a float to ASCII,
3925         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3926         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3927         ram
3928         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3929         _STATMEM macros,
3930         * device/include/pic16/adc.h: added GPL info,
3931         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3932         a pCodeOp as tested operand,
3933         * (genNearPointerGet): optimized bit testing, does not use
3934         intermediate register for bit value, test directly instead with
3935         BTFSS, BTFSC, works only for single bits,
3936         * (genpic16Code): dump the name of the iCode in the asm,
3937         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3938         renamed to pic16_decodeOp,
3939         * (serialRegAssign): do not allocate a temporary register for iCode
3940         sequences that test a single bit for 1/0
3941
3942 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3943
3944         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3945         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3946         access stack and frame pointers. They are initially assigned to
3947         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3948         accessing SFRs. Updated all occurences of modification of stack or
3949         frame pointer in gen.c and pcode.c,
3950         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3951         assigning of a literal value to pointers,
3952         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3953         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3954         selected
3955
3956 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3957
3958         * doc/sdccman.lyx: update documentation about stack pragma, added
3959         some info for stack memory models
3960
3961 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3962
3963         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3964
3965 2005-01-08 Raphael Neider <rneider AT web.de>
3966
3967         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3968           udata sections to fix bug #1097823
3969
3970 2005-01-05 Raphael Neider <rneider AT web.de>
3971
3972         * src/pic16/gen.c (genGenericShift): added handling of differently
3973           sized left operand and result
3974
3975 2005-01-04 Raphael Neider <rneider AT web.de>
3976
3977         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3978         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3979           to hold the condition bit)
3980         * added new version of genCmp (old code available via #define)
3981         * added new version of genShiftLeft/genShiftRight in a generic
3982           way, now supports shifting by negative values
3983         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3984           shiftCount (expected by genGenericShift)
3985         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3986         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3987           dump
3988         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3989           is an invalid literal too...)
3990
3991 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3992
3993         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3994         from Raphael Neider,
3995         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3996         for 8-bit literals. This fixes some literal operands which are sign
3997         extended to 16-bits ints when instruction needs only 8-bits.
3998
3999 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
4000
4001         * device/lib/logf.c: added mcs51 assembly version
4002         * device/lib/expf.c: added mcs51 assembly version
4003         * device/lib/_logexpf.c: new shared asm code for expf and logf
4004         * device/include/math.h: add defines for assembly math library
4005         * device/lib/Makefile.in: build new _logexpf.c
4006         * device/lib/libfloat.lib: use new _logexpf.c
4007
4008 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4009
4010         * src/pic/device.c
4011         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
4012           device types which have less than 0x7f registers.
4013
4014 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4015
4016         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
4017
4018 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4019
4020         * device/lib/printf_fast.c: only build on supported arch.
4021         * device/lib/printf_tiny.c: only build on supported arch.
4022         * device/lib/printf_fast_f.c: only build if asm float lib
4023         * device/lib/_fsget1arg.c: only build if asm float lib
4024         * device/lib/_fsget2args.c: only build if asm float lib
4025         * device/lib/_fsnormalize.c: only build if asm float lib
4026         * device/lib/_fsreturnval.c: only build if asm float lib
4027         * device/lib/_fsrshift.c: only build if asm float lib
4028         * device/lib/_fsswapargs.c: only build if asm float lib
4029         * device/include/stdio.h: don't provide print_fast,
4030           print_fast_f, print_tiny prototypes if --xstack used
4031
4032 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
4033
4034         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
4035         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
4036           to the SOURCES
4037
4038 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4039
4040         * device/lib/printf_fast_f.c: same as printf_fast, but
4041           with floating point enabled
4042         * device/lib/printf_fast.c: minor tweaks
4043         * device/include/stdio.h: add printf_fast_f
4044
4045 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4046
4047         * src/SDCCmain.c: make --float-reent default for mcs51
4048         * device/lib/_fsadd.c: added mcs51 assembly version
4049         * device/lib/_fssub.c: added mcs51 assembly version
4050         * device/lib/_fsmul.c: added mcs51 assembly version
4051         * device/lib/_fsdiv.c: added mcs51 assembly version
4052         * device/lib/_fseq.c: added mcs51 assembly version
4053         * device/lib/_fsneq.c: added mcs51 assembly version
4054         * device/lib/_fsgt.c: added mcs51 assembly version
4055         * device/lib/_fslt.c: added mcs51 assembly version
4056         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
4057         * device/lib/Makefile.in: add _fscmp to build
4058         * device/lib/libfloat.lib: add _fscmp to build
4059
4060 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4061
4062         * device/lib/_fs2slong.c: added mcs51 assembly version
4063         * device/lib/_fs2sint.c: added mcs51 assembly version
4064         * device/lib/_fs2schar.c: added mcs51 assembly version
4065         * device/lib/_fs2ulong.c: added mcs51 assembly version
4066         * device/lib/_fs2uint.c: added mcs51 assembly version
4067         * device/lib/_fs2uchar.c: added mcs51 assembly version
4068         * device/lib/_slong2fs.c: added mcs51 assembly version
4069         * device/lib/_sint2fs.c: added mcs51 assembly version
4070         * device/lib/_schar2fs.c: added mcs51 assembly version
4071         * device/lib/_ulong2fs.c: added mcs51 assembly version
4072         * device/lib/_uint2fs.c: added mcs51 assembly version
4073         * device/lib/_uchar2fs.c: added mcs51 assembly version
4074         * device/include/float.h: added #define to select asm vs c
4075
4076 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4077
4078         * device/lib/printf_fast.c: improvements to float output
4079         * device/include/float.h: add defines for assembly float library
4080         * device/lib/_fsget1arg.c: receive 1 float arg
4081         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4082         * device/lib/_fsnormalize.c: normalize a float
4083         * device/lib/_fsreturnval.c: return float, various helper routines
4084         * device/lib/_fsrshift.c: right shift a float's mantissa
4085         * device/lib/_fsswapargs.c: swap 2 floats
4086         * device/lib/Makefile.in: build these 6 new files for mcs51
4087         * device/lib/libfloat.lib: add these 6 files to the library
4088
4089 2004-12-26 Borut Razem <borut.razem AT siol.net>
4090
4091         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4092           built by gcc 3.4.2
4093
4094 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4095
4096         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4097           and fully reentrant and register bank neutral.
4098         * device/lib/printf_fast.c: added float (not enabled by default),
4099           added compact/slower integer (also not enabled by default),
4100           improved size/speed of fast integer code, other minor changes
4101         * device/include/stdio.h, device/lib/Makefile.in,
4102           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4103
4104 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4105
4106         * src/pic16/pcode.c: declaring variables other than at the start of a
4107           block is not supported in C by VC6.
4108
4109 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4110
4111         * applied a previous patch from Raphael Neider that wasn't included
4112         in the previous commits, which fixes infinite loops within jumptable
4113         improvements,
4114         * made some fixes that previous patches introduced
4115
4116 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4117
4118         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4119         that fixes an issue with AOP_PCODE asmop's offset,
4120         * (pic16_popCopyReg): update instance field too,
4121         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4122         function of pic port,
4123         * (genCmp, genAnd, genAssign),
4124         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4125
4126 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4127
4128         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4129         variables initial values to idata section,
4130         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4131         variables in some functions. This utilizes parmBytes field of iCode
4132         structure to hold the offset of the variable in stack. (might be
4133         able to use the stack field too?)
4134         * applied patch from Raphael Neider # ### , # ###
4135         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4136         variable initial values in idata section,
4137         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4138         for static variables with initial value
4139         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4140         applied fix in while loop from Raphael Neider.
4141
4142 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4143
4144         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4145         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4146         * src/ds390/ralloc.c (serialRegAssign): spill bits
4147         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4148         * support/Util/SDCCerr.c,
4149         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4150         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4151         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4152
4153 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4154
4155         * device/include/sdcc-lib.h: inserted LGPL, added includes
4156           asm/ds390/features.h and asm/mcs51/features.h
4157         * device/include/asm/default/features.h,
4158         * device/include/asm/gbz80/features.h,
4159         * device/include/asm/z80/features.h: added empty _AUTOMEM
4160           and _STATMEM
4161         * device/include/asm/ds390/features.h,
4162         * device/include/asm/mcs51/features.h: added files with defines for
4163           _AUTOMEM and _STATMEM indicating automatic and static storage class
4164         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4165         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4166         * src/SDCCicode.c (geniCodeCast),
4167         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4168         * src/SDCCloop.c (loopInduction): removed unused variable lr
4169         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4170           to convertToFcall to include char modulo (RFE 1065037), added check
4171           if left operand is unsigned and use abs of literal value
4172         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4173           as it doesn't work after conversion from peephole.def to peephole.rul
4174         * src/mcs51/gen.c (toBoolean): added check for size,
4175           (genModOneByte): optimized code for signed char modulo a literal
4176           power of 2 (thanks to Hubert Sack),
4177           (genRRC): removed unnecessary "clr c",
4178           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4179         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4180           jump optimization,
4181           swapped rules 256.c and 256.d,
4182           extended 256.d by using new multiple checks (thanks Erik),
4183           added rules 256.e and 256.f,
4184           updated rule 261.a and 261.b to new generated code
4185         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4186
4187 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4188
4189         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4190           induction related bugs, including first part of bug #1074377
4191
4192 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4193
4194         * applied patch from bug-report #1076292,
4195         * applied patches for genAnd and Goto-optimizations for Raphael
4196         Neider,
4197         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4198         dump a less iCode information,
4199         * src/pic16/device.h (pic16_options_t): added field debgen,
4200         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4201         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4202         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4203         puclic,
4204         * (various functions): added macros FENTRY and FENTRY2 to functions,
4205         to emit function prologue,
4206         * (various functions): fixed indentation,
4207         * (genNearPointerGet): fixed loading of FSR0,
4208         * (genPackBits): applied patch from Raphael Neider to fix updating
4209         of FSR0 and touching only the modified bits,
4210         * src/pic16/genarith.c (various functions): added macros FENTRY to
4211         emit function prologue in comments,
4212         * src/pic16/pcode.h: added functions debugf2, debugf3,
4213         * src/pic16/ralloc.c: partial fix for packForPush caused
4214         segmentation fault,
4215
4216 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4217
4218         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4219           <stsp AT users.sourceforge.net> with reversed byte order
4220         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4221
4222 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4223
4224         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4225           bug #1074377
4226         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4227         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4228
4229 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4230
4231         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4232
4233 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4234
4235         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4236           conditions,
4237           (setFromConditionArgs): friendly operand parser for peephole rules,
4238           (operandBaseName, operandsNotRelated): new peephole condition
4239           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4240           architecture specific register naming into account, handles n-way
4241           comparisons, and supports quoted literals
4242         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4243
4244 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4245
4246         * src/mcs51/peeph.def: fixed bug #1076940
4247
4248 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4249
4250         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4251
4252 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4253
4254         Adding support for replacing ljmps with sjmps in jumptables
4255         generated for switch statements. For now you need to set the
4256         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4257         Now 4 algorithms for mcs51 jumptable generation are used:
4258         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4259         addresses loaded pc-relative for up to 112 cases and stack-pushing
4260         target addresses loaded with offset from dptr for up to 256 cases.
4261
4262         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4263         * src/mcs51/main.c: adapted constants for switch table generation
4264         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4265
4266 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4267
4268         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4269         * support/regression/tests/bug1057979.c: added test for bug 1073386
4270
4271 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4272
4273         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4274         compilers
4275
4276 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4277
4278         * src/pic16/device.h,
4279         * src/pic16/genarith.c,
4280         * src/pic16/glue.c,
4281         * src/pic16/main.c,
4282         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4283
4284 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4285
4286         Large cummulative patch for pic16 port.
4287         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4288         to call when a stack overflow occurs,
4289         * (malloc.h): added CVS Id tag,
4290         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4291         variable,
4292         * added libc directory. The current version of LibC contains string
4293         functions, ctype functions and macros and some functions of the
4294         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4295         be extensively tested in the future. Standard disclaimer here.
4296         Library is not automatically build yet. But one can build it by
4297         invoking 'make' inside the libc directory.
4298         * added ADC library under libio. Preliminary version yet.
4299
4300         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4301         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4302         aopForRemat() now and not by pic16_aopOp(),
4303         * (pic16_popGetTempReg): removed warning messgae when allocating
4304         temporary registers, its a buggy feature and will be removed,
4305         * (pic16_popGet): set register instance field in AOP_CRY,
4306         * (pic16_outBitC): fixed for results in size greater than 1,
4307         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4308         * (pic16_storeForReturn): optimized return of 0,
4309         * (genCmp): experimental code for new genCmp which uses PIC18's
4310         special compare&skip instructions. Initial tests fail some times
4311         with variables grater than 1 byte in size, so new code is disabled,
4312         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4313         a single bit,
4314         * (genCast): began a fix to optimize the casting of a bit to another
4315         bit, now assigning a bitfield to another bitfield will fail, sorry,
4316         * src/pic16/main.c: disabled the use of lr-support feature,
4317         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4318         * added some function prototypes, added function _debugf prototype,
4319         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4320         bits with offset (case PO_GPR_BIT),
4321         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4322         command line,
4323         * (isBankInstruction): modified to return 0 for no banking instruction,
4324         and 1 for banking instruction,
4325         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4326         caused stop processing pCodes after a inline assembly block,
4327         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4328         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4329         registers when it shouldn't,
4330         * src/pic16/ralloc.c (allocReg): add preliminary support for
4331         supporting a limited set of temporary registers,
4332
4333 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4334
4335         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4336           genDataPointerSet): ensure assignments always copy in MSB to LSB
4337           order,
4338           (loadRegFromAop): recognize CLRH optimization,
4339           (genFunction): optimize RECEIVE iCodes in reentrant functions
4340
4341 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4342
4343         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4344           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4345           selected.
4346         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4347         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4348           contiguous with data
4349
4350 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4351
4352         * device/lib/_gptrget.c (_gptrget),
4353         * device/lib/_gptrgetc.c (_gptrgetc),
4354         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4355           instead of sjmp to ret
4356         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4357           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4358
4359 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4360
4361         * .version: bumped version to 2.4.7
4362         * device/lib/_gptrget.c (_gptrget): is now _naked
4363         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4364         * device/lib/_gptrput.c (_gptrput): is now _naked
4365         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4366           (createFunction): fixed xstack
4367         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4368         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4369           or bit either,
4370           (geniCodeCritical): store original interrupt state in an iTemp bit
4371           var unless stack-auto
4372         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4373         * src/SDCCmain.c (setIncludePath): added include/target to search path
4374         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4375         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4376           prototype,
4377           (processFuncArgs): put bit vars in bit area
4378         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4379           unsaveRBank): fixed xstack,
4380           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4381           (genFunction, genEndFunction): fixed xstack,
4382           (genAssign): optimization don't walk backwards through mem
4383         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4384         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4385         * support/regression/Makefile: also make library (for stack-auto) when
4386           making "all" and added "test-mcs51-xstack-auto"
4387         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4388         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4389         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4390         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4391         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4392           make-library by MAKE_LIBRARY
4393         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4394           regression tests for xstack
4395         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4396         * support/regression/tests/critical.c: test for critical on mcs51
4397
4398 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4399
4400         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4401           built version of sdcc instead of installed version
4402
4403 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4404
4405         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4406         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4407           vprintf.c now
4408         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4409         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4410           WARNING: remove device/lib/build/z80/printf.o by hand when
4411           updating from previous build!
4412         * device/lib/z80/printf.c: updated comment
4413         * support/regression/tests/bug1057979.c: test all ports now
4414         * support/regression/tests/bug1065458.c: file added
4415
4416 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4417
4418         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4419           *_start and *_end symbols for static functions
4420
4421 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4422
4423         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4424           and search crt0.o in all library paths,
4425           (setIncludePath): proper handling of --nostdinc,
4426           (setLibPath): proper handling of --nostdlib
4427         * support/regression/Makefile,
4428         * support/regression/ports/ds390/spec.mk,
4429         * support/regression/ports/gbz80/spec.mk,
4430         * support/regression/ports/hc08/spec.mk,
4431         * support/regression/ports/mcs51/spec.mk,
4432         * support/regression/ports/mcs51-large/spec.mk,
4433         * support/regression/ports/mcs51-stack-auto/spec.mk,
4434         * support/regression/ports/z80/spec.mk: use include and lib files from
4435           built version of sdcc instead of installed version
4436         * doc/sdccman.lyx: fixed typo in --nostdinc
4437
4438 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4439
4440         * src/pic/pcode.c,
4441         * src/pic/device.c,
4442         * src/pic/ralloc.c,
4443         * src/pic/gen.c : added support to generate code for struct bit fields.
4444
4445 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4446
4447         * as/xa51/xa_version.h,
4448         * device/include/errno.h,
4449         * device/include/regc515c.h,
4450         * device/lib/_itoa.c,
4451         * device/lib/_ltoa.c,
4452         * device/lib/ser_ir_cts_rts.c,
4453         * sim/ucsim/xa.src/glob.cc,
4454         * sim/ucsim/xa.src/inst_gen.cc,
4455         * sim/ucsim/xa.src/xa_bit.cc,
4456         * sim/ucsim/xa.src/xa_sfr.cc,
4457         * sim/ucsim/z80.src/inst_dd.cc,
4458         * sim/ucsim/z80.src/inst_fdcb.cc,
4459         * support/scripts/keil2sdcc.pl,
4460         * src/pic16/pic16.dsp,
4461         * src/pic16/pic16a.dsp: corrected cvs line endings
4462         * device/lib/printf_large.c: fixed bug 1057979
4463         * src/pic16/gen.c: fixed non-C standard code
4464         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4465         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4466         * support/regression/ports/mcs51/support.c: reload T1 asap
4467         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4468           pdata use and clear idata startup behaviour
4469         * support/regression/tests/bug1057979.c: added
4470
4471 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4472
4473         * device/examples/ds390/ow390/ad26.h,
4474         * device/examples/ds390/ow390/cnt1d.h,
4475         * device/examples/ds390/ow390/crcutil.c,
4476         * device/examples/ds390/ow390/ownet.h,
4477         * device/examples/ds390/ow390/owsesu.c,
4478         * device/examples/ds390/ow390/swt12.h,
4479         * device/examples/ds390/ow390/swtoper.c,
4480         * device/examples/ds390/ow390/temp10.h,
4481         * device/examples/ds390/ow390/thermodl.c,
4482         * device/examples/ds390/tinitalk/tinitalk.dsp,
4483         * device/examples/ds390/tinitalk/tinitalk.dsw,
4484         * device/examples/mcs51/clock/hw.h,
4485         * device/examples/mcs51/simple2/go.bat,
4486         * device/examples/serialcomm/windows/serial.h,
4487         * device/examples/xa51/dummy.c,
4488         * device/examples/xa51/hello.c,
4489         * device/include/80c51xa.h,
4490         * device/include/at89x051.h: corrected cvs line endings
4491
4492 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4493
4494         * src/pic16/main.c (options): added command line --gstack, to trace
4495         stack over/under flows,
4496         * added pragma 'wparam' to allow passing first byte of function
4497         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4498         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4499         call to __gstack_test function and sets up the symbol as extern,
4500         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4501         * popaop): added call to pic16_testStackOverflow,
4502         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4503         wparamList list,
4504         * (genCall, genPcall): now all parameters are passed via stack
4505         except in functions that are pass to wparam pragma in which WREG is
4506         used too,
4507         * (genPcall): REENTRANT flag is checked to see if variable prototype
4508         contains reentrant keyword, don't call a non-reentrant function, via
4509         a reentrant function pointer or vice versa, functions are never
4510         passed via WREG,
4511         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4512         D.Winkler,
4513         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4514         SIGSEGV when accessing a NULL register stucture,
4515         * (pic16_printGPointerType): modified to handle UPPER modifier for
4516         function initializers, changed prototype of function to simpler one,
4517         * (pic16_printIvalFuncPtr): check to see if function is already
4518         added in externs list,
4519         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4520         optimized a move from W to SFR with a move to the same register
4521         later after a CALL,
4522         * device/lib/pic16/debug: NEW directory, contains debug features
4523         which are enabled when linking with libdebug.lib, currently command
4524         line option --gstack enables stack pointer tracing for over/under
4525         flow, corresponding sources are in debug/gstack
4526
4527 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4528
4529         * doc/sdccman.lyx: updated SDCC version,
4530         * (PIC16 port): update list of command line options,
4531         * src/pic16/device.h (structure pic16_options_t): added field gstack
4532         to enable stack overflow tracing on push/pops,
4533         * src/pic16/device.c (statistics structure): added statistics
4534         structure,
4535         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4536         pic16_dump_int_registers): increase statistics counters for each
4537         * variable which is encountered
4538         * (pic16_dump_usection): emit each .udata variable to its own udata
4539         section,
4540         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4541         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4542         parameters via stack, otherwise use old scheme,
4543         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4544         assembler output file,
4545         * src/pic16/main.c: added command line options --gstack to enable
4546         push/pop tracing for stack overflow,
4547         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4548         instructions): added size of each instruction,
4549         * (pic16_countInstruction): estimate size of instructions in
4550         the_pFile list, inline assembly blocks are not counted,
4551         * (pic16_FixRegisterBanking): trace previous register usage, when
4552         banksel optimizations is greater than 0, don't emit a redudant
4553         banksel directive,
4554
4555 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4556
4557         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4558         * src/pic16/ralloc.c : applied same fix for pic16.
4559         * src/pic/gen.c : tidied it up a little.
4560
4561 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4562
4563         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4564         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4565
4566 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4567
4568         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4569
4570 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4571
4572         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4573         non-reentrant function __modsint in the interrupt function (thus
4574         corrupting math operations during serial I/O)
4575         * device/lib/ser_ir.c: as above, changed buffersize
4576         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4577         256.c,d for zeroing
4578         * doc/Makefile: added option -t for rsync
4579
4580 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4581
4582         * src/SDCCast.h (struct ast),
4583         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4584
4585 2004-10-20 Borut Razem <borut.razem AT siol.net>
4586
4587         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4588         package
4589
4590 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4591
4592         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4593         makefile targets,
4594         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4595         support functions to replace long sequences of MOVFF's from access
4596         bank registers to stack and vice versa,
4597         * src/pic16/device.h: added new field opt_flags, where optimization
4598         flags can be set to enable certain features,
4599         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4600         * pBlock, (genFunction, genEndFunction): surroung loop for
4601         saving/loading used registers in stack with PC_INFO pCodes,
4602         INF_LREGS. Code in between can then be optimized by pCode optimizer
4603         to support function calls,
4604         * (genDataPointerSet): fixed bug which loaded float fields in
4605         structures with corrupt data,
4606         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4607         in a standard way debug info on stderr. Feature used for developing
4608         and debugging only,
4609         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4610         obsolete chunks of code,
4611         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4612         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4613         * pic16/src/pcode.c (pic16_newpCodeInfo,
4614         * (pic16_newpCodeOpLocalRegs),
4615         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4616         feature,
4617         * (pic16_pCodeConstString): printing of the initial value of a
4618         symbol as a comment is inhibited since parsing was already done by
4619         copyStr and output is corrupt,
4620         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4621
4622 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4623
4624         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4625
4626 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4627
4628         * as/mcs51/lkarea.c: removed old K&R style,
4629           (lnksect): changed check on boundary error,
4630           (lnksect2): changed check on boundary error,
4631           (lnksect2): extend XSTK to end of page if size = 1
4632         * as/mcs51/lkmain.c: removed old K&R style,
4633           (Areas51): create l_IRAM symbol
4634         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4635         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4636           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4637         * device/lib/_mullong.c: added version to be compiled with xstack
4638         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4639         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4640         * device/lib/mcs51/crtxstack.asm: fixed comment
4641         * src/SDCCglue.c: maxInterrupts defaults to 0,
4642           (emitMaps): added pdata,
4643           (createInterruptVect): (re)moved default,
4644           (glue): added pdata,
4645           (glue): moved __start__xstack to XSTK with default size 1
4646         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4647           and options.float_rent when options.stackAuto is set,
4648           (linkEdit): only write XDATA_NAME if provided on command line
4649         * src/SDCCmem.h,
4650         * src/SDCCmem.c: added pdata
4651         * src/port.h: added pdata_name to PORT
4652         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4653           (saveRegisters, unsaveRegisters): removed usage of B,
4654           (genMinus): fixed accumulator clash,
4655           (genJumpTab): added comment, this needs another look
4656         * src/mcs51/gen.c: added check for "B in use" paranoia,
4657           added pushB() and popB()
4658         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4659           chance
4660         * src/avr/main.c,
4661         * src/ds390/main.c,
4662         * src/hc08/main.c,
4663         * src/mcs51/main.c,
4664         * src/pic/main.c,
4665         * src/pic16/main.c,
4666         * src/xa51/main.c,
4667         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4668           added PSEG (PAG,XDATA) or NULL to port specifier
4669         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4670         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4671           (_mcs51_genInitStartup): removed __start__xstack equ,
4672           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4673         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4674         * src/z80/gen.c (_rleAppend): fixed warnings
4675         * support/regression/tests/zeropad.c: added pdata test
4676         * .version: bumped to 2.4.6
4677
4678 2004-10-17 Borut Razem <borut.razem AT siol.net>
4679
4680         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4681         as a part of nightly build
4682
4683 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4684
4685         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4686         WREG holds the first byte function parameters,
4687         * (aopForSym): take special case for symbols which are in FARSPACE
4688         but in CODESPACE too,
4689         * (assignResultValue): modified to take into account _G.useWreg,
4690         * (genCall): don't use wreg for parameter passing when function is
4691         declared as reentrant, too, added optimization INCF to stack
4692         pointer when stack parameter count is 1,
4693         * (genFunction, genEndFunction): refurnished and fixed to not using
4694         wreg for passing parameters when function has varargs or is
4695         reentrant, fixed bug with symbol name compare for generating
4696         functions in absolute address,
4697         * (pic16_storeForReturn): refurnished,
4698         * (genCmp): began writing a new version of the function, not ready
4699         yet, therefore it is disabled,
4700         * (genAssign): do not read code memory when assigning a function to
4701         a pointer function,
4702         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4703         array of characters, not pointer,
4704         * (pic16initialComments): in debug mode emit an .ident directive for
4705         the assembler,
4706         * (_process_pragma): emit a new warning type (internal to pic16)
4707         when setting stack to default length, emit a similar warning when
4708         placing a function at absolute address and address is not word aligned
4709         * (_pic16_parseOptions): added 'return TRUE' statement,
4710         * (_pic16_linkEdit): if compiling a source, then add the source's
4711         file object, first in the list of objects to link,
4712
4713 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4714
4715         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4716         * src/pic/main.c : removed VC warning.
4717         * src/pic/gen.c : changed comment.
4718
4719 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4720
4721         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4722         reference to a deprecated symbol _GPTRREG was causing failure to
4723         link. Thanks G. M. Gallant for the info.
4724
4725 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4726
4727         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4728         comments for Bugs item #954788.
4729
4730 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4731
4732         * src/pic16/device.c (pic16_dump_gsection,
4733         * pic16_groupRegistersInSection): handle symbols declared to be in
4734         access bank differently,
4735         * src/pic16/gen.c (struct _G): added field resDirect,
4736         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4737         send values read from stack directly to result and don't allocate
4738         temporary values,
4739         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4740         same registers,
4741         * (pic16_sameRegsOfs): NEW,
4742         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4743         free because they were not allocated from temporary pool,
4744         * pic16_popRegFromString): workaround to fix a problem with
4745         allocating variables twice or never,
4746         * (genGenPointerGet): using PRODL instead of FSR0H,
4747         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4748         instead of FSR0H,
4749         * (genAssign): take advantage of the _G.resDirect flag,
4750         * (genCast): around line 11844, use mov2f instead of directly
4751         MOVFF'ing between operands to account for literal values,
4752         * src/pic16/genutils.c: some new debug functions for gpsim have been
4753         added,
4754         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4755         float with integer part only,
4756         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4757         place variables in access bank
4758         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4759         updated sources to reflect recent changes in gen.c
4760
4761 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4762
4763         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4764         sources that searched for headers in installation path, now the
4765         device/include/pic16 is used,
4766         * src/pic16/glue.c (pic16glue),
4767         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4768         .line directives if not in debug mode, this suppresses assembler's
4769         warnings for ignored directives
4770
4771 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4772
4773         * src/port.h: made reset_regparms prototype void parameter explicit.
4774         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4775         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4776         * doc/sdccman.lyx: documented warning disabling and how to use
4777           printf_large to make it print floats.
4778         * device/include/stdbool.h: NEW
4779         * device/lib/_atof.c,
4780         * device/lib/_divuint.c,
4781         * device/lib/_divulong.c,
4782         * device/lib/expf.c,
4783         * device/lib/printf_large.c,
4784         * device/lib/sincosf.c,
4785         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4786         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4787           a completely reentrant lib.
4788
4789 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4790
4791         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4792         * device/include/pic16/stdio.h: fixed bug with colon
4793
4794 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4795
4796         * device/include/pic16/stdio.h,
4797         * device/include/pic16/stdlib.h,
4798         * device/include/pic16/math.h: NEW
4799         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4800         declared as _naked to reduce overhead
4801         * device/lib/Makefile.in (target port-specific-objects-pic16):
4802         changed * to *.* so to ignore the CVS directory,
4803         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4804         stacked variables back in stack,
4805         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4806         corruption
4807
4808 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4809
4810         * .version: bumped version number to 2.4.5
4811         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4812         * support/Util/SDCCerr.c (messages structure): added entry for
4813         W_POSSBUG2
4814
4815         Large cumulative patch for pic16 port and libraries.
4816         * device/include/pic16/sdcc-lib.h,
4817         * device/include/pic16/stdarg.h,
4818         * device/include/asm/pic16/features.h,
4819         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4820         * device/include/pic16/float.h: changes reentrant keyword with
4821         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4822         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4823         updated target build-libraries to include objects from gptr,
4824         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4825         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4826         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4827         all function headings,
4828         * src/SDCCmain.c: added global parameter userIncDirsSet,
4829         * (parseCmdLine): when option -I is encountered add directory to
4830         userIncDirsSet too,
4831         * src/version.awk: added space between control and long,
4832         * src/pic16/NOTES: added some notes for the port,
4833         * src/pic16/gen.c: added prototype for mov2fp function,
4834         * (fReturnpic16[]): properly named return value registers,
4835         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4836         * (aopForSym): added code to handle symbols with onStack flag set,
4837         symbols onStack are allocated PTRSIZE bytes,
4838         * (aopFreeAsmop): handles special case where asmops are stack objects,
4839         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4840         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4841         added argument lock to trace flaws in allocating temporary registers
4842         when developing port,
4843         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4844         * (pic16_popRegFromString): reenabled allocating a direct register
4845         from string,
4846         * (assignResultValue): various beautifications,
4847         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4848         referenced function argument,
4849         * (genIpush): reenabled to allow stacked arguments, handles only
4850         ic->parmPush iCodes,
4851         * (genCall, genPcall): major changes to allow for variable argument
4852         functions, fixed a bug with falsely restoring stack pointer after
4853         returning from call,
4854         * (genFunction): pending code for critical function,
4855         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4856         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4857         * (genNearPointerGet): fixed bug with indirect reading, was always
4858         reading from INDF0
4859         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4860         pointers,
4861         * (genAddrOf): rewrote code to take address of a stacked function parameter
4862         * (genCast): fixed casting to generic pointer type,
4863         * src/pic16/gen.h: added AOP_STA,
4864         * (struct asmop): added field stk,
4865         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4866         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4867         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4868         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4869         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4870         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4871         generic pointers,
4872         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4873         and library paths,
4874         * (pic16_port structure): generic pointer size is set to 3,
4875         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4876         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4877         compiler warning,
4878         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4879         operand is an iTemp,
4880
4881 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4882
4883         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4884         * debugger/mcs51/simi.c: addapt new syntax of s51
4885
4886 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4887
4888         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4889         * src/pic16/pcode.c: commented out some calls to free() in order to
4890         fix bug #989576,
4891
4892 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4893
4894         * src/SDCCicode.h,
4895         * src/SDCCicode.c (isiCodeInFunctionCall),
4896         * src/avr/ralloc.c (selectSpil),
4897         * src/pic/ralloc.c (selectSpil),
4898         * src/pic16/ralloc.c (selectSpil),
4899         * src/ds390/ralloc.c (selectSpil),
4900         * src/hc08/ralloc.c (selectSpil),
4901         * src/xa51/ralloc.c (selectSpil),
4902         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4903         stack in the middle of a function call sequence (fixes bug #1020268)
4904         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4905         costs associated with the minimum switch case.
4906
4907 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4908
4909         * src/SDCC.lex: fixed bug #1030549
4910
4911 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4912
4913         * src/SDCCcse.h (struct cseDef),
4914         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4915         over a function call if the CSE is derived from a symbol whose
4916         address has been taken (fixes bug #1029883)
4917         * support/regression/tests/bug-1029883: a new regression test for
4918         this bug
4919
4920 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4921
4922         * src/hc08/gen.c (emitinline): fixed bug #1029778
4923         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4924         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4925         and starts toward RFE #905167)
4926
4927 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4928
4929         * src/pic16/gen.c (mov2f): New function to move an operand to
4930         another without considering if it is a literal or a register,
4931         * (pic16_sameRegs): don't check if they are both AOP_REG,
4932         * (AccRsh): removed andmask=0 lines,
4933         * (genLeftShift): duplicated to be improved in future versions,
4934         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4935         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4936         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4937         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4938         * (insertBankSwitch): fixed inserting banksel directives algorithm
4939         for instructions that follow a skip instruction, this fixes a report
4940         for broken subtraction code generation,
4941         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4942         iCode is a left op, just in case result and right share the same
4943         registers
4944
4945 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4946
4947         * src/hc08/main.c,
4948         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4949         preservation of HX
4950         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4951         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4952         on 2004-09-12; it was buggy
4953
4954 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4955
4956         * src/SDCCsymt.h: removed RESULT_CHECK
4957         * src/SDCCast.c,
4958         * src/SDCCglue.c,
4959         * src/SDCCval.c,
4960         * src/pic/glue.c,
4961         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4962
4963 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4964
4965         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4966         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4967         configuration values no more rejected by compiler, they are assigned
4968         to configuration registers with a warning message instead,
4969         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4970         the for-loop so last conf register is emitted too,
4971         * (_pic16_initPaths): link library libsdcc.lib by default,
4972         * (_hasNativeMulFor): modified test for multiplication according to
4973         Raphael Neider's remarks. Integer multiplication is also done with
4974         support functions,
4975         * device/include/pic16/pic18fregs.h: corrected type error in while
4976         testing and including 18f6720 header file
4977
4978 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4979
4980         * src/pic16/device.h (pic16_options): removed field use_crt,
4981         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4982         until an optimization to handle single bits is added,
4983         * (pic16_loadFSR0): moved before genUnpackBits,
4984         * (genAnd): some white lines removed,
4985         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4986         leave_reset flags in pic16_options when using crt modules,
4987
4988 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4989
4990         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4991           for bugs 898889 & 979599. Also used some safer print instructions.
4992
4993 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4994
4995         * src/pic16/device.h (pic16_options_t): added field use_crt,
4996         crt_name, no_crt,
4997         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4998         catch a probable future bug,
4999         * src/pic16/gen.c: aopIdx function commented out,
5000         * (genAssign): commented out old code which used aopIdx,
5001         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
5002         code, added if conditionals to take into account the --use-crt
5003         command line options,
5004         * src/pic16/main.c (pic16_optionsTable): added new command line
5005         options, --use-crt= and --no-crt,
5006         * (_pic16_linkEdit): now the proper crt object is added in the
5007         linker command line except than when --no-crt is specified,
5008         * src/pic16/pcode.c,
5009         * src/pic16/pcode.h: added some structures and functions for a new
5010         optimization scheme to compansate for instruction overhead between
5011         same iCodes, this scheme is currently under development and is not
5012         working in any way,
5013         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
5014         to && operator,
5015         * device/lib/pic16/startup/crt0i.c,
5016         * device/lib/pic16/startup/crt0iz.c: added global char variable
5017         __uflags to force the generation of an idata section
5018
5019 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
5020
5021         * doc/Makefile,
5022         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
5023         * doc/sdccman.lyx: updated sdcc version to 2.4.4
5024
5025 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5026
5027         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
5028         Frieder) and clarified the default code optimization mode
5029
5030 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5031
5032         * src/SDCC.lex (doPragma, process_pragma),
5033         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
5034         "opt_code_size", and "opt_code_balanced"
5035         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
5036         regrouped options by category, added support for category headers
5037         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
5038         and "--opt-code-size"
5039         * doc/sdccman.lyx: documented these new options and pragmas
5040         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
5041         preference into account
5042
5043 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5044
5045         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
5046           geniCodePreDec): Fixed bug 904237 by generating a warning
5047         * src/SDCCerr.h,
5048         * src/SDCCerr.c: added warning W_SIZEOF_VOID
5049
5050 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
5051
5052         * src/pic/device.c : When no max ram set validate full memory range.
5053         * src/pic/pcode.c,
5054         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
5055
5056 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5057
5058         * device/lib/_gptrget.c,
5059         * device/lib/_gptrput.c: updated comment
5060         * device/lib/calloc.c,
5061         * device/lib/free.c,
5062         * device/lib/malloc.c,
5063         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5064         * src/SDCCcse.c (cseBBlock),
5065         * src/SDCCicode.c (printOperand, geniCodeArray),
5066         * src/SDCCicode.h (struct operand): fixed bug 868103
5067         * support/regression/tests/bug-868103.c: added
5068         * src/SDCCast.c (searchLitOp),
5069         * src/SDCCcse.h (struct cseDef),
5070         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5071         * src/SDCCicode.h (struct operand),
5072         * src/SDCCsymt.h (struct sym_link),
5073         * src/avr/gen.c (hasInc),
5074         * src/ds390/gen.c (hasInc),
5075         * src/hc08/gen.c (genPlusIncr, hasInc),
5076         * src/mcs51/gen.c (hasInc),
5077         * src/pic16/glue.c (pic16_printIvalChar),
5078         * src/pic16/ralloc.c (regWithIdx),
5079         * src/xa51/gen.c (hasInc) : removed warnings
5080         * src/SDCCast.c (createBlock): added comment ???
5081         * src/hc08/ralloc.c: updated comments
5082
5083 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5084
5085         * doc/sdccman.lyx: updated section on switch statements, added
5086         section about semaphore locking
5087         * doc/Makefile: added option -info for latex2html
5088         * device/lib/_gptrget.c,
5089         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5090
5091 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5092
5093         * src/pic/device.h,
5094         * src/pic/device.c,
5095         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5096          maxram is less than 0x100.
5097
5098 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5099
5100         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5101
5102 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5103
5104         * src/port.h,
5105         * src/mcs51/main.c,
5106         * src/ds390/main.c,
5107         * src/z80/main.c,
5108         * src/hc08/main.c,
5109         * src/pic/main.c,
5110         * src/pic16/main.c,
5111         * src/avr/main.c,
5112         * src/xa51/main.c
5113         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5114         a jump table is the best form for a switch statement, including
5115         automatic insertion of missing cases to make the case range
5116         continuous. Developed in collaboration with Frieder Ferlemann.
5117
5118 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5119
5120         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5121         accumulator result if it needs sign extension
5122
5123 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5124
5125         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5126
5127 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5128
5129         * device/lib/gbz80/printf.c,
5130         * device/lib/z80/printf.c: removed define for NULL
5131
5132 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5133
5134         * as/xa51/xa_link.c,
5135         * device/examples/ds390/ow390/ad26.c,
5136         * device/examples/ds390/ow390/cnt1d.c,
5137         * device/examples/ds390/ow390/counter.c,
5138         * device/examples/ds390/ow390/ds2480.h,
5139         * device/examples/ds390/ow390/ds2480ut.c,
5140         * device/examples/ds390/ow390/findtype.c,
5141         * device/examples/ds390/ow390/gethumd.c,
5142         * device/examples/ds390/ow390/owllu.c,
5143         * device/examples/ds390/ow390/ownetu.c,
5144         * device/examples/ds390/ow390/swt12.c,
5145         * device/examples/ds390/ow390/swtloop.c,
5146         * device/examples/ds390/ow390/temp.c,
5147         * device/examples/ds390/ow390/temp10.c,
5148         * device/examples/ds390/ow390/thermo21.c,
5149         * device/examples/ds390/ow390/tinilnk.c,
5150         * device/examples/ds390/ow390/tstfind.c,
5151         * device/examples/serialcomm/windows/serial.cpp,
5152         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5153         * device/include/reg51.h: fixed line endings for cvs
5154
5155 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5156
5157         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5158         packRegsForAccUse, packRegisters): new accumulator register
5159         packing algorithm
5160         * support/regression/ports/hc08/support.c (_putchar): suppress
5161         warning of unused variable
5162         * src/SDCCicode.c: added SWAP entry to codeTable
5163
5164 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5165
5166         * device/lib/sprintf.c: forgot to add this file before previous commit
5167
5168 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5169
5170         * src/pic16/gen.c (genPackBits): added operand right in function
5171         parameters, load result directly if p_type is POINTER (that is
5172         called by genNearPointerSet)
5173         * (genUnPackBits): added operand left in function parameters,
5174         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5175         FSR0 if accessing bitfields,
5176
5177 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5178
5179         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5180           _print_format; updated printf, sprintf, vsprintf
5181         * device/include/asm/default/features.h: corrected comment/define
5182         * device/lib/Makefile.in: added sprintf.c
5183         * device/lib/libsdcc.lib: added sprintf module
5184         * device/lib/printf_large.c,
5185         * device/lib/vprintf.c,
5186         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5187           into these 3 files
5188         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5189         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5190         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5191           hc08 test
5192         * support/regression/tests/zeropad.c: define idata as data for hc08
5193
5194 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5195
5196         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5197         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5198         labels are referenced at least once (even if a reference is not found)
5199         * src/hc08/gen.c (emitcode): set isComment flag for comments
5200         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5201         loads), rules 6a..6b (optimize jumps to return)
5202
5203 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5204
5205         * device/lib/acosf.c (acosf),
5206         * device/lib/asinf.c (asinf),
5207         * device/lib/atanf.c (atanf),
5208         * device/lib/ceilf.c (ceilf),
5209         * device/lib/cosf.c (cosf),
5210         * device/lib/coshf.c (coshf),
5211         * device/lib/cotf.c (cotf),
5212         * device/lib/fabsf.c (fabsf),
5213         * device/lib/floorf.c (floorf),
5214         * device/lib/log10f.c (log10f),
5215         * device/lib/logf.c (logf),
5216         * device/lib/sinf.c (sinf),
5217         * device/lib/sinhf.c (sinhf),
5218         * device/lib/sqrtf.c (sqrtf),
5219         * device/lib/tanf.c (tanf),
5220         * device/lib/tanhf.c (tanhf),
5221         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5222         replaced all instances of "reentrant" in the library functions
5223         defined in math.h with this macro.
5224         * support/regression/tests/float_trans.c: reenabled test for hc08
5225
5226 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5227
5228         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5229         erroneously deleted
5230
5231 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5232
5233         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5234         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5235         multi-byte volatile operands are used
5236         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5237         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5238         initialization to area GSINIT0 so that it would always precede
5239         any static initializers in GSINIT
5240         * support/regression/tests/zeropad.c: fixed idata define for hc08
5241         * support/regression/tests/bug-927659.c,
5242         * support/regression/tests/float_trans.c: disabled tests for hc08
5243         pending missing library routines
5244         * .version: increased version number to 2.4.4 - hc08 port now passes
5245         regression tests
5246
5247
5248 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5249
5250         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5251         * Makefile.common.in,
5252         * as/Makefile,
5253         * as/hc08/Makefile.in,
5254         * as/mcs51/Makefile.in,
5255         * as/z80/Makefile.in,
5256         * debugger/mcs51/Makefile.in,
5257         * device/include/Makefile.in,
5258         * device/lib/Makefile.in,
5259         * doc/Makefile,
5260         * link/Makefile,
5261         * link/z80/Makefile.in,
5262         * packihx/Makefile.in,
5263         * sim/ucsim/main_in.mk,
5264         * sim/ucsim/avr.src/Makefile.in,
5265         * sim/ucsim/doc/Makefile.in,
5266         * sim/ucsim/gui.src/serio.src/Makefile.in,
5267         * sim/ucsim/hc08.src/Makefile.in,
5268         * sim/ucsim/s51.src/Makefile.in,
5269         * sim/ucsim/xa.src/Makefile.in,
5270         * sim/ucsim/z80.src/Makefile.in,
5271         * src/Makefile.in,
5272         * support/cpp2/Makefile.in,
5273         * support/librarian/Makefile,
5274         * support/makebin/Makefile: added DESTDIR to the install path proposed
5275         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5276         * doc/sdccman.lyx: added DESTDIR documentation
5277
5278 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5279
5280         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5281         instruction for interrupt handlers, use fast returns when returning
5282         from high priority interrupts
5283
5284 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5285
5286         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5287         code generation
5288         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5289         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5290         bugs, ported much of Bernhard's code from mcs51
5291         * src/mcs51/gen.c (genSend),
5292         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5293         than one when calling a reentrant function
5294         * device/lib/_mullong.c: defined an alternate struct layout for big
5295         endian ports (hc08)
5296
5297 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5298
5299         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5300         test
5301
5302 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5303
5304         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5305         are sane and complete before asking the port its prefered parameter
5306         passing method (fixes bug #1017633)
5307         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5308         and _ret3
5309
5310 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5311
5312         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5313         problem in bitfields >= 8 bits.
5314
5315 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5316
5317         * src/SDCCsymt.c: undid changes that were not meant to be committed
5318
5319 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5320
5321         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5322
5323 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5324
5325         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5326           copied and wrong bit got inverted
5327
5328 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5329
5330         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5331         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5332         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5333         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5334         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5335         assignments to bitfields at known addresses
5336         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5337         reads from bitfields at known addresses
5338         * src/hc08/ralloc.c (packRegisters),
5339         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5340         genhc08Code): optimize pointer get values used as conditionals
5341         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5342         and branch
5343
5344 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5345
5346         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5347         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5348         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5349         as conditionals
5350
5351 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5352
5353         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5354
5355 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5356
5357         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5358         related problems
5359
5360 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5361
5362         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5363
5364 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5365
5366         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5367         mcs51 port
5368
5369 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5370
5371         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5372
5373 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5374
5375         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5376         cases use more compact code.
5377
5378 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5379
5380         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5381
5382 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5383
5384         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5385
5386 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5387
5388         * src/SDCCsymt.h,
5389         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5390         parameter of changePointer() from symbol* to sym_link*
5391         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5392         * src/SDCCsymt.c (compareType): void* type is castable to other
5393         pointers, but not necesarily an exact match.
5394         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5395         is no longer blindly treated as an exact match.
5396         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5397
5398 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5399
5400         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5401
5402 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5403
5404         * src/pic/gen.c,
5405         * src/pic/pcode.c,
5406         * src/pic/ralloc.h,
5407         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5408
5409 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5410
5411         * src/pic/device.c,
5412         * src/pic/device.h,
5413         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5414
5415 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5416
5417         * src/mcs51/gen.c (emitcode): fixed bug #992819
5418
5419 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5420
5421         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5422           there's no need to make it worse
5423
5424 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5425
5426         * src/mcs51/ralloc.c (deassignLR),
5427         * src/ds390/ralloc.c (deassignLR),
5428         * src/hc08/ralloc.c (deassignLR),
5429         * src/z80/ralloc.c (deassignLR),
5430         * src/pic/ralloc.c (deassignLR),
5431         * src/pic16/ralloc.c (deassignLR),
5432         * src/avr/ralloc.c (deassignLR),
5433         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5434         rlivePoint): fixed another part of bug #971834
5435
5436 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5437
5438         * src/z80/main.c: enabled "critical" keyword
5439         * src/z80/mappings.i,
5440         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5441         functions (fixes bug #979646)
5442         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5443
5444 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5445
5446         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5447           such as c:\mydir.
5448
5449 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5450
5451         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5452           doesn't disable too much optimizations
5453
5454 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5455
5456         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5457
5458 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5459
5460         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5461
5462 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5463
5464         * src/pic/gen.c tidied up tabs
5465         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5466         * src/pic/main.c tidied up tabs
5467         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5468         * src/pic/pcoderegs.c tidied up tabs
5469         * src/pic/ralloc.c tidied up tabs
5470
5471 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5472
5473         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5474         to S_FIXED for pic16 port and when symbol is not in level 0,
5475         allocate for S_REGISTER storage class and pic16 port, too,
5476         * src/pic16/device.h: prototype for checkSym,
5477         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5478         * (pic16_assignConfigWordValue): test the value and the mask to
5479         validate that the value is suitable for the configuration word,
5480         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5481         collect extern declared symbols, don't emit symbol twice, check
5482         first if symbol is in publics set first,
5483         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5484         * added command line '--fstack' which enables an experimental
5485         feature for stack access, too buggy to be used yet...
5486         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5487         * (pic16_allocDirReg): when register has storage class S_REGISTER
5488         allocate in pic16_dynAccessRegs,
5489         * device/include/pic16/pic18f????.h: modified configuration word
5490         naming convention, words started as CONFIG0H but should be CONFIG1H
5491
5492 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5493
5494         * device/include/mcs51reg.h: fixed bug 970993
5495
5496 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5497
5498         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5499         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5500         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5501         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5502         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5503         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5504           error/warning numbers,
5505           added function setWarningDisabled()
5506         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5507         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5508           _memcmp.c _memmove.c calloc.c realloc.c free.c
5509         * support/regression/tests/malloc.c: added tests for new functionality
5510         * support/regression/tests/zeropad.c: added tests for truncated initializers
5511           and initialized char arrays starting with '\x0'
5512         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5513
5514 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5515
5516         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5517
5518 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5519
5520         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5521         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5522         peephole 177.e. Thanks to anonymous
5523
5524 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5525
5526         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5527         function isn't used in the source but referenced as a
5528         variable initializer then declare it as extern in .asm file
5529
5530 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5531
5532         * .version: increased version number to 2.4.3
5533
5534         Adding version extension according to ChangeLog CVS revision
5535         * src/Makefile.in (target all): added dependency 'version.h'
5536         * (rule version.h): added rule to create version.h from ChangeLog,
5537         * (rule dep): added dependency version.h,
5538         * src/version.awk: AWK script to create version.h
5539         * src/SDCCdwarf2.c (dwWriteModule),
5540         * src/SDCCglue.c (initialComments),
5541         * src/SDCCmain.c (printVersionInfo): modified to write after
5542         version string the version extension number,
5543         * src/SDCCutil.c: included "version.h"
5544         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5545         number,
5546         * src/SDCCutil.h: added prototype for getBuildNumber
5547
5548         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5549         includeDirsSet, too,
5550         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5551         const char [] is found in function prototype...
5552
5553         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5554         moving to WREG with source is already in WREG,
5555         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5556         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5557         * (aopForSym): stack'ed symbols are partially supported, added
5558         if-clause to support symbols in FARSPACE,
5559         * (sameRegs): added test for AOP_ACC to see if registers are same,
5560         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5561         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5562         * (pic16_popRegFromString): will not allocate a new register if it
5563         doesn't find one by name, bug may have introduced...
5564         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5565         * (genIpush): revived to use pic16 port's stack,
5566         * (genAddrOf): added incomplete case for stack'ed operand,
5567         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5568         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5569         can handle multibyte operands,
5570         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5571         * (pic16initialComments): added message for MPLAB compatibility
5572         mode enabled,
5573         * src/pic16/main.h: prototype for pic16_mplab_comp,
5574         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5575         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5576         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5577         because of increased complexity of procedure,
5578         * (_process_pragma): stack pragma changed to format 'stack pos len',
5579         emit symbol '_stack_end' to conform with gplink,
5580         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5581         to search for register,
5582         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5583         PO_GPR_REGISTER,
5584         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5585         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5586         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5587         case for PO_GPR_REGISTER,
5588         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5589         dies, the new era is ahead !...
5590         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5591         pic16_dynInternalRegs,
5592         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5593         * (pic16_allocDirReg): minor optimizations and bug fixes,
5594         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5595
5596         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5597         load stack and frame pointer with address of 'stack_end' symbol
5598
5599 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5600
5601         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5602         without source code but only variable initializers
5603
5604 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5605
5606         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5607         external are not declared as extern to reduce overhead while linking
5608
5609 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5610
5611         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5612
5613 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5614
5615         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5616           Yee Keat for the patch
5617         * src/SDCCast.c (decorateType): fixed bug #979599
5618         * src/ds390/gen.h: removed local fReturnSizeDS390
5619         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5620         * src/ds390/gen.c (genAnd, genOr, genXor),
5621         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5622
5623 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5624
5625         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5626         add relFilesSet to $3, manipulate $2 to handle linking of object
5627         files without source files in command line,
5628         * device/include/pic16 (all headers): added ID location macros,
5629         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5630         entries for ID location bytes,
5631         * (pic16_assignIdByteValue): NEW,
5632         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5633         added field dumpcalltree to pic16_options_t,
5634         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5635         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5636         emitting rFalseIfx label after check_carry label,
5637         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5638         pic16_emitDIRegs), NEW
5639         * (pic16glue): dump .calltree file when option --calltree found,
5640         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5641         * (_pic16_genAssemblerPreamble): emit ID locations after
5642         configuration registers,
5643         * (pic16_linkCmd): modifications of the link command,
5644         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5645         * (pic16_pCodeInitRegisters): don't init stack registers,
5646         * (pic16_findPrevInstruction): fixed bug,
5647         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5648         bug with immediate registers,
5649         * (buildCallTree): traces stack push and pop,
5650         * (pct2): dump also stack usage for each function,
5651         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5652         * (pic16_allocDirReg): various modifications,
5653         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5654         fixed to 1,
5655
5656 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5657
5658         * src/pic16/pcode.c: removed buggy double colon
5659
5660 2004-07-01 Borut Razem <borut.razem AT siol.net>
5661
5662         * support/scripts/sdcc.nsi: added include/pic16 to setup
5663
5664 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5665
5666         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5667         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5668         target 'clean',
5669         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5670         specific command line arguments. Also added sample lkr script
5671         for placing a variable at a specific memory bank.
5672         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5673         at a specific memory bank,
5674         * (pic16_dump_isection): fixed bug which caused string literals to
5675         be omitted when dumping idata section,
5676         * (pic16_groupRegistersInSection): added code to handle registers
5677         in specific memory banks,
5678         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5679         public, all references are renamed too,
5680         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5681         AOP_DPTR2,
5682         * (pic16_storeForReturn): added case to handle when dest is WREG,
5683         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5684         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5685         pic16_rel_udata, check to see if that register is marked as being
5686         a member of a specific memory bank,
5687         * (pic16_printIvalCharPtr): added code to add string literals either
5688         to code or the idata sections,
5689         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5690         also accept the 'udata' pragma,
5691         * src/pic16/main.h: new structure types sectName and sectSym
5692         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5693         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5694         * (pic16_findPrevInstruction): fixed, it returned nothing,
5695         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5696         instruction combinations,
5697         * (pic16_FixRegisterBanking): heavily reorganised,
5698         * (pic16_AnalyzeBanking): if generating banksel directives is
5699         disabled, then don't call FixRegisterBanking at all,
5700         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5701         completely removed,
5702         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5703
5704 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5705
5706         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5707         Phuah Yee Keat <yk.phuah AT nestac.com>
5708
5709 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5710
5711         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5712         correctly the IVT even if it is relocated to some other location
5713
5714 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5715
5716         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5717         * device/include/pic16/pic18f2220.h: NEW,
5718         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5719         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5720         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5721         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5722         nodefaultlibs, ivt_loc is the location of the interrupt vector
5723         table, and nodefaultlibs signs that default libraries should not be
5724         linked in link stage,
5725         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5726         according to --ivt-loc argument,
5727         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5728         when pragma stack is found,
5729
5730 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5731
5732         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5733         256 (range check), 257 (do while), 258.a-f (bit banging
5734         f.e. on 3-wire SPI bus)
5735
5736 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5737
5738         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5739         variables used exclusively within a loop
5740
5741 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5742
5743         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5744
5745 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5746
5747         * src/SDCClrange.c (computeClash): fixed bug #971834
5748
5749 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5750
5751         * src/mcs51/gen.c (genCmp): fixed bug #975903
5752         * src/hc08/gen.c (operandsEqu),
5753         * src/ds390/gen.c (operandsEqu),
5754         * src/z80/gen.c (operandsEqu),
5755         * src/pic/gen.c (operandsEqu),
5756         * src/pic16/gen.c (operandsEqu),
5757         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5758         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5759
5760 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5761
5762         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5763
5764 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5765
5766         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5767         default case in switch statement,
5768         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5769         to eliminate problem with initialisation of pointers, but problem
5770         still exists,
5771         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5772         * (emitStaticSegment): removed various lines emitting debug info,
5773         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5774         added processor registers for utilizing EEPROM,
5775         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5776         configurable and set 8
5777
5778 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5779
5780         * .version: increased version number to 2.4.2,
5781
5782         Cumulative patch for pic16 port
5783         * src/pic16/device.c: changed scheme to dump initial values for
5784         variables in idata segment, all print_idata* functions were removed,
5785         now the pic16_printIval* will be called,
5786         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5787         * _pic16_printPointerType, pic16_printPointerType,
5788         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5789         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5790         NEW, similar to the respective functions in SDCCglue.c,
5791         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5792         way, emitting hex bytes,
5793         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5794
5795 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5796
5797         * src/avr/ralloc.c (serialRegAssign),
5798         * src/xa51/ralloc.c (serialRegAssign),
5799         * src/pic/ralloc.c (serialRegAssign),
5800         * src/pic16/ralloc.c (serialRegAssign),
5801         * src/hc08/ralloc.c (serialRegAssign),
5802         * src/z80/ralloc.c (serialRegAssign),
5803         * src/ds390/ralloc.c (serialRegAssign),
5804         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5805
5806 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5807
5808         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5809         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5810
5811 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5812
5813         Cumulative patch for pic16 port:
5814         * src/pic16/device.h (typedef PIC16_device) modified fields for
5815         defining microcontrollers,
5816         * src/pic16/device.c: added new info for all devices in Pics16 array,
5817         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5818         to be optimised out by the pCode optimiser,
5819         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5820         specially, bug reported by G.M. Gallant,
5821         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5822         as force'd so that cannot be optimised out by pCode optimiser,
5823         * src/pic16/pcode.c,
5824         * src/pic16/pcodepeeph.c,
5825         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5826         they are disabled by default, but can be enabled explicit with
5827         command argument --denable-peeps, for testing,
5828         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5829         --pomit-ivt in COMPILE_FLAGS
5830
5831 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5832
5833         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5834           compilation on MSVC
5835
5836 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5837
5838         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5839
5840 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5841
5842         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5843         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5844
5845 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5846
5847         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5848         would only assign 0x300001 register.
5849
5850 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5851
5852         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5853         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5854
5855 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5856
5857         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5858         for ds80c400
5859         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5860         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5861         added peephole 254 (left shift), 255 (jump table)
5862
5863 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5864
5865         * device/lib/Makefile.in: removed comment line with model-pic16,
5866         * (target port-specific-objects-pic16): the libraries and objects
5867         are copied to the build directory form the device/lib/pic16/bin
5868         directory
5869
5870         Cumulative patch concerning pic16 port:
5871         * library directory has been re-organized,
5872         * added support for PIC18F1220,
5873         * added headers and library sources for chips 18f1220,18f6520,
5874         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5875
5876         * configuration registers setting has changed, now each supported
5877         device has a complete description of the registers it uses,
5878         * all initialisations are moved to idata sections, these section
5879         can be absolute or relocatable,
5880         * fixed initialisation of codespace variables,
5881         * fixed warning about PCLATU and gpsim,
5882         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5883         * (genAssign): use table reads when assigning from variables in codespace,
5884         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5885         char/int variables placed in codespace,
5886         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5887         registers set in .asm file, no need for --pomit-config-words anymore,
5888         * (pic16glue): some 8051 legacy segments are commented out
5889         (to be removed completely),
5890         * added support for alternative assembler and linker with --asm=
5891         and --link= command line arguments,
5892         * peepholes are disabled automatically in the port, no need to
5893         specify on command line,
5894         * port supports natively char/int/long multiplication, but converts
5895         all divisions to support functions,
5896         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5897         to the file set in variable $2,
5898         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5899         strings in ASCII format and not in hex,
5900         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5901         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5902         allocate proper register if iCodes aren't temporary,
5903
5904 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5905
5906         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5907
5908 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5909
5910         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5911         is commented out
5912
5913 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5914
5915         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5916         computed address is reused
5917         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5918         multi-byte bitfields
5919
5920 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5921
5922         * src/z80/gen.c: (genArrayInit): must check for pointers too
5923
5924 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5925
5926         * support/regression/tests/zeropad.c: never meant to commit the
5927           nestedstruct test: removed, added check for GCC version
5928
5929 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5930
5931         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5932         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5933         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5934           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5935           bugs 928906 and 954082 half-empty initializers
5936         * src/SDCCsymt.h,
5937         * src/SDCCsymt.c (getAllocSize): added for above fix
5938         * src/z80/gen.c (genArrayInit): fixed bug 741044
5939         * support/regression/tests/zeropad.c: added tests
5940
5941 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5942
5943         * src/pic16/device.c (pic16_dump_section): corrected bug which
5944         caused some symbols of the libraries to be misplaced
5945
5946 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5947
5948         * src/pic16/glue.c,
5949         * src/pic16/ralloc.h,
5950         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5951         to fix conflict with pic port
5952
5953 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5954
5955         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5956         externs configuration variables,
5957         * src/pic16/ralloc.h,
5958         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5959         prototype in header, commented out some debug messages
5960
5961 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5962
5963         * src/pic16/glue.c,
5964         * src/pic16/main.c,
5965         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5966         for gpasm COFF object generation. Thanks to D. Hawkins for
5967         his patch info
5968
5969 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5970
5971         * src/ds390/main.c,
5972         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5973         Brock for spotting this)
5974         * src/ds390/gen.c (genEndFunction),
5975         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5976         interrupt handler and critical. Disable push/pop optimizations when
5977         peephole optimizations disabled.
5978
5979 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5980
5981         Updated pic16 library sources and headers.
5982         * device/lib/pic16/pic18f*/ ,
5983         * device/include/pic16/*.h: modified to handle structured SFR
5984         definitions
5985
5986 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5987
5988         * src/port.h (PORT structure): added hook initPaths, now each
5989         port can declare its own default search paths,
5990         which can been seen with the --print-search-dirs option,
5991         see pic16 port for example,
5992         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5993         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5994         * (doPrintSearchDirs): NEW, replaces in a central manner the
5995         printing of search dirs which was split in set*Paths functions,
5996         * (main): added call to port->initPaths and doPrintSearchDirs,
5997         * src/avr/main.c,
5998         * src/ds390/main.c,
5999         * src/hc08/main.c,
6000         * src/izt/i186.c,
6001         * src/izt/tlcs900h.c,
6002         * src/mcs51/main.c,
6003         * src/pic/main.c,
6004         * src/pic16/main.c: modified port structures to reflect addition of
6005         initPaths hook,
6006
6007         * src/pic16/device.c (regCompare): registers are finally sorted by name,
6008         * (pic16_dump_section): for registers in same address reserve memory once,
6009         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
6010         to no_banksel,
6011         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
6012         result is greater in size than right or left,
6013         * (pic16_genUMult8X8_8): there are some cases where the result can
6014         be 16 bits size, so handle these,
6015         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
6016         * (pic16_outBitC): modified to emit pcodes,
6017         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
6018         or not,
6019         * (genDivOneByte): implemented algorithm to divide 8-bits,
6020         * (genCmp): uncommented goto, but issues still exist,
6021         * (genAnd): fixed a bug with variables >8bits,
6022         * (genPackBits): optimization added that uses BCF/BSF to change a
6023         single bit,
6024         * (genAssign): fixed bug when assigning floating point literals,
6025         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
6026         __sdcc_gsinit_startup label,
6027         * src/pic16/main.c (_pic16_init): removed search directory
6028         initialisations,
6029         * (_pic16_initPaths): NEW, used to initialise search directories,
6030         * (_hasNativeMulFor): support functions for all except char/int
6031         multiplication, and char division,
6032         * (PIC16_port struct): modified entry for native mul support,
6033         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
6034         no_banksel option,
6035         * (buildCallTree): call to register_usage is ifdef'ed out,
6036
6037 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6038
6039         * device/include/string.h: applied Stas Sergeev's patch to make this
6040         header file compatible with the preprocessor -Wundef option
6041         * src/SDCCmain.c (main): abort compilation if preprocessor reports
6042         failure (fixes bug #941458)
6043
6044 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6045
6046         * src/SDCCopt.c (killDeadCode): fixed bug #907733
6047         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
6048         that the variable, not the function, should be static
6049         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
6050         to be consistent with non-literal case
6051
6052 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6053
6054         * src/SDCCast.c (isConformingBody): fixed bug #949967
6055         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
6056         convilong): fixed bug #952086
6057
6058 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6059
6060         * src/SDCCmem.c (allocVariables): fixed bug #955321
6061
6062 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6063
6064         * src/hc08/main.c (_hc08_genAssemblerEnd),
6065         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6066         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6067         completely eliminated the use of a temporary file
6068         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6069         when more than one file linked
6070         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6071
6072 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6073
6074         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6075         which fixes bug #543481
6076         * support/regression/tests/bug-751703.c: fixed comments left from a
6077         cut and paste error
6078         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6079         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6080         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6081         scopes
6082         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6083         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6084         are now changed to underscores in moduleName
6085
6086 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6087
6088         * as/mcs51/lkmem.c: better fix for bug #954173
6089
6090 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6091         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6092
6093         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6094         * device/include/c8051f000.h,
6095         * device/include/c8051f120.h,
6096         * device/include/c8051f300.h,
6097         * device/include/c8051f310.h,
6098         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6099         PWM16) and detab'ed
6100
6101 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6102
6103         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6104         and mailing lists, doc'ed --no-peep-comments, removed reference
6105         to knoppix (newest version has no LyX/LaTeX), other minor changes
6106         * src/SDCCglue.c (glue): save 2 bytes stack space with
6107         option --main-return. The ljmp could probably be avoided too
6108
6109 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6110
6111         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6112
6113 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6114
6115         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6116         * src/SDCCopt.c (isLocalWithoutDef),
6117         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6118         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6119         (credit to Maarten Brock for patch #949363, on which this is based)
6120         * support/regression/tests/bug-751703.c: some test cases of extern used
6121         within inner scopes.
6122
6123 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6126         SPEC_STRUCT
6127         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6128         struct definitions
6129         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6130         dwWriteLabel): fix to create valid debugger symbols even when
6131         the module name has non-alphanumeric symbols in it
6132         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6133         when a variable's allocation has been optimized away
6134
6135
6136 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6137
6138         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6139         * src/hc08/main.c,
6140         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6141         * src/mcs51/main.c,
6142         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6143         * src/ds390/main.c,
6144         * src/z80/gen.c (z80_emitDebuggerSymbol),
6145         * src/z80/main.c,
6146         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6147         * src/pic/main.c,
6148         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6149         * src/pic16/main.c,
6150         * src/avr/gen.c (avr_emitDebuggerSymbol),
6151         * src/avr/main.c,
6152         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6153         * src/xa51/main.c,
6154         * src/SDCCdebug.c (emitDebuggerSymbol),
6155         * src/SDCCdebug.h,
6156         * src/port.h: added a debugger struct to the port struct. Added a
6157         callback for defining debugger symbols
6158
6159         * src/SDCCast.c (createLabel),
6160         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6161         with isitmp = 1
6162         * src/SDCCicode.h,
6163         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6164         iCode back to the ast for the function
6165
6166         * src/hc08/ralloc.c (hc08_assignRegisters),
6167         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6168         unneeded fields from the regs struct.
6169         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6170         pushReg() & pullReg() functions instead of emitcode()
6171
6172         * src/hc08/gen.c (genLabel, genhc08Code),
6173         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6174
6175         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6176         debugger hooks
6177
6178         * src/hc08/gen.c (genEndFunction, genhc08Code),
6179         * src/hc08/gen.h,
6180         * src/mcs51/gen.c (genEndFunction, gen51Code),
6181         * src/mcs51/gen.h,
6182         * src/ds390/gen.c (genEndFunction, gen390Code),
6183         * src/ds390/gen.h,
6184         * src/z80/gen.c (genEndFunction, genZ80Code),
6185         * src/z80/gen.h,
6186         * src/z80/z80.h,
6187         * src/pic/gen.c (genEndFunction, genpic14Code),
6188         * src/pic/gen.h,
6189         * src/pic16/gen.c (genEndFunction, genpic16Code),
6190         * src/pic16/gen.h,
6191         * src/avr/gen.c (genEndFunction, genAVRCode),
6192         * src/avr/gen.h,
6193         * src/xa51/gen.c (genEndFunction, genXA51Code),
6194         * src/xa51/gen.h,
6195         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6196         specific code to cdbFile.c and out of the backend code generators
6197
6198         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6199         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6200         starting address is now 0
6201
6202         * as/hc08/asm.h,
6203         * as/hc08/m08pst.c,
6204         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6205         assembler directive for DWARF support
6206         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6207
6208         * src/src.dsp,
6209         * src/Makefile.in,
6210         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6211
6212 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6213
6214         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6215         and inappropriate peephole optimization in jump tables
6216
6217 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6218
6219         * as/hc08/m08pst.c,
6220         * src/SDCCglue.c: sdccopt works for the hc08 port now
6221
6222 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6223
6224         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6225
6226 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6227
6228         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6229
6230 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6231
6232         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6233         rules
6234         * src/SDCCmain.c,
6235         * src/SDCCglobl.h,
6236         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6237         comments from the peephole optimizer replacement rules
6238         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6239         symbols
6240         * src/SDCCcse.c (updateSpillLocation),
6241         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6242         equivalents
6243         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6244         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6245         objects far pointers
6246
6247 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6248
6249         * src/SDCCsymt.h: a missing part of my last change
6250         * src/pic/ralloc.c (regTypeNum),
6251         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6252
6253 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6254
6255         * src/SDCCicode.h,
6256         * src/SDCCicode.c (aggrToPtrDclType),
6257         * src/SDCCptropt.h,
6258         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6259         ptrPseudoSymConvert),
6260         * src/pic/ralloc.c (regTypeNum),
6261         * src/pic16/ralloc.c (regTypeNum),
6262         * src/hc08/ralloc.c (regTypeNum),
6263         * src/ds390/ralloc.c (regTypeNum),
6264         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6265         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6266
6267 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6268
6269         * link/z80/lkmain.c (afile),
6270         * as/hc08/lkmain.c (afile),
6271         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6272         prevent a pointer problem when a filename has no directory and
6273         no extension specified.
6274
6275 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6276
6277         * link/z80/lkmain.c (afile): allow periods in directory names
6278         * link/z80/lkmain.c (afile),
6279         * as/mcs51/lkmain.c (afile),
6280         * as/hc08/lkmain.c (afile): allow linker script file to have an
6281         extension other than ".lnk"
6282         * link/z80/lklex.c (getfid),
6283         * link/z80/lkmain.c (parse),
6284         * as/mcs51/lklex.c (getfid),
6285         * as/mcs51/lkmain.c (parse),
6286         * as/hc08/lklex.c (getfid),
6287         * as/hc08/lkmain.c (parse): Support comments in the linker script
6288         file on lines by themselves and after filenames
6289
6290 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6291
6292         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6293
6294 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6295
6296         * src/z80/peeph-z80.def: removed some peephole rules that don't
6297         work with multibyte arithmetic (fixed bug #937126)
6298         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6299         to registers and not global variables
6300         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6301         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6302         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6303         checking for assignments not internally generated (fixed bug #931895)
6304         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6305         structure member (fixed bug #930072)
6306
6307 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6308
6309         * src/SDCCmain.c (linkEdit),
6310         * src/hc08/main.c (_hc08_parseOptions),
6311         * as/hc08/Makefile.in,
6312         * as/hc08/aslink.h,
6313         * as/hc08/asm.h,
6314         * as/hc08/m08pst.c,
6315         * as/hc08/lkrloc.c (relr, rele),
6316         * as/hc08/lkarea.c (lnkarea)
6317         * as/hc08/lkmain.c (afile, parse),
6318         * as/hc08/lkelf.c: support for ELF output
6319         * as/hc08/lks19.c (s19),
6320         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6321
6322 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6323
6324         * as/mcs51/lkihx.c: Fixed bug #899105.
6325
6326 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6327
6328         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6329         .dsp files from Unix to DOS.
6330
6331 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6334         function pointers; we have been compliant for several months now.
6335         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6336         change that was accidently commented out
6337         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6338         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6339         bug #922319
6340
6341 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6342
6343         * src/hc08/gen.c: output of all of the internal debugging information
6344         is now controlled by the D() macro; it is disabled by default
6345
6346 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6347
6348         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6349         harder to keep the same registers during a CAST iCode
6350         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6351         long via int can be done in a single cast, if the signedness is
6352         correct.
6353         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6354         putchar() in tinibios.c in ds390's library
6355
6356 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6357
6358         * src/SDCCast.c (decorateType): fixed bug #898889,
6359         cast result of a literal complement too
6360         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6361         fixed check for bitfields
6362
6363 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6364
6365         * src/SDCCicode.c (geniCodeLogic): made it static,
6366         (geniCodeLogicAndOr): added in order to fix bug #905492,
6367         (ast2iCode): fixed bug #905492
6368         * support/regression/tests/bug-905492.c: added
6369         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6370         (processParms): fixed bug #927659: don't copy parms, this will clear
6371         decorated flag
6372         * support/regression/tests/bug-927659.c: added
6373
6374 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6375
6376         * src/SDCCast.c (addCast): don't cast float to char
6377         * device/lib/libsdcc.lib: added _memmove
6378
6379 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6380
6381         * device/lib/large/Makefile: fixed parallel execution by
6382         replacing `make` by `$(MAKE)`
6383
6384 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6385
6386         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6387         offsets (fixes bug #923936)
6388
6389 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6390
6391         * device/lib/small/Makefile: fixed parallel execution by
6392         replacing `make` by `$(MAKE)`
6393
6394 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6395
6396         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6397
6398 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6399
6400         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6401         * src/regression/Makefile: Regression test was not running.
6402
6403 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6404
6405         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6406         complement if possible
6407         * src/SDCCval.c (valComplement),
6408         * src/SDCCicode.c (operandOperation): fixed complement of literal
6409         * support/regression/tests/onebyte.c (testComplement): added
6410
6411 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6412
6413         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6414         return an optimized tree; actually replace actParm with the new tree
6415         * src/SDCCast.h: added some parantheses to remove side effects
6416         * support/regression/tests/bug-920866.c
6417
6418 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6419         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6420         Bit operands were not being handled properly in the pic14 port.
6421         (now src/regression/add.c passes again).
6422
6423 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6424
6425         * src/SDCC.y (labeled_statement): case and default no longer require
6426         a following statement (RFE #893037)
6427
6428 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6429
6430         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6431         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6432         disabled (fixes bug #916294)
6433         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6434         "mov a,acc"; patch provided by Lenny Story
6435         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6436
6437 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6438
6439         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6440         functions
6441         * src/ds390/gen.c (genFunction, genEndFunction),
6442         * src/ds390/ralloc.c (ds390_assignRegisters),
6443         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6444         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6445         pushed if there are parameters passed on the stack. Also, a cleaner
6446         way to decide if r0/r1 should be pushed/popped. (Together they fix
6447         bug #918693)
6448
6449 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6450
6451         * doc/sdccman.lyx,
6452         * device/lib/mcs51/crtpagesfr.asm,
6453         * device/lib/mcs51/crtxinit.asm,
6454         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6455         to avoid confusion with Si Lab's SFRPAGE register.
6456
6457 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6458
6459         * src/SDCCglue.c (emitMaps): allow public sfr variables
6460         * src/SDCCglue.c (initialComments): include compiler build date
6461         with compiler version and put the timestamp of the generated
6462         assembly file on a serperate line to be less confusing.
6463         * src/port.h: added genInitStartup hook
6464         * src/avr/main.c,
6465         * src/ds390/main.c,
6466         * src/hc08/main.c,
6467         * src/pic/main.c,
6468         * src/pic16/main.c,
6469         * src/xa51/main.c,
6470         * src/z80/main.c: genInitStartup initialize as NULL (default to
6471         historical behaviour)
6472         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6473         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6474         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6475         library instead of hard coding it into the compiler.
6476         * support/regression/ports/mcs51-stack-auto/spec.mk,
6477         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6478         * device/lib/mcs51/Makefile,
6479         * device/lib/small/Makefile,
6480         * device/lib/large/Makefile,
6481         * device/lib/mcs51/crtpagesfr.asm,
6482         * device/lib/mcs51/crtstart.asm,
6483         * device/lib/mcs51/crtxclear.asm,
6484         * device/lib/mcs51/crtxinit.asm,
6485         * device/lib/mcs51/crtclear.asm,
6486         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6487         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6488         and into user configurable files.
6489         * device/lib/clean.mk: clean mcs51 directory too
6490         * support/regression/tests/longlit.c: added static to T1 declaration
6491         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6492         accesses in the initialization code
6493
6494 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6495
6496         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6497         OSCTRIMVAL as noted in bug #916008
6498
6499 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6500
6501         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6502         in loops with multiple exits (reported as incorrect registers
6503         used by Martin Helmling in Sdcc-user list)
6504
6505 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6506
6507         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6508         made ds390 register extensions look less like error messages
6509
6510 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6511
6512         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6513         reported by Adam Wozniak in Sdcc-user list
6514
6515 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6516
6517         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6518         arithmetic optimizations, added debug output
6519
6520 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6521
6522         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6523         * sdcc.spec: updated and split sdcc into 3 rpms
6524         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6525         needed for literals of LEFT_OP and '+'
6526         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6527         introduced RESULT_TYPE_NOPROM
6528         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6529         left shift
6530         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6531         limited promotion to int only for '*'
6532         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6533
6534 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6535
6536         * src/pic16/gen.c (genSkip),
6537         (genc16bit2lit), (gencjneshort): commented out
6538         (is_LitOp): new helper function, checks operand type
6539         (genCmpEq): rewritten
6540
6541 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6542
6543         * support/regression/tests/bug-908454.c: added
6544
6545 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6546
6547         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6548         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6549         (geniCodeCast): cosmetic, don't preserve bit storage class
6550         (geniCodeLeftShift): added promotion
6551         (geniCodeLogic): fixed regression
6552         * src/SDCCsymt.c (computeTypeOr): accept bits too
6553         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6554
6555 2004-03-07  Borut Razem <borut.razem AT siol.net>
6556
6557         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6558
6559 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6560
6561         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6562         version of pic16_genPackRegisters which does not check if ic is a
6563         CAST operator,
6564         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6565         function cause string1.c regression test fails
6566
6567 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6568
6569         * sim/ucsim/configure.in,
6570         * sim/ucsim/configure,
6571         * sim/ucsim/doc/Makefile.in: use docdir
6572         * src/SDCC.y: fixed sbit atrributes
6573         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6574         * src/SDCCast.c (decorateType): |^& need special promotion handling
6575         * src/SDCCast.h,
6576         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6577         * src/SDCCsymt.h (computeType),
6578         * src/SDCCicode.c: computeType() needs op
6579         * src/SDCCsymt.c (checkTypeSanity),
6580         * doc/sddman.lyx: "plain" bitfields are unsigned
6581         * src/SDCCsymt.c (computeTypeOr): added
6582         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6583         |^& ops
6584         * src/SDCCval.c (val*): computeType() needs op
6585         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6586         * support/regression/tests/onebyte.c: added tests for |^&
6587
6588 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6589
6590         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6591         for writing icode into asm output.
6592
6593 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6594
6595         * src/pic16/device.c: added some debug lines enabled
6596         with macro DEBUG_CHECK,
6597         * src/pic16/genarith.c: more debug in genPlus,
6598         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6599         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6600         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6601         * (aopForSym): onStack symbols are re-placed in data memspace,
6602         and onStack flag is cleared,
6603         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6604         copy temporary pcodeop,
6605         * (genPcall): added warning for not updating PCLATU,
6606         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6607         always true for pic16 port,
6608         * (genMultOneWord): NEW, supports integer multiplication,
6609         * (genMult): modified to call genMultOneWord,
6610         * (ifxForOp): added warning when return NULL,
6611         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6612         flag is set before call to operandFromSymbol for implicit
6613         added structures,
6614         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6615         options.intlong_rent are set by default,
6616         * (_hasNativeMulFor): modified to allow port generation of integer
6617         multiplication,
6618         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6619         set regtype to REG_SFR for all registers, restricting seting the
6620         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6621
6622 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6623
6624         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6625         more than 500 times in the regression tests
6626
6627 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6628
6629         * support/Util/SDCCerr.h,
6630         * support/Util/SDCCerr.c,
6631         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6632         enumerator_list),
6633         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6634         for symbol conflicts.
6635         * support/valdiags/tests/enum.c,
6636         * support/valdiags/tests/tentdecl.c,
6637         * support/valdiags/tests/struct.c: expect possible error messages
6638         referring to original symbol definitions.
6639         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6640         * src/SDCCsymt.h,
6641         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6642
6643 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6644
6645         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6646
6647 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6648
6649         * src/pic16/ralloc.c (newReg): fixed bug #908929
6650
6651 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6652
6653         * src/ds390/gen.c: added missing #include "main.h"
6654
6655 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6656
6657         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6658         checking if symbol is already in set,
6659         * src/pic16/device.h: prototype for checkAddSym,
6660         * src/pic16/gen.c: (_G): added entry interruptvector,
6661         * (assignResultValue): removed some commented out lines,
6662         * (genFunction): check for ISR via sym->type, absolute section for
6663         interrupt code is created via a new pBlock, the goto instruction is
6664         placed now correctly at the interrupt vector position, changed all
6665         references from ivec to _G.interruptvector,
6666         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6667         is the interrupt is a high priority one, same for return from ISR,
6668         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6669         externs to calls of checkAddSym,
6670         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6671         pic16_pcode_verbose flag is set,
6672         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6673         * src/pic16/pcoderegs.c: message about how many registers are saved
6674         will only be emitted if pic16_pcode_verbose flag is set,
6675
6676 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6677
6678         * src/ds390/ralloc.h,
6679         * src/ds390/ralloc.c (ds390_regWithIdx),
6680         * src/ds390/gen.c (emitcode),
6681         * src/ds390/main.h,
6682         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6683         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6684         ds390operandCompare, getRegsRead, getRegsWritten,
6685         initializeAsmLineNode): customized instruction size calculation for
6686         ds390, started basis for some register optimizations
6687         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6688         corresponding assembly output
6689         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6690         missing push/pop of r0/r1. Optimized push/pops
6691
6692 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * src/mcs51/main.c (instructionSize): fixed ACALL size
6695         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6696
6697 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6698
6699         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6700         the sorting of rlist with NULL elements
6701         * (print_idataType, print_idata): NEW to create idata sections
6702         * src/pic16/device.h: idataSymSet new variable
6703         * src/pic16/gen.c (genFunction): fixed some bugs in string
6704         comparing, improved the absolute section creation for ISRs,
6705         added FSR0L/FSR0H in registers that are saved in an ISR,
6706         * (genInline): fixed the processing of inline snippets,
6707         now they undergo no process by the peephole optimizer
6708         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6709         are placed in idataSymSet,
6710         * (pic16emitStaticSeg): extern symbols are added in externs,
6711         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6712         switching when aboslute variables are placed in access bank memory
6713         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6714         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6715         commented out with #if,
6716         * (pic16_packRegisters): reintroduce the check for CAST because some
6717         symbols are not correctly handled,
6718         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6719         pCodeInstruction instead of pCode,
6720         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6721         pCodeAsmDir definition,
6722         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6723         directive, then the argument directive is emitted without the leading
6724         tab, hack for inline labels which must be in the first column,
6725         * (compareLabel,pic16_findNextInstruction),
6726         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6727         * (insertBankSwitch): modified for the new pCodeAsmDir,
6728
6729 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6730         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6731
6732         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6733         instance,
6734         * (pushSide): commented out with #if,
6735         * (assignResultValue): fixed some typos in saving
6736         registers,
6737         * (genPcall): FIXED and sync'ed with genCall,
6738         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6739         * (genNearPointerGet): fixed to handle some more cases,
6740         implementation scheme via table reads,
6741         * (genConstPointerGet): modified to access code memory correct,
6742         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6743         and improved to handle some cases
6744         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6745         instead of "RETLW" for init data
6746         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6747         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6748         variables are placed in access bank memory (<0x80 and >=0xf80),
6749         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6750         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6751         TBLWT_POSTDEC,TBLWT_PREINC
6752         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6753         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6754         directives
6755         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6756         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6757         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6758         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6759
6760 2004-02-29  Borut Razem <borut.razem AT siol.net>
6761
6762         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6763         support/Util/findme.h, support/Util/system.h: enhance binary relative
6764         search for lib and include by using findProgramPath()
6765
6766 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6767
6768         * src/SDCCpeeph.h,
6769         * src/SDCCpeeph.c (pcDistance),
6770         * src/port.h,
6771         * src/mcs51/ralloc.h,
6772         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6773         * src/mcs51/main.h,
6774         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6775         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6776         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6777         size calculation port specific, started basis for some register
6778         optimizations
6779         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6780         missing push/pop of r0/r1. Optimized push/pops
6781         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6782         * device/lib/_modsint.c (_modsint),
6783         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6784         and stack version so regression tests pass
6785
6786 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6787
6788         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6789         * src/SDCCast.c (decorateType): catch another small optimization
6790         with '?' operator
6791         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6792         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6793         modified to finally use computeType() all over SDCC,
6794         see Feature Request #877103
6795         * src/SDCCval.h: cosmetic
6796         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6797         valCompare(); regression tested in muldiv.c
6798         * support/regression/tests/muldiv.c (testMod): mod sign follows
6799         dividend only
6800
6801 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6802
6803         * src/SDCCast.c (decorateType): fixed bug #902362
6804         * doc/INSTALL.txt: fixed install instructions for win32
6805
6806 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6807
6808         * device/include/Makefile.in (install): fixed by replacing spaces
6809         by tabs
6810         * doc/README.txt,
6811         * doc/INSTALL.txt: updated for release
6812         * doc/sdccman.lyx: added warning for --xstack being buggy
6813
6814 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6815
6816         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6817         to eliminate build warnings.
6818         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6819
6820 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6821            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6822
6823         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6824         removed -penable-stack, added comment for stack pragma, added
6825         warning for not initializing the stack/frame registers, removed
6826         comment at interrupts section
6827
6828         Stack is made permanent, there is no ability to disable stack usage.
6829         * src/pic16/device.h,
6830         * src/pic16/device.c: removed all references to USE_STACK macro,
6831         * src/pic16/device.c (pic16_dump_section): when no elements in
6832         rlist, free rlist before return,
6833         * (pic16_dump_int_registers): NEW, internal registers are a new set
6834         of general purpose registers reused by each function,
6835         * (checkAddReg): returns 1 if registers is added to set,
6836         * (pic16_groupRegistersInSection): when a registers is of type
6837         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6838         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6839         SRCASECMP macro is moved here from device.c
6840         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6841         PO_PCLATU, PO_PRODL, PO_PRODH,
6842         * (pic16_pCodeOpType, genMinus,
6843         changed compares to "a" register, with AOP_ACC,
6844         * (pic16_genPlus): fixed some bugs and indented properly,
6845         * (pic16_addSign): changed size to size+offset in the MOVWF
6846         instruction,
6847         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6848         multiply 8-bit operand by literal, result is 8-bit,
6849         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6850         multiply 2 8-bit operand, result is 8-bit,
6851         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6852         genUMult8X*_16,
6853         * src/pic16/gen.c: changed accUse to contain WREG only,
6854         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6855         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6856         true, do not use immediate addressing any more unless sym is a
6857         pointer in codespace,
6858         * (aopForRemat): do not use immediate addressing when symbol not in
6859         codespace and when symbol's address is requested,
6860         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6861         accUse size (= 1),
6862         * (aopGet): added case for AOP_ACC and don't return "accumulator
6863         bug" but WREG instead,
6864         * (popGetTempReg): pushes contents of temporary register in stack,
6865         * (popReleaseTempReg): pops contents of temporary register from
6866         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6867         * (pic16_popGet): separated case AOP_ACC to return register WREG
6868         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6869         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6870         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6871         the use of immediate pointers to certain cases only.
6872
6873         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6874         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6875         * (assignResultValue, genCall, genRet): modified to use the new
6876         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6877         genPcall is still broken,
6878         * (genFunction): added code to create 'A' type pBlocks when
6879         interrupt functions are generated, code not extensively tested yet,
6880         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6881         * (genEndFunction): modified so ISRs pop stored registers from stack,
6882         * (genMultOneByte): cleanup,
6883         * (AccRsh): added flag andmask, to and result with appropriate mask,
6884         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6885         * (genDataPointerGet): fixed and reenabled its use,
6886         * (genNearDataPointerGet): bugs fixed,
6887         * (genDataPointerSet): bugs fixed,
6888         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6889         pic16_DumpSymbol, pic16_DumpOp,
6890         * src/pic16/genutils.h: function prototypes for the above functions,
6891         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6892         pointers,
6893         * (pic16emitRegularMap): many many many improvements, but needs a
6894         major cleanup,
6895         * src/pic16/main.c: enable_stack in pic16_options is removed,
6896         * (_pic16_parseOptions): removed command line options -penable-stack,
6897         * (_process_pragma): emit stack symbol only when stack pragma is
6898         processed,
6899         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6900         redirected to FSR0L/FSR0H pair,
6901         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6902         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6903         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6904         for immediates,
6905         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6906         * (dumpPicOptype): NEW,
6907         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6908         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6909         with movff instruction,
6910         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6911         added pic16_int_regs, some packRegsFor* functions are commented out,
6912         because produce errors,
6913         * src/pic16/NOTES: minor modifications
6914
6915 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6916
6917         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6918         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6919         --pack-iram.
6920         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6921         * as/mcs51/lkaomf51.c: fixed bug #895763
6922
6923 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6924
6925         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6926
6927 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6928
6929         * doc/sdccman.lyx: added details about the HC08 storage classes and
6930         interrupts, fixed the register usage info for z80 & gbz80
6931
6932 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6933
6934         * doc/sdccman.lyx: added more pic16 port documentation
6935         * device/include/pic16/: added header pic18fregs.h
6936
6937 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6938
6939         * doc/sdccman.lyx: added Vangelis' contribution
6940
6941 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6942
6943         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6944         extend to the next CALL or PCALL, not just to the next CALL.
6945
6946 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6947
6948         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6949
6950 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6951
6952         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6953         bug #895752 and a better fix for bug #716790
6954
6955 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6956
6957         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6958
6959 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6960
6961         * doc/sdccman.lyx: minor changes, minor changed
6962
6963 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6964
6965         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6966         which can't handle SDCC_NEWONEBYTEOPS,
6967         (geniCodeMultiply): removed conversion from mult to shift for pic14
6968         and pic16
6969
6970 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6971
6972         * src/hc08/gen.h,
6973         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6974         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6975         thus fixing bug #895406
6976
6977 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6978
6979         * device/lib/_modsint.c,
6980         * device/lib/_modslong.c: sign follows divisor only
6981         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6982         signs or signedness can be ignored
6983         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6984         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6985         added optimization for IFX,
6986         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6987         arguments;
6988         reenabled optimization for IFX, which was removed on 2004-01-11
6989         * src/SDCCast.h: added return type IFX
6990         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6991         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6992         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6993         SDCC_OLDONEBYTEOPS selects the old behaviour
6994         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6995         changed again and commented promotion rule
6996         * src/SDCCval.c (valDiv): promotion no longer necessary
6997         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6998         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6999         rewritten
7000         * support/regression/tests/onebyte.c: added
7001
7002 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
7003
7004         * gen.c (genInline): reverted to old code for assemnling inline
7005         code because of bug reported James Chadd
7006
7007 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
7008
7009         * ralloc.h: missing declarations from previous patch,
7010         seems that patch for ralloc.h was never applied, fixed
7011
7012 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7013            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7014
7015         * pcode.c,
7016         * pcode.h,
7017         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
7018         indirect addressing. Marked FSR0 as deprecated
7019         * gen.c (pointerCode): commented out, not needed now
7020         (pic16_popGet2p): new MOVFF helper function
7021         (genGenPointerGet),
7022         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
7023         (shiftRLong): removed duplicate debugging info
7024
7025 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7026
7027         * src/ds390/gen.c (genNearPointerGet),
7028         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
7029         optimization with bits, but not bitfields.
7030         * src/ds390/ralloc.c (packRegisters),
7031         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
7032
7033 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
7034
7035         * src/SDCCcse.c (algebraicOpts): copy operands before modification
7036
7037 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7038
7039         * src/SDCCsymt.h,
7040         * src/SDCCicode.c (operandFromSymbol),
7041         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
7042         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
7043         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
7044         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
7045         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
7046         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
7047         bug #892038
7048         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
7049         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
7050         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
7051         * src/SDCCsymt.c (newSymbol),
7052         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
7053         enumerator_list),
7054         * src/SDCCval.h,
7055         * src/SDCCval.c (newiList): fixed bug #885705
7056
7057 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7058
7059         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7060         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7061
7062 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7063
7064         * device/include/c8051f120.h,
7065         * device/include/c8051f300.h,
7066         * device/include/c8051f310.h: added/updated header files for Silicon
7067         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7068         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7069         in new section Submitting patches
7070
7071 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7072
7073         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7074         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7075         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7076         genGenPointerSet),
7077         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7078         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7079         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7080         genGenPointerSet),
7081         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7082         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7083         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7084         genGenPointerSet),
7085         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7086         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7087         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7088         genGenPointerSet): fixed bug #892400
7089         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7090         to eliminate build warnings.
7091         * src/SDCCast.c (processParms),
7092         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7093         fixed bug 751859
7094         * support/valdiag/valdiag.py: added GCC to the list of defines active
7095         when compiling with gcc
7096
7097 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7098
7099         * support/Util/SDCCerr.h,
7100         * support/Util/SDCCerr.c,
7101         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7102         with an incomplete type (fixed bug #883734)
7103         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7104
7105 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7106
7107         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7108
7109 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7110
7111         * src/SDCCast.c (decorateType),
7112         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7113         function pointer implementation
7114         * support/regression/tests/funptrs.c: added tests to verify both forms
7115         of function pointers work correctly. Added tests to verify parameters
7116         are passed in the correct order.
7117
7118 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7119
7120         * device.c (regCompare): registers are sorted by ascending
7121         address and increasing size,
7122         * main.c (_pic16_finaliseOptions): removed the declaration
7123         of compiler macro MCU. Now a macro of the format pic18fxxxx
7124         will be defined from the command line
7125
7126 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7127             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7128
7129         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7130         PCOP_RLCF was overwritten!
7131         * gen.c (genSkip): commented out calls to pic16_emitcode,
7132         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7133         * (genlshTwo),
7134         * (genRRC): added debugging info,
7135         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7136         overwritten while shifting,
7137         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7138         overwritten while shifting,
7139         * (AccLsh),
7140         * (AccRsh),
7141         * (shiftLLeftOrResult),
7142         * (shiftRLeftOrResult),
7143         * (shiftRLong),
7144         * (shiftLLong): Implemented with pic16_emitpcode
7145         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7146         * (genLeftShift): Fixed bug, operand for shift by variable always
7147         was "and"ed with 0x0f,
7148         * (genLeftShiftLiteral),
7149         * (genrshTwo),
7150         * (genRightShiftLiteral): added debugging info,
7151         * (genrshFour): added comment,
7152         * (genRightShift): determined signedness from operand "left"
7153         instead of "result"
7154
7155 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7156
7157         * src/SDCCicode.c (geniCodeParms),
7158         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7159         function pointers, fixed function pointer bugs #861242 and #861896
7160
7161 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7162
7163         * device/include/c8051f000.h,
7164         * device/include/c8051f120.h,
7165         * device/include/c8051f300.h: added header files for Silicon
7166         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7167
7168 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7169
7170         * src/SDCCast.c (processParams): added new type flow and restructured
7171         (gatherAutoInit): added new type flow
7172         (addCast): cosmetic changes
7173         (getLeftResultType): added new type flow for array indices, patch
7174         provided by Stas, see FR #877103
7175         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7176         array index patch by Stas
7177         * src/SDCCast.h: added prototype getResultTypeFromType()
7178         * src/SDCCval.h,
7179         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7180         * src/pic/glue.c (pic14emitStaticSeg),
7181         * src/pic16/glue.c (pic16emitStaticSeg),
7182         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7183         for initialization of symbols
7184         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7185         * support/Util/SDCCerr.h:
7186         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7187         * .version: bumped version number to 2.3.8
7188         * device/include/Makefile.in (install),
7189         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7190         avoid warnings
7191
7192 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7193
7194         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7195         Slade Rich fixed an optimization bug
7196         * src/pic/pcodepeep.c,
7197         * src/pic/pcoderegs.c
7198         * doc/Makefile (install): added test for directory
7199
7200 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7201
7202         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7203         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7204         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7205         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7206         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7207         * as/mcs51/asexpr.c (term),
7208         * as/hc08/asexpr.c (term): fixed bug #887146
7209
7210 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7211
7212         * src/z80/gen.c (genMult): handle single byte result product
7213         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7214         DUMMY_READ_VOLATILE (fixed bug #886367)
7215
7216 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7217
7218         * support/regression/tests/libmullong.c: fixed logic, on little endian
7219         hosts we ended without a mullong_wrapper()
7220
7221 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7222
7223         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7224         virus/worm forged address usage.
7225
7226 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7227
7228         Fixed promotion, it should be done on AST level:
7229         * src/SDCCast.c (addCast): added promotion to int
7230         (decorateType): updated call to upCast()
7231         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7232         usualUnaryConversions()
7233
7234 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7235
7236         * support/regression/tests/literalop.c (mulWrapper): Added a
7237         wrapper to remove integer overflow warnings.
7238
7239         * support/regression/tests/float_trans.c: Made work on host.
7240
7241         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7242         location of sz80.
7243
7244         * support/regression/generate-cases.py (main): Changed from inline
7245         to a main method.
7246
7247         * doc/Makefile (install): Changed to depth first to get rid of
7248         missing directory install warning.
7249
7250         * as/Makefile (install-doc): Made work on Mac.
7251
7252 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7253
7254         * src/SDCCast.c: added an additional type flow in decorateType() of
7255         opposite direction, see feature request #860006; it's enabled at runtime
7256         by setting the environment variable SDCC_NEWTYPEFLOW
7257         * src/SDCCast.h: changed prototype of decorateType()
7258         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7259         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7260         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7261         see feature request #877103
7262         * src/SDCCval.c: updated call of decorateType()
7263         (valBitwise): fixed bug #882876
7264         (valMinus): added promotion
7265         (valLogicAndOr): result is unsigned
7266         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7267         * src/SDCCsymt.c (computeType),
7268         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7269         must not cause an unsigned operation
7270         * src/pic/glue (pic14emitRegularMap),
7271         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7272
7273 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7274
7275         * src/pic/pcode.c (PCodeID): commented out left over debug code
7276
7277 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7278
7279         * support/valdiag/tests/overflow.c: added shift tests
7280         * src/pic/device.c,
7281         * src/pic/gen.c,
7282         * src/pic/gen.h,
7283         * src/pic/glue.c,
7284         * src/pic/main.c,
7285         * src/pic/pcode.c,
7286         * src/pic/pcode.h,
7287         * src/pic/pcodepeep.c,
7288         * src/pic/pcoderegs.c,
7289         * src/pic/ralloc.c,
7290         * src/pic/ralloc.h: applied patch from Slade Rich;
7291         added support for multiple code pages and multiple RAM banks on the
7292         PIC 14 port. The ASM files now no longer simply assume all the
7293         code / RAM are in the same page / bank. This means the linker can
7294         safely allocate code/RAM of separate ASM files to different pages/banks.
7295         * doc/sdccman.lyx: added Slade's tips
7296         * src/mcs51/peeph.def: fixed bug #880768
7297
7298 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7299
7300         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7301         * src/SDCCast.c (decorateType): fixed bug #880197
7302
7303 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7304
7305         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7306         getopt.h.
7307
7308         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7309         strtof is not part of C89 and isn't included with Mac OS X.
7310
7311 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7312
7313         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7314         shiftL2Left2Result): fixed bug #879326
7315         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7316         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7317         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7318         address fetch for clr instruction
7319         * device/lib/hc08/_mulint.c: created optimized assembly version
7320         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7321
7322 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7323
7324         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7325         proposed in FR #877103
7326
7327 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7328
7329         * src/SDCCval.c (cheapestVal): added missing checks
7330         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7331         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7332
7333 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7334
7335         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7336         equal operands
7337
7338 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7339
7340         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7341         loaded with the linker search paths (-L arguments) and the libraries
7342         to be linked with the current source (-l arguments). Changes
7343         currently will affect only the pic16 port.
7344         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7345         include path the port specific paths and port specific libraries,
7346         * gplink command now contains the $3 argument,
7347         * src/pic16/device.h,
7348         * src/pic16/device.c,: structure PIC_device is made public and
7349         renamed to PIC16_device, the same for variable Pics which is renamed
7350         to Pics16. Updated all references to them.
7351         * src/pic16/glue.c (pic16glue): corrected bug with code
7352         initialization which bypassed the variable initializations block.
7353
7354         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7355         COMPILE_FLAGS and added the --nostdinc option
7356
7357 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7358
7359         * device/include/mc68hc908jb8.h: Register defs for another member
7360         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7361
7362 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7363
7364         Documenting changes from previous commits.
7365         * configure.in (version 1.56),
7366         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7367         when generating output files to configure the pic16 library,
7368         but now I've commented it out, since gputils aren't installed in the
7369         SF compile farm, so library won't compile
7370
7371         * device/lib/Makefile.in (version 1.56): initially I've added in
7372         target 'all' the prerequestive 'model-pic16' so it compiled the
7373         pic16 library, but now I've commented it out for the same reasons
7374         above,
7375         * added targets 'model-pic16' and 'objects-pic16' to compile the
7376         library
7377         * added target 'port-specific-objects-pic16' to handle the
7378         generated libraries and copy them into the build/ directory
7379         * added target 'clean-intermediate-pic16' to clean intermediate
7380         files into pic16 directory
7381         * in target 'installdirs' added line to create directory pic16 in
7382         the installation path
7383
7384         * device/include/Makefile.in (version 1.11): in target 'install'
7385         added lines to copy all header files to installation path,
7386         * in target 'installdirs' added line create directory for pic16
7387         headers in the installation path
7388
7389 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7390
7391         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7392          a function call
7393
7394 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7395
7396         * configure,
7397         * device/lib/configure.in,
7398         * device/lib/configure: fixed for autoconf 2.57
7399
7400 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7401
7402         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7403         option so that it actually works. Made it specific to the z80, since
7404         the gbz80 doesn't have these kinds of I/O ports.
7405
7406 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7407
7408         * device/include/z180.h,
7409         * device/lib/_memcpy.c,
7410         * device/lib/_memmove.c,
7411         * device/lib/_mulint.c,
7412         * device/lib/ser_ir.c,
7413         * device/lib/ser_ir_cts_rts.c,
7414         * device/lib/_strcmp.c,
7415         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7416         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7417         portmode; added deprecation warning for bank= and protmode= forms.
7418         Also, guard against buffer overflow.
7419         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7420
7421 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7422
7423         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7424         changed interrupt vector table generation to only emit declared vectors.
7425         * device/include/Makefile.in: added missing backslash
7426         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7427
7428 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7429
7430         Mainly changes to support compilation of the device libraries
7431         * src/pic16/device.c: stack is allocated via symbol and not
7432         via literal number. The symbol is placed in the corresponding
7433         position of the data ram
7434         * (pic16_dump_section): relocatable and absolute uninitialized
7435         data are now emitted in sorted order to reduce section naming,
7436         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7437         weren't marked as being in the access bank,
7438
7439 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7440
7441         Added portion of GNU PIC Library under the directory
7442         device/include/pic16 and device/lib/pic16. These files
7443         contain the declarations of SFRs for the PIC18Fxx2 devices.
7444         The directory is initialized via configure from toplevel.
7445
7446 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7447
7448         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7449         the spilllocations to be compared correctly
7450
7451 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7452
7453         * src/SDCCast.c (decorateType): fixed bug introduced today
7454
7455 2004-01-12  Borut Razem <borut.razem AT siol.net>
7456
7457         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7458         doc/sdccman.lyx: upper case pragmas are deprecated
7459
7460 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7461
7462         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7463         in simpler and even better code
7464
7465 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7466
7467         * src/SDCCicode.c (operandOperation): fixed bug #874819
7468         * src/SDCCast.c (decorateType): fixed
7469         char foo (unsigned long ul) { return ul > 0; }
7470
7471 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7472
7473         * doc/sdccman.lyx: Moved and added some sections, small changes
7474         all over. Telling LaTeX to be less strict with word spacing
7475         to better keep the right margin. Changed some notes about
7476         maintainance of the ports in section 3.2.1 - is it OK like this?
7477
7478 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7479
7480         SDCC source changes:
7481         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7482         convilong): modified to inform the pic16 port that builtin functions
7483         are external
7484
7485         PIC16 PORT specific changes:
7486         * src/pic16/device.c pic16_dump_equates() added,
7487         processor registers declared internally by the port are emitted in
7488         the translation as equates,
7489         * src/pic16/gen.c: inline code is passed unprocessed to the
7490         translation,
7491         * (pic16_popGetLit2): fnuction modified to take second operand as
7492         pCodeOp pointer and not as literal,
7493         * (popRegFromIdx): prefixed with pic16_,
7494         * (pic16_popCombine2): modified to receive already allocated pCode
7495         operands,
7496         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7497         * (genFunction): initializes local stack frame and pushes on stack
7498         all the registers used by this function,
7499         * (genEndFunction): restores all registers from stack and restores
7500         stack frame,
7501         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7502         improvements,
7503         * (pic16glue): changed the program startup sequence,
7504         * added new dbName code 'A' for functions placed in absolute section
7505         * src/pic16/main.c: added function attribute _naked,
7506         * added pragma 'code' to place a fnuction at an absolute address,
7507         * added command line arguments --debug-ralloc and --pcode-verbose,
7508         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7509         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7510         * (pic16_newpCodeOpLit2): modified to take the second operand as
7511         pCodeOp pointer,
7512         * (pic16_printpBlock): modified to emit each function in a separate
7513         section,
7514         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7515         UPPER for immediate operands,
7516         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7517         instruction,
7518         * src/pic16/peeph.def: all peepholes with movff are commented out,
7519         because there is a problem in the pcode peep optimizer,
7520         * src/pic16/ralloc.c: the register allocator can now reuse local
7521         function symbols for another function. This saves register usage.
7522         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7523
7524         Added file src/pic16/NOTES with information about program writing on
7525         the current port version.
7526
7527 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7528
7529         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7530         and peephole 252 (array access)
7531
7532 2004-01-09  Borut Razem <borut.razem AT siol.net>
7533
7534         * src/SDCCmain.c : fixed #872250: -l command line defined library
7535           files are scanned before standard library files
7536
7537 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7538
7539         * src/SDCCast.c (decorateType): fixed bug #874046
7540
7541 2004-01-09  Borut Razem <borut.razem AT siol.net>
7542
7543         * support/scripts/sdcc.nsi: remove previous installation
7544
7545 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7546
7547         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7548         bytes for last interrupt vector (mcs51)
7549         * sdcc.spec: fixed typo
7550
7551 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7552
7553         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7554         gen51Code): more efficient parameter receive for --model-large
7555         ("bug" #845294)
7556
7557 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7558
7559         * src/ds390/main.c,
7560         * src/z80/main.c: added missed needLinkerScript flags (more than
7561         one port structure defined in these file)
7562         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7563         bug #795325
7564
7565 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7566
7567         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7568         * src/port.h: added flag needLinkerScript in port->linker
7569         structure to inform whether to create a .lnk file or not,
7570         * src/avr/main.c,
7571         * src/ds390/main.c,
7572         * src/hc08/main.c,
7573         * src/mcs51/main.c,
7574         * src/pic/main.c,
7575         * src/pic16/main.c,
7576         * src/xa51/main.c,
7577         * src/z80/main.c: changed appropriately to configure
7578         needLinkerScript flag
7579         * src/pic/gen.c,
7580         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7581         * src/pic/glue.c: added variable udata_section_name to
7582         override default uninitialized data segment definition for
7583         devices only with SHAREBANK memory (reported from Erik Epetrich)
7584         * (pic14emitOverlay): modified to emit a commented overlay segment
7585         directive when no overlay data exist
7586         * (picglue): modified to emit uninitialized data segment
7587         according to udata_section_name
7588         * src/pic/main.c (_pic14_parseOptions): added command line
7589         options --udata-section-name=[name] to override default
7590         udata definition name
7591         * modified _linkCmd and _asmCmd to include compiler passed
7592         arguments via -W option
7593         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7594         object file from '.rel' to '.o' in port->linker structure,
7595         changed size of fptr from 2 to 3 in port structure
7596
7597 2004-01-07  Borut Razem <borut.razem AT siol.net>
7598
7599         * support/scripts/sdcc.nsi: update PATH
7600         * support/scripts/sdcc.ico: craeted
7601
7602 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7603
7604         * device/include/Makefile.in: fix install
7605         * doc/Makefile: fix install
7606
7607 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7608
7609         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7610         in bug #860505
7611         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7612         how the function variable allocation summary is displayed; also
7613         include information about variables allocated to the overlay
7614         segment
7615
7616 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7617
7618         * as/mcs51/lkmain.c: Help about -Y option
7619         * as/mcs51/lkarea.c: Fixed gcc warnings
7620
7621 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7622
7623         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7624         fixed warning
7625         * support/valdiag/tests/overflow.c: added
7626         * src/SDCCast.c (decorateType),
7627         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7628         LEFT_OP (left shift)
7629
7630 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7631
7632         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7633         (default behaviour).
7634
7635 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7636
7637         A python script to validate compiler diagnostic messages. It can be
7638         used to verify that sdcc complains about bad c source code and
7639         gives a good location of the error.
7640         * support/valdiag/Makefile,
7641         * support/valdiag/valdiag.py,
7642         * support/valdiag/tests/*
7643
7644 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7645
7646         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7647         * src/SDCCsymt.c (newEnumType),
7648         * src/SDCCsymt.h
7649         * support/Util/SDCCerr.c,
7650         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7651         enum related bugs.
7652         * support/regression/tests/enum.c: added test for enum values that
7653         require at least 2 bytes of storage.
7654
7655 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7656
7657         * src/common.h: added ifndef/define/endif macros
7658         around the header file.
7659         Bug reported from Jesus Calvino-Fraga
7660
7661 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7662
7663         * sdcc.spec: updated
7664         * device/include/Makefile.in: don't install CVS directories
7665         * device/lib/Makefile.in: added removal of CVS directories after install
7666         * doc/Makefile: fixed install, added local_icons
7667         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7668         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7669         * src/ds390/gen.c (genRightShift): fixed bug #870788
7670         * src/SDCCast.c (decorateType): fixed bug #870781
7671
7672 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7673
7674         PIC16 port related changes:
7675         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7676         added variable stackPos,
7677
7678         * gen.c: genCall, assignResultValue: added support for
7679         pushing/retrieving function parameters to/from stack,
7680         genFunction,genEndFunction: setup stack frame for the
7681         generated function,
7682         genAddrOf: will be changed according to bug 863624
7683
7684         * added files genutils.c and genutils.h which contain gen*
7685         debugged and optimised functions extracted from gen.c
7686
7687         * glue.c: added variable 'externs' which holds extern symbols,
7688         pic16emitRegularMap: is modified to properly handle relocatable
7689          symbols under the new scheme,
7690         pic16createInterruptVect: is modified
7691         pic16printPublics: is modified to emit 'global' assembler directives,
7692         added pic16_printExterns to print extern symbols,
7693         pic16glue: initializes stack/frame pointer in the beginning of
7694         the assembly output. Temporary hack, will be corrected later,
7695         because gplink yet does not support stack and SDCC does not
7696         yet support a type of crt0.o object to create the final binary.
7697
7698         * Removed many lines that contain 8051 legacy code.
7699         * The code is finally placed under a 'code' directive.
7700         * Added port specific options.
7701
7702         * _process_pragma: simplified since now we do not need *special*
7703         include file to define SFR registers. But a separate header
7704         will be needed. This will be developed later.
7705         * _pic16_parseOptions: added, parses port specific options:
7706         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7707         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7708         --preplace-udata-with=
7709
7710         * _pic16_setDefaultOptions: modified to initialize section names,
7711         but hack is temporarly out of order since it needs improvement.
7712         * _pic16_genAssemblerPreamble: configuration words are emitted by
7713         their address instead of their name. This part is incomplete and
7714         supports only the 18Fxx2 devices. Other devices will emit an error
7715         during assembly since they do not contain the same set of config
7716         registers
7717         * _pic16_genIVT: is modified,
7718
7719         * pcode.c: added definitions for some hardware registers that are needed
7720         for stack support
7721         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7722         All PCI entries are updated. Now LFSR is supported.
7723         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7724         * added pic16_newpCodeOpLit2 to support instructions with
7725         two literal arguments
7726         * pic16_pCode2str: corrected code that emits assembler instructions
7727         with two literal operands and those that have an access bit modifier
7728         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7729         this fixes a bug which caused some labels to be lost, when an
7730         assembler directive was added, i.e. banksel,
7731         * pic16_FixRegisterBanking: improved logic that causes the insertion
7732         of bank switching,
7733         * InlineFunction: functions that are called once, are not any more
7734         inlined. This can be a port option in the future,
7735
7736         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7737
7738         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7739         hold the corresponding uninitialized symbols,
7740         * pic16_allocProcessorRegister: registers have explicit marked the
7741         accessBank field,
7742         * pic16_allocInternalRegister: registers are explicit marked as
7743         not used,
7744         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7745         processing list, so bit registers were lost,
7746         *
7747
7748         * ralloc.h: added field 'accessBank' and original symbol operand
7749         in register definition,
7750         * removed the field isMapped from register definition,
7751
7752         ** Several functions have been removed from various sources:
7753         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7754         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7755         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7756         pic16_assignRelocatableRegisters
7757
7758         ** others have been introduced:
7759         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7760         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7761
7762 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7763
7764         * support/scripts/inc2h.pl: changed definition of BIT_AT
7765         to emit 'sbit at' instead of 'bit at'. This was a request.
7766
7767         PIC16 port related preliminary changes:
7768         * gen.c: prefixed function popRegFromString with
7769         pic16_ and all references to it corrected
7770         * pcode.c: all pic16_pc_* hardware registers prefixed
7771         with underscore (_),
7772         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7773         * ralloc.c: newReg(): when register is REG_SFR then
7774         set address to rIdx,
7775         pic16_allocProcessorRegister(): marks register wasUsed=0
7776         pic16_writeUsedRegs(): added a call to assign processor
7777         registers via pic16_assignFixedRegisters
7778
7779 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7780
7781         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7782         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7783         variables in unused register banks.  Also the SSEG is placed
7784         wherever there is enough space for it, and IDATA can be anywhere
7785         in internal RAM.  For now compile using -Wl-Y[stack_size].
7786         The mem file is different for this option as well, since it
7787         makes no sense of talking about DSEG lenght.
7788
7789 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7790
7791         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7792         in certain cases, e.g. when ROM assignment, patch provided
7793         from Albert den Haan.
7794
7795 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7796
7797         Many signedness and type propagation fixes:
7798         * src/SDCCicode.c: made geniCodeCast() static
7799         replaced SPEC_ by IS_ (cosmetic)
7800         (operandOperation): fixed div and mod operation
7801         (usualBinaryConversions): added support for promotion of char
7802         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7803         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7804         (geniCodeAdd): an array index will stay unsigned, even if promoted
7805         from char to int
7806         (geniCodeArray): ditto
7807         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7808         * src/SDCCsymt.c (computeType): added more support for char;
7809         promotion of char is selectable by promoteCharToInt, fixed signedness
7810         for all cases
7811         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7812         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7813         * src/SDCCval (val*): replaced signedness calculation by
7814         computeType()
7815         rearranged if-branches (cosmetic)
7816         (valShift): added warning W_SHIFT_CHANGED
7817         (valCompare): fixed problem with different types
7818         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7819         * support/regression/tests/literalop.c: added many cases
7820         * support/regression/tests/ast_constant_folding.c: changed finally to
7821         'unsigned int'
7822         * .version: new year, new version: 2.3.7
7823         * src/SDCCmain.c (main): applied patch #866468
7824         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7825         provided by Scott Bronson
7826         * doc/sdccman.lyx: updated documentation for sdcdb
7827         updated and added chapter tips
7828
7829 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7830
7831         * src/SDCCsymt.h: missing from yesterday's commits
7832
7833 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7834
7835         * src/SDCC.y (struct_or_union_specifier),
7836         * support/Util/SDCCerr.c,
7837         * support/Util/SDCCerr.h: verify that struct & union tags are used
7838         as declared.
7839
7840 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7841
7842         * src/SDCCglobl.h: missing from yesterday's commits
7843
7844 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7845
7846         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7847         sft_attributes, struct_declaration, parameter_declaration,
7848         type_name, start_block, declaration_list),
7849         * src/SDCC.lex (check_type): support redefinition of typedef names
7850
7851 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7852
7853         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7854         aligned xdata arrays. Erik helped me with the if clause.
7855
7856 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7857
7858         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7859         warning
7860
7861 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7862
7863         * src/SDCCast.h,
7864         * src/SDCCast.c (newAst_),
7865         * src/SDCCicode.h,
7866         * src/SDCCicode.c (ast2iCode, newiCode),
7867         * src/SDCCglobl.h,
7868         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7869         expr, statement, expression_statement, selection_statement,
7870         iteration_statement, expr_opt, jump_statement): foundation for tracking
7871         sequence points
7872         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7873         point code too)
7874
7875 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7876
7877         * support/Util/SDCCerr.c,
7878         * src/SDCCast.h,
7879         * src/SDCCast.c (createCase, createDefault, decorateType),
7880         * src/SDCClabel.c (labelUnreach),
7881         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7882         to error messages.
7883         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7884         (with thanks to Stas Sergeev)
7885         * device/include/time.h,
7886         * device/lib/time.c (CheckTime): suppress unreachable code warning
7887
7888 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7889
7890         * src/SDCCast.c (createIvalCharPtr),
7891         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7892         bug #753752)
7893         * support/regression/tests/nullstring.c: tests for these two bugs
7894
7895 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7896
7897         * support/Util/SDCCerr.h,
7898         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7899         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7900         about storage class and 'at' used inside struct or union
7901         * src/SDCCBBlock.c (iCodeFromeBBlock),
7902         * src/SDCCcse.c (ifxOptimize),
7903         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7904         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7905         printIval, emitStaticSeg, emitOverlay),
7906         * src/SDCClabel.c (deleteIfx),
7907         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7908         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7909         gatherAutoInit, processParms),
7910         * support/Util/SDCCerr.h,
7911         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7912         reporting for post-parse errors.
7913
7914 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7915
7916         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7917         implicit casts via union; they don't work on big endian systems
7918         (possible fix for bug #861138)
7919
7920 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7921
7922         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7923         * src/mcs51/main.c: fixed the fix for bug #737001
7924
7925 2003-12-15  Borut Razem <borut.razem AT siol.net>
7926
7927         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7928
7929 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7930
7931         * support/makebin/makebin.c: put output in binary mode
7932
7933 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7934
7935         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7936         xdata and data memory on startup. Set the environment variable
7937         SDCC_NOGENRAMCLEAR to disable this.
7938         * src/mcs51/peephole.def,
7939         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7940         (allows non-interrupt and interrupt code to safely compete for a resource
7941         without the non-interrupt code having to disable interrupts)
7942
7943 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7944
7945         * src/SDCCicode.c (geniCodeAdd),
7946         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7947         with valFromType if type might be a pointer and host is big endian).
7948         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7949         types, not just integer types.
7950         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7951         multiply defined with mismatching "at" address.
7952
7953 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7954
7955         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7956         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7957         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7958         with embedded nulls (fixed bug #753752)
7959
7960 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7961
7962         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7963         Apparently this did not see much testing (endless loop)
7964
7965 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7966
7967         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7968
7969 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7970
7971         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7972         gracefully handle NULL memmap pointers
7973
7974 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7975
7976         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7977         instead of deleting the iCode when an operand is volatile
7978         * src/z80/gen.c (genDummyRead),
7979         * src/mcs51/gen.c (genDummyRead),
7980         * src/ds390/gen.c (genDummyRead),
7981         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7982         not just IC_RIGHT
7983         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7984         * src/SDCC.y: fixed bug #850420
7985
7986 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7987
7988         Applied z80 i/o port patch from Peter Townson and fixed some operators
7989         to better handle operands in A register.
7990         * device/include/z180.h
7991         * src/SDCC.y
7992         * src/SDCCglue.c
7993         * src/z80/gen.c
7994         * src/z80/gen.h
7995         * src/z80/main.c
7996         * src/z80/peeph-z80.def
7997         * src/z80/peeph.def
7998         * src/z80/z80.h
7999
8000 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8001
8002         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
8003
8004 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8005
8006         * device/lib/hc08/_mullong.c: Removed extra #endif
8007
8008 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8009
8010         * sim/ucsim/hc08.src/inst.cc,
8011         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
8012         carries from x to h
8013         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
8014         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
8015         * device/include/stdarg.h: fixed varargs for hc08
8016         * device/lib/Makefile.in,
8017         * device/lib/hc08/Makefile,
8018         * device/lib/hc08/_mulint.c,
8019         * device/lib/hc08/_mullong.c: fixed some endian problems
8020
8021 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8022
8023         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
8024         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
8025         * device/lib/_gptrget.c,
8026         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
8027
8028 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8029
8030         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
8031         * src/SDCCast.c (astErrors): fixed bug #846007
8032         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
8033
8034 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8035
8036         * src/SDCCast.c (decorateType): disabled a transformation I added in
8037         revision 1.188 (access to fields of a structure at an absolute address);
8038         it breaks with bitfields, extern declarations, and gcse analysis.
8039         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
8040         could be assigned through a pointer, so don't complain.
8041         * src/SDCCast.c (astErrors),
8042         * src/SDCCast.h,
8043         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
8044
8045 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
8046
8047         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
8048         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
8049         output of __config directives, since gpasm now supports them
8050         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
8051         pre-processor macro, i.e. -DMCU=p18f452
8052         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
8053         and modified to handle 'cast' icode similarly to '=' icode
8054         * src/pic16/device.h (typedef struct PIC_device): added field
8055         'extMIface' to indicate that chip has external memory interface
8056         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
8057         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8058         18F8720
8059
8060 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8061
8062         * src/SDCC.y (pointer): fixed bug #846006
8063         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8064         * src/SDCCast.c (decorateType): fixed bug #846009
8065         * src/ds390/peeph.def,
8066         * src/ds390/gen.c (genAnd, genOr),
8067         * src/mcs51/peeph.def,
8068         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8069
8070 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8071
8072         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8073         * src/SDCCdflow.c
8074         * src/SDCCcse.c
8075         * src/SDCCcse.h
8076         * src/SDCCBBlock.h
8077         * src/SDCCBBlock.c
8078
8079 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8080
8081         fixed bug #845089
8082         * src/SDCCbitv.h,
8083         * src/SDCCbitv.c: added function to free a bitvector
8084         * src/SDCClrange.h,
8085         * src/SDCClrange.c: added function to recompute the liveranges
8086         * src/avr/ralloc.c,
8087         * src/ds390/ralloc.c,
8088         * src/hc08/ralloc.c,
8089         * src/mcs51/ralloc.c,
8090         * src/pic/ralloc.c,
8091         * src/pic16/ralloc.c,
8092         * src/xa51/ralloc.c,
8093         * src/z80/ralloc.c: recompute the liveranges after register packing
8094
8095 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8096
8097         * src/SDCCloop.c (newInduction): fixed bug #845630
8098
8099 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8100
8101         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8102         inadvertantly left behind from my 2003-11-12 change
8103
8104 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8105
8106         Updated headers I neglected to commit yesterday.
8107         * src/SDCClrange.h,
8108         * src/SDCCicode.h
8109
8110 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8111
8112         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8113         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8114         * src/SDCCopt.c (eBBlockFromiCode),
8115         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8116         the creation of the key hash table from the sequencing so it can be used
8117         earlier (for some GCSE bug fixes still pending)
8118
8119 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8120
8121         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8122         * support/regression/tests/addsub.c: testing genPlus shortcut
8123
8124 2003-11-15  Borut Razem <borut.razem AT siol.net>
8125
8126         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8127
8128 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8129
8130         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8131         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8132         ordering is immaterial.
8133         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8134
8135 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8136
8137         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8138         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8139         (SIGSEV) of bug #840381
8140         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8141         unlink new file before rename if new and old filenames are the same)
8142
8143 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8144
8145         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8146         uninitialized variables) for the mcs51. Set environment variable
8147         SDCC_GENRAMCLEAR to test.
8148         xdata initialization slightly shorter
8149
8150 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8151
8152         * src/SDCCsymt.h,
8153         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8154         #838241 & 780691 (basicly the same bug)
8155         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8156         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8157
8158 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8159
8160         * src/SDCCmain.c (linkEdit): "fix" #834252
8161
8162 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8163
8164         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8165         * src/SDCCast.h,
8166         * src/SDCC.y: fixed bug #819403
8167
8168 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8169
8170         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8171         the reentrant attribute.
8172         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8173         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8174         simulation
8175         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8176         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8177         erroneously reduced to a literal.
8178         * src/hc08/ralloc.c (packRegisters, rematStr),
8179         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8180         some cases
8181
8182 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8183
8184         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8185         * doc/sdccman.lyx: changed from 'article' to 'book'
8186         * doc/Makefile: readded test_suite_spec and cdbfileformat
8187
8188 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8189
8190         * device/include/stdlib.h: include malloc.h to comply with ANSI
8191         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8192
8193 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8194
8195         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8196         * doc/clean.mk: also remove *.out files
8197         * doc/sdccman.lyx: some additions, larger top/bottom margins
8198
8199 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8200
8201         * src/SDCC.y: fixed bug #837365
8202         * support/regression/tests/bitopcse.c
8203         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8204         a symbol (might be valop instead)
8205         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8206         * device/lib/clean.mk: added hc08 to the cleaning list
8207
8208 2003-11-04  Borut Razem <borut.razem AT siol.net>
8209
8210         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8211           made 2003-11-04
8212         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8213           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8214           malloc is declared in standard stdlib.h
8215
8216 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8217
8218         * device/lib/hc08/Makefile: need to clean .rel not .o files
8219         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8220
8221 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8222
8223         * src/port.h,
8224         * src/hc08/main.c,
8225         * src/mcs51/main.c,
8226         * src/ds390/main.c,
8227         * src/z80/main.c,
8228         * src/avr/main.c,
8229         * src/pic/main.c,
8230         * src/pic16/main.c,
8231         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8232         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8233         tests (which uses the port's oclsExpense function)
8234         * src/SDCC.y,
8235         * src/SDCCast.c,
8236         * src/SDCCicode.c,
8237         * src/hc08/gen.c,
8238         * src/ds390/gen.c,
8239         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8240
8241 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8242
8243         * src/SDCCcse.c (ifxOptimize),
8244         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8245         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8246         deleting the IFX iCode.
8247         * src/hc08/ralloc.c: reduced unneeded slocs
8248         * src/hc08/gen.c: fixed bug in asmopToBoolean
8249
8250 2003-11-04  Borut Razem <borut.razem AT siol.net>
8251
8252         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8253           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8254           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8255           transferred to configure
8256
8257 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8258
8259         Use headers defined in the C[++] standards:
8260         * sim/ucsim/gui.src/serio.src/fileio.cc
8261         * sim/ucsim/gui.src/serio.src/frontend.cc
8262         * sim/ucsim/gui.src/serio.src/main.cc
8263         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8264         * support/Util/NewAlloc.c
8265         * as/hc08/lklibr.c
8266         * as/mcs51/lklibr.c
8267         * as/z80/aslist.c
8268         * as/z80/assym.c
8269
8270 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8271
8272         * Added MSVC projects for hc08 assembler and linker:
8273         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8274         /as/hc08/link_hc08.dsp
8275
8276 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8277
8278         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8279
8280 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8281
8282         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8283
8284 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8285
8286         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8287
8288 2003-10-31  Borut Razem <borut.razem AT siol.net>
8289
8290         * support/cpp2/cpplib.h,
8291           support/cpp2/cpplib.c,
8292           support/cpp2/cpplex.c,
8293           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8294           to switch _asm block preprocessing on / off. Default is
8295           #pragma preproc_asm +
8296
8297 2003-10-31  Borut Razem <borut.razem AT siol.net>
8298
8299         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8300           when outputting comment blocks (when executed with -C option) and
8301           _asm (SDCPP specific) blocks
8302
8303 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8304
8305         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8306
8307 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8308
8309         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8310
8311 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8312
8313         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8314         * src/SDCCast.c (decorateType): fixed bug #832664
8315
8316 2003-10-31  Borut Razem <borut.razem AT siol.net>
8317
8318         * support\cpp2\cpplex.c: fixed for SDCPP:
8319           comments(when executed with -C option) and _asm blocks
8320           were included even if they where in skipped #if block.
8321           Applied solution from GCC cpp 3.3.2
8322
8323 2003-10-31  Borut Razem <borut.razem AT siol.net>
8324
8325         * src/SDCC.lex: sdcc now understands both formats:
8326           '# <line_number> <file_name>' and
8327           '#line <line_number> <file_name>'
8328         * support/cpp2/cppmain.c: sdcpp now generates the standard
8329           '# <line_number> <file_name>' instead of former
8330           '#line <line_number> <file_name>'
8331
8332 2003-10-30  Borut Razem <borut.razem AT siol.net>
8333
8334         * support/cpp2/cpphash.h,
8335         * support/cpp2/cpplib.h
8336         * support/cpp2/cpplex.c,
8337         * support/cpp2/cppmain.c,
8338         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8339
8340 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8341
8342         Fixed a number of problems revealed by bug #827883.
8343         * src/SDCCloop.c (loopInvariants): Spill location of the
8344         result operand should be recomputed if extracted from
8345         a loop. Also, don't extract assignments of an iTemp
8346         from a literal.
8347         * src/SDCCast.c (isConformingBody): loop reversal should
8348         not occur if the control variable is involved with a
8349         relational operator.
8350
8351 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8352
8353         * .version: bumped to 2.3.6 to reflect the big improvements
8354         made by Erik and Klaus. Thanks!
8355
8356 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8357
8358         Replaced the livrange code.
8359         * src/SDCClrange.c: added new LR code
8360         * src/SDCCloop.c,
8361         * src/SDCCBBlock.h: removed remainig parts from old LR code
8362         * src/ds390/ralloc.c,
8363         * src/ds390/gen.c: minor fixes to make it work with new code
8364
8365 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8366
8367         * as/hc08/asm.h,
8368         * as/hc08/lkrloc.c,
8369         * src/hc08/gen.c,
8370         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8371         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8372         (tweaked fix for bug #818696)
8373
8374 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8375
8376         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8377
8378 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8379
8380         * src/SDCCmain.c,
8381         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8382         * src/mcs51/gen.c (gencjneshort),
8383         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8384         more efficient (per Scott Bronson's suggestion)
8385
8386 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8387
8388         Extended the semantics of the critical keyword to include
8389         individual statements. See RFE #827755 and #799831
8390         * src/SDCC.y
8391         * src/SDCCicode.c
8392         * src/SDCCopt.c
8393         * src/SDCCast.c
8394         * support/Util/SDCCerr.c
8395         * support/Util/SDCCerr.h
8396         * src/mcs51/gen.c
8397         * src/ds390/gen.c
8398         * src/hc08/gen.c
8399
8400 2003-10-19  Borut Razem <borut.razem AT siol.net>
8401
8402         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8403
8404 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8405
8406         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8407         Fixed bug #818696
8408         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8409         and predecrement operand is displayed
8410
8411 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8412
8413         * src/SDCCval.c (valMinus): fixed bug #826041
8414
8415 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8416
8417         Some hc08 related updates that I missed earlier
8418         * sim/ucsim/stypes.h
8419         * support/regression/ports/hc08/spec.mk
8420
8421 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8422
8423         New target "hc08" for the Motorola 68hc08 family of micros
8424
8425         * configure
8426         * configure.in
8427         * Makefile
8428         * src/hc08/*
8429         * src/SDCCmain.c
8430         * src/port.h
8431         * sim/ucsim/hc08.src/*
8432         * sim/ucsim/configure.in
8433         * src/ucsim/configure
8434         * sim/ucsim/packages_in.mk
8435         * as/hc08/*
8436         * as/Makefile
8437         * device/include/mc68hc908qy.h
8438         * device/lib/hc08/*
8439         * device/lib/Makefile.in
8440         * support/regression/ports/hc08/*
8441         * support/regression/Makefile
8442
8443 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8444
8445         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8446         regression test
8447         * src/ds390/gen.c (genCast): fixed bug #821957
8448
8449 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8450
8451         * device/lib/logf.c: "fixed" overlay bug
8452         * support/regression/ports/host/spec.mk: added m library
8453         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8454         * support/regression/tests/float_trans: added (for Eric)
8455
8456 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8457
8458         * src/mcs51/gen.c (genCpl): fixed bug
8459         http://sf.net/mailarchive/message.php?msg_id=6263915
8460
8461 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8462
8463         * src/SDCCast.c (decorateType): added extended constant folding
8464         * src/SDCCsymt.c (computeType): cleanup
8465         * src/SDCCval.c (valShift): minor optimization
8466         * support/regression/tests/ast_constant_folding.c: added
8467
8468 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8469
8470         * src/SDCCmain.c: removed some unintended changes
8471
8472 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8473
8474         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8475         * src/z80/gen.c: fixed part of bug #817589
8476         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8477
8478 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8479
8480         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8481         * src/SDCCcflow.c
8482         * src/SDCCcse.c
8483         * src/SDCCdflow.c
8484         * src/SDCClabel.c
8485         * src/SDCClrange.c
8486         * src/SDCCmem.c
8487         * src/SDCCopt.c
8488         * src/SDCCpeeph.c
8489         * src/SDCCset.c
8490         * src/avr/ralloc.c
8491         * src/ds390/ralloc.c
8492         * src/izt/ralloc.c
8493         * src/mcs51/ralloc.c
8494         * src/pic/ralloc.c
8495         * src/pic16/ralloc.c
8496         * src/xa51/ralloc.c
8497         * src/z80/ralloc.c
8498         * src/z80/gen.c: removed unused label "release:"
8499
8500 2003-10-06  Borut Razem <borut.razem AT siol.net>
8501
8502         * src/SDCC.lex: removed definition of unused variables
8503           save_optimize and save_options
8504
8505 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8506
8507         * clean.mk: removed '=' in "-maxdepth=1"
8508         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8509         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8510
8511 2003-10-06  Borut Razem <borut.razem AT siol.net>
8512
8513         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8514           my_unput() replaced by unput()
8515
8516 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8517
8518         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8519         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8520         type-punned pointer will break strict-aliasing rules"
8521         Old LR behaviour is again default; Klaus' LR can be choosen by
8522         defining the environment variable LRKLAUS
8523         * src/SDCCBBlock.h
8524         * src/SDCCloop.c
8525         * src/SDCClrange.c
8526         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8527         * clean.mk: fixed removal of files in bin/CVS/
8528         * device/lib/clean.mk: fixed removal of directories small and large
8529         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8530         * src/SDCCicode.c,
8531         * src/SDCCval.c: removed superflous test for pedantic
8532
8533 2003-10-05  Borut Razem <borut.razem AT siol.net>
8534
8535         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8536           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8537           message "unmatched #pragma SAVE and #pragma RESTORE"
8538
8539 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8540
8541         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8542           assembly, critical functions, atomic, nojtbound)
8543
8544 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8545
8546         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8547         * src/SDCCBBlock.h
8548         * src/SDCCloop.c
8549         * src/SDCCloop.h
8550         * src/SDCClrange.c
8551
8552 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8553
8554         * src/z80/gen.h,
8555         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8556         * src/mcs51/gen.h
8557         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8558         * src/ds390/gen.h
8559         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8560         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8561         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8562
8563 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8564
8565         * src/z80/gen.c (genRet): fixed bug #524753
8566         * src/z80/gen.c (genCast): fixed internal error on cast from
8567         pointer to long
8568         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8569         fix for bug #477835 to the z80
8570         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8571         for tracking iCodes in the peephole optimizer for z80
8572
8573 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8574
8575         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8576         the other part of bug #814548
8577         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8578
8579 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8580
8581         * src/SDCCcse.c: fixed part of bug #814548
8582
8583 2003-09-28  Borut Razem <borut.razem AT siol.net>
8584
8585         * src/asm.c: rewrite of printILine() to use temporary file instead
8586           a pipe
8587         * src/xa51/main.c: commented out declaration of int rewinds
8588
8589 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8590
8591         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8592
8593 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8594
8595         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8596         * src/asm.c (printILine): Fixed bug #811015
8597
8598 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8599
8600         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8601         freeing.
8602
8603 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8604
8605         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8606         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8607         to correctly handle general case of AOP_PAIRPTR
8608         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8609
8610 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8611
8612         * src/mcs51/ralloc.c (fillGaps),
8613         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8614         register positioning bug)
8615
8616 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8617
8618         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8619
8620 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8621
8622         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8623         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8624         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8625         (ralloc doesn't intentionally do this now, but perhaps later)
8626         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8627         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8628         register positioning bugs (Fixed bug #762602 and #795325)
8629         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8630         (Fixed bug #808779)
8631         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8632         lines that --i-code-in-asm generates
8633
8634 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8635
8636         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8637         trying to fclose a FILE* that was already closed.
8638
8639 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8640
8641         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8642         of const struct should be treated as if const themselves)
8643
8644 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8645
8646         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8647
8648 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8649
8650         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8651         Unix (/n) and DOS (/r/n) line terminations.
8652
8653 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8654
8655         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8656         bug #613775
8657
8658 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8659
8660         * src/mcs51/gen.c (genFunction, genEndFunction),
8661         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8662         and restore of EA so that stack offsets to parameters are
8663         correct when using both critical and reentrant/stack-auto.
8664         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8665         size (can be triggered in error if sloc is shared between
8666         different sized objects)
8667         * device/include/float.h: fixed macros to explicitly use
8668         unsigned long where needed
8669
8670 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8671
8672         Feature req. 799831: added code to allow nesting of critical functions
8673         * src/mcs51/gen.c (genFunction, genEndFunction)
8674         * src/ds390/gen.c (genFunction, genEndFunction)
8675
8676 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8677
8678         * src/SDCCsymt.c (sclsFromPtr),
8679         * src/SDCCsymt.h,
8680         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8681         support for standard C idiom of memory mapped variables; for
8682         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8683         to xdata int at 0x1234 tempvar = 1.
8684         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8685         provided by Akiya ISHIDA
8686
8687 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8688
8689         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8690         * src/SDCCval.c (constVal): added reduction from int to char
8691         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8692         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8693         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8694         to ignore the sign
8695         * support/regression/tests/shifts.c: fixed
8696
8697 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8698
8699         * src/z80/gen.c (genXor): Fixed bug #805445
8700
8701 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8702
8703         Fixed bug #621531 (const & volatile confusion in the type chain).
8704         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8705         refer to the const or volatile state of the pointer itself.
8706
8707         * src/SDCCast.c
8708         * src/SDCCglue.c
8709         * src/SDCCicode.c
8710         * src/SDCCsymt.c
8711         * src/SDCCval.c
8712         * src/SDCC.y
8713         * src/SDCCsymt.h
8714         * src/pic/gen.c
8715         * src/pic/ralloc.c
8716         * src/pic16/gen.c
8717         * src/pic16/ralloc.c
8718         * support/regression/tests/const.c
8719
8720 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8721
8722         When checking for duplicated modules, use absolute paths
8723         instead of relative paths.  Files changed:
8724
8725         * as/mcs51/lklib.c
8726         * link/z80/lklib.c
8727
8728 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8729
8730         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8731
8732 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8733
8734         * device/include/string.h: added size_t typedef, changed
8735         prototypes to use size_t, eliminated separate reentrant and
8736         non-reentrant declarations, added _memmove declaration
8737         * device/lib/_memcpy.c: changed to use size_t instead of int,
8738         changed /4 to >>2 to avoid division library call
8739         * device/lib/_memcmp.c,
8740         * device/lib/_memset.c,
8741         * device/lib/_strncat.c,
8742         * device/lib/_strncpy.c,
8743         * device/lib/_strncmp.c: changed to use size_t instead of int
8744         * device/lib/_memmove.c: new file (fixed bug #772294)
8745         * device/lib/Makefile.in: added _memmove.c
8746         * device/lib/z80/asm_strings.s: fixed bug #772290
8747         * support/regression/tests/bitfields.c: attempt to fix host assertion
8748         failure on amd64-unknown-linux2.2
8749
8750 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8751
8752         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8753         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8754         * as/z80/asmain.c (main): fixed bug #801766
8755
8756 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8757
8758         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8759         compilers
8760
8761 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8762
8763         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8764         reported in bug #800609
8765
8766 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8767
8768         * Top header beautifications in src/pic16 directory:
8769           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8770           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8771           pcoderegs.h, ralloc.c, ralloc.h
8772         * main.c: added top header and GPL license notice
8773         * pcode.c: fixed the if-conditional warning
8774
8775 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8776
8777         * device/lib/_mullong.c: replaced int by short for gcc
8778
8779 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8780
8781         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8782         and JUMPTABLE iCodes properly now (worked by accident before)
8783         * src/mcs51/gen.c (leftRightUseAcc),
8784         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8785         iCode properly now. Use getSize instead of nRegs since a & b
8786         aren't part of the nRegs tally.
8787
8788 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8789
8790         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8791         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8792           before instructions that use the _STATUS register
8793
8794 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8795
8796         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8797         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8798         fetching of the pointer
8799         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8800         copied from genNearPointerSet()
8801         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8802         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8803         If they pop r0/r1 they must be called in the opposite order than aopOp().
8804         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8805         (resp. --stack-auto), prepared for --xstack
8806
8807 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8808
8809         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8810
8811 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8812
8813         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8814         these ports have their own __sdcc_external_start()
8815
8816 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8817
8818         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8819         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8820         type for bits was changed. It resulted in bit variables becoming
8821         global, which is not permitted in PIC 14 assembly output.
8822
8823 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8824
8825         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8826
8827 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8828
8829         Z80 and MCS51 linkers complaint if a public symbol is defined
8830         in more than one library module:
8831
8832         * as/mcs51/lklib.c
8833         * link/z80/lklib.c
8834         * as/mcs51/Makefile.in
8835
8836 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8837
8838         A few small changes that speed up the peephole optimizer.
8839
8840         * src/SDCCpeeph.c
8841
8842 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8843
8844         Try to make the peephole optimizer smarter by maintaining
8845         an association between the assembly source code and the
8846         iCodes that originated them. Put this information to use
8847         with a new peephole rule condition "notVolatile" so that
8848         the rules can be aggressive yet still safe.
8849
8850         * src/SDCCpeeph.c
8851         * src/SDCCpeeph.h
8852         * src/mcs51/gen.c
8853         * src/mcs51/peeph.def
8854
8855 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8856
8857         Fixed bug #741761
8858
8859         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8860         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8861         if the left or right operand symbols have the accuse flag set.
8862
8863 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8864
8865         Changed the type of the result of the ! (NOT) operator to char;
8866         previously it returned the same type as the source. This allows
8867         us to eliminate all the genFloatNot functions (all of its target
8868         implementations were very buggy) since !float can use the same
8869         code as !long now.
8870
8871         * src/SDCCicode.c (ast2iCode): ! returns char
8872         * src/mcs51/gen.c (genNot, genNotFloat),
8873         * src/ds390/gen.c (genNot, genNotFloat),
8874         * src/z80/gen.c (genNot, genNotFloat),
8875         * src/pic/gen.c (genNot, genNotFloat),
8876         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8877
8878 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8879
8880         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8881         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8882            during interrupts. Ensure WSAVE is located at a shared bank address.
8883         2. Fixed page selection in some places
8884         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8885            the registers name strings.
8886         4. Fixed "signed / unsigned compare" compiler warnings.
8887         5. The PIC port manages its own allocation of the general purpose
8888            registers, but makes no attempt to reuse them. As a result when
8889            compiling it soon runs out of general purpose registers. Some
8890            additional code was added to the files pcode.c and device.c to walk
8891            through the function call tree and rename the registers so that they
8892            get reused.
8893
8894         * src/pic/device.c
8895         * src/pic/gen.c
8896         * src/pic/glue.c
8897         * src/pic/pcode.c
8898         * src/pic/pcode.h
8899         * src/pic/ralloc.c
8900         * src/pic/ralloc.h
8901         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8902         genPlus() & genMinus() when the result is the same as left or right
8903
8904 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8905
8906         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8907
8908 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8909
8910         Made bitfield a distinct type from bit so that bitfields
8911         convert as per ANSI C and bits retain their traditional
8912         boolean style behaviour. Implemented bitfield support in
8913         the z80 port.
8914
8915         * src/SDCCsymt.h,
8916         * src/SDCCsymt.c,
8917         * src/SDCCast.c,
8918         * src/cdbFile.c,
8919         * src/mcs51/gen.c,
8920         * src/ds390/gen.c: bit v bitfield split
8921         * src/z80/gen.c: New support for bitfields
8922         * support/regression/tests/bitfields.c: reenabled z80,
8923         added more tests
8924
8925 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8926
8927         Rules 246.x, 247.x relate to bitfields, the others speed up
8928         access to xdata mapped I/O devices.
8929
8930         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8931
8932 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8933
8934         Cleaned up genPackBits and genUnpackBits and added two helper
8935         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8936         for literal assignments in genPackBits (thanks to Frieder for
8937         reminding me).
8938
8939         * src/mcs51/gen.c
8940         * src/ds390/gen.c
8941
8942 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8943
8944         Fixed bug #748310 (pointer to function type mishandled when the
8945         function name is omitted). Also fixed a SIGSEGV when a function
8946         attribute (reentrant, etc) is used on a non-function or on a
8947         function but misplaced before the parameter list.
8948
8949         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8950         bug #748310
8951         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8952         * support/Util/SDCCerr.h,
8953         * support/Util/SDCCerr.c: Added func attr misuse error msg
8954
8955 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8956
8957         Fixed bug #787649 by anonymous
8958         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8959         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8960
8961 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8962
8963         Fixed numerous bitfield problems.
8964
8965         * src/SDCC.y: More bitfield related error checking
8966         * src/SDCCsymt.h,
8967         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8968         * support/Util/SDCCerr.h,
8969         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8970         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8971         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8972         * support/regression/tests/bitfields.c: tests added
8973
8974 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8975
8976         Made the constant following the "interrupt" keyword optional. If
8977         omitted, the function will not automatically be given an entry
8978         in the interrupt vector table (similar to #pragma NOIV, but
8979         less syntacticly kludgy). The interrupt number is also now
8980         range checked. Also fixed a bug in the high order bit example
8981         in the manual.
8982
8983         * src/SDCC.y
8984         * src/SDCCmem.c
8985         * src/SDCCglue.c
8986         * src/SDCCsymt.h
8987         * support/Util/SDCCerr.c
8988         * support/Util/SDCCerr.h
8989         * doc/sdccman.lyx
8990
8991 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8992
8993         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8994         * src/SDCCicode.c (operandOperation): rewritten some ops
8995         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8996         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8997         other type
8998         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8999         be re-activated by defining REDUCE_LITERALS)
9000         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
9001         unsigned, but are signed by default
9002         * src/SDCCval.c (constVal): rearranged
9003         * src/SDCCval.c (valMod): preliminary fix
9004         * src/SDCCval.c (valCastLiteral): use TYPE_* types
9005         * support/regression/literalop.c: added, work in progress
9006
9007 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9008
9009         Generate warnings for useless declarations like "char data;"
9010         that don't do what new users expect.
9011
9012         * src/SDCC.y
9013         * support/Util/SDCCerr.h
9014         * support/Util/SDCCerr.c
9015
9016 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
9017
9018         * src/SDCCval.c (valMult): fix overflow detection of negative int
9019
9020 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9021
9022         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
9023
9024         Changes to support big endian targets:
9025
9026         * src/ports.h
9027         * src/SDCCglue.c
9028         * src/avr/main.c
9029         * src/ds390/main.c
9030         * src/izt/i186.c
9031         * src/mcs51/main.c
9032         * src/pic/main.c
9033         * src/pic16/main.c
9034         * src/xa51/main.c
9035         * src/z80/main.c
9036
9037 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
9038
9039         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
9040         * device/lib/time.c: fixed warning "integer overflow in expression"
9041
9042 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
9043
9044         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
9045         * src/SDCCval.c (constVal): changed default to signed; hex and octal
9046         constants are unsigned; added recognition of "u" flag for unsigned
9047         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
9048         * src/SDCCval.c (valDiv, valMod): fixed signdness
9049         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
9050         signedness of modulo, left and right shift
9051         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
9052         * support/Util/SDCCerr.h: added warning W_INT_OVL
9053         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
9054         * src/SDCCast.c (ast_print): improved output of constants
9055
9056 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9057
9058         Fixed some warnings when building with MSVC:
9059
9060         * as\mcs51\asdata.c
9061         * as\z80\asdata.c
9062         * as\mcs51\asm.h
9063         * as\z80\asm.h
9064         * link\z80\aslink.h
9065         * link\z80\lkdata.c
9066         * link\z80\lkeval.c
9067         * link\z80\lkgb.c
9068         * link\z80\lkihx.c
9069         * link\z80\lks19.c
9070         * link\z80\lksym.c
9071         * support\cpp2\cpplib.c
9072         * src\ds390\gen.c
9073         * src\mcs51\gen.c
9074
9075 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9076
9077         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9078
9079 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9080
9081         * support\librarian\clean.mk: Do not remove Makefile.
9082         * support\librarian\Makefile: added.
9083
9084 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9085
9086         Added librarian to MSVC build:
9087         * all.dsp
9088         * sdcc.dsw
9089         * support\librarian\librarian.dsp
9090
9091         'configure' not needed for librarian, removed:
9092         * support\librarian\configure
9093         * support\librarian\configure.in
9094         * support\librarian\config_in.h
9095         * support\librarian\Makefile.in
9096
9097         Hopefully these ones built the librarian and the rest of sdcc properly:
9098         * Makefile
9099         * Makefile.common.in
9100
9101         Messed up 'configure', so revert to previous version:
9102         * configure
9103         * configure.in
9104
9105 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9106
9107         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9108         there, while the mantissa of a double is "only" 53 bits wide.
9109
9110 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9111
9112         Adding sdcclib to the build.  MSVC project coming soon.
9113         Files added/changed:
9114
9115         * support\librarian\clean.mk
9116         * support\librarian\configure
9117         * support\librarian\configure.in
9118         * support\librarian\config_in.h
9119         * support\librarian\Makefile.bcc
9120         * support\librarian\Makefile.in
9121         * support\librarian\sdcclib.c
9122         * Makefile.bcc
9123         * Makefile
9124         * Makefile.common.in
9125         * configure
9126         * configure.in
9127
9128 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9129
9130         Linker now complaints if linked modules have conflicting options, for
9131         example, one compiled using --model-large and another one compiled with
9132         --model-small.  The following files were modified:
9133
9134         * as\mcs51\asdata.c
9135         * as\mcs51\aslink.h
9136         * as\mcs51\asm.h
9137         * as\mcs51\asmain.c
9138         * as\mcs51\asout.c
9139         * as\mcs51\i51pst.c
9140         * as\mcs51\lkdata.c
9141         * as\mcs51\lklibr.c
9142         * as\mcs51\lkmain.c
9143         * as\z80\asdata.c
9144         * as\z80\asm.h
9145         * as\z80\asmain.c
9146         * as\z80\asout.c
9147         * as\z80\z80pst.c
9148         * link\z80\aslink.h
9149         * link\z80\lkdata.c
9150         * link\z80\lklibr.c
9151         * link\z80\lkmain.c
9152         * src\SDCCglue.c
9153
9154 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9155
9156         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9157         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9158
9159 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9160
9161         * src/z80/mappings.i: fix _mul[us][int,long] entries
9162
9163 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9164
9165         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9166
9167 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9168
9169         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9170         * support/regression/tests/bitopcse.c: added
9171         fixed warning:
9172         * src/avr/gen.c:
9173         * src/pic/gen.c:
9174         * src/pic16/gen.c:
9175         * src/z80/gen.c:
9176         * src/xa51/gen.c:
9177
9178 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9179
9180         added support for new library format to z80, gbz80 linkers:
9181         *link/z80/aslink.h
9182         *link/z80/lklex.c
9183         *link/z80/lklib.c
9184         *link/z80/lklist.c
9185
9186 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9187
9188         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9189         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9190
9191 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9192
9193         added DUMMY_READ_VOLATILE:
9194         * src/SDCC.y:
9195         * src/avr/gen.c:
9196         * src/xa51/gen.c:
9197         * src/z80/gen.c:
9198         * src/pic/gen.c:
9199         * src/pic16/gen.c:
9200         * src/mcs51/gen.c:
9201         * src/ds390/gen.c:
9202         * src/SDCCcse.c (algebraicOpts): many improvements
9203         * src/SDCCcse.h: removed algebraicOpts()
9204         * src/SDCCicode.c (picDummyRead): added
9205
9206 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9207
9208         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9209         "Insufficient space in data memory".
9210
9211 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9212
9213         * src/mcs51/gen.c: fixed bug #771358
9214         * src/z80/gen.c: fixed bug #759087
9215
9216 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9217
9218         * src/pic16/glue.c: minor cleanup by Vangelis
9219
9220 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9221
9222         * device/include/regc515c.h: fixed #758477
9223         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9224         * device/lib/_gptrput.c: saved a few bytes
9225         * my tab spacing is 8, yours too?)
9226         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9227         * device/lib/serial.c: process RX bytes earlier than TX bytes
9228         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9229
9230 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9231
9232         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9233
9234 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9235
9236     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9237
9238 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9239
9240         * device/lib/Makefile.in: bad fix, reverted to 1.43
9241
9242 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9243
9244         * device/lib/Makefile.in: added missing z80 object files
9245
9246 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9247
9248         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9249         pic16 progress by Vangelis:
9250         * src/SDCCglobl.h:
9251         * src/SDCCmain.c:
9252         * src/pic/Makefile:
9253         * src/pic:
9254         * pic/Makefile:
9255         * pic16/device.c:
9256         * pic16/device.h:
9257         * pic16/gen.c:
9258         * pic16/gen.h:
9259         * pic16/genarith.c:
9260         * pic16/glue.c:
9261         * pic16/main.c:
9262         * pic16/pcode.c:
9263         * pic16/pcode.h:
9264         * pic16/pcodepeep.c:
9265         * pic16/peeph.def:
9266
9267 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9268
9269     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9270
9271 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9272
9273     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9274     added gbz80 build to MSVC project.
9275     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9276     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9277     from 8051 stuff and setup so it links using a .lnk file.
9278
9279 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9280
9281     * support/librarian/sdcclib.c: sdcc librarian.
9282     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9283     with sdcclib.
9284
9285 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9286
9287     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9288
9289 2003-07-02  Borut Razem <borut.razem AT siol.net>
9290
9291         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9292         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9293         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9294         src/xa51/main.c, src/z80/main.c:
9295         virtualization of glue() function: each port has it's own glue function,
9296         which is accessed by do_glue function pointer in PORT.general structure
9297
9298 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9299
9300         * DS800C400 fun, improved ROM interface and tinibios.
9301
9302 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9303
9304         * More support for DS80C400. Now includes beginning of interface to ROM.
9305
9306 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9307
9308         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9309
9310 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9311
9312         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9313
9314 2003-06-19  Borut Razem <borut.razem AT siol.net>
9315
9316         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9317
9318 2003-06-19  Borut Razem <borut.razem AT siol.net>
9319
9320         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9321         fixed Z80 port - crt0.o: cannot open.
9322
9323 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9324
9325         * support/Util/MySystem.c (merge_command): revert bad fix
9326
9327 2003-06-18  Borut Razem <borut.razem AT siol.net>
9328
9329         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9330
9331 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9332
9333         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9334         option --use-stdout sends errors to stdout instead of stderr.
9335
9336 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9337
9338         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9339
9340 2003-06-15  Borut Razem <borut.razem AT siol.net>
9341
9342         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9343         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9344         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9345         fixed width array of pointers replaced with sets;
9346         multiple include and lib paths ared transferred to preprocessor and linker
9347         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9348         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9349         fixed width array of pointers
9350         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9351         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9352         fixupPath(), getPathDifference()
9353         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9354         fixed width array of pointers
9355
9356 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9357
9358         * src/pic16/ralloc.c: fix warnings
9359         * src/pic16/pcode.c: fix warning
9360
9361 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9362
9363          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9364         know all the details, but essentially this set of changes enable
9365         the pic16 port to generate movff instructions and generate assembler
9366         directives,
9367         * src/SDCCmain.c:
9368         * src/pic16/gen.c:
9369         * src/pic16/glue.c:
9370         * src/pic16/pcode.c:
9371         * src/pic16/device.c:
9372         * src/pic16/main.c:
9373         * src/pic16/pcode.h:
9374         * src/pic16/pcoderegs.c:
9375         * src/pic16/ralloc.c:
9376         * src/pic16/ralloc.h:
9377
9378 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9379
9380         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9381         added option --vc, so sdcc errors and warnings are compatible with
9382         Microsoft Visual Studio.
9383
9384 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9385
9386         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9387           device/lib/libfloat.lib: added atof function.
9388
9389 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9390
9391         * doc/sdccman.lyx: updated to Lyx 1.3
9392         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9393         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9394         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9395
9396 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9397
9398         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9399
9400 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9401
9402         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9403           additions to the "related tools/documentation" section
9404
9405 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9406
9407         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9408
9409 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9410
9411         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9412         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9413
9414 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9415
9416         * doc/sdccman.lyx: fix double dash and other minor things
9417         * doc/Makefile: fix double dash
9418
9419 2003-05-28  Karl Bongers(patches from Martin Helmling)
9420         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9421           condition and ignore commands.
9422
9423 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9424
9425         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9426           is in parts still quite out of date, I did changes as far as I felt makes sense
9427           for a non-native english speaker.
9428           Please feel free to add to the manual or to correct my changes.
9429         * doc/Makefile: undid touching the date of intermediate tex files.
9430
9431 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9432
9433         * doc/sdccman.lyx: Manual has an index now
9434
9435 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9436
9437         Finalize muluint/mulsint and mululong/mulslong merging:
9438         * device/lib/_mulint.c
9439         * device/lib/_mullong.c
9440         * device/lib/gbz80/mul.s
9441         * device/lib/gbz80/stubs.s
9442         * device/lib/z80/mul.s
9443         * device/lib/z80/stubs.s
9444         * src/SDCCsymt.c (initCSupport)
9445
9446 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9447
9448         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9449         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9450           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9451           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9452           instead of /Zm500.
9453
9454 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9455
9456         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9457           the regression tests I'm not brave enough to enable 245.b, 245.c
9458         * doc/sdccman.lyx: added latex preamble for hyperref package.
9459           Using pdflatex this will give you a hyperlinked pdf file with
9460           bookmarks. (prepend '%' before /usepackage if this breaks something)
9461
9462 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9463
9464          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9465
9466 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9467
9468         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9469
9470 2003-05-21    <johan AT balder>
9471
9472         * src/SDCCglue.c (printIval): fixed bug #739934
9473
9474 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9475
9476         Applied patch from bug 737905 (renamed yylineo to mylineno):
9477         * src/altlex.c
9478         * src/SDCCast.c
9479         * src/SDCglobl.h
9480         * src/SDCC.lex
9481         * src/SDCCsymt.c
9482         * src/SDCCval.c
9483         * src/pic16/pcode.c: Cleaned warnings
9484         * src/pic16/pcodeflow.c: Cleaned warnings
9485         * src/pic16/pcoderegs.c: Cleaned warnings
9486
9487 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9488
9489         * src/pic16/pcode.c: Cleaned warnings
9490         * src/pic16/pcodepeep.c: Cleaned warnings
9491         * src/pic16/ralloc.c: Cleaned warnings
9492
9493 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9494
9495         * doc/sdccman.lyx: fixed bug 739745
9496         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9497
9498 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9499
9500         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9501         it can be defined with CFLAGS when running configure
9502         * src/SDCCmain.c: fixed compiling + linking with object files
9503
9504 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9505
9506         * configure.in: configure for pic16 port,
9507             added --disable-pic16-port
9508         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9509         * src/SDCCmain.c: linkOptions is changed to set *,
9510             added if/endif conditional macros to remove options help
9511             messages from optionsTable when a port is not configured, added
9512             support for the PIc16 port in the ports table, when executing
9513             the compiler with no port specified on command line, a default
9514             port is selected with the new macro DEFAULT_PORT which is
9515             defined in port.h, in setDefaultOptions() linkOptions is removed
9516             from initialization assignment, since now it is a set,
9517             parseCmdLine uses setParseWithComma for linkOptions, in
9518             linkEdit() linkOptions are accessed with new function indexSet()
9519             which returns the i'th item of a set variable. See SDCCset.c, in
9520             linkEdit() when calling buildCmdLine(), added linkOptions as
9521             last argument. Now users can pass arguments to gplink via the
9522             -Wl option, main() uses pic16glue() to glue up pic16 programs
9523         * src/SDCCpeeph.c: various changes to support pic16
9524         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9525             return the i'th item of the set
9526         * src/SDCCset.h: added function prototype for indexSet()
9527         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9528         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9529         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9530             added macro DEFAULT_PORT
9531         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9532         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9533             generated
9534         * src/pic16/glue.c: commented out some error producing lines
9535         * src/pic16/main.c: __config directives are commented out to stop
9536             gpasm complaining and test the linkage with gplink, _linkCmd and
9537             _asmCmd changed to be more gplink and gpasm friendly
9538         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9539             produced an error when parsed, peep rule 12 is added to utilize
9540             movff, but it is commented out since the pCode does not support
9541             yet a command with 2 address arguments
9542
9543 2003-05-18    <johan AT balder>
9544
9545         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9546         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9547 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9548
9549         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9550   Added feature to script commands from file.
9551
9552 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9553
9554         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9555         * src/SDCCutil.c: include ctype.h for win32
9556
9557 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9558
9559         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9560
9561 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9562
9563         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9564   Fixed so you can set breakpoints prior to run, run does not stop
9565   on entry now.  Add tbreak.  Other enhancements and fixes for use
9566   with ddd.
9567
9568 2003-05-12  Borut Razem <borut.razem AT siol.net>
9569
9570         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9571
9572 2003-05-11  Borut Razem <borut.razem AT siol.net>
9573
9574         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9575         the path of bin directory, so that PATH is the only env. variable, which has to be set
9576         in case of standard installation.
9577         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9578         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9579         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9580
9581 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9582
9583         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9584         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9585         temp files are in the port dir; clean the gen/test directory when
9586         generating new test.c
9587         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9588         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9589         * support/regression/tests/zeropad.c: added
9590
9591 2003-05-09    <johan AT balder>
9592
9593         * src/SDCCglue.c: fixed bug #597940
9594
9595 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9596
9597         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9598   cache sfr, optimize next,step, fix off by one sourceline,
9599   support ddd list function.
9600         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9601
9602 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9603
9604         * support/regression/HTMLgen.py: added compare_s2f()
9605         * support/regression/Makefile: redo 1.27
9606         * support/regression/generate-cases.py: redo 1.5
9607
9608 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9609
9610         * support/regression/tests/float.c: workaround 33 bit hex constant
9611         * support/regression/tests/simplefloat.c: fix division for host
9612
9613 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9614
9615         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9616         that tame's the PIC's over-aggressive optimizer.
9617
9618 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9619
9620          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9621          support for MSVC.
9622
9623 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9624
9625         Initial support for DS80C400. "Hello world" runs on TINIm400
9626         (with polled I/O).
9627
9628 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9629
9630          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9631          * Some notes on ddd usage added in debugger/README
9632          Martin Helmling adding more features and fixes for ddd GUI debugger.
9633          Code added for nexti, stepi, up, down, and other adjustments.
9634
9635 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9636
9637         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9638         * src/pic/peeph.def Added two rules to optimize carry manipulation
9639         * src/pic/* removed debug printfs
9640
9641 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9642
9643         * debugger/mcs51/cmd.c: added header newalloc.h
9644
9645 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9646
9647         * as/Makefile: new EXEEXT
9648         * as/z80/Makefile: remove trailing slash of BUILDIR
9649         * as/z80/clean.mk: new EXEEXT
9650         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9651         * support/cpp2/Makefile.in: new EXEEXT
9652         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9653
9654 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9655
9656         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9657         EXEEXT was introduced to fix all related problems with targets
9658         "clean", "install" and "uninstall"; a couple of further flaws
9659         especially with "clean" have been fixed too
9660         * as/mcs51/Makefile.in
9661         * as/mcs51/clean.mk
9662         * as/z80/Makefile
9663         * Makefile
9664         * clean.mk
9665         * debugger/mcs51/Makefile.in
9666         * debugger/mcs51/clean.mk
9667         * link/z80/Makefile
9668         * link/z80/Makefile.in
9669         * link/z80/clean.mk
9670         * link/Makefile
9671         * packihx/Makefile.in
9672         * packihx/clean.mk
9673         * sim/ucsim/Makefile
9674         * sim/ucsim/clean.mk
9675         * sim/ucsim/avr.src/Makefile.in
9676         * sim/ucsim/avr.src/clean.mk
9677         * sim/ucsim/s51.src/Makefile.in
9678         * sim/ucsim/s51.src/clean.mk
9679         * sim/ucsim/xa.src/Makefile.in
9680         * sim/ucsim/xa.src/clean.mk
9681         * sim/ucsim/z80.src/Makefile.in
9682         * sim/ucsim/z80.src/clean.mk
9683         * sim/ucsim/main_in.mk
9684         * sim/ucsim/packages_in.mk
9685         * sim/ucsim/gui.src/Makefile.in
9686         * sim/ucsim/gui.src/serio.src/Makefile.in
9687         * sim/ucsim/gui.src/serio.src/clean.mk
9688         * src/Makefile.in
9689         * src/clean.mk
9690         * support/cpp2/Makefile.in
9691         * support/cpp2/clean.mk
9692         * support/makebin/Makefile
9693         * support/makebin/clean.mk
9694         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9695         * doc/sdccman.lyx: --program-suffix no longer needed
9696
9697 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9698
9699          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9700          Martin Helmling added support for ddd GUI debugger.
9701          Code added to display assembly, set variables, and other commands
9702          to interface to ddd.
9703
9704 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9705
9706         * as/Makefile: fix target clean
9707         * as/clean.mk: fix target clean
9708         * as/z80/clean.mk: fix target clean
9709
9710 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9711
9712         * Makefile.common.in: added  AT EXEEXT AT
9713         * configure.in: removed all mingw32 stuff
9714         * configure: rebuilt from configure.in
9715         * doc/sdccman.lyx: updated section "installation"
9716         * support/scripts/sdcc_mingw32: adapted to configure
9717         * support/scripts/sdcc_cygwin_mingw32: added
9718
9719 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9720
9721         * src/pic Added object file support for the PIC port
9722         * src/pic Applied patch from Craig Franklin (this started the object file support)
9723         * src/regression Updated the PIC regression tests for object files
9724
9725 2003-04-20  Borut Razem <borut.razem AT siol.net>
9726
9727         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9728           lklex.c: In function `getfid':
9729           lklex.c:203: warning: array subscript has type `char'
9730         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9731           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9732         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9733           stack handling macros
9734
9735 2003-04-19  Borut Razem <borut.razem AT siol.net>
9736
9737         * "handling space characters in file path" task:
9738         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9739         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9740         * support/Util/MySystem.h: make it self-sufficient
9741         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9742           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9743           handling space characters in file path
9744         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9745           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9746         * support/Util/MySystem.c: handling space characters in executable's path
9747
9748 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9749
9750         * as/z80/Makefile: fix permanent rebuild of z80
9751         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9752         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9753
9754 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9755
9756         * src/SDCCopt.c: add special case optimization to replace modulo by
9757           a power of two with a bitwise AND.
9758
9759 2003-04-18    <johan AT balder>
9760
9761         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9762
9763 2003-04-17    <johan AT balder>
9764
9765         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9766         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9767
9768 2003-04-13  Borut Razem <borut.razem AT siol.net>
9769
9770         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9771         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9772           fixed mingw problem in adl_NORMALIZE_PATH
9773
9774 2003-04-12  Borut Razem <borut.razem AT siol.net>
9775
9776         * fixed "#pragma SAVE/RESTORE can not be nested":
9777         * src/SDCC.lex: reworked pragma handling functions
9778         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9779         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9780
9781 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9782
9783         * src/SDCCutil.c (pathEquivalent): defined but not used
9784         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9785         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9786         * configure: rebuilt from configure.in
9787         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9788         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9789         * device/include/Makefile.in: replace sdcc_datadir
9790         * device/lib/Makefile.in: replace sdcc_datadir
9791         * Makefile.common.in: add LDFLAGS from configure
9792         * packihx/Makefile.in: use LDFLAGS
9793         * src/Makefile.in: use LDFLAGS
9794         * support/cpp2/Makefile.in: add LDFLAGS from configure
9795         * support/makebin/Makefile: use LDFLAGS
9796         * .version: bumped version number to 2.3.5
9797
9798 2003-04-12  Borut Razem <borut.razem AT siol.net>
9799
9800         * completed "different paths" task:
9801         * src/SDCCmacro.c: fixed bug in handling quotes
9802         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9803         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9804
9805 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9806
9807         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9808
9809 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9810
9811         * ds390/gen.c ds390/peeph.def: fix bug 706781
9812
9813 2003-04-11  Borut Razem <borut.razem AT siol.net>
9814
9815         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9816
9817 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9818
9819         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9820         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9821          set - this bit used to not be set...).
9822         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9823           bad code in PIC Port
9824         * src/regression/and2.c added to test bug 609268
9825         * src/regression/Makefile added and2.c to regression test
9826
9827
9828 2003-04-08    <johan AT CP255758-A>
9829
9830         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9831         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9832         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9833
9834 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9835
9836         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9837         fix bug #487815
9838         * support/cpp2/Makefile.in: fix bug #487815
9839         * configure: rebuilt from configure.in
9840         * Makefile.common.in: docdir changed, new path suffixes
9841         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9842         * sdcc_vc_in.h: reflect changes from sdccconf.h
9843         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9844         * src/SDCCutil.h: remove BINDIR hack
9845         * doc/sdccman.lyx: update new path hierarchy
9846
9847 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9848
9849         * src/SDCCpeeph.c: added okToRemoveSLOC test
9850
9851 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9852
9853         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9854
9855 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9856
9857         * src/SDCCpeeph.c: added labelIsReturnOnly test
9858         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9859
9860 2003-04-05    <johan AT balder>
9861
9862         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9863         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9864         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9865         * src/SDCCast.c: fixed a warning
9866         * src/SDCCast.h: fixed a warning
9867         * src/SDCCicode.c (operandFromAst): fixed a warning
9868
9869 2003-04-04    <johan AT balder>
9870
9871         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9872         * src/SDCCast.c (decorateType): fixed bug #715076
9873         * src/SDCC.y: fixed bug #702907
9874
9875 2003-04-03    <johan AT balder>
9876
9877         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9878         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9879         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9880         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9881         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9882
9883 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9884
9885         * _decdptr.c: fix return values
9886         * _gptrget.c: fix return values
9887         * _gptrgetc.c: fix return values
9888         * _gptrput.c: fix return values
9889         * _mulint.c: fix return values
9890         * as/z80/Makefile: fix 'make -j' problem
9891
9892 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9893
9894         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9895         * configure.in: big cleanup, updated to autoconf 2.5x
9896         * configure: rebuilt from configure.in
9897         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9898         * sdcc_vc_in.h: reflect changes from sdccconf.h
9899         * doc/Makefile: fixed a flaw in "make install"
9900
9901 2003-04-02    <johan AT balder>
9902
9903         * src/ds390/gen.c (genCmp): no comments
9904         * src/mcs51/gen.c (genCmp): no comments
9905         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9906         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9907
9908 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9909
9910         * support/regression/generate-cases.py: place generated file in given sub directory
9911         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9912         * support/regression/Makefile: improvements for 'make -j';
9913         side effect: it's simpler and faster now
9914
9915 2003-03-31  Borut Razem <borut.razem AT siol.net>
9916
9917         * src/z80/main.c: link-{port} and as-{port} defined without path
9918         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9919
9920 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9921
9922         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9923
9924 2003-03-30  Borut Razem <borut.razem AT siol.net>
9925
9926         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9927           changed type of list parameter to set
9928         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9929         * src/port.h: changed type of do_assemble() parameter to set
9930         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9931           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9932           definition of "cppoutfilename" macro with NULL value in preProcess()
9933         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9934         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9935         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9936           replaced with set *binPathSet
9937         * shash_add() deallocates the item, if allready exsists, before adding the new one
9938         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9939
9940 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9941
9942         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9943           a nested for loop bug in the PIC port
9944         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9945           for loops
9946
9947 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9948
9949         * support/Util/dbuf.h: remove C++ stuff to make it portable
9950
9951 2003-03-28  Borut Razem <borut.razem AT siol.net>
9952
9953         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9954           literal strings in stringLiteral()
9955         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9956         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9957           to the project
9958
9959 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9960
9961         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9962
9963 2003-03-26    <johan AT balder>
9964
9965         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9966         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9967         * src/SDCCast.c (decorateType): fixed " -v < 3"
9968
9969 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9970
9971         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9972         Added Lenny Story's debug infrastructure changes:
9973         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9974         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9975         * src/cdbFile.c: added
9976         * src/SDCCdebug.c: added
9977         * src/SDCCdebug.h: added
9978         * src/SDCCast.c (createFunction)
9979         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9980         * src/SDCCmain.c (parseCmdLine, main)
9981         * src/SDCCmem.c (redoStackOffsets)
9982         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9983         * src/SDCCsymt.h
9984         * src/common.h
9985         * src/avr/gen.c (genAVRCode)
9986         * src/ds390/gen.c (gen390Code)
9987         * src/mcs51/gen.c (gen51Code)
9988         * src/pic/gen.c (genpic14Code)
9989         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9990         * src/xa51/gen.c (genXA51Code)
9991         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9992
9993 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9994
9995         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9996         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9997
9998 2003-03-22    <johan AT balder>
9999
10000         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
10001
10002 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
10003
10004         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
10005         * doc/cdbfileformat.lyx: added, written by Lenny Story
10006         * doc/Makefile: added cdbfileformat.lyx
10007         * doc/clean.mk: added cdbfileformat.lyx
10008
10009 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
10010
10011         * src/mcs51/peeph.def: fix bug #705773
10012
10013 2003-03-20    <johan AT balder>
10014
10015         An sfr/sbit can have an "at #" AND an initializer
10016         * src/SDCCsymt.c (checkSClass):
10017         * src/SDCCmem.c (allocGlobal):
10018         * src/SDCCmem.c (allocLocal):
10019         * src/SDCCast.c (createBlock):
10020
10021 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
10022
10023         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
10024
10025 2003-03-16    <johan AT balder>
10026
10027         Undid the hackup of const and volatile, the problem is much bigger
10028         * src/SDCC.y:1.65
10029         * src/SDCCast.c:1.171
10030         * src/SDCCglue.c:1.138
10031         * src/SDCCicode.c:1.146
10032         * src/SDCCsymt.c:1.150
10033         * src/SDCCval.c:1.65
10034
10035 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
10036
10037         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
10038         * src/ds390/gen.c (genAddrOf): fixed bug #704087
10039
10040 2003-03-13    <johan AT balder>
10041
10042         Hackup const and volatile modifiers in type chains a bit:
10043         * src/SDCC.y:1.63
10044         * src/SDCCast.c:1.169
10045         * src/SDCCglue.c:1.136
10046         * src/SDCCicode.c:1.143
10047         * src/SDCCsymt.c1.146
10048         * src/SDCCsymt.h1.59
10049         * src/SDCCval.c:1.63
10050
10051 2003-03-12    <johan AT balder>
10052
10053         * src/SDCCBBlock.h: more LRH debugging junk
10054         * src/SDCCcflow.h: more LRH debugging junk
10055         * src/SDCCloop.c: more LRH debugging junk
10056         * src/SDCC.y (struct_declaration): fixed bug #697590
10057         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10058         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10059         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10060
10061 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10062         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10063         test function names must now match exactly).
10064         * src/SDCCcse.c: added special case in findCheaperOp to allow
10065         extending a short integer. Makes less awful code for bug 700121 test case.
10066
10067 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10068
10069         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10070         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10071
10072 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10073
10074         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10075         actually called (operandsNotEqual() was called for all
10076         operandsNotEqualX tests).
10077
10078 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10079
10080         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10081         with shorter literals. Fixes bug 700121.
10082
10083 2003-03-11    <johan AT balder>
10084
10085         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10086
10087 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10088
10089         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10090         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10091
10092 2003-03-10  Borut Razem <borut.razem AT siol.net>
10093
10094         * src/SDCCmain.c: pipe preprocessor's output
10095         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10096         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10097         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10098         which closes all pipes in pipeSet set
10099         * src/SDCCset.c: free deleted item in function deleteSetItem()
10100         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10101         moved from z80 to src subproject
10102         * .version: increased version number to 2.3.4
10103
10104 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10105
10106         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10107         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10108         * support/regression/ports/xa51/spec.mk: fix typo
10109
10110 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10111
10112         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10113
10114 2003-03-09  Borut Razem <borut.razem AT siol.net>
10115
10116         * src/SDCCmain.c: pipe preprocessor's output
10117         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10118         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10119         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10120         which closes all pipes in pipeSet set
10121         * src/SDCCset.c: free deleted item in function deleteSetItem()
10122         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10123         moved from z80 to src subproject
10124
10125 2003-03-09  Borut Razem <borut.razem AT siol.net>
10126
10127         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10128         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10129         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10130         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10131         * src/SDCCglobl.h: unification of WIN32 native definitions
10132
10133 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10134
10135         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10136
10137 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10138
10139         * src/configure.in:   check for endianess (even while cross-compiling)
10140         * src/configure:      check for endianess (even while cross-compiling)
10141         * src/configure_in.h: check for endianess (even while cross-compiling)
10142         * src/avr/gen.c:        remove old endianess stuff
10143         * src/mcs51/gen.c:      remove old endianess stuff
10144         * src/ds390/gen.c:      remove old endianess stuff
10145         * src/pic/gen.c:        remove old endianess stuff
10146         * src/pic/genarith.c:   remove old endianess stuff
10147         * src/pic/glue.c:       fix endianess check
10148         * src/pic16/gen.c:      remove old endianess stuff
10149         * src/pic16/genarith.c: remove old endianess stuff
10150         * src/pic16/glue.c:     fix endianess check
10151         * src/xa51/gen.c:       remove old endianess stuff
10152         * src/z80/gen.c:        fix endianess check
10153         * src/SDCCglue.c:       fix endianess check
10154         * src/ds390/peeph.def: fix bug 700036
10155
10156 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10157
10158         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10159         * src/configure: find appropriate data-types on host for SDCC's int and long
10160         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10161         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10162         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10163
10164 2003-03-07    <johan AT balder>
10165
10166         Just a big NOOP:
10167                 some minor cleanups before the big shot
10168                 OP_DEFS and OP_USES now use Kevin's protection
10169                 new option --nolabelopt
10170
10171         * src/SDCCBBlock.c:
10172         * src/SDCCast.c,:
10173         * src/SDCCcflow.c:
10174         * src/SDCCcse.c:
10175         * src/SDCCicode.c:
10176         * src/SDCCicode.h:
10177         * src/SDCClabel.c:
10178         * src/SDCCloop.c:
10179         * src/SDCCmain.c:
10180         * src/ds390/ralloc.c:
10181         * src/mcs51/ralloc.c:
10182         * src/pic/ralloc.c:
10183         * src/xa51/ralloc.c:
10184         * src/z80/ralloc.c:
10185
10186 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10187
10188         * src/pic/pcode.c (get_op): fix 64 bit warnings
10189         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10190         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10191         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10192         * support/regression/tests/malloc.c: fix 64 bit warnings
10193
10194 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10195
10196         * src/mcs51/gen.c (genMinus): fixed bug 696436
10197
10198 2003-03-02  Borut Razem <borut.razem AT siol.net>
10199
10200         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10201
10202 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10203
10204         * configure.in: test for mkstemp
10205         * sdccconf_in.h: add HAVE_MKSTEMP
10206
10207 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10208
10209         * device/include/ctype.h: removed warning while using --stack-auto
10210         * device/include/malloc.h: removed warning while using --stack-auto
10211         * device/include/string.h: removed warning while using --stack-auto
10212
10213 2003-02-23  Borut Razem <borut.razem AT siol.net>
10214
10215         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10216         because NDEBUG is defined (see man assert)
10217         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10218
10219 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10220
10221         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10222         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10223
10224 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10225
10226         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10227         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10228
10229 2003-02-18    <johan AT balder>
10230
10231         * as/mcs51/asmain.c (asmbl): module can start with a digit
10232         * as/z80/asmain.c (asmbl): module can start with a digit
10233
10234 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10235
10236         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10237         * src/asm.c: fix pipe() for Mingw32
10238
10239 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10240
10241         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10242         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10243         make -V work again; --c1mode reads now from stdin
10244         * doc/sdccman.lyx: added --c1mode
10245         * support/Util/SDCCerr.c: new messages for c1 mode
10246         * support/Util/SDCCerr.h: new messages for c1 mode
10247         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10248
10249 2003-02-15    <johan AT balder>
10250
10251         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10252
10253 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10254
10255         * doc/sdccman.lyx: Environment variables, -o and other minor things
10256
10257 2003-02-14    <johan AT balder>
10258
10259         * src/xa51/main.c: before anyone really tries to use it :)
10260
10261         * Install doc's in share/sdcc/doc
10262         * removed some obsolete files
10263         * Do a proper make distclean and uninstall
10264         M Makefile.common.in
10265         R sdccbuild.sh
10266         M as/Makefile
10267         M device/include/Makefile.in
10268         M device/lib/Makefile.in
10269         M doc/sdccman.lyx
10270         M link/Makefile
10271         M sim/ucsim/doc/Makefile.in
10272         M src/clean.mk
10273         R src/avr/peeph.rul
10274         R src/xa51/peeph.rul
10275         M support/cpp2/Makefile.in
10276         M support/makebin/Makefile
10277
10278
10279 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10280
10281         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10282
10283 2003-02-10  Borut Razem <borut.razem AT siol.net>
10284
10285         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10286         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10287         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10288         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10289         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10290         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10291         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10292         src/z80/Makefile.bcc: Borland Makefile cleanup
10293         * as/z80/Makefile.bcc: Added Borland Makefile
10294         * support/cpp2/borland.h: Removed
10295
10296 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10297
10298         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10299         * src/SDCC.lex: new pragma NOIV
10300         * src/SDCCglobl.h: new pragma NOIV
10301         * src/SDCCmem.c: new pragma NOIV
10302
10303 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10304
10305         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10306
10307 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10308
10309         * src/SDCCmain.c: signal handling is switched off by --debug
10310         * doc/Makefile: small fix for install; use clean.mk again
10311         * doc/clean.mk: clean *.pdf and *.html too
10312
10313 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10314
10315         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10316         * device/lib/printfl.c: fix a ds390 bug by making it portable
10317         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10318         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10319         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10320         * debugger/mcs51/cmd.c: converted multi-line string literals
10321         * sim/ucsim/globals.cc: converted multi-line string literals
10322         * src/SDCCmain.c: introduced signal handler to remove temp files
10323         * doc/Makefile: small tweaks, implement clean
10324         * doc: removed generated files
10325
10326 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10327
10328         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10329         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10330         Address Record is not correctly generated for DS390."
10331
10332 2003-02-02  Borut Razem <borut.razem AT siol.net>
10333
10334         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10335         * as/mcs51/asm.h: fixed compilation with Borland C
10336         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10337         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10338         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10339         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10340         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10341         src/z80/Makefile.bcc: delete $(LIB) only if exist
10342         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10343
10344 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10345
10346         * device/include/malloc.h: introduced NULL
10347         * device/include/string.h: introduced NULL
10348         * device/include/stdlib.h: introduced NULL
10349         * device/lib/_memcpy.c: removed NULL
10350         * device/lib/_strcat.c: removed NULL
10351         * device/lib/_strchr.c: removed NULL
10352         * device/lib/_strcmp.c: removed NULL
10353         * device/lib/_strcpy.c: removed NULL
10354         * device/lib/_strcspn.c: removed NULL
10355         * device/lib/_strlen.c: removed NULL
10356         * device/lib/_strncat.c: removed NULL
10357         * device/lib/_strncmp.c: removed NULL
10358         * device/lib/_strncpy.c: removed NULL
10359         * device/lib/_strpbrk.c: removed NULL
10360         * device/lib/_strrchr.c: removed NULL
10361         * device/lib/_strspn.c: removed NULL
10362         * device/lib/_strstr.c: removed NULL
10363         * device/lib/_strtok.c: removed NULL
10364         * device/lib/malloc.c: removed NULL, include own header
10365
10366 2003-02-02    <johan AT balder>
10367
10368         * 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
10369         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10370         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10371         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10372         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10373         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10374
10375 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10376
10377         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10378         area 'DATA'"
10379
10380 2003-02-01    <johan AT balder>
10381
10382         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10383
10384 2003-01-31    <johan AT CP255758-A>
10385
10386         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10387
10388 2003-01-30    <johan AT balder>
10389
10390         * src/SDCCBBlock.c: automatic bug detection
10391         * src/SDCCicode.c: automatic bug detection
10392
10393 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10394
10395         * src/SDCCglobl.h:   now --xram-size 0 works
10396         * src/SDCCmain.c:    now --xram-size 0 works
10397
10398 2003-01-29    <johan AT balder>
10399
10400         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10401
10402 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10403
10404         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10405         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10406         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10407         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10408         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10409         * src/SDCCmain.c:    Added options --xram-size and --code-size
10410
10411 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10412
10413         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10414         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10415
10416 2003-01-27    <johan AT balder>
10417
10418         * src/SDCC.y: fixed bug #613764
10419
10420 2003-01-26    <johan AT balder>
10421
10422         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10423         * src/SDCCsymt.h: fixed bug #673374
10424         * src/SDCCglue.c: fixed bug #661910
10425         * src/SDCCast.c: fixed bug #458099 and 673374
10426
10427 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10428
10429         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10430         * as/mcs51/strcmpi.h: added
10431         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10432         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10433         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10434         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10435         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10436         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10437         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10438         * as/mcs51/Makefile.aslink: new module strcmpi
10439         * as/mcs51/Makefile.asx8051: new module strcmpi
10440         * as/mcs51/Makefil.bcc: new module strcmpi
10441         * as/mcs51/Makefile.in: new module strcmpi
10442         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10443
10444 2003-01-26    <johan AT balder>
10445
10446         * src/SDCCglue.c: reverted back to 1.124
10447         * src/SDCCast.c: reverted back to 1.156
10448         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10449
10450 2003-01-25    <johan AT balder>
10451
10452         * src/SDCCglue.c: A better fix for bug #661910
10453         * src/SDCCast.c: A better fix for bug #661910
10454         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10455
10456 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10457
10458         * src/Makefile.in: remove spawn.o
10459         * src/SDCCmain.c: remove spawn.h
10460         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10461         * src/spawn.c: removed
10462         * src/spawn.h: removed
10463         * support/regression/ports/ds390/spec.mk: link with -r
10464
10465 2003-01-24    <johan AT CP255758-A>
10466
10467         * src/ds390/gen.c (aopOp): fixed bug #667458
10468         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10469         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10470         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10471
10472 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10473
10474         * src/mcs51/peeph.def: better assembler identation by Frieder
10475         * src/mcs51/gen.c: better assembler identation by Frieder
10476
10477 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10478
10479         * as/z80/string.h: removed for gcc 3.2
10480         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10481         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10482
10483 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10484
10485         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10486         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10487         * support/regression/Makefile: separate temp files for ports
10488         * support/regression/generate-cases.py: separate temp files for ports
10489         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10490         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10491
10492 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10493
10494         * moved tinitalk to device/examples/ds390
10495
10496 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10497
10498         * as/mcs51/lkmem.c: rflag is for DS390
10499         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10500         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10501                          (linkEdit): move mem- and map-files the same way as ihx-files
10502         * src/z80/main.c (_setDefaultOptions): removed --generic
10503         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10504         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10505         * src/pic/glue.c (picglue): --c1mode works again
10506         * src/pic16/glue.c (pic16glue): --c1mode works again
10507         * src/asm.c (printCLine): fix #660034
10508
10509 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10510
10511         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10512         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10513         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10514         * as/mcs51/lkmem (summary): better fix for sp problem
10515         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10516         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10517         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10518                                               remove --stack-after-data
10519
10520 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10521
10522         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10523         * src/SDCCutil.c (join): ugly bug: missing '\0'
10524         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10525
10526 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10527
10528         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10529         * src/port.h: typo
10530         * src/pic/main.c (_asmCmd): gpasm supports -o
10531         * src/z80/main.c: more general macros
10532         * device/lib/Makefile.in: remove intermediate files
10533
10534 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10535
10536         * .version: Bumped version number to 2.3.3
10537         * src/SDCCBBlock.c: new option -o
10538         * src/SDCCglobl.h: new option -o
10539         * src/SDCCglue.c: new option -o
10540         * src/SDCCmain.c: new option -o
10541         * src/asm.c: new option -o
10542         * src/ds390/main.c: new option -o
10543         * src/pic/glue.c: new option -o
10544         * src/pic/pcode.c: new option -o
10545         * src/pic/ralloc.c: new option -o
10546         * src/pic16/glue.c: new option -o
10547         * src/pic16/pcode.c: new option -o
10548         * src/pic16/ralloc.c: new option -o
10549         * src/z80/main.c: new option -o
10550         * device/lib/Makefile.in: use -o
10551         * support/regression/ports/ds390/spec.mk: use -o
10552         * support/regression/ports/gbz80/spec.mk: use -o
10553         * support/regression/ports/mcs51/spec.mk: use -o
10554         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10555         * support/regression/ports/z80/spec.mk: use -o
10556         * support/regression/ports/ucz80/spec.mk: use -o
10557         * support/regression/ports/xa51/spec.mk: use -o
10558         * support/regression/fwk/lib/timeout.c: fix usage string
10559
10560 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10561         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10562
10563 2003-01-07    <johan AT balder>
10564
10565         * src/SDCCast.c (decorateType): fixed bug #600035
10566
10567 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10568         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10569         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10570         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10571         * src/pic/pcode.c: outcommented unused variable to remove warnings
10572         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10573
10574 2003-01-06    <karl AT turbobit.com>
10575         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10576    regression tests.
10577
10578 2003-01-06    <johan AT balder>
10579
10580         * src/SDCCicode.c: fixed array add
10581
10582 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10583         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10584         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10585
10586 2003-01-04    <johan AT balder>
10587
10588         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10589
10590 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10591         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10592
10593 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10594         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10595         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10596
10597 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10598         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10599
10600 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10601         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10602
10603 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10604         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10605
10606 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10607
10608     * in \sdcc\as\mcs51\ changed these files in order to create an
10609     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10610     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10611     following files to include the previous two files: aslink.dsp,
10612     Makefile.aslink, Makefile.bcc, and Makefile.in.
10613
10614     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10615     .adb instead of .cdb
10616
10617 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10618
10619         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10620         value from option --iram-size.
10621
10622 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10623
10624         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10625         dram[] array.
10626
10627 2002-09-18    <wiml AT hhhh.org>
10628
10629         * SDCClrange.h: exposed setFromRange() and setToRange()
10630         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10631           packRegsForAccUse() (bug 542397)
10632         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10633           multiple times and emitting the fetch operations more than once
10634           added aopGetUsesAcc() function to allow binary operators to
10635           fetch their operands in the correct order; made genMinus() emit
10636           compact code for X = LITERAL - Y
10637
10638 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10639         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10640         sprintf() in line 1267.
10641
10642 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10643         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10644         like ports.
10645
10646 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10647         Changes to aslink (All the changes are marked with 'JCF'):
10648
10649         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10650         summary().
10651
10652         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10653         area BSEG.  Also moves, if possible, the DATA area down into the internal
10654         ram so more space is available.
10655
10656         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10657         sflag.
10658
10659         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10660         not bytes.  Function summary() which creates a memory usage summary
10661         file with extension .mem.  Reports of overlaping stack and small stack
10662         size.  If the space for the stack is less than 16 bytes aslink trows a
10663         warning.
10664
10665         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10666         the 8051.  Option 'y' for memory summary output file.
10667
10668         Changes to sdcc (All the changes are marked with 'JCF'):
10669
10670         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10671
10672         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10673         overlaying area for it (uses RegBankUsed[4]).
10674
10675         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10676         bank zero as used by default.  By default aslink locates the stack
10677         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10678         the creation of the .mem file.  Delegates the allocation of data area
10679         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10680         the begining of the stack area to aslink.
10681
10682         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10683         glue() in SDCCglue.c creates an area for it.
10684
10685 2002-09-03  Borut Razem <borut.razem AT siol.net>
10686         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10687         sdcc/src/pic/glue.c:
10688         introduced atexit() handler for teporay files removal in case of
10689         errors, assertions, ...
10690
10691 2002-08-29  Borut Razem <borut.razem AT siol.net>
10692         * sdcc/support/cpp2/auto-host_vc_in.h:
10693         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10694         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10695         Maybe there is a similar problem with BORLANDC? It should be checked!
10696
10697         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10698         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10699         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10700         was not executed, and the compiler (cl) launched a warning:
10701         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10702
10703 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10704         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10705
10706 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10707         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10708
10709         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10710           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10711           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10712           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10713           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10714           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10715           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10716         - added Release configuration in VS projects
10717         - review of compiler an linker options
10718         - VC .exe files are generated in bin_vc directory, not to interfere
10719           with binaries generated from other projects (cygwin, mingw, bcc ...)
10720
10721         * sdcc/src/yacc.dsp: added
10722
10723         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10724         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10725         and insert the version number definitions from .version
10726
10727         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10728
10729         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10730         added - genarate auto-host.h using auto-host_vc_in.h as template
10731
10732         * sdcc/sdcc_vc.h,
10733         removed from CVS, generated automatically
10734
10735 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10736         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10737
10738 2002-08-11  Borut Razem <borut.razem AT siol.net>
10739         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10740
10741 2002-08-10  Borut Razem <borut.razem AT siol.net>
10742         * src/SDCCmain.c (main):
10743         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10744         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10745         The consequence was that some temporary files were not removed.
10746
10747         * src/SDCCglue.c:
10748         unification of code in functions tempfilename() and tempfile():
10749         function tempnam() is defined in Visual Studio 6.0 and .NET
10750
10751         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10752
10753         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10754           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10755         - removed compiler command line option /WX: Treats all warnings as errors
10756         - update a list of source files, included into the project
10757
10758         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10759           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10760         changed project type to Generic Project so that can be correcly converted to VS.NET project
10761
10762         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10763
10764         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10765
10766         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10767
10768         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10769         added return 0 statements after assert() to make compiler happy
10770
10771         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10772         added newline in the def file to keep MSC compiler satisfied
10773
10774         * sdcc/src/z80/gen.c:
10775         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10776           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10777         - solved MSC error in function aopDump()
10778
10779         * sdcc_vc.h: define PREFIX as "\\sdcc"
10780
10781 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10782         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10783
10784 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10785         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10786         - Rewrote the register banking algorithm.
10787         - Added pCode live-range analysis to registers (for now, only non-used and
10788         singly-used registers optimized away)
10789
10790         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10791
10792         * 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.
10793
10794 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10795         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10796
10797 2002-04-22  Michael Hope  <michaelh AT vroom>
10798
10799         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10800
10801         * configure.in (DD_COPT): Added include support required for gbdk.
10802
10803         * .version: Bumped version number just to increase it.
10804
10805         * src/SDCCmain.c: Added -nostdinc to the default options.
10806
10807 2002-04-15  Michael Hope  <michaelh AT vroom>
10808
10809         * device/lib/z80/printf.c (sprintf): Added.
10810
10811         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10812
10813         * src/z80/peeph.def: Added transpose redundent load rule.
10814
10815         * src/z80/main.c: Added force callee saves for jaune.
10816
10817         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10818
10819         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10820
10821 2002-03-28  Johan Knol  <johan AT balder>
10822
10823         * src/SDCCval.c: fixed bug #532436
10824
10825 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10826         * /src/port.h:
10827         Added "char *Processor" field to the port structure.
10828
10829         * /src/SDCCmain.c:
10830         Added -p option. Allows port dependent processor to be specified.
10831
10832         * all ports:
10833         Initialized the new field char *Processor field to NULL in all ports
10834
10835         * /src/pic/*:
10836         Compiler generated registers for interrupt context saving
10837         were not getting allocated.
10838
10839 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10840
10841         * /src/SDCCast.c:
10842         Fixed left shift. Will promote the left side of a left shift
10843         if a) left shifting more than size of operand or b) when assigned
10844         to something size > size of left side
10845
10846 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10847         * src/pic/*
10848         tons of changes. Register allocation has been
10849         rewritten. Added customization for the various PICs. Flow
10850         analysis is restructured. ...
10851
10852         * src/pic/device.h:
10853         Added
10854
10855         * src/pic/device.c:
10856         Added. device.c is a PIC port hack to accomodate variations
10857         in PIC devices.
10858
10859 2002-03-13  Michael Hope  <michaelh AT vroom>
10860
10861         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10862
10863 2002-03-04  johanknol  <johanknol AT manik>
10864
10865         * /src/SDCCval.c: fixed
10866
10867         const unsigned char arr[][2] = { { 0, 1 } };
10868         t18.c:1: error: Initializer element is not constant
10869
10870 2002-03-04  bela  <bela AT manik>
10871
10872         * /device/include/mcs51reg.h:
10873         ds89c420 register definition update
10874
10875 2002-03-03    <johan AT FRIJA>
10876
10877         * support/Util/SDCCerr.c: did something, but don't no why anymore
10878
10879         * support/regression/tests/bug-524691.c: made it a little less shy
10880
10881         * src/SDCCast.c (decorateType): fixed bug #524697
10882
10883         * src/SDCCast.c: made some lineno improvements
10884
10885         * src/SDCCval.c (getNelements): changed warning to error
10886
10887         * src/SDCCglue.c (printIvalArray): changed warning to error
10888
10889         * src/SDCCicode.c: fixed a warning for mingw
10890
10891         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10892
10893         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10894
10895 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10896
10897         * src/ds390/peeph.def:
10898         Added some more peephole rules
10899
10900         * src/ds390/gen.c: Various fixes & enhancements
10901
10902         * src/SDCClrange.c, src/SDCClrange.h:
10903         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10904
10905         * src/ds390/ralloc.c:
10906         various fixes & enhancements (ds390) specific
10907
10908         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10909         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10910         from rallocs.
10911
10912         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10913
10914 2002-03-02    <johan AT FRIJA>
10915
10916         * src/SDCCast.c (decorateType): fixed bug #524708
10917
10918         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10919
10920         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10921
10922 2002-03-01  Michael Hope  <michaelh AT vroom>
10923
10924         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10925
10926         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10927
10928 2002-03-01    <johan AT FRIJA>
10929
10930         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10931
10932         * src/SDCCast.c (decorateType): fixed bug #524209
10933
10934         * src/SDCCval.c (valNot): fixed bug #524195
10935
10936 2002-02-26    <johan AT balder>
10937
10938         * src/xa51/gen.c: fixed a warning
10939
10940         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10941
10942         * src/SDCCast.c (decorateType): fixed bug #522534
10943
10944 2002-02-23    <johan AT balder>
10945
10946         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10947
10948 2002-02-22    <johan AT balder>
10949
10950         * src/SDCCast.c: fixed bug #514865
10951
10952         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10953
10954 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10955
10956         * sdcc/src/SDCCloop.c:
10957         Previous fix was not good. basic blocks that have "break" or "return" are
10958         not really partof a loop , but live ranges used in these blocks should
10959         be live thru the entire loop, so set partOfLoop but don't add them to
10960         loop region
10961
10962 2002-02-21    <johan AT FRIJA>
10963
10964         * src/SDCCcse.c: fixed bug #514308
10965
10966 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10967
10968         * src/SDCCloop.c:
10969         Fixed BUG #519583. If a conditional block ended in a return/break
10970         statement inside a loop, it was not being considered part of the loop.
10971
10972         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10973
10974 2002-02-10  Karl Bongers <karl AT turbobit.com>
10975
10976         * debugger/*:
10977         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10978         with lots of comments and notes.
10979
10980         * device/examples/test2.c:
10981         Fix bug, "red" variable not being initialized(compiler complained).
10982
10983         * device/examples/Makefile, examples/test3.c:
10984         Add Makefile in device/examples folder, compiles test3.c
10985         for use as a multiple module SDCDB test case.
10986
10987         * sim/ucsim/cmd.src/cmdset.cc:
10988         Took out debug printfs in ucsim "next" command.
10989
10990         * sim/ucsim/xa.src:
10991         Karl and Johan start ucsim XA support.  Most dissassembly working,
10992         about 75% emulation done(plenty of work remaining).
10993
10994         * sim/ucsim/z80.src:
10995         Add Z80 support to ucsim, add test-ucz80 regression test,
10996         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10997         Notice z80 compiler fails on examples/test3.c/crc code.
10998
10999 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
11000
11001         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
11002         Added support for --parms-in-bank1
11003
11004         * src/ds390/peeph.def:
11005         added a few more peephole optimzations
11006
11007         * src/ds390/main.c:
11008         1) added __builtin_inp & __builtin_outp used to read in data of given length
11009            from a memory mapped port
11010         2) added __builtin_memcmp
11011         3) added __builtin_swapw swap bytes of a short
11012
11013         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
11014         1) handle multiple send & receives from register bank1
11015         2) ralloc can now allocate DPTR1 to some liveRanges
11016
11017         * src/SDCCsymt.c, src/SDCCsymt.h:
11018         changes to handle multiple sends & receives
11019
11020         * src/SDCCptropt.h:
11021         added some pointer arithmetic optimization
11022
11023         * src/SDCCptropt.c:
11024         added some pointer arithmetic optimizations but not stable yet so not
11025         called from anywhere (will get this working shortly)
11026
11027         * src/SDCCopt.c: fixed for multiple sends & receives
11028
11029         * src/SDCCmain.c:
11030         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
11031         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
11032            set preprocessor defines (depending on options)
11033
11034         * src/SDCCicode.c, src/SDCCicode.h:
11035         changes made to handle multiple sends & receives
11036
11037         * src/SDCCglobl.h:
11038         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
11039
11040         * src/SDCCcse.c, src/SDCCcse.h:
11041         added function findbackward def (to be used in upcoming optimization)
11042
11043         * src/SDCCcflow.c, src/SDCCcflow.h:
11044         added function returnAtEnd - to determine if a basic block terminates with
11045         a RETURN iCode
11046
11047         * src/SDCCast.c, src/SDCCast.h:
11048         added option parms-in-bank1
11049
11050         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
11051         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
11052         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
11053         adjusted for --parms-in-bank1 option
11054
11055         * device/include/string.h:
11056         donot redefine "reentrant" keyword
11057
11058         * device/include/ds80c390.h: Added some more SFRs
11059
11060 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11061
11062         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11063
11064 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11065
11066         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11067
11068 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11069
11070         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11071
11072 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11073
11074         * Added --xram-movc option
11075
11076 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11077
11078         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11079
11080 2002-01-11  Johan Knol
11081
11082         * Added math lib of Jesus Calvino-Fraga
11083
11084 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11085
11086         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11087         * support/regression/Makefile: new target test-mcs51-stack-auto
11088         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11089
11090 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11091
11092         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11093
11094 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11095
11096         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11097
11098 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11099
11100         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11101
11102         * src/SDCCglue.h: add definition for printIvalChar()
11103
11104 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11105
11106         * src/SDCCast.c: fix #498138 by Johan
11107
11108         * src/SDCCglue.c: fix #498138 by Johan
11109
11110 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11111
11112         * support/regression/Makefile: fix clean
11113
11114         * support/regression/ports/ds390/support.c: fix transmission of last character
11115
11116 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11117
11118         * /sdcc/src/ds390/gen.c:
11119         a) improved computing address of stack variable
11120         b) took out some #if 0 code
11121         c) improved parmBytes adjustment
11122         d) improved genPlusIncr & genMinusIncr
11123         e) genCmp could generate bad code (when left assigned to DPTR)
11124         f) Fixed bug in hasInc
11125
11126         * /sdcc/src/ds390/ralloc.c:
11127         a) packRegsForSupport could mess up live information (Fixed)
11128         b) packRegsDPTRuse could be incorrect for left & right shift
11129
11130         * /sdcc/src/mcs51/ralloc.c:
11131         packRegsForSupport could mess up the live information (Fixed)
11132
11133         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11134
11135         * /sdcc/src/SDCCast.c:
11136         can reverse a loop even if function call is present as long
11137         as the loop control variable is local & is not passed as parameter
11138
11139 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11140
11141         * /sdcc/ChangeLog: *** empty log message ***
11142
11143         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11144         More builtin function additions for TININative
11145
11146         * /sdcc/src/ds390/ralloc.c:
11147         Had broken the regression testsuite
11148
11149         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11150
11151         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11152         Added funcattr hasStackParms will be set for reentrant functions when there
11153         are paramteres on the stack, this helps in minimizing frame pointer generation
11154         typeFromStr can handle function pointers now
11155
11156         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11157         *** empty log message ***
11158
11159 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11160
11161         * /src/ds390/gen.c, /src/ds390/main.c:
11162         More builtin function additions for TININative
11163
11164         * /src/ds390/ralloc.c:
11165         Had broken the regression testsuite
11166
11167         * /src/SDCCast.c: Fixed a bug in dumptree
11168
11169         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11170         Added funcattr hasStackParms will be set for reentrant functions when there
11171         are paramteres on the stack, this helps in minimizing frame pointer generation
11172         typeFromStr can handle function pointers now
11173
11174         * /doc/builtins.txt, /doc/TININative.txt:
11175         *** empty log message ***
11176
11177
11178 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11179
11180         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11181         ALPHA version for -mTININative
11182
11183         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11184         updated to reflect changes in the port structure
11185
11186         * /src/port.h:
11187         added function do_assemble (similar to do_link) if non-null this function
11188         will be called to do assembly (-mTININative) requires a multi command
11189         assembly
11190         added function genAssemblerEnd will be called to generate assembler Epilogue
11191
11192         * /src/SDCCsymt.c:
11193         added _JavaNative to debug info printing
11194
11195         * /src/SDCCmain.c: added option --tini-libid
11196         added port->do_assemble function (-mTININative) has a multi command assemble
11197
11198         * /src/SDCCglue.c: Disabled "constExpr" check
11199         added port->genAssemblerEnd function
11200
11201         * /src/SDCCglobl.h: Added option --tini-libid value
11202
11203         * /src/SDCCast.h:
11204         tookout optimizeCompare from the header (has no external references)
11205
11206         * /src/SDCCast.c: made one more function "static"
11207
11208 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11209
11210         * src/z80/mappings.i: Added z80asm support.
11211
11212         * src/z80/main.c: Added z80asm support on --asm=z80asm
11213
11214         * src/z80/gen.c: Fixed asm portability issues.
11215
11216         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11217
11218         * src/SDCCglue.c (printExterns): Added global/extern split.
11219
11220 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11221
11222         * support/regression/Makefile: added test for mcs51 model large
11223
11224         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11225
11226         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11227
11228 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11229
11230         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11231
11232 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11233
11234         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11235
11236         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11237
11238 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11239
11240         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11241
11242         * support/regression/tests/simplefloat.c: Port to mcs51.
11243
11244 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11245         * support/regression/tests/bug-485362.c: Added.
11246
11247         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11248
11249         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11250
11251         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11252
11253         * src/z80/gen.c (aopDump): Added a dump function.
11254
11255 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11256         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11257
11258         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11259
11260         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11261
11262         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11263
11264         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11265
11266         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11267
11268         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11269
11270         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11271
11272         * support/regression/ports/ds390/support.c: Use tinibios.
11273
11274         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11275
11276 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11277
11278         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11279         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11280
11281         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11282
11283         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11284
11285 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11286
11287         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11288
11289         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11290         (packRegsForIYUse): Created and optimised.
11291
11292 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11293
11294         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11295 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11296
11297         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11298
11299         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11300
11301         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11302
11303 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11304
11305         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11306
11307         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11308
11309 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11310
11311         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11312
11313         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11314
11315         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11316
11317 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11318
11319         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11320         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11321         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11322
11323         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11324
11325         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11326         (genNotFloat): Added.
11327         (genUminusFloat): Added.
11328
11329         * device/lib/z80/Makefile: Added floating pt stubs.
11330
11331         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11332
11333         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11334
11335         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11336
11337 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11338
11339         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11340
11341         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11342
11343         * sdcc/support/regression/Makefile: Add port ds390.
11344
11345         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11346
11347         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11348
11349         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11350
11351         * sdcc/support/regression/ports/ds390/support.c: Added.
11352
11353         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11354
11355         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11356
11357         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11358
11359 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11360
11361         * device/include/malloc.h: Added z80 and gbz80 support.
11362
11363         * device/lib/gbz80/heap.s: Added.
11364
11365         * device/lib/z80/heap.s: Added.
11366
11367         * device/lib/malloc.c: Added z80 and gbz80 support.
11368
11369         * support/regression/tests/malloc.c (testMalloc): Added.
11370
11371         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11372
11373         * support/regression/tests/bug-478094.c: Added.
11374
11375         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11376
11377 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11378
11379         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11380
11381         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11382
11383         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11384
11385         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11386
11387         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11388
11389 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11390
11391         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11392
11393 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11394
11395         * support/regression/tests/bug-477927.c: Added.
11396
11397         * src/z80/peeph.def: Added minor rules.
11398
11399         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11400
11401         * src/z80/peeph.def: Added jump optimisation modification.
11402
11403 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11404
11405         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11406
11407 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11408
11409         * support/regression/tests/funptrs.c: Added.
11410
11411 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11412
11413         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11414
11415 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11416
11417         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11418
11419         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11420
11421         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11422         (movLeft2ResultLong): Created.
11423
11424         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11425         (joinPushes): Added.  Joins two char pushes into a word push.
11426
11427 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11428
11429         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11430
11431         * support/makebin/Makefile (install): Added creation of dest dir.
11432
11433 2001-10-24 Karl Bongers <karl AT turbobit.com>
11434
11435         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11436
11437 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11438
11439         * src/z80/ralloc.c: Turned off faulty pack for one use.
11440
11441         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11442
11443         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11444
11445 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11446
11447         * support/regression/Makefile: Improved clean
11448
11449         * support/regression/ports/gbz80/spec.mk: Added clean
11450
11451         * support/regression/ports/host/spec.mk: Added clean
11452
11453         * support/regression/ports/z80/spec.mk: Added clean
11454
11455         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11456
11457         * support/regression/ports/mcs51/timeout.c: little improvements
11458
11459 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11460
11461         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11462
11463         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11464
11465         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11466
11467 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11468
11469         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11470
11471         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11472
11473 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11474         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11475
11476         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11477
11478         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11479
11480         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11481
11482         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11483
11484         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11485
11486         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11487
11488         * support/regression/tests/longor.c: Added.
11489
11490 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11491
11492         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11493
11494         * as/mcs51/aslink.h: define PATH_MAX
11495
11496         * as/mcs51/asm.h: define PATH_MAX
11497
11498         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11499
11500         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11501
11502         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11503
11504         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11505
11506         * src/SDCCglobl.h: define PATH_MAX
11507
11508         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11509
11510         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11511
11512 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11513
11514         * src/z80/gen.c (gencjneshort): Fixed
11515
11516         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11517
11518 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11519
11520         * support/regression/tests/bug-469671.c: Added.
11521
11522         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11523
11524 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11525
11526         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11527
11528         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11529
11530 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11531
11532         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11533
11534         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11535
11536         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11537
11538         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11539
11540         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11541
11542         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11543
11544         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11545
11546 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11547
11548         * 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.
11549
11550         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11551
11552         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11553
11554 2001-10-07    <johan AT FRIJA>
11555
11556         * device/lib/gets.c (gets): fixed the return value.
11557
11558 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11559         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11560
11561         * 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.
11562
11563         * 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.
11564
11565         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11566
11567         * src/pic/gen.c: Removed Safe_strdup.
11568
11569         * configure.in: Added option to enable libgc support.
11570
11571         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11572         (bitVectUnion): Optimised.
11573         (bitVectIntersect): Optimised.
11574         (bitVectBitsInCommon): Optimised.
11575         (bitVectCplAnd): Optimised.
11576
11577         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11578
11579 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11580
11581         * src/SDCCmain.c: distinguish between assembler debug and plain options
11582
11583         * src/avr/main.c:   remove standard assembler options
11584
11585         * src/ds390/main.c: remove standard assembler options
11586
11587         * src/mcs51/main.c: remove standard assembler options
11588
11589         * src/port.h: removed "PENDING" comment
11590
11591 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11592
11593         * src/device/lib/_mulint.c  : new, with assember functions
11594
11595         * src/device/lib/_mullong.c : new, with assember functions
11596
11597         * src/device/lib/_divuint.c : with assember functions
11598
11599         * src/device/lib/_divsint.c : with assember functions
11600
11601         * src/device/lib/_divulong.c: with assember functions
11602
11603         * src/device/lib/_divslong.c: with assember functions
11604
11605         * src/device/lib/_moduint.c : with assember functions
11606
11607         * src/device/lib/_modsint.c : with assember functions
11608
11609         * src/device/lib/_modulong.c: with assember functions
11610
11611         * src/device/lib/_modslong.c: with assember functions
11612
11613         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11614
11615         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11616
11617         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11618                                       replaced _mululong.c and _mulslong.c by _mullong.c
11619
11620 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11621
11622         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11623
11624 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11625
11626         * src/SDCCglue.c: test, if win32api is available for MINGW
11627
11628 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11629
11630         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11631         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11632         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11633         * support/regression/ports/host/spec.mk: removed GENERIC
11634         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11635         * support/regression/ports/z80/spec.mk: removed GENERIC
11636
11637 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11638
11639         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11640
11641         * support/regression/tests/bug-467035.c: Created.
11642
11643 2001-10-01    <johan AT FRIJA>
11644
11645         * src/SDCC.y: fixed bug #466586 part 1
11646
11647 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11648
11649         * SDCCicode.c: z80 has no generic pointers
11650         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11651
11652 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11653
11654         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11655
11656 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11657
11658         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11659
11660         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11661
11662 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11663
11664         * configure.in: Fixed up so that ucsim is only configured once.
11665
11666         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11667
11668         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11669         (getPathDifference): As above.
11670
11671         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11672
11673         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11674
11675 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11676         * .version: Updated to 2.3.1
11677
11678         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11679         Added copyright header.
11680
11681         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11682         (assemble): Added support for macro based assembler commands.
11683         (linkEdit): Added support for macro based linker commands.
11684         (preProcess): Changed the pre-processor to use macros.
11685         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11686         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11687
11688         * device/lib/z80/crt0.s: Added module name for debugging.
11689
11690 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11691
11692         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11693
11694         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11695
11696         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11697
11698         * src/Makefile.in: Added SDCCmacro and SDCCutil
11699
11700 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11701
11702         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11703
11704 2001-09-16    <johan AT FRIJA>
11705
11706         * 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.
11707
11708 2001-09-15    <johan AT FRIJA>
11709
11710         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11711         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11712
11713 2001-09-11    <johan AT FRIJA>
11714
11715         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11716
11717 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11718
11719         * support/regression/tests/bug-460444.c: Added test case.
11720
11721         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11722         (genCast): Added justification for all of the asserts.
11723
11724 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11725
11726         * support/regression/support.c: _xdata replaced by xdata
11727
11728         * support/regression/spec.mk: removed _generic
11729
11730 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11731
11732         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11733
11734         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11735         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11736
11737         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11738
11739         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11740
11741         * support/regression/tests/bug-460010.c: Added test case.
11742
11743         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11744
11745 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11746
11747         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11748
11749         * support/regression/testfwk.c: removed workaround for bug #436344
11750
11751         * support/regression/tests/bp.c: use less memory with mcs51
11752
11753         * support/regression/tests/bug-441448.c: use less memory
11754
11755         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11756
11757         * support/regression/collate-results.py: typo
11758
11759 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11760
11761         * support/regression/tests/fetchoverlap.c: Added new test case.
11762
11763         * support/regression/tests/bp.c: Added new test case.
11764
11765         * support/regression/tests/bug-448984.c: Added new test case.
11766
11767         * support/regression/tests/pow2shifts.c: Added new test case.
11768
11769         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11770         (genlshTwo): Fixed right shift for count > 8.
11771
11772         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11773
11774 2001-09-08    <johan AT FRIJA>
11775
11776         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11777
11778 2001-09-07    <johan AT FRIJA>
11779
11780         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11781
11782         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11783
11784 2001-09-06    <johan AT FRIJA>
11785
11786         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11787         * bernhard noted me at this: "() equals to (void)" (1.38)
11788
11789 2001-09-05    <johan AT FRIJA>
11790
11791         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11792
11793 2001-09-04    <johan AT FRIJA>
11794
11795         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11796
11797
11798 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11799
11800         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11801
11802 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11803
11804         * link/z80/aslink.h: Fixed path for PATH_MAX
11805
11806 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11807
11808         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11809
11810         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11811
11812         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11813
11814         * 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.
11815
11816 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11817
11818         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11819         (genCmp): Fixed up genCmp for the GB with longs.
11820
11821         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11822
11823         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11824
11825         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11826
11827         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11828
11829 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11830
11831         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11832
11833 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11834
11835         * 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.
11836
11837         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11838
11839 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11840
11841         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11842
11843         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11844
11845 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11846
11847   * sim/ucsim/configure:    little improvement of Cygwin-detection
11848   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11849   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11850   * support/regression/tests/bug-221100.c: small changes for mcs51
11851   * support/regression/tests/bug-221168.c: small changes for mcs51
11852   * support/regression/tests/bug-227710.c: small changes for mcs51
11853   * support/regression/tests/staticinit.c: small changes for mcs51
11854   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11855   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11856   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11857
11858 $Revision$