* src/SDCClrange.c (findPrevUse): fixed bug 1294475
[fw/sdcc] / ChangeLog
1 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
4           1208515
5         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
6
7 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
8
9         * src/port.h (struct PORT): added field gp_tags, to hold the tag
10         value of generic pointers,
11         * src/avr/main.c,
12           src/ds390/main.c,
13           src/hc08/main.c,
14           src/izt/i186.c,
15           src/izt/tlcs900h.c,
16           src/mcs51/main.c,
17           src/pic/main.c,
18           src/pic16/main.c,
19           src/xa51/main.c,
20           src/z80/main.c: PORT structure, added elements for gp_tags field,
21         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
22         fields in the PORT structure of each port,
23         * src/SDCCast.c (decorateType): allow processing of generic pointers
24         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
25         S_FIXED symbols
26
27 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
28
29         * link/z80/lkgb.c,
30         * link/z80/lkgg.c,
31         * src/pic16/gen.c,
32         * src/pic16/main.c,
33         * src/pic16/pcode.c,
34         * src/pic/main.c,
35         * src/pic/pcoderegs.c,
36         * src/SDCCicode.c,
37         * src/SDCCmain.c,
38         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
39           bug 1504689 on minGW
40
41 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
42
43         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
44
45 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
46
47         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
48
49 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
50
51         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
52           for optimization
53
54 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
55
56         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
57         to a char variable. Fixed bug #1504211
58         * device/include/pic16/adc.h,
59         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
60         and fixed bug #1364390
61
62 2006-06-10 Borut Razem <borut.razem AT siol.net>
63
64         * CVSROOT: removed the CVS left-over
65
66 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
67
68         * as/hc08/asmain.c (asexit),
69         * as/hc08/lkmain.c (lkexit),
70         * as/mcs51/asmain.c (asexit),
71         * as/mcs51/lkmain.c (lkexit),
72         * src/SDCCglue.c (DEFSETFUNC),
73         * src/SDCCmain.c (linkEdit, assemble),
74         * support/librarian/sdcclib.c (AddRel),
75           replaced unlink() by standard C remove()
76         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
77         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
78           gatherImplicitVariables): new, added to fix bug 608752,
79           (createFunction): added gatherImplicitVariables()
80         * src/SDCCast.h: added createRMW prototype
81         * src/SDCCsymt.h (struct symbol): added infertype
82         * support/regression/tests/bug608752.c: new, added
83
84 2006-06-10 Raphael Neider <rneider AT web.de>
85
86         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
87           multibyte dummy reads (fixes #1503234)
88
89 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
90
91         * device/include/mcs51/compiler.h: new, added header file to enable
92           creating common sfr definition header files for different compilers
93
94 2006-06-05 Raphael Neider <rneider AT web.de>
95
96         * src/pic16/{pcode.h,genarith.c}:
97           introduced pCodeOp combining any two pCodeOps (previously only
98           two register operands could be combined), removed pcop2 from
99           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
100         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
101         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
102           rewritten to use new PO_TWO_OPS
103         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
104         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
105           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
106           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
107           (pic16_get_op): embraced return arg to allow #define return(x),
108             added new case for combined opcodes
109           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
110           (pic16_pCode2str,pic16_getRegFrompCodeOp,
111            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
112
113 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
114
115         * src/SDCCval.c (checkConstantRange): added
116         * src/SDCCval.h: added checkConstantRange
117         * support/Util/SDCCerr.c,
118         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
119         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
120         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
121         * src/SDCCast.c (decorateType): added checkConstantRange,
122         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
123         can be emitted with the correct always true/false warning,
124         added optimization for double '!';
125         result of decorateType() must be assigned back to the tree, because
126         decorateType() can change the tree
127         * src/SDCCicode.c (geniCodeLogic),
128         (geniCodeAssign): replaced new checkConstantRange, added warnings,
129         (checkConstantRange): removed, it was only a fragment which never
130         emitted a warning
131         * src/SDCCsymt.c (computeType): fixed promotion for
132         "-1 < (unsigned bit) b"
133         * src/pic/ralloc.c (packRegsForAssign),
134         * src/pic16/ralloc.c (packRegsForAssign),
135         * src/hc08/ralloc.c (packRegsForAssign),
136         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
137         from mcs51
138         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
139         * support/regression/tests/constantRange.c: added
140         * support/valdiag/tests/constantRange.c: added
141         * support/valdiag/valdiag.py: added -DPORT_HOST=1
142
143 2006-06-02 Borut Razem <borut.razem AT siol.net>
144
145         * support/regression/ports/pic16/support.c: increase stack size
146           to 255 bytes
147         * support/regression/Makefile.in: sort tests by name so that the
148           resutlts can be compared on different machines / platforms
149
150 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
151
152         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
153         * src/ds390/gen.c (emitLabel): new, added,
154           (genDjnz): fixed stack overflow bug,
155           (throughout): cosmetic changes to sync with mcs51/gen.c,
156           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
157         * src/mcs51/gen.c (genEndFunction): small optimization,
158           (throughout): cosmetic changes to sync with ds390/gen.c
159
160 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
161
162         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
163           (_print_format): fixed printing pointers
164         * src/mcs51/gen.c (emitLabel, movb): new, added,
165           (genAssign): small optimization,
166           (genDjnz): fixed stack overflow bug,
167           (throughout): replaced sprintf with SNPRINTF,
168           replaced mcs51_regWithIdx with REG_WITH_INDEX,
169           replaced emitcode("mov", "b,...") with MOVB(...),
170           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
171           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
172         * src/mcs51/peeph.def: added rules 140 and 264
173         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
174           so they may get optimized into registers
175
176 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
177
178         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
179           immediately when encountered,
180           (printUsage): always use stderr even on windows
181
182 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
183
184         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
185         (processParms): fixed bug #1247551
186         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
187         parseCmdLine, main): print '--version' to stdout,
188         print 'help' to stdout if --help is given,
189         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
190         arguments are given; fixed --help
191
192 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
193
194         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
195         * support/regression/tests/bug-1493710.c: added
196
197 2006-05-27 Borut Razem <borut.razem AT siol.net>
198
199         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
200           static instead auto
201         * support/regression/ports/pic16/support.c: increase stack size
202           from default 64 bytes to 128 bytes
203         * support/regression/tests/staticinit.c,
204           support/regression/tests/float.c: regression tests fully enabled
205           for pic16 port by putting the initialized data arrays into the code
206           section
207         * support/regression/ports/pic16/spec.mk: don't link default libraries.
208           This was changed by mistake in the previous version.
209
210 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
211
212         * src/pic16/gen.c (genFunction, genEndFunction): some
213         beautifications, fixed bug with falsely restoring FSR2 in large
214         stack model, thanks to Beau E. Cox for reporting the bug
215
216 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
217
218         * debugger/mcs51/break.c,
219         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
220           use %p to print pointers, made address variables unsigned
221         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
222         * debugger/mcs51/symtab.c (parseSymbol): must return something
223         * src/mcs51/gen.c (aopForSym): small optimization,
224            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
225           (freeAsmop): added missing break,
226           (aopPut): removed parameter bvolatile, determine it inside the function,
227           (saveRegisters, unsaveRegisters): small optimization,
228           (genIpush): removed pointless check,
229           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
230           replaced sprintf with SNPRINTF,
231           replaced strcpy with strncpyz,
232           updated aopPut calls,
233           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
234         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
235
236 2006-05-24 Borut Razem <borut.razem AT siol.net>
237
238         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
239           modification of test for the pic16 port, put the array to the code
240           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
241
242 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
243
244         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
245         * support/Util/pstdint.h: added
246
247 2006-05-22 Borut Razem <borut.razem AT siol.net>
248
249         * src/regression/Makefile: removed bool2.c test, added -q linker option
250         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
251           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
252           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
253           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
254           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
255           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
256           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
257           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
258           define SUPPORT_BIT_TYPES 0, removed unused bit variables
259
260 2006-05-22 Raphael Neider <rneider AT web.de>
261
262         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
263           bug #1492360 (problematic due to generic pointers, see code)
264
265 2006-05-22 Borut Razem <borut.razem AT siol.net>
266
267         * support/regression/ports/pic16/specs.mk: removed stack size linker
268           directive
269         * support/regression/tests/array.c,
270           support/regression/tests/bitopcse.c,
271           support/regression/tests/bug-908454.c,
272           support/regression/tests/malloc.c: modified for pic16 regression test
273         * support/regression/tests/bitfields.c:
274           pic16 - excluded bitfileds of size > 8
275         * support/regression/tests/bp.c: pic16 - reduced data size
276         * support/regression/tests/bug-221100.c: pic16 - reduced data size
277         * support/regression/tests/bug-460010.c:
278           pic16 - used the absolute address the fits in memory
279         * support/regression/tests/bug-716242.c:
280           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
281         * support/regression/tests/float.c:
282           pic16 - excluded - data size too big
283         * support/regression/tests/onebyte.c:
284           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
285         * support/regression/tests/shifts.c:
286           pic16 - function names probably have to differ in first X characters
287           (gpasm limitation?)
288         * support/regression/tests/staticinit.c:
289           pic16 - excluded some tests due error: no target memory available for
290           section ".idata"
291
292 2006-05-22 Borut Razem <borut.razem AT siol.net>
293
294         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
295           second try. Thanks Stas Sergeev once more.
296
297 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
298
299         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
300           (genLeftShift, genRightShift): fixed bug 1491627
301         * src/hc08/peeph.def (rules 7, 8.x): added
302         * support/regression/tests/shifts.c (ShiftLeftByParam,
303           ShiftRightByParam, testShiftByParam): added to test variable shifting
304
305 2006-05-20 Raphael Neider <rneider AT web.de>
306
307         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
308         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
309           (allocReg): add only new registers to dynAllocRegs,
310           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
311             #1489055, #1445850, and probably #1483693
312
313 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
314
315         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
316         bug in for-loop that didn't emit the last of CONFIG and ID registers
317
318 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
319
320         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
321           with offset
322         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
323           1489016, 1434401 and 1490124
324         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
325           1489016, 1434401 and 1490124
326
327 2006-05-17 Borut Razem <borut.razem AT siol.net>
328
329         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
330           thanks Stas Sergeev
331
332 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
333
334         * device/include/mcs51/P89c51RD2.h,
335         * device/include/mcs51/P89LPC901.h,
336         * device/include/mcs51/P89LPC922.h,
337         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
338
339 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
340
341         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
342         to fix missing stack pragma in compiled binary object file,
343
344 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
345
346         * support/packihx/configure.in,
347         * support/packihx/configure: removed warning, autoconf >= 2.5x can
348         determine sizeof basic types even while cross compiling
349
350 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
351
352         * src/avr/gen.c (aopop),
353         * src/ds390/gen.c (aopOp),
354         * src/hc08/gen.c (aopOp),
355         * src/mcs51/gen.c (aopop),
356         * src/pic16/gen.c (pic16_aopOp),
357         * src/pic/gen.c (aopOp),
358         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
359         if size of operand is smaller than spill location
360
361 2006-05-12 Borut Razem <borut.razem AT siol.net>
362
363         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
364           have to have CR/LF line endings even if they are checked out on *nix
365           or on WIN32 in cygwin binmode
366
367 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
368
369         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
370         * device/include/ds80c390.h: added sfr16 definitions
371         * src/ds390/gen.c,
372         * src/ds390/gen.h,
373         * src/ds390/main.c,
374         * src/ds390/ralloc.c,
375         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
376           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
377           bit returning functions
378         * support/regression/tests/sfr16.c: enabled test on ds390
379
380 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
381
382         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
383         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
384
385 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
386
387         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
388         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
389           (cl_address_space constructor): removed expensive initialization,
390           (cl_address_space::get_cell): extended for late initialization,
391           (cl_address_space::*): use late initialization,
392           (cl_address_decoder::activate): removed expensive initialization,
393           This reduced regression test running time by 25%
394
395 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
396
397         * packihx/,
398         * configure.in,
399         * configure,
400         * sdcc.dsw,
401         * Makefile.bcc,
402         * Makefile.in,
403         * support/packihx/Makefile.in,
404         * support/packihx/clean.mk,
405         * support/packihx/Makefile.bcc,
406         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
407
408 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
409
410         * src/SDCCval.c (valNot): fix for regression test failure
411           of not.c on big endian hosts
412
413 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
414
415         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
416
417 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
418
419         * device/lib/mcs51/Makefile.in: changed string comparison operator
420           to = for POSIX compliance; == is bash extension
421
422 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
423
424         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
425           kosmonaut_pirx
426
427 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
428
429         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
430         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
431         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
432         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
433         bug report #1478657,
434
435 2006-05-05 Borut Razem <borut.razem AT siol.net>
436
437         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
438           making the html
439
440 2006-05-02 Borut Razem <borut.razem AT siol.net>
441
442         * doc/Makefile.in: removed *.ind dependency since there is no rule to
443           create *.ind, which made make to fail if invoked with -j 2
444
445 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
446
447         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
448           Hubert Sack for patch 1479782
449
450 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
451
452         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
453
454 2006-05-01 Raphael Neider <rneider AT web.de>
455
456         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
457           (create_pic): store only prefix-free device name,
458           (init_pic): check for device names with "16" prefix,
459           (list_valid_pics),
460         * src/pic/device.h (struct PIC_device),
461         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
462             stored device name,
463         * device/include/pic/pic12f{635,675,629,683}.h,
464         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
465         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
466         * device/include/pic/pic16f505.h,
467         * device/lib/pic/libdev/pic16f505.c: removed
468         * device/include/pic/pic14devices.txt: added support for pic12f
469             devices, removed unsupported non 16-bit devices
470             [above changes provided by patch from Zik Saleeba]
471         * src/pic/*, src/pic16/*, device/include/pic16/*,
472           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
473
474 2006-05-01 Borut Razem <borut.razem AT siol.net>
475
476         * configure.in, configure, doc/Makefile.in:
477           sync with nightly build makefile - latex, dvipdf and dvips
478           not needed any more
479
480 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
481
482         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
483         in the library source
484
485 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
486
487         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
488
489 2006-04-28 Raphael Neider <rneider AT web.de>
490
491         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
492         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
493           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
494         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
495
496 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
497
498         * device/lib/pic/libdev/Makefile.in,
499         * device/lib/hc08/Makefile.in,
500         * device/lib/gbz80/Makefile.in,
501         * device/lib/z80/Makefile.in,
502         * device/lib/ds390/Makefile.in,
503         * device/lib/ds400/Makefile.in: added srcdir to include search path,
504         thanks to Borut for the bug report
505         * configure.in,
506         * configure: always create doc/Makefile independent from --enable-doc
507         * Makefile.in: always install from directory doc independent from
508         --enable-doc
509         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
510         removed
511         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
512         * doc/Makefile.in: install *.txt if present
513         * device/include/Makefile.in (install): added installation of pic/*.inc
514         and pic/*.txt files again, they were erroneously removed
515
516 2006-04-28 Raphael Neider <rneider AT web.de>
517
518         * src/pic/{gen.c,main.h,pcode.c},
519         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
520             concerning signedness with casts
521
522 2006-04-28 Raphael Neider <rneider AT web.de>
523
524         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
525             definition of an interrupt handler,
526         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
527             interrupt handler stuff from picglue() to separate routine,
528           (picglue): enabled definition of intr handlers in files w/o main()
529
530 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
531
532         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
533           compilation with MSVC 2005 Express Edition (VC8)
534
535 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
536
537         * device/lib/Makefile: fixed build of gbz80 lib
538
539 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
540
541         * support/regression/tests/bug-460010.c,
542         * support/regression/tests/bug-524691.c,
543         * support/regression/tests/bug-716242.c: removed conditional defines
544           that are already in testfwk.h
545
546 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
547
548         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
549           (AccAXRsh1): added, shift right by 1,
550           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
551            AccAXLrl1
552         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
553
554 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
555
556         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
557         remove cast to same type
558         * src/SDCCast.c (decorateType): fix for RFE 1475742,
559         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
560         * as/z80/Makefile,
561         * link/z80/Makefile: removed, they have moved to
562         Makefile.in files
563         * configure,
564         * configure.in: replaced duplicate message about ucsim by missing sdcpp
565         * install-sh: fix bug #1204398 by setting umask 0022
566         * device/lib/Makefile: separate build of z80 and gbz80 lib
567
568 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
569
570         Enabled VPATH feature: changed nearly all Makefiles (149 files).
571         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
572
573         One basic decision: e.g. src/clean.mk includes further files. In order
574         to make this work there are two solutions:
575         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
576           run configure on them. This way they can use
577           'include $(srcdir)/port-clean.mk'
578         - always include clean.mk by the Makefile at the same level. To avoid
579           that `make clean` tries to include and build Makefile.dep the
580           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
581           implemented, because now even `make uninstall` doesn't create
582           Makefile.in. clean.mk could be eliminated by pasting it in
583           Makefile.in.
584
585         * debugger/mcs51/Makefile.in: build own objects from library sources
586         (SLIB, SDCC) in current directory
587
588         * configure, configure.in: renamed --disable-device-lib-build in
589         --disable-device-lib; added --enable-doc, the required tools are
590         searched by configure; added result message; the toolchain for the
591         belonging ports are now only built, if the port is enabled.
592
593         * support/regression/*: all output is written in directory gen, because
594         the fwk and ports directories don't livet in the build tree using vpath
595
596         * doc/sdccman.lyx: renamed --disable-device-lib-build to
597         --disable-device-lib, added --enable-doc, added section VPATH
598
599         * sim/ucsim/configure.in,
600         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
601         z80 are enabled by default
602
603 2006-04-24 Raphael Neider <rneider AT web.de>
604
605         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
606             to config word, "pic14_"-prefixed some extern functions
607           (pic14_emitConfigWord): emit __config directive(s) if assignment to
608             config word has been found
609         * src/pic/device.h: added prototypes
610         * src/pic/pcode.c: added "pic14_"-prefix where needed
611         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
612             fixup
613         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
614             words,
615           (pic14emitRegularMap): ignore config words,
616           (pic14createInterruptVect): moved generating __config directives away
617           (picglue): have __config directives emitted
618
619 2006-04-24 Borut Razem <borut.razem AT siol.net>
620
621         * doc/Makefile: sync with nightly build makefile
622
623 2006-04-24 Raphael Neider <rneider AT web.de>
624
625         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
626             registers that have not been assigned proper liveranges,
627             fixes #1469504 and #1474602,
628           (pCodeRegOptimizeRegUsage): fixed typo in comment
629
630 2006-04-24 Borut Razem <borut.razem AT siol.net>
631
632         * device/examples/main8051.c: deleted - it was removed from CVS
633           24.mar.2000 and after that modified 18.feb.2001, so it reappered
634           after the transition to Subversion
635         * src/SDCCalloc.h: deleted - it was removed  from CVS
636           3.feb.2001 and after that modified 18.feb.2001, so it reappered
637           after the transition to Subversion
638         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
639           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
640           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
641           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
642
643 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
644
645         * as/asx8051.dsp: added mcs51/strcmpi.h
646         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
647         * as/hc08/aslink.h: updated lnksect prototype
648         * as/hc08/asm.h,
649         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
650         * as/hc08/asmain.c,
651         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
652           (newdot): handle A_ABS
653         * as/hc08/asout.c,
654         * as/mcs51/asout.c (outarea): output address
655         * as/hc08/lkaomf51.c,
656         * as/mcs51/lkaomf51.c: disabled unused array UsageType
657         * as/hc08/m08pst.c,
658         * as/mcs51/i51pst.c,
659         * as/z80/z80pst.c: "ABS" is not A_OVR
660         * as/hc08/lkarea.c (newarea): read a_addr,
661           (lnkarea): added codemap array, sort absolute areas to the front,
662            combine all GSINITx/GSFINAL,
663           (find_empty_space, allocate_space): new functions,
664           (lnksect): return next address, handle absolute sections
665         * as/mcs51/lkarea.c (newarea): read a_addr,
666           lnksect2 prototype changed,
667           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
668           (find_empty_space, allocate_space): new, factored out of lnksect2,
669           (lnksect2): return next address, handle absolute sections
670         * as/hc08/lkhead.c,
671         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
672         * as/hc08/lklibr.c (addfile, fndsym),
673         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
674           index out of range and detect both '\' and '/'
675         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
676         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
677           regression tests (ds390 cannot return bool yet)
678         * doc/sdccman.lyx: changed version number, document changed --no-peep,
679           document critical interrupts on z80, document changed SDCC define
680         * src/asm.c (_asxxxx_mapping): fixed .org directive,
681           (_a390_mapping): added .org directive
682         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
683           (genMultOneByte): fixed warnings
684         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
685           ones
686         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
687         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
688           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
689         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
690         * src/pic16/main.c: removed newReg prototype
691         * src/pic16/pcode.c,
692         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
693           warnings
694         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
695           ones
696         * src/pic16/ralloc.c
697         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
698           to fix warnings
699         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
700           from short to PIC_OPTYPE
701         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
702         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
703           optype from short to PIC_OPTYPE
704         * src/port.h: made int_size unsigned to fix warnings
705         * src/SDCC.y: fixed warning on MSVC
706         * src/SDCCicode.c (getArraySizePtr): return unsigned int
707         * src/SDCCopt.c (convertToFcall): fixed warnings
708         * src/SDCCsymt.h: removed double prototype for genSymName
709         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
710           offset int to fix warnings
711
712 2006-04-22 Borut Razem <borut.razem AT siol.net>
713
714         * doc/sdccman.lyx, */Makefile, */Makefile.in:
715           references to CVS replaced with Subversion
716
717 2006-04-21 Borut Razem <borut.razem AT siol.net>
718
719         * doc/sdccman.lyx, */Makefile, */Makefile.in:
720           references to CVS replaced with Subversion
721
722 2006-04-19 Borut Razem <borut.razem AT siol.net>
723
724         * src/version.awk: adapted for svn
725         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
726           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
727           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
728           /binutils-avr/etc/*.vi, *.jin: removed all properties
729           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
730
731 2006-04-19 Borut Razem <borut.razem AT siol.net>
732
733         * CVS to Subversion migration completed
734
735 2006-04-18 Borut Razem <borut.razem AT siol.net>
736
737         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
738           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
739
740 2006-04-17 Borut Razem <borut.razem AT siol.net>
741
742         * device/include/Makefile.in: added pic/*.inc to the installation
743
744 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
745
746         * support/regression/collate-results.py: fixed output in case of
747         a valdiag error
748         * support/regression/generate-cases.py: fixed splitting of pathnames
749         with dots
750         * as/hc08/lklibr.c (addfile),
751         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
752
753 2006-04-11 Raphael Neider <rneider AT web.de>
754
755         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
756         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
757         * src/pic16/pcode.c (assignValnums): fixed #1460578
758
759 2006-04-11 Raphael Neider <rneider AT web.de>
760
761         * device/lib/pic/libdev/*.c,
762         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
763           fixes #1468739, enables compilation in --std-c99 mode
764         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
765
766 2006-04-11 Raphael Neider <rneider AT web.de>
767
768         * src/pic/device.c (find_device): removed debug output
769           (list_valid_pics): enabled verbose listing of supported devices
770         * device/include/stdbool.h: define bool as char for pic14/16 as well
771
772 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
773
774         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
775
776 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
777
778         * .version: bumped version to 2.5.6
779         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
780
781 2006-04-06 Raphael Neider <rneider AT web.de>
782
783         * .version: bumped version to 2.5.6 (pic14 ABI changed)
784         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
785         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
786           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
787             pic14_constructAbsMap
788           (pic14printPublics): declare absolute global symbols as global
789           (pic14createInterruptVect),
790         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
791           (newReg): assume new registers unused, use correct name in
792             hashtable (reg->name instead of name), more debugLog output
793         * src/pic/device.h (PIC_device): added fields for verbose output
794         * src/pic/device.c: moved device definition to pic14devices.txt,
795             added routines for runtime parsing of pic14devices.txt,
796             added support for second config word
797         * src/pic/main.c (_process_pragma): removed #pragma maxram,
798           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
799           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
800           (_pic14_parseOptions): moved pCodeInitRegisters here
801           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
802         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
803           (pCodeInitRegisters): rewrapped comments, perpared new approach to
804             handling the pseudo stack
805         * device/lib/Makefile.in: ignore failures in objects-pic16,
806         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
807         * device/lib/pic/NEWS: document new dependency on picXXX.lib
808         * device/lib/pic/Makefile.subdir,
809         * device/lib/pic16/Makefile.subdir: improved clean rules
810         * device/lib/pic/libdev/: NEW, pic14 device libraries
811         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
812         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
813         * device/include/Makefile.in: create subdir and install pic14 headers
814         * device/include/pic/p16f_common.inc: removed unused declarations
815         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
816             PICs from inc2h.pl v1.6,
817             replaced BIT_AT macros with struct declarations
818         * device/include/pic/pic14devices.txt: definition of supported devices,
819             all above improvements contributed by Zik Saleeba, thanks
820         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
821         * support/scripts/sdcc.nsi: also install pic14 device libraries and
822             headers
823
824 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
825
826         * device/include/mcs51/c8051f410.h: added interrupt numbers,
827         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
828           thanks to Charles Olds
829
830 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
831
832         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
833
834 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
835
836         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
837         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
838         * support/regression/bug1464657.c: added, new test
839
840 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
841
842         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
843           version number
844
845 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
846
847         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
848           --no-peep and --peep-file <file> are used don't use default rules but
849           do use the <file>
850
851 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
852
853         * src/mcs51/gen.c (genCall): fixed bug 1457608
854
855 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
856
857         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
858         changes seem to cause (trigger?) problems with the build system.
859
860 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
861
862         * src/SDCCpeeph.c (operandsLiteral): new, added,
863           (callFuncByName): inserted operandsLiteral
864         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
865
866 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
867
868         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
869         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
870
871 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
872
873         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
874           implemented patch 1120823 Thanks to Willy De la Court (normal
875           interrupts need an interrupt number now if they are made critical),
876           and enabled nesting of critical functions though not for gbz80
877           (genCritical, genEndCritical): added functions
878           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
879         * src/z80/mappings.i: added "ei" to all mappings
880
881 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
882
883         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
884         submitted by the Debian SDCC maintainer Aurelien Jarno:
885         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
886         archive with gcc 4.1 on mips and wrote the patch"
887
888 2006-03-16 Raphael Neider <rneider AT web.de>
889
890         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
891           the left operand is shorter than the result (c* = lit-c* + int),
892           fixes bug #1450796
893         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
894           OP_SYMBOL
895
896 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
897
898         * src/.version: increased version number to 2.5.5
899         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
900         linking is done manually in pic16 port's _linkEdit,
901         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
902         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
903         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
904         allocate asmop as AOP_ACC,
905         (aopForRemat): added parameter 'bool result' in function declaration,
906         (pic16_aopGet): return AOP_ACC when accessing WREG,
907         (pic16_popGetTempReg): minor modification,
908         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
909         'pic16_allocWithIdx',
910         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
911         calling function in absolute addresses,
912         (genAssign): take into account AOP_ACC asmop,
913         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
914         * src/pic16/pcoderegs.c: some debug functions and lines added,
915         * src/pic16/ralloc.c (decodeRegType): added but commented out,
916         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
917         register too,
918         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
919         call to allocReg, not by manually allocating a new one,
920         (pic16_assignRegisters): now before going through the register
921         allocating functions mark all registers as free. This eliminates some
922         side effects resulting from peephole parser done earlier in the backbone
923
924 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
925
926         * src/SDCCicode.c (geniCodeLogic),
927         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
928
929 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
930
931         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
932           (genSend): bugfix, do not allocate and free twice,
933           (shiftRLong): handle partially overlapping aops
934         * support/regression/tests/bitopcse.c: fixed warning redefined idata
935
936 2006-03-08 Borut Razem <borut.razem AT siol.net>
937
938         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
939           for pic16
940
941 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
942
943         * support/regression/tests/bug1409955.c: new, added
944         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
945         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
946           (aopForSym, aopOp): increment asmop.allocated if reused,
947           (freeAsmop): decrement asmop.allocated and check for zero instead of
948           using asmop.freed,
949           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
950           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
951            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
952            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
953            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
954            genSignedRightShift, genRightShift, genDataPointerGet,
955            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
956            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
957             in reverse order from allocation,
958           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
959             added swappedLR to keep track
960         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
961           pdata & code for GCC, z80, gbz80 & hc08
962         * support/regression/tests/zeropad.c: moved defines to testfwk.h
963
964 2006-03-08 Raphael Neider <rneider AT web.de>
965
966         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
967
968 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
969
970         * device/include/mcs51/c8051f410.h: new SiLabs mcu
971         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
972         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
973
974 2006-03-06 Borut Razem <borut.razem AT siol.net>
975
976         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
977           made the linker quiet
978
979 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
980
981         * src/pic16/gen.c (genPcall): fixed bug #1443644
982         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
983         which dumps before the function entry point a data byte which represents
984         the number of the local variables used by the specified function, added
985         'xinst' for initial support for Extended Instruction Support,
986         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
987         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
988         port->fun_prefix anymore (may change later),
989         (genFunction, genEndFunction): do not store/restore local registers for
990         _main (this should take care the --main-return command line option in
991         the future),
992         (genOr): removed some legacy pic-port instructions,
993         * src/pic16/genarith.c (genAddLit): re-enabled old code because
994         performing operations with SFR's causes data to be written more than
995         once to each SFR. Perhaps SFRs should be handled in special cases...
996         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
997         pcode.h
998         * src/pic16/main.c (_process_pragma): stack bound checking did not take
999         into account for stack starting position,
1000         (struct OPTIONS pic16_optionsTable): added command line argument
1001         --extended or -y for Extended Instruction Support,
1002         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1003         (deassignLRs): *** perhaps the most important change, old 'for' code
1004         (commented out for reference), didn't account for some registers which
1005         were left marked 'not free' after a pointer operation. The change
1006         reduces register usage a lot in some cases
1007
1008 2006-03-04 Borut Razem <borut.razem AT siol.net>
1009
1010         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1011           _clean
1012         * support/regression/tests/bug-524697.c: decreased array size for
1013           mcs51 to fit into the internal RAM
1014         * support/regression/Makefile.in: a little bit more verbose
1015
1016 2006-03-03 Borut Razem <borut.razem AT siol.net>
1017
1018         * support/regression/fwk/lib/testfwk.c,
1019           support/regression/fwk/include/testfwk.h: introduced function
1020           _prints(), nonrecursive _printn(), call _initEmu() from main()
1021         * support/regression/ports/gbz80/support.asm,
1022           support/regression/ports/ucz80/support.asm,
1023           support/regression/ports/z80/support.asm,
1024           support/regression/ports/ds390/support.c,
1025           support/regression/ports/hc08/support.c,
1026           support/regression/ports/host/support.c,
1027           support/regression/ports/mcs51/support.c,
1028           support/regression/ports/xa51/support.c: added empty _initEmu()
1029           function
1030         * support/regression/ports/pic16/gpsim.cmd,
1031           support/regression/ports/pic16/spec.mk,
1032           support/regression/ports/pic16/support.c,
1033           support/regression/Makefile.in: added pic16 regression test
1034
1035 2006-03-01 Raphael Neider <rneider AT web.de>
1036
1037         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1038           genConstPointerGet): use safe way of generating MOVFF to cover
1039             literals as well as registers, fixes bug #1440527
1040         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1041             dereference
1042           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1043             more correctly, fixes bug #1232186
1044           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1045         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1046             gplink guess the correct processor in more cases, applied patch
1047             from Till Riedel attached to and fixing bug #1436552
1048
1049 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1050
1051         * support/regression/tests/array.c: added, contains check for #1434401
1052         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1053
1054 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1055
1056         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1057         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1058         * device/include/mcs51/c8051f326.h,
1059         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1060         * device/include/mcs51/c8051f000.h,
1061         * device/include/mcs51/c8051f018.h,
1062         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1063           PCON_IDLE,PCON_STOP and added sfr16 definitions
1064
1065 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1066
1067         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1068           genGetWord): fixed bug 1409955
1069
1070 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1071
1072         * device/include/hc08/mc68hc908gp32.h,
1073         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1074
1075 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1076
1077         * src/SDCCast.c (constExprValue): return NULL if not a value
1078         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1079         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1080         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1081
1082 2006-02-13 Borut Razem <borut.razem AT siol.net>
1083
1084         * src/regression/ptrarg.c: added, fails due to bug #1430967
1085         * src/regression/Makefile: ptrarg.c added, ...
1086
1087 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1088
1089         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1090         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1091
1092 2006-02-11 Borut Razem <borut.razem AT siol.net>
1093
1094         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1095           print "Processor: xxx" message to stdout only if --verbose
1096
1097 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1098
1099         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1100         * support/regression/tests/bug1426356.c: added
1101         * support/regression/tests/bitfields.c: removed 2 tests
1102
1103 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1104
1105         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1106         * device/include/mcs51/c8051f330.h,
1107         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1108           PCON_IDLE,PCON_STOP and added sfr16 definitions
1109         * device/lib/_divsint.c,
1110         * device/lib/_divuint.c,
1111         * device/lib/_divulong.c,
1112         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1113           register bank bug for small stackauto
1114
1115 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1116
1117         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1118
1119 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1120
1121         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1122         * all.dsp: corrected several bin paths
1123         * device/include/mcs51/c8051f120.h,
1124         * device/include/mcs51/c8051f300.h,
1125         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1126           to PCON_IDLE,PCON_STOP
1127         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1128         * device/lib/printf_large.c (output_float): fixed bug 1388703
1129         * support/regression/tests/bug1057979.c: added test for bug 1388703
1130
1131 2006-02-08 Raphael Neider <rneider AT web.de>
1132
1133         * src/pic/pcode.c (pciTRIS): fixed typo,
1134           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1135           (LinkFlow): fixed handling of flows that end in a call,
1136           (ReuseReg): perform safety check earlier
1137         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1138             to work with flows at the beginning of a pBlock,
1139             fixes #1426557 (Symbol not previously defined),
1140           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1141             usage information
1142           (RemoveUnusedRegisters): update register usage info
1143         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1144             created, reuse existing ones instead
1145         * src/pic/gen.c (genPcall): fixed #1424719
1146
1147 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1148
1149         * link/z80/lkmain.c,
1150         * link/z80/lklex.c,
1151         * link/z80/lkdata.c,
1152         * link/z80/aslink.h: fixed build on current cygwin:
1153         replaced getline() by lk_getline()
1154
1155 2006-02-01 Borut Razem <borut.razem AT siol.net>
1156
1157         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1158           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1159           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1160           src/regression/bool1.c, src/regression/bool2.c,
1161           src/regression/bool3.c, src/regression/call1.c,
1162           src/regression/compare.c, src/regression/compare10.c,
1163           src/regression/compare2.c, src/regression/compare3.c,
1164           src/regression/compare4.c, src/regression/compare5.c,
1165           src/regression/compare6.c, src/regression/compare7.c,
1166           src/regression/compare8.c, src/regression/compare9.c,
1167           src/regression/configword.c, src/regression/for.c,
1168           src/regression/inline.c, src/regression/mult1.c,
1169           src/regression/nestfor.c, src/regression/or1.c,
1170           src/regression/pointer1.c, src/regression/ptrfunc.c,
1171           src/regression/rotate1.c, src/regression/rotate2.c,
1172           src/regression/rotate3.c, src/regression/rotate4.c,
1173           src/regression/rotate5.c, src/regression/rotate6.c,
1174           src/regression/rotate7.c, src/regression/string1.c,
1175           src/regression/struct1.c, src/regression/sub.c,
1176           src/regression/sub2.c, src/regression/switch1.c,
1177           src/regression/while.c, src/regression/xor.c,
1178           src/regression/create_stc, src/regression/simulate,
1179           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1180           regression tests
1181         * src/regression/gpsim_assert.h: added
1182
1183 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1184
1185         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1186         ((void (code *) (void)) 0) ();
1187         * as/hc08/aslex.c,
1188         * as/hc08/aslink.h,
1189         * as/hc08/asm.h,
1190         * as/hc08/asmain.c,
1191         * as/hc08/lkdata.c,
1192         * as/hc08/lklex.c,
1193         * as/hc08/lkmain.c,
1194         * as/mcs51/aslex.c,
1195         * as/mcs51/aslink.h,
1196         * as/mcs51/asm.h,
1197         * as/mcs51/asmain.c,
1198         * as/mcs51/lkdata.c,
1199         * as/mcs51/lklex.c,
1200         * as/mcs51/lkmain.c,
1201         * as/z80/aslex.c,
1202         * as/z80/asm.h,
1203         * as/z80/asmain.c: fixed build on current cygwin:
1204         replaced getline() by as_getline()
1205
1206 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1207
1208         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1209         declarator in the symbol chain
1210         * src/SDCCsymt.h,
1211         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1212         parameter list for function pointers
1213         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1214         * support/regression/tests/bug-716242.c: added
1215
1216 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1217
1218         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1219         offset if possible
1220         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1221
1222 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1223
1224         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1225         inifinitely recurseable, added static
1226         * support/regression/tests/bug-1408066.c: added
1227
1228 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1229
1230         * src/SDCCicode.h,
1231         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1232         renamed, added possibility to create "postLoopLbl"-labels
1233         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1234         newiTempLoopHeaderLabel
1235         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1236         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1237         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1238         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1239         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1240         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1241         (basicInduction): fixed bug #136564, made static,
1242         (loopInduction): changed parameter of basicInduction, made static,
1243         (addPostLoopBlock): added
1244         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1245         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1246         findLoopEndSeq
1247         * support/regression/tests/bug-136564.c: added
1248         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1249         --std-sdcc99 to LIBSDCCFLAGS
1250
1251 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1252
1253         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1254         while loop
1255         * support/regression/tests/bug-1406131.c: added
1256
1257 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1258
1259         * src/SDCCast.c (decorateType): fix promotion of unary minus
1260         * src/SDCCsymt.c (computeType): beautified
1261         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1262         (valUnaryPM, valComplement): fix sign and promotion,
1263         (valNot): ANSI: result type is int (SDCC: unsigned char)
1264         * support/regression/tests/uminus.c: speedup by removing superflous
1265         test case 'int'
1266         * support/regression/tests/onebyte.c: added promotion and signedness
1267         tests for unary minus
1268         * support/regressions/tests/bug-477927.c: disable warning about
1269         uninitialized variables
1270         * support/regression/tests/not.c: added
1271
1272 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1273
1274         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1275         * src/mcs51/gen.c (gen51Code): show final register usage after
1276         fillGaps in asm with --i-code-in-asm
1277         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1278         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1279         incUsed, rliveClear, adjustIChain): made static,
1280         (setFromRange): excluded because it's unused,
1281         (findPrevUseSym, markWholeLoop): added,
1282         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1283         through all branches of predecessors enables sdcc to emit the warning
1284         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1285         (rlivePoint): made static, added parameter emitWarnings which is only
1286         true during the first run out of two,
1287         (findRecursiveSucc, findRecursivePred): removed,
1288         (computeLiveRanges): made static, added parameter emitWarnings,
1289         (dumpIcRlive): added for debugging only
1290         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1291         removed prototype of setFromRange()
1292         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1293         in call of computeLiveRanges()
1294         * support/regression/tests/bug-895992.c: added
1295         * support/regression/tests/bug-971834.c: added
1296         * support/valdiag/tests/bug-895992.c: added
1297         * support/valdiag/tests/bug-971834.c: added
1298
1299 2005-12-18 Raphael Neider <rneider AT web.de>
1300
1301         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1302           (genUnpackBits): improved code for direct operands,
1303           (genPackBits): improved code for literal assignment to bitfields
1304             and for direct destination operands (no FSR indirection),
1305             prevented redundant AND, fixes #1362800,
1306           (AccLsh): added parameter to disable masking of the result
1307         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1308           skip instructions with side-effects (like incfsz),
1309           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1310         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1311         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1312           fixes #1375263
1313
1314 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1315
1316         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1317         volatile variables as spill location
1318
1319 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1320
1321         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1322         replacing literals
1323         * support/regression/tests/bug-1376320.c: added
1324
1325 2005-12-08 Raphael Neider <rneider AT web.de>
1326
1327         * src/pic/device.c: renamed is_shared to pic14_is_shared
1328         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1329         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1330           (is_valid_identifier): added for above workaround
1331
1332 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1333
1334         * device/lib/Makefile.in: fixed to enable port-specific-objects
1335         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1336           char, thanks Hubert Sack
1337         * doc/sdccman.lyx: documented --xstack-loc,
1338           elaborated a bit more on interrupts and pitfalls,
1339           removed "setjmp/longjmp unsupported",
1340           documented some unsupported C99 features
1341         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1342         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1343           if, thanks Hubert Sack
1344         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1345         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1346           make make_library
1347         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1348           regression tests can report resource usage (rfe 700441)
1349         * support/regression/collate-results.py: report resource usage
1350         * support/regression/ports/ds390/spec.mk,
1351         * support/regression/ports/hc08/spec.mk,
1352         * support/regression/ports/mcs51/spec.mk,
1353         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1354         * support/regression/ports/ds390/uCsim.cmd,
1355         * support/regression/ports/hc08/uCsim.cmd,
1356         * support/regression/ports/mcs51/uCsim.cmd,
1357         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1358         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1359           library, use the default one
1360         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1361           building the library
1362
1363 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1364
1365         * config.dsp: added dependency on .version and configure_vc.awk
1366         * device/include/setjmp.h: updated for --stack-auto and --xstack
1367         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1368         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1369         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1370         * device/lib/libsdcc.lib: added _setjmp
1371         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1372           (decorateType): fixed bug 1372851,
1373           (optimizeGetHbit): fixed warning
1374         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1375           array initialisation
1376         * support/regression/tests/bug1057979.c: added test for bug 1358192
1377         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1378
1379 2005-12-03 Borut Razem <borut.razem AT siol.net>
1380
1381         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1382           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1383
1384 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1385
1386         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1387         createIval): implement symbol independant "flexible array member",
1388         (createIvalCharPtr): implemented flexible array initialisation with a
1389         string
1390         * src/SDCCsymt.c (copyStruct): removed,
1391         (getSize): fixed misleading comment,
1392         (getAllocSize): removed, the additional allocation size is now in
1393         sym->flexArrayLength,
1394         (checkStructFlexArray): new, syntax checks for flexible array members,
1395         (compStructSize): added syntax checks for "flexible array members"
1396         (copyStruct): removed,
1397         (copyLinkChain): removed inefficient fix for bug 770487
1398         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1399         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1400         symbol->flexArrayLength
1401         * src/SDCCerr.c,
1402         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1403         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1404         * support/regression/tests/structflexarray.c: added
1405         * support/valdiag/tests/structflexiblearray.c: added
1406
1407 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1408
1409         * src/SDCCast.c (decorateType): fixed bug 1368489
1410         * support/Util/SDCCerr.c,
1411         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1412
1413 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1414
1415         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1416           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1417
1418 2005-11-27 Borut Razem <borut.razem AT siol.net>
1419
1420         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1421           support/cpp2/mkdeps.h: added command line option
1422           -obj-ext=<extension> to SDCPP to define object file externion, used
1423           for generation of make dependencies (-M)
1424         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1425
1426 2005-11-26 Borut Razem <borut.razem AT siol.net>
1427
1428         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1429           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1430           added pic and pic16 libraries
1431
1432 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1433
1434         * device/include/float.h: Corrected typo in prototype of __fsgt
1435
1436 2005-11-25 Borut Razem <borut.razem AT siol.net>
1437
1438         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1439           added creation of model-mcs51-stack-auto libraries
1440
1441 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1442
1443         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1444         and fields-list too
1445         * src/SDCCast.c (createIvalArray): removed obsolete comment
1446
1447 2005-11-24 Borut Razem <borut.razem AT siol.net>
1448
1449         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1450           added missing device/lib/mcs51/crt*.asm sources
1451
1452 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1453
1454         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1455
1456 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1457
1458         * device/lib/_fs2schar.c,
1459         * device/lib/_fs2sint.c,
1460         * device/lib/_fs2slong.c: optimized inline asm
1461
1462 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1463
1464         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1465           Better handling of floats between -1.0 and 0.0.
1466
1467 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1468
1469         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1470           (the missing "if"s prohibited removal of redundant labels)
1471
1472 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1473
1474         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1475           Properly convert floats between -1.0 and 0.0 to long, int, and char
1476           types (max integer value of negative floats tends to zero).
1477         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1478           Removed changes made so to work properly with floats between
1479           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1480           and _fs2char.c
1481
1482 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1483
1484         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1485         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1486         (genCast) cosmetic change
1487         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1488         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1489         from mcs51
1490         * support/regression/tests/bitfields (testSignedBitfields): added
1491
1492 2005-11-18 Borut Razem <borut.razem AT siol.net>
1493
1494         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1495         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1496           introduced SILENT option to make building of pic16 libraries less
1497
1498 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1499
1500         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1501           Now they work properly with floats between -1.0 and 0.0
1502         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1503
1504 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1505
1506         * src/SDCCicode.c (printOperand): added missing else
1507
1508 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1509
1510         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1511         reformatted for better readability
1512         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1513         signed bitfields
1514
1515 2005-11-17 Borut Razem <borut.razem AT siol.net>
1516
1517         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1518           introduced SILENT option to make building of pic16 libraries less
1519           verbose - used for nightly snapshot build
1520         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1521           available on Win32 platforms.
1522         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1523           medium, large, pic and pic16
1524
1525 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1526
1527         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1528           printf("%f"...) sets fraction to zero.
1529
1530 2005-11-16 Raphael Neider <rneider AT web.de>
1531
1532         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1533           fixes #1357221
1534         * src/pic/gen.c (genIfx): implemented for CARRY bit
1535         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1536           to generic pointers, fixes #1357332,
1537           (pic16_movLit2f): NEW,
1538           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1539
1540 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1541
1542         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1543
1544 2005-11-11 Raphael Neider <rneider AT web.de>
1545
1546         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1547         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1548           compute pointer's type from operand,
1549           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1550           improved single bit reads, fixes bug #1353379
1551
1552 2005-11-09 Borut Razem <borut.razem AT siol.net>
1553
1554         * support/scripts/sdcc.nsi: added lib/pic to the package
1555
1556 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1557
1558         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1559
1560 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1561
1562         * support/regression/tests/bug1348008.c: added
1563         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1564         * support/regression/tests/bug1337835.c: updated comment
1565
1566 2005-11-06 Borut Razem <borut.razem AT siol.net>
1567
1568         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1569           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1570           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1571           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1572           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1573           dynamic construction of cl_error_class and derivates - 2.nd try
1574
1575 2005-11-05 Borut Razem <borut.razem AT siol.net>
1576
1577         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1578           bug, which caused Bus Errors on sparc solaris
1579
1580 2005-11-04 Borut Razem <borut.razem AT siol.net>
1581
1582         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1583           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1584           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1585           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1586           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1587           and derivates to resolve the initialization problem on OSX
1588
1589 2005-11-02 Borut Razem <borut.razem AT siol.net>
1590
1591         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1592           corrected typo - #include <winsock2.h>
1593
1594 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1595
1596         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1597           (_asxxxx_mapping): added org directive for future enhancements
1598
1599 2005-11-01 Borut Razem <borut.razem AT siol.net>
1600
1601         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1602           enabled sockets on WIN32
1603         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1604
1605 2005-10-31 Borut Razem <borut.razem AT siol.net>
1606
1607         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1608           WIN32 backslash path delimiters should be escaped when used in C strings
1609         * support/regression/tests/bitfields.c: exclude failing assertions for
1610           __CYGWIN32__ and __MINGW32__ hosts
1611
1612 2005-10-30 Borut Razem <borut.razem AT siol.net>
1613
1614         * src/SDCCutil.c: corrected double comparison typo
1615
1616 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1617
1618         * device/lib/medium/Makefile: added for new memory model medium
1619         * device/include/asm/mcs51/features.h: updated for medium/pdata
1620         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1621           added Multiply & Accumulate sbit's and MAC0_PAGE define
1622         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1623         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1624         * device/lib/_mullong.c: update for medium model
1625         * device/lib/incl.mk: added medium model
1626         * doc/sdccman.lyx: documented medium model
1627         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1628         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1629         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1630         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1631           (allocParms): set SCLS and OCLS to pdata for medium model
1632         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1633           for pdata,
1634           (powof2): return <0 if not power of 2
1635         * src/avr/gen.c (genBitWise): use updated powof2
1636         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1637           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1638           (shiftLLeftOrResult): use B if necessary
1639         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1640         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1641         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1642         * support/regression/Makefile.in: added test-mcs51-medium
1643         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1644
1645 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1646
1647         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1648         specifier unsigned
1649         * device/lib/time.c (mktime): fixed bug 1334315
1650
1651 2005-10-28 Raphael Neider <rneider AT web.de>
1652
1653         * device/include/pic/p16f_common.inc: added common declarations
1654         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1655
1656 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1657
1658         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1659           (aopPutUsesAcc): added to predict accumulator use,
1660           (assignResultValue): save acc if necessary,
1661           (genMinusDec): store result if indirectly addressed,
1662           (genDivOneByte):  save acc if necessary,
1663           (movLeft2Result): bugfix if left already in acc,
1664           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1665             attention to accumulator use (esp. pdata),
1666           (genReceive): receive pdata correctly
1667         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1668         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1669
1670 2005-10-27 Raphael Neider <rneider AT web.de>
1671
1672         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1673
1674 2005-10-27 Raphael Neider <rneider AT web.de>
1675
1676         * .version: changed version to 2.5.4
1677         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1678         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1679           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1680             arithmetics support routines
1681         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1682         * device/lib/Makefile.in: also create installdir for pic
1683
1684         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1685           pic14 port as well
1686         * src/pic/device.c (dump_sfr): rewritten to delegate register
1687           placement to the linker (use `extern sym' rather than sym EQU addr),
1688           (validAddress): fixed to check last specified address
1689         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1690           (popGetLit): truncate literal value to 8 bit,
1691           (popGet): moved assert to more appropriate place
1692           (popGetExternal): create pCode operand from and mark the according
1693             symbol as being `extern'
1694           (popGetAddr): added sanity check on immediate's offset, provide
1695             GPOINTER tag on demand
1696           (aopPut): fixed for immediates,
1697           (mov2w_op): move operand's address or contents to WREG (depending on
1698             operand type), safer variant of mov2w,
1699           (movwf,call_libraryfunc): NEW, handy abbreviations,
1700           (get_argument_pcop,get_return_val_pcop,pass_argument,
1701           get_returnvalue): interface for accessing function parameters and
1702             return values,
1703           (assignResultValuei,genRet): use new parameter/return value interface
1704           (pic14_getDataSize): back to old version handling generic pointers,
1705           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1706             provided implementation and/or fixed old one,
1707           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1708             calls, removed legacy 8051 reference code
1709           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1710           (loadSignToC): NEW, move the operands sign bit to CARRY,
1711           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1712             genRightShiftSigned, accepts negative shift counts,
1713           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1714           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1715             generic pointers, __data pointers and __code pointers,
1716           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1717             and signed bitfields, limit bitfields to 8 bit,
1718           (genDataPointerGet): fixed number of bytes read,
1719           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1720           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1721             pointers to constant data are no longer assumed to point to __code
1722             space, removed invalid pointer types,
1723           (bitpatternFromVal): retrieve the PICs representation of an integer
1724             or float literal,
1725           (genDataPointerSet): fixed assigning to po_immediate operands,
1726           (genGenPointerSet): implemented as library call,
1727           (genIfx): fixed incorrect condition,
1728           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1729             provide GPOINTER tag according to destination's storage class,
1730           (genCast): added code to handle casting to generic pointers, added
1731             sign-/zero extension of the result
1732           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1733         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1734         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1735           extend the result
1736         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1737           address/register resides in the shared banks
1738           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1739             put all variables into separate sections (have the linker arrange
1740             them)
1741           (picglue): put init code and interrupt handlers in separate sections
1742         * src/pic/main.c: added port specific options table, modified to PORT
1743           structure to make GPOINTERs 3 byte, added pic14_options
1744           (_pic14_do_link): private linking routine (update paths to libraries,
1745             add libsdcc.lib by default)
1746         * src/pic/main.h: declare pic14_options
1747         * src/pic/pcode.c: fixed instructions i/o relations,
1748           (RegCond): reverted to correct version,
1749           (newpCodeOpLit): truncate literals to 8 bit,
1750           (genericPrint): added debug output,
1751           (getRegFromInstruction): fixed for various operand types, simplified
1752           (BuildFlow): fixed broken handling of isntructions with labels
1753           (LinkFlow): start at last instruction in flow (skip trailing comments),
1754             pass the flow on to the next instruction after CALL
1755           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1756           (insertPCodeInstruction): fixed inserting after a skip instruction,
1757           (DoBankSelect): fixed for labeled instructions
1758           (OptimizepBlock): honor --nopeep switch
1759           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1760         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1761         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1762           (pCodeOptime2pCodes): allow disabling this optimization via
1763             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1764             but is still buggy), started implementation of a dataflow based
1765             pCode optimization (CSE + dead code elimination)
1766           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1767         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1768           names are independant of the stack location and therefore portable across
1769           devices
1770
1771 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1772
1773         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1774           (selectSpil): fixed bug 1337835 by not spilling bit variables
1775         * support/regression/tests/bug1337835.c: added test for this bug
1776         * src/mcs51/peeph.def: restart after rule 3.c,
1777           addded rules 263.x to optimize loading constants
1778
1779 2005-10-26 Raphael Neider <rneider AT web.de>
1780
1781         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1782         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1783           (genAssign): emit warning when casting literals to generic pointer
1784             type, also applies when taking the address of a fixed variable,
1785           (genCast): improved casting to generic pointers
1786         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1787           extern variables, added verbose error message
1788         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1789
1790 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1791
1792         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1793         carry must be complemented too
1794         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1795         could be emitted by genMinus
1796         * src/SDCCval.c (constVal): fixed bug 1305065
1797
1798 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1799
1800         * src/SDCCast.c (addCast): added promotion for bit variables
1801         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1802         promotion casts + optimisation
1803         (optimizeGetWord): fix warning 'i' might be used uninitialized
1804         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1805         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1806
1807 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1808
1809         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1810         all chars are promoted to int; promotion should be handled in SDCCast.c
1811
1812 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1813
1814         * device/lib/_strcmp.c: Fixed bug 1326457
1815
1816 2005-10-11 Raphael Neider <rneider AT web.de>
1817
1818         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1819         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1820
1821 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1822
1823         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1824         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1825
1826 2005-10-04 Raphael Neider <rneider AT web.de>
1827
1828         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1829           device/lib/pic16/pics.all: added pic18f1320
1830         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1831
1832 2005-09-30 Raphael Neider <rneider AT web.de>
1833
1834         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1835         * src/pic16/devices.inc: NEW, provides device descriptions
1836         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1837
1838 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1839
1840         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1841           GETHBIT
1842
1843 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1844
1845         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1846           documented Any Order Bit, Higher Order Byte and Higher Order Word
1847         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1848         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1849           (optimizeGetAbit): new, to get any bit, not only the high bit,
1850           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1851           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1852           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1853           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1854             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1855             GETABIT, GETBYTE, GETWORD: decorate them,
1856           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1857           (ast_print): added GETABIT, GETBYTE, GETWORD
1858         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1859         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1860           (geniCodeBinary): new generic binary icode,
1861           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1862         * src/port.h: updated comment for PORT.hasExtBitOp
1863         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1864           (genGetByte): new, to get a single byte,
1865           (genGetWord): new, to get a word from a long,
1866           (gen51Code): added GETABIT, GETBYTE, GETWORD
1867         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1868
1869 2005-09-23 Raphael Neider <rneider AT web.de>
1870
1871         * configure.in, configure: have device/lib/pic configured
1872         * device/lib/Makefile.in: added model-pic14
1873         * device/lib/clean.mk: added pic/ to clean rule
1874         * device/lib/pic: added rudimentary pic14 library providing support
1875           functions for multiplication/division/generic pointer access
1876         * src/SDCCopt.c (convilong): mark support functions as extern
1877           for pic14 port as well
1878         * src/pic/gen.c (genMult): added assertions,
1879           (genpic14Code): emit warning on unhandled iCodes
1880         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1881         * src/pic/pcode.c (pCodeOpCopy),
1882         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1883           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1884           SFR_REGISTER}), made safe for future extensions
1885         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1886           instructions even if preceeded by SKIP instructions (also remove
1887           them); removed unused code
1888         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1889           prevents leaving parts of the structure uninitialized after copying
1890
1891 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1892
1893         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1894           ago by me
1895         * support/regression/tests/addsub.c: added test for the bug
1896
1897 2005-09-21 Raphael Neider <rneider AT web.de>
1898
1899         * device/include/pic16/pic18f1220.h,
1900           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1901         * device/lib/pic16/Makefile.rules: added missing opening paren
1902         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1903           are provided in genutils.c,
1904           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1905           operand/result sizes,
1906           (genCmp): assert on NULL pointers first, then check deref'ed values
1907         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1908           result size
1909
1910 2005-09-18 Raphael Neider <rneider AT web.de>
1911
1912         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1913           as these are now unused,
1914           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1915         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1916           local, avoids uninitialized pointer dereference on r->name
1917         * src/pic16/ralloc.c (newReg): fixed indentation
1918
1919 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1920
1921         * src/SDCCval.c (constVal): fixed bug 730366
1922         * support/Util/SDCCerr.c,
1923         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1924
1925 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1926
1927         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1928
1929 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1930
1931         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1932
1933 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1934
1935         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1936           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1937         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1938           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1939         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1940         * packihx/packihx.c (hexDigit): made c unsigned char
1941         * as/mcs51/lklibr.c (fndsym),
1942         * link/z80/lkgb.c (gb),
1943         * link/z80/lklibr.c (fndsym),
1944         * link/z80/lkrloc.c (relr),
1945         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1946         * src/SDCC.lex (checkCurrFile, process_pragma),
1947         * src/SDCCglue.c (spacesToUnderscores),
1948         * src/SDCCmain.c (setParseWithComma, processFile),
1949         * src/asm.c (tvsprintf, printCLine),
1950         * src/avr/gen.c (emitcode, aopPut),
1951         * src/ds390/gen.c (emitcode),
1952         * src/hc08/gen.c (emitcode, emitinline),
1953         * src/mcs51/gen.c (emitcode, genInline),
1954         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1955           tokenizeLineNode),
1956         * src/pic/ralloc.c (debugLog),
1957         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1958           tokenizeLineNode),
1959         * src/pic16/ralloc.c (debugLog),
1960         * src/z80/main.c (_process_pragma):
1961            made all ctype.h function calls safe
1962         * src/SDCCopt.c: include math.h for fabs
1963         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1964           and used them throughout the code to make ctype.h function calls safe
1965         * src/ds390/main.c (asmLineNodeFromLineNode),
1966         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1967         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1968            unsigned char*
1969         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1970           (newpCodeAsmDir): made ctype.h function calls safe
1971         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1972           pic16_emitcode):  made lbp unsigned char*
1973         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1974           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1975         * src/xa51/gen.c (emitcode),
1976         * src/z80/gen.c (_emit2): made lbp unsigned char*
1977         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1978            char*
1979
1980 2005-09-05 Raphael Neider <rneider AT web.de>
1981
1982         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1983           access bank splitpoint
1984
1985 2005-09-05 Raphael Neider <rneider AT web.de>
1986
1987         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1988
1989 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1990
1991         * .version: changed to version 2.5.3
1992         * doc/sdccman.lyx: changed version to 2.5.3,
1993           documented --codeseg and --constseg and pragma codeseg and constseg,
1994           documented bit parameters (reentrant) and bit returning
1995         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1996            currFunc->recvSize, but is this ok for all ports?
1997           (ast2iCode): result of ~ on unsigned char must be cast to int for
1998            bool to work
1999         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2000           function pointers in bit space
2001         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2002           (processFuncArgs): call port.reg_parm() with reentrancy info
2003         * src/port.h,
2004         * src/avr/main.c,
2005         * src/ds390/main.c,
2006         * src/hc08/main.c,
2007         * src/pic/main.c,
2008         * src/pic16/main.c,
2009         * src/xa51/main.c,
2010         * src/z80/main.c: port.reg_parm prototype extended with
2011           "bool reentrant" parameter
2012         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2013           options.stackAuto for allocating bit register parameters
2014         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2015           (genSend): set BitBankUsed if it is,
2016           (selectRegBank): factored out of genCall for use in genPcall,
2017           (genCall): removed redundant dtype assignmen, use selectRegBank,
2018           (genPcall): handle returning in Carry properly, save in F0 if needed,
2019           (genReceive): handle bit register parameters
2020         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2021           (mcs51_assignRegisters): enable bit registers for all reentrant
2022            functions and don't set BitBankUsed unconditionally
2023         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2024         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2025         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2026
2027 2005-08-27 Borut Razem <borut.razem AT siol.net>
2028
2029         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2030         ppc-osx (Darwin) does not support -u option. It seems that it is
2031         supported only on Linux - GNU cp
2032
2033 2005-08-25 Borut Razem <borut.razem AT siol.net>
2034
2035         * sim/ucsim/gui.src/serio.src/Makefile.in,
2036           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2037           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2038           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2039           install and strip, since the strip at /usr/ccs/bin should be used
2040           on solaris
2041
2042 2005-08-24 Borut Razem <borut.razem AT siol.net>
2043
2044         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2045
2046 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2047
2048         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2049         ffffffffu
2050
2051 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2052
2053         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2054         * as/mcs51/lkmain.c (link_main): fixed warning
2055         * device/include/stdbool.h: ds390 has no advanced bit support yet
2056         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2057         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2058         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2059           and updated their macros
2060         * src/SDCCval.c (constVal): updated comment for renamed b_long
2061
2062 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2063
2064         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2065         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2066           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2067           (oprio): set priority for '['
2068         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2069            and adb_24_bit
2070         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2071         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2072         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2073         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2074           added overlayable BIT_BANK area
2075         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2076           (summary2): explain 'T' in legenda
2077         * as/mcs51/lkrloc.c: replaced old K&R style,
2078           (relr): added R_BIT processing,
2079           (errmsg): added "Bit-addressable relocation error",
2080           (adb_bit): added for converting from byte- to bit-addressable space,
2081           (adb_24_bit): added for converting from byte- to bit-addressable space
2082         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2083            used in reentrant functions now even as return value
2084         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2085         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2086           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2087         * src/SDCCglobl.h: added indicator BitBankUsed
2088         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2089            the bit registers b0-b7
2090         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2091           (geniCodeCast): fixed bug 1263853,
2092           (geniCodeLogicAndOr): put result in bool or char,
2093           (geniCodeReceive): added parameter func for accessing the return type,
2094           (geniCodeFunctionBody): pass func to geniCodeReceive
2095         * src/SDCCmain.c: added indicator BitBankUsed
2096         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2097         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2098           (checkSClass): don't put automatic bool/bit on stack,
2099           (checkFunction): removed check on function cannot return bit
2100         * src/SDCCsymt.h: added newBoolLink prototype
2101         * src/mcs51/gen.c (rb1regs): added bit registers,
2102           (movc): created for assigning to carry,
2103           (pushReg, popReg): created for pushing registers,
2104           (sameRegs): check both AOP_REG and AOP_CRY types,
2105           (aopOp): handle bit registers,
2106           (aopPut): optimization no self-assign,
2107           (saveRegisters): push reg->base (bits) only once for bit registers,
2108            and use pushReg,
2109           (unsaveRegisters): pop reg->base only once and use popReg,
2110           (assignResultValue): added parameter func and return in carry for bits,
2111           (genIpush): optimization no reload in A if not changed,
2112           (genSend): bit parameters in reentrant functions are passed in bit
2113            registers by first assigning to bits in B, then save registers and
2114            copy B to bits,
2115           (genCall): handle returning in Carry properly, save it in F0 if needed,
2116           (genPcall): updated assignResultValue call, this is not safe yet for bit
2117            returning function !!!
2118           (genFunction): don't generate equ's for bit registers and use pushReg,
2119           (genEndFunction): take care of bit returning functions and use popReg,
2120           (genRet): return bit in Carry,
2121           (genIfx): optimize bit registers and other directly addressable bits,
2122           (genReceive): updated assignResultValue call
2123         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2124           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2125            registers when using stack-auto
2126         * src/mcs51/ralloc.c (_G): added allBitregs,
2127           (regs8051): added the bit registers,
2128           (createStackSpil): use macro IS_BIT,
2129           (getRegBit): added to allocate a bit register, else spill,
2130           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2131           (updateRegUsage): factored out to ease stepping while debugging,
2132           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2133            also allocate bit registers,
2134           (fillGaps): handle bit registers,
2135           (findAllBitregs): added to create bit vector with all bit registers,
2136           (mcs51_allBitregs): returns this bit vector,
2137           (mcs51_assignRegisters): when using stack-auto use bit registers for
2138            passing parameters and creating local variables
2139         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2140
2141 2005-08-22 Borut Razem <borut.razem AT siol.net>
2142
2143         * device/lib/Makefile.in: replaced find option -or with -o
2144           to make it run on solaris
2145
2146 2005-08-22 Raphael Neider <rneider AT web.de>
2147
2148         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2149           fixes #1265442 (crash on Solaris)
2150
2151 2005-08-20 Borut Razem <borut.razem AT siol.net>
2152
2153         * configure, configure.in: added tests for libsocket and libnsl libraries,
2154           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2155           from support/regression/Makefile.in
2156         * support/regression/Makefile.in: added
2157         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2158         * sim/ucsim/libtool: regenerated on sparc-solaris
2159         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2160           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2161           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2162           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2163           sparc-solaris, which doesn't use GNU ld linker
2164         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2165         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2166
2167 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2168
2169         * src/mcs51/peeph.def: updated comments
2170
2171 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2172
2173         * device/lib/_gptrget.c,
2174         * device/lib/_gptrput.c: slightly shorter
2175         * doc/sdccman.lyx: incremented version
2176         * src/mcs51/peeph.def: moved peephole comments to the line of first
2177           change to better keep line correlation, reanimated 186.e
2178         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2179
2180 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2181
2182         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2183           David Saxton with quotes around file name.
2184
2185 2005-08-15 Borut Razem <borut.razem AT siol.net>
2186
2187         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2188           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2189           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2190           make tests run on x86_64 platform
2191
2192 2005-08-13 Raphael Neider <rneider AT web.de>
2193
2194         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2195           as it might be executed DURING a build (parallel make is wonderful)
2196
2197 2005-08-13 Raphael Neider <rneider AT web.de>
2198
2199         * device/lib/Makefile.in (port-specific-objects-pic16):
2200           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2201         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2202           dependency
2203         * device/lib/pic16/Makefile.rules: build subdirs before creating
2204           the library, removed builddir rule, create $(builddir) early in
2205           recurse rule, use empty recurse rule for leaf directories
2206         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2207           mkdir errors (race condition), removed duplicate suffix "hex"
2208           from clean rules
2209         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2210         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2211           prevents mkdir -p from aborting on Alpha
2212
2213 2005-08-12 Raphael Neider <rneider AT web.de>
2214
2215         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2216           db-statements in order to allow for arrays of pointers in code
2217           sections to be placed without interspersed 0-padding, fixes
2218           bug #1256215
2219         * (emitStatistics): fixed division by zero for pic18f1220
2220         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2221           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2222         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2223         * (pic16_pCodeConstString): keep track of already emitted string
2224           literals to prevent "duplicate definitions of symbol _str_NR"
2225         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2226           debug message
2227         * device/lib/Makefile.in: ignore failing PIC16 library builds
2228         * device/lib/pic16/Makefile: do not build if gputils are missing
2229         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2230
2231 2005-08-10 Raphael Neider <rneider AT web.de>
2232
2233         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2234           my last commit)
2235
2236 2005-08-10 Raphael Neider <rneider AT web.de>
2237
2238         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2239           Rokas' patch to add the new fixed point type "__fixed16x16"
2240         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2241           functions for __fixed16x16 arithmetics
2242         * device/lib/pic16: reimplemented the build system to support
2243           a separate build directory, better handling of libio (create
2244           the library in a separate subdir for each architecture) and
2245           easier configuration (centralized in Makefile.common)
2246
2247 2005-08-07 Raphael Neider <rneider AT web.de>
2248
2249         * src/pic16/gen.c (genrshTwo): fixed sign extension
2250         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2251         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2252           added T0CONbits
2253         * device/include/pic16/pic18f4220.h: NEW, header for
2254           pic18f4220 and pic18f4320
2255         * device/include/pic16/pic18fregs.h: added new devices,
2256           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2257         * device/include/pic16/signal.h: resolved name clashes
2258           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2259           to also allow testing for interrupt enable bits, added
2260           comments on how to use the macros
2261         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2262         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2263           register definitions for the devices
2264         * device/lib/pic16/pics.all: added new devices
2265         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2266           allocated memory
2267         * device/lib/pic16/libc/stdlib/memfree: do not count
2268           the block header as free memory
2269         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2270           simplified and added missing end-of-blocklist-marker
2271           (reported by Peter Onion, fixes #1252814)
2272         * (_mergeHeapBlock): fixed loop condition
2273         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2274           len==0, restructured code
2275         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2276           up a bit, reduced bitfield accesses, prevent endless loops
2277           in case of heap corruption
2278         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2279           "unreferenced arguments/must return a value" warnings
2280         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2281           replaced BAUDREG with SPBRG
2282         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2283           device/lib/pic16/debug/gstack/gstack.c: replaced
2284           _naked, _asm, _endasm with __naked, __asm, __endasm
2285
2286 2005-08-05 Raphael Neider <rneider AT web.de>
2287
2288         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2289           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2290
2291 2005-08-05 Borut Razem <borut.razem AT siol.net>
2292
2293         * device/lib/Makefile.in: added missing ';'
2294         * configure: removed ^M characters
2295
2296 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2297
2298         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2299           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2300           License
2301
2302 2005-08-04 Borut Razem <borut.razem AT siol.net>
2303
2304         * configure.in: pic16 libraries build 2nd try - enable running
2305           configure in device/lib/pic16
2306         * configure: regenerated from configure.in
2307         * device/lib/Makefile.in: create $(PORT)/bin directory
2308
2309 2005-08-03 Raphael Neider <rneider AT web.de>
2310
2311         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2312           to get/set values via pointers
2313         * (genUnpackBits,genPackBits): changed detection of
2314           ptr->bitfield vs. sym.bitfield, fixed access via generic
2315           pointers, removed dead (wrong) code for multibyte bitfields
2316         * (genNearPointerGet, genGenPointerGet): removed useless code,
2317           fixed bitfield detection, fixes #1250594
2318         * (genNearPointerSet): removed useless code
2319         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2320           and introduced macro pic16_emitpcode that conditionally emits
2321           the origin of the following pCode (useful for debugging SDCC)
2322         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2323         * (createDefmap): fixed handling of LFSR for --optimize-df
2324
2325 2005-08-02 Borut Razem <borut.razem AT siol.net>
2326
2327         * device/lib/Makefile.in: pic16 libraries build enabled since
2328           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2329
2330 2005-08-02 Raphael Neider <rneider AT web.de>
2331
2332         * src/pic16/gen.c (genPackBits): removed deprecated warning
2333         * (genGenPointerSet): fixed bitfield detection
2334
2335 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2336
2337         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2338
2339 2005-07-31 Raphael Neider <rneider AT web.de>
2340
2341         * device/lib/pic16/libdev/pic18f458.c,
2342           device/include/pic16/pic18f458.h: added missing T0CONbits
2343
2344 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2345
2346         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2347
2348 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2349
2350         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2351
2352 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2353
2354         * device/include/mcs51/at89c51ed2.h: added.
2355
2356 2005-07-23 Raphael Neider <rneider AT web.de>
2357
2358         * src/pic/gen.h: added emitpcode macro for debugging
2359         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2360           and replace by macro adding debug information on demand
2361         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2362         * (gencjne): tried to fix; replaced with correct (slower) code
2363         * (gen{Unp,P}ackBits): fixed single bit access
2364         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2365         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2366           previous instruction
2367         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2368           register has to be handled with care (forbidding movement
2369           of assignments/uses, removing assignments completely, ...)
2370         * (pCodeOptime2pCodes): make use of regIsSpecial
2371         * added lots of debugging output (commented out)
2372         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2373           from being reused as result UNLESS it is known to work
2374
2375 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2376
2377         * support/Util/dbuf.h: include <stddef.h> for size_t
2378         * .version: changed to version 2.5.2
2379
2380 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2381
2382         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2383
2384 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2385
2386         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2387           (genModOneByte): removed needless psha/pula
2388
2389 2005-07-22 Raphael Neider <rneider AT web.de>
2390
2391         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2392           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2393         * src/pic/gen.c (resolveIfx): do not "invent" labels
2394         * (genSkipc): changed to positive logic
2395         * (genSkipCond): removed as no longer needed
2396         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2397           backport from PIC16
2398         * (genLeftShift): check operands are in different registers
2399         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2400           INCF does not update CARRY...
2401         * src/pic/main.c: fixed _linkCmd
2402         * src/pic/pcode.c (unlinkpCode): added inactive code
2403         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2404           alive (do not assign result and operand overlapping registers)
2405
2406 2005-07-22 Raphael Neider <rneider AT web.de>
2407
2408         * src/pic/device.c (dump_sfr): replaced register declaration with
2409           call to emitSymbolToFile() to avoid duplicate symbols
2410         * (assignRelocatableRegisters): do not declare external symbols
2411         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2412           right (take size of type, not etype)
2413         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2414         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2415         * (packRegsForAccUse): disabled assignment of WREG as
2416           the result reg to prevent occurence of just fixed #1235003,
2417           fixes #1242954
2418         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2419           symbols (avoids duplicate symbols in .asm file)
2420         * (pic14emitRegularMap): use emitSymbolToFile()
2421         * src/pic/gen.c (aopOp): fixed spillLocation handling
2422         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2423         * (genDataPointerSet): removed unneccessary variables/output
2424
2425 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2426
2427         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2428         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2429
2430 2005-07-21 Raphael Neider <rneider AT web.de>
2431
2432         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2433           architecture cannot handle them efficiently, fixes bug #1235003
2434         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2435           check for empty sets before using them (fixes bug #1232190)
2436
2437 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2438
2439         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2440           (lnksect2): generate warnings for memory overlap
2441         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2442           constseg to set the name of these segments so you can instruct the linker
2443           to place them in banks
2444         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2445         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2446           added code_seg and const_seg to options
2447         * src/SDCCglue.c (emitMaps): use options.const_seg,
2448           (createInterruptVect): put interrupt vectors in segment HOME,
2449           (glue): put HOME before static segment and put the main glue in HOME,
2450           (glue): use options.code_seg
2451         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2452         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2453           these segments so you can instruct the linker to place them in banks
2454           (linkEdit): use code_loc for HOME segment which should be the first
2455           segment in code memory now
2456         * src/SDCCmem.c: fixed more stuff like bug 1238386
2457         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2458           (changePointer): don't change function pointers to code pointers for
2459           banked functions,
2460           (compareType): added exceptional check for banked function pointers
2461         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2462         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2463           after static in code memory
2464         * src/mcs51/gen.c: added aopLiteralLong prototype,
2465           (aopForSym): use getSize for functions,
2466           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2467           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2468           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2469           the segment,
2470           (genPcall): use call for literal function pointers and generate banked
2471           calls over the one trampoline so there's only one place for the user to
2472           modify according to his/hers hardware,
2473           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2474           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2475         * src/mcs51/main.c: added keyword banked,
2476           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2477         * support/Util/SDCCerr.c,
2478         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2479           needed for passing the bank and address to the trampoline
2480         * device/lib/mcs51/crtbank.asm: added for bankswitching
2481         * device/lib/mcs51/Makefile: added crtbank
2482
2483 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2484
2485         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2486           for fields at offset 0 of a struct or union as reported
2487           on 2005-07-07 in the developer mailing list.
2488
2489 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2490
2491         * src/SDCCmem.c: fixed bug 1238386
2492
2493 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2494
2495         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2496           (patch #1144962), added peephole 300, enabled 259.x
2497         * doc/sdccman.lyx: removed screenshot and provided link instead
2498
2499 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2500
2501         * doc/sdccman.lyx: added section about debugging with ddd
2502         * doc/figures/ddd_example.eps: screenshot of debugging session
2503
2504 2005-07-04 Raphael Neider <rneider AT web.de>
2505
2506         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2507           like CODE pointers, fixes #1115683
2508         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2509           call, fixes bugs #1232211, #1228110,
2510           fixed wrong casts to pCodeFlow from pCodeInstructions
2511
2512 2005-07-04 Raphael Neider <rneider AT web.de>
2513
2514         * src/pic/gen.c (popGet): changed assert to allow for
2515           bit operands
2516         * (popGetAddr): changed signature to provide
2517           an additional index, patched all call sites
2518         * (genCmpEq): handle literal-like operands correctly
2519         * (genAddrOf): added sanity checks on __code/__data pointers
2520         * (genAssign): added handling of symbols from __code section
2521         * (gencjne): do not generate code for comparisons whose result
2522           is neither stored nor used, fixes bug #1171114
2523         * (AccLsh, AccRsh): operate on operand instead of WREG
2524         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2525           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2526           by known count
2527         * rewrote complete shift-by-literal logic, commented unused
2528           functions out
2529         * (genConstPointerGet): get multiple bytes (if result size > 1),
2530           fixed handling of non-immediate addresses
2531         * (genPointerGet): handle CODE pointers like CONST pointers
2532         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2533         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2534           operand is to be treated as a literal or not
2535         * (mov2w,genPcall,genCmpEq),
2536           src/pic/genarith.c: use aop_isLitLike() to decide between
2537           literal/register contents
2538         * (addSign): added missing offset
2539         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2540           only emit comment in debug-mode,
2541           use {aop,op}_isLitLike throughout the file
2542         * src/pic/glue.c: fix initializers for pointers (work in progress)
2543         * src/pic/pcode.c (get_op): honor index on _const symbols
2544         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2545         * (dumppBlock): added pCode size estimation
2546         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2547           check for IS_SYMOP before OP_SYMBOL'ing
2548         * fixed indentation, compacted switch-statements
2549         * (allocReg): find free register and allocate it instead of
2550           allocating new registers all the time
2551         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2552           registers as its operands (necessary only for multibyte GETs)
2553
2554 2005-07-01 Raphael Neider <rneider AT web.de>
2555
2556         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2557           debugging .asm-output macros FENTRY + FEXIT
2558         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2559           way... I wonder...
2560         * (emitpComment): NEW, printf to pCode
2561         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2562           offset handling
2563         * (popGetAddr): NEW, variant of popGet to access an immediates
2564           high(er) bytes instead of the n'th byte of memory they reference,
2565           replaced popGet with popGetAddr where neccessary
2566         * (genDataPointerGet): reactivated and fixed implementation
2567         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2568           accesses
2569         * (genDataPointerSet): fixed multibyte assignments
2570         * (genpic14Code): fixed --i-code-in-asm handling
2571         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2572         * (genPlus): fixed index-out-of-bounds error
2573         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2574         * src/pic/ralloc.c: added debugging output macro FENTRY2
2575         * (spillThis): fixed indentation, enbraced for-body for clarity
2576         * (rematStr): commented out as now unused
2577         * (regTypeNum): commented out special spill case (overwrites
2578           arbitrary values)
2579         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2580
2581 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2582
2583         * doc/sdccman.lyx: documented sfr16/sfr32,
2584           added example for using storage class with function pointers
2585         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2586
2587 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2588
2589         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2590         * device/lib/_itoa.c,
2591         * device/lib/_ltoa.c: optimized codesize
2592         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2593           but don't know how to suppress the double warning.
2594         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2595         * support/Util/SDCCerr.c,
2596         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2597
2598 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2599
2600         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2601           fixed old K&R prototypes
2602         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2603         * device/lib/_gptrget.c,
2604         * device/lib/_gptrgetc.c,
2605         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2606           also new versions for small generic pointers and banked generic pointers
2607         * src/port.h: added const_name
2608         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2609         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2610         * src/SDCCcse.c (findPrevIc): check all associative operators
2611         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2612         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2613         * src/SDCCmem.c: updated comments,
2614           set far-space to 0 for pdata, results in optimized code
2615         * src/SDCCmem.h: added macro CONST_NAME
2616         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2617           moving the info into the highest bits, see also gptrget/gptrput
2618         * src/src.dsp: added sdcc.ico to project files
2619         * src/avr/gen.c (genCast): fixed bug 0x%d
2620         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2621         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2622           relation between ptr_type and DCL_TYPE,
2623           (genCast): fixed bug 0x%d
2624         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2625           (CODE)" for const_name
2626         * src/hc08/gen.c (genCast): fixed bug 0x%d
2627         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2628           (hc08_port): added "CONST (CODE)" for const_name
2629         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2630           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2631           between ptr_type and DCL_TYPE,
2632           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2633           operand* and took AOP() inside function so sfr-ness can be checked,
2634           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2635           new prototype,
2636           (genFunction, genEndFunction): optimized stack setup,
2637           (genMinus): optimized for literals with ending zeroes (in bytes),
2638           (genCast): fixed bug 0x%d
2639         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2640           (mcs51_port): added "CONST (CODE)" for const_name
2641         * src/mcs51/peeph.def: made rule 226 more generic
2642         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2643         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2644         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2645         * src/z80/main.c (z80_port): added NULL for const_name,
2646           (gbz80_port): added NULL for const_name
2647         * support/regression/tests/bug663539.c,
2648         * support/regression/tests/sfr16.c: new tests
2649
2650 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2651
2652         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2653
2654 2005-06-24 Raphael Neider <rneider AT web.de>
2655
2656         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2657           corrected typos...
2658         * device/include/pic16/signal.h: added USBIF
2659           and SIG_USB
2660
2661 2005-06-24 Raphael Neider <rneider AT web.de>
2662
2663         * device/lib/pic16/libdev/pic18f2455.c,
2664           device/include/pic16/pic18f2455.h: NEW
2665         * device/include/pic16/pic18fregs.h,
2666           device/lib/pic16/pics.all,
2667           src/pic16/device.c: added 18f2455
2668         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2669           device/include/pic16/{pic18f[68][567].h,usart.h}:
2670           replaced MULTIPLE_USARTS define with more relaible
2671           compatibility sfrs (for USART access)
2672
2673 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2674
2675         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2676           and the output asm file line is printed on two lines.
2677
2678 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2679
2680         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2681           BGT, BLE, BHI, and BLS instructions
2682         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2683           genCmpEq): removed
2684         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2685           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2686           fixes bug #1216342
2687         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2688
2689 2005-06-15 Raphael Neider <rneider AT web.de>
2690
2691         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2692         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2693         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2694           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2695           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2696
2697 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2698
2699         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2700           Marcel Telka in bug #1215704
2701
2702 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2703
2704         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2705           located in shared memory bank.
2706
2707 2005-05-31 Raphael Neider <rneider AT web.de>
2708
2709         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2710           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2711           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2712
2713 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2714
2715         * device/lib/_strncpy.c: fixed the fix
2716
2717 2005-05-26 Raphael Neider <rneider AT web.de>
2718
2719         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2720           initializers with \0, bug #1208187
2721         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2722           intializers with \0, bug #1208187
2723
2724 2005-05-26 Raphael Neider <rneider AT web.de>
2725
2726         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2727           initializers with \0, bug #1208187
2728         * src/pic16/main.c (_process_pragma): added sanity checks
2729           for stack position and size, emit warnings when appropriate
2730
2731 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2732
2733         * device/lib/_strncpy.c: fixed not filling with \0
2734
2735 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2736
2737         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2738           createFunction),
2739         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2740           compound_statement),
2741         * src/SDCCsymt.h,
2742         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2743
2744 2005-05-24 Raphael Neider <rneider AT web.de>
2745
2746         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2747
2748 2005-05-24 Raphael Neider <rneider AT web.de>
2749
2750         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2751           TRISE definitions, closes bug #1162453
2752
2753 2005-05-22 Raphael Neider <rneider AT web.de>
2754
2755         * src/pic16/main.c (_process_pragma): check for missing
2756           arguments to pragmas code and udata
2757         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2758           consistency fixes to match other headers (thanks to Jim Paris)
2759         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2760
2761 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2762
2763         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2764
2765 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2766
2767         * support/regression/tests/bug1198642.c: new test
2768         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2769         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2770         * support/scripts/resource.h,
2771         * support/scripts/resource.rc,
2772         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2773         * support/scripts/sdcc.ico: added 32x32 icon
2774
2775 2005-05-18 Raphael Neider <rneider AT web.de>
2776
2777         * device/lib/pic16/libdev/pic18f*.c,
2778         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2779           keywords to "__sfr" and "__at (X)"
2780         * device/include/pic16/pic18fregs.h: added pic18f4520
2781         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2782           #1203088 (MPLAB compatibility)
2783
2784 2005-05-17 Raphael Neider <rneider AT web.de>
2785
2786         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2787         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2788         * device/lib/pic16/pics.all: added new devices
2789         * src/pic16/device.c: added support for pic18f4520
2790
2791 2005-05-16 Raphael Neider <rneider AT web.de>
2792         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2793         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2794         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2795           convenience function for bit access
2796
2797 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2798
2799         * device/lib/printf_large.c: fixed bug 1193299
2800         * support/regression/tests/bug1057979.c: added test %3.3s
2801
2802 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2803
2804         * device/include/mcs51/8051.h,
2805         * device/include/mcs51/8052.h: made parseable with lint
2806         * device/include/mcs51/lint.h: added include file for (sp)lint
2807         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2808         * doc/cdbfileformat.lyx,
2809         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2810
2811 2005-05-14 Raphael Neider <rneider AT web.de>
2812
2813         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2814         * device/lib/pic16/libc/stdlib/itoa.c (new)
2815         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2816         * device/lib/pic16/libio/Makefile: exclude subdir according to
2817           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2818         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2819         * src/pic16/gen.c (genFunction): prevent annoying warning
2820         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2821           nameclashes on BeOS
2822         * support/cpp2/cppmain.c (cpp_output_string): new
2823         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2824           fixes bug 1116802
2825
2826 2005-05-13 Borut Razem <borut.razem AT siol.net>
2827
2828         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2829
2830 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2831
2832         * .version: changed to version 2.5.1; back to bleeding edge development
2833
2834 2005-05-11 Borut Razem <borut.razem AT siol.net>
2835
2836         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2837           generate PDF version 1.3 documents
2838
2839 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2840
2841         * .version: changed to version 2.5.0
2842
2843 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2844
2845         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2846
2847 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2848
2849         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2850         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2851         well as many smaller updates.
2852         * .version: changed to version 2.5.0-pre1
2853
2854 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2855
2856         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2857
2858 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2859
2860         * support/regression/tests/bug1185672.c: added
2861         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2862           bug 1185672
2863         * src/mcs51/gen.c (genCall): added comments, made it look safer
2864         * src/mcs51/gen.c (genEndFunction): simplified
2865
2866 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2867
2868         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2869
2870 2005-04-14 Borut Razem <borut.razem AT siol.net>
2871
2872         * fixed bug 1045046 - SIGSEGV with really simple code?:
2873           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2874           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2875
2876 2005-04-14 Borut Razem <borut.razem AT siol.net>
2877
2878         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2879           src/pic16/device.h: temporarily disabled experimental #inline pragma
2880           for 2.5.0 release
2881
2882 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2883
2884         * device/include/z80/stdio.h,
2885         * device/include/z80/string.h: removed these highly incomplete files so
2886           SDCC can use the default ones in device/include/
2887
2888 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2889
2890         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2891         gcc warning.
2892         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2893         fix sdcpp warnings.
2894
2895 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2896
2897         * device/include/malloc.h: removed redundant __reentrant prototypes
2898         * device/lib/_mullong.c: added working xstack variant in asm (C version
2899           doesn't pass regression tests)
2900         * device/lib/bpx.c: used __data and made bpx char for mcs51
2901         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2902           (createFunction): fixed bug with xstackPtr
2903         * src/SDCCcse.c: corrected comments
2904         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2905           (killDeadCode, eBBlockFromiCode): removed unused code
2906         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2907           corrected comments
2908         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2909           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2910           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2911           (genModOneByte): fixed warning in MSVC
2912         * src/mcs51/main.c (): added comments
2913         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2914
2915 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2916
2917         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2918
2919 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2920
2921         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2922
2923 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2924
2925         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2926         characters arrays of larger size than the declared one.
2927
2928 2005-04-10 Borut Razem <borut.razem AT siol.net>
2929
2930         * src/pic/gen.c (genInline),
2931           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2932           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2933           (findNextInstruction), (findPrevInstruction),
2934           (findInstructionUsingLabel),
2935           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2936         * src/pic/pcode.c (findLabel): added missing '\n'
2937         * src/src.dsp: added SDCCdwarf2.c to the project
2938
2939 2005-04-09 Borut Razem <borut.razem AT siol.net>
2940
2941         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2942
2943 2005-04-08 Raphael Neider <rneider AT web.de>
2944
2945         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2946           into the chain after a given one) and mergeDefmapSymbols (combine
2947           defmap entries for each symbol per pcode)
2948         * (createDefmap): have defmap entries merged in the end
2949         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2950           a symbol before replacing one access type's symbol, merge symbols in
2951           the end (replacement symbol might already have an entry)
2952         * (assignValnums): keep reference to written WREG intact
2953
2954 2005-04-08 Raphael Neider <rneider AT web.de>
2955
2956         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2957           Alpha)
2958
2959 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2960
2961         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2962         bytes
2963
2964 2005-04-07 Raphael Neider <rneider AT web.de>
2965
2966         * device/include/pic16/usart.h: added compatibility defines for
2967           devices with more than one USART
2968         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2969
2970 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2971
2972         * device/lib/Makefile.in: updated for port specific include
2973
2974 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2975
2976         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2977
2978 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2979
2980         * device/include/8051.h,
2981         * device/include/8052.h,
2982         * device/include/at89S8252.h,
2983         * device/include/at89c55.h,
2984         * device/include/at89x051.h,
2985         * device/include/at89x51.h,
2986         * device/include/at89x52.h,
2987         * device/include/mcs51reg.h,
2988         * device/include/reg51.h,
2989         * device/include/reg764.h,
2990         * device/include/regc515c.h,
2991         * device/include/sab80515.h: (re)moved these 12 files
2992         * device/include/mcs51/8051.h,
2993         * device/include/mcs51/8052.h,
2994         * device/include/mcs51/at89S8252.h,
2995         * device/include/mcs51/at89c55.h,
2996         * device/include/mcs51/at89x051.h,
2997         * device/include/mcs51/at89x51.h,
2998         * device/include/mcs51/at89x52.h,
2999         * device/include/mcs51/mcs51reg.h,
3000         * device/include/mcs51/reg51.h,
3001         * device/include/mcs51/reg764.h,
3002         * device/include/mcs51/regc515c.h,
3003         * device/include/mcs51/sab80515.h: and added them here
3004
3005 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3006
3007         * device/include/stdarg.h: changed SDCC specific keywords to double
3008           underlined form.
3009         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3010           mcs51 and ds390.
3011         * device/include/hc08/mc68hc908gp32.h,
3012         * device/include/hc08/mc68hc908jb8.h,
3013         * device/include/hc08/mc68hc908jkjl.h,
3014         * device/include/hc08/mc68hc908qy.h: fixed comments
3015         * device/include/mcs51/README: updated
3016         * device/include/mcs51/c8051f120.h: added PINRSF
3017         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3018         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3019           amidst code. Also inline is not supported.
3020
3021 2005-04-06 Raphael Neider <rneider AT web.de>
3022
3023         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3024         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3025           callers stack/frame pointers
3026
3027 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3028
3029         * device/include/pic16/usart.h: added, missing in previous commit,
3030         * device/include/pic16/adc.h: fixed typo,
3031         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3032         commit,
3033         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3034         <p18fxxx.inc>
3035         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3036         uninitialized because a bug appears with gplink
3037         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3038         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3039         complains for unrecognised option
3040
3041 2005-04-05 Raphael Neider <rneider AT web.de>
3042
3043         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3044           structs as well (using memcpy)
3045         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3046           on ISRs (GOTO has no label)
3047         * src/pic16/device.h: added OF_OPTIMIZE_DF
3048         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3049           new data flow analysis/optimization
3050         * src/pic16/pcode.c: added (prototypes for and implementation of)
3051           dataflow analysis functions, fixed pCodeInstructions' inCond and
3052           outCond values, made RCALL a branch instruction
3053         * (pic16_unlinkpCode): keep C line if possible
3054         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3055           C line moved if possible
3056         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3057         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3058           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3059         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3060           new flow)
3061         * (pic16_getJumptabpCode): NEW, needed in...
3062         * (LinkFlow): fixed handling of jumptables, calls and conditional
3063           branches
3064         * (pic16_InsertCommentAfter): NEW
3065         * (pic16_pCodeReplace): made verbose and flow preserving
3066         * (AnalyzeFlow): added call to data flow analysis
3067         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3068         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3069         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3070
3071 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3072
3073         * src/SDCCast.c (decorateType): fixed bug #1105626
3074
3075 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3076
3077         * device/include/asm/pic16/features.h,
3078         * pic18f*.h headers,
3079         * device/include/pic16/adc.h,
3080         * device/include/pic16/delay.h,
3081         * device/include/pic16/i2c.h,
3082         * device/include/pic16/malloc.h,
3083         * device/include/pic16/stdio.h,
3084         * device/include/pic16/stdlib.h,
3085         * device/include/pic16/string.h,
3086         * device/lib/pic16/libc/stdio/printf_tiny.c,
3087         * device/lib/pic16/libc/stdio/printf_small.c,
3088         * device/lib/pic16/libc/stdio/strmgpsim.c,
3089         * device/lib/pic16/libc/stdio/strmmssp.c,
3090         * device/lib/pic16/libc/stdio/strmusart.c,
3091         * device/lib/pic16/libc/stdio/vfprintf.c,
3092         * device/lib/pic16/libc/stdlib/ltoa.c,
3093         * device/lib/pic16/libc/stdlib/putchar.c,
3094         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3095         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3096         * device/lib/pic16/libc/stdlib/memchrram.c,
3097         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3098         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3099         * device/lib/pic16/libio/adc/adcbusy.c,
3100         * device/lib/pic16/libio/adc/adcread.c,
3101         * device/lib/pic16/libio/adc/adcsetch.c,
3102         * device/lib/pic16/libio/usart/ubaud.c,
3103         * device/lib/pic16/libio/usart/ubusy.c,
3104         * device/lib/pic16/libio/usart/udrdy.c,
3105         * device/lib/pic16/libio/usart/uopen.c,
3106         * device/lib/pic16/libio/usart/uputc.c,
3107         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3108         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3109         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3110         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3111         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3112         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3113         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3114         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3115         specific keywords to double underlined form,
3116         * device/lib/pic16/libc/Makefile.rules,
3117         * device/lib/pic16/libsdcc/Makefile.rules,
3118         * device/lib/pic16/libm/Makefile,
3119         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3120         to compile with C standard set in Makefile.common
3121         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3122         rand.c and crc.c in compilation process,
3123         * device/lib/pic16/libsdcc/int/divuint.c,
3124         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3125         `c' from signed to unsigned,
3126         * device/lib/pic16/startup/crt0.c,
3127         * device/lib/pic16/startup/crt0i.c,
3128         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3129         keywords to double underlined form, bug fixes in _do_cinit function
3130         which prevented the correct initialization of the .idata segment,
3131         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3132         core to enter a infinite loop
3133         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3134
3135 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3136
3137         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3138
3139 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3140
3141         * device/include/Makefile.in: add support for hc08 subdirectory
3142         * device/include/hc08/: new subdirectory
3143         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3144         Lucas Loizaga, thanks!
3145         * device/include/hc08/mc68hc908qy.h,
3146         * device/include/hc08/mc68hc908gp32.h,
3147         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3148         their own directory. Changed internal macro names to use the compiler
3149         reserved namespace. Changed SDCC specific keywords to double
3150         underlined form.
3151         * device/include/math.h,
3152         * device/include/malloc.h,
3153         * device/include/stdarg.h,
3154         * device/include/stdbool.h
3155         * device/include/string.h,
3156         * device/include/tinibios.h,
3157         * device/include/ds400rom.h,
3158         * device/include/8051.h,
3159         * device/include/8052.h,
3160         * device/include/80c51xa.h,
3161         * device/include/at89c55.h,
3162         * device/include/at89S8252.h,
3163         * device/include/at89x51.h,
3164         * device/include/at89x52.h,
3165         * device/include/ds80c390.h,
3166         * device/include/reg764.h,
3167         * device/include/regc515c.h,
3168         * device/include/sab80515.h,
3169         * device/include/mcs51/c8051f000.h,
3170         * device/include/mcs51/c8051f018.h,
3171         * device/include/mcs51/c8051f020.h,
3172         * device/include/mcs51/c8051f040.h,
3173         * device/include/mcs51/c8051f060.h,
3174         * device/include/mcs51/c8051f120.h,
3175         * device/include/mcs51/c8051f300.h,
3176         * device/include/mcs51/c8051f310.h,
3177         * device/include/mcs51/c8051f320.h,
3178         * device/include/mcs51/c8051f330.h,
3179         * device/include/mcs51/c8051f350.h,
3180         * device/include/z180.h: Changed SDCC specific keywords to double
3181         underlined form.
3182
3183 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3184
3185         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3186         18F4455,
3187         * (pic16_assignConfigWordValue): disable testing of configuration
3188         register value with config mask,
3189         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3190         function with port->fun_prefix,
3191         * (genFunction): when generating a naked interrupt function never
3192         create an absolute segment placed in interrupt vector address, place
3193         the actual interrupt function at IVA instead, when an interrupt
3194         function is generated with unspecified interrupt then do not create
3195         the absolute section,
3196         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3197         code for generating a call to generic pointer get/put function with
3198         a call to function pic16_callGenericPointer(),
3199         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3200         the call to the generic pointer get/put functions with prefixing the
3201         function name with port->fun_prefix,
3202         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3203         * src/pic16/main.c (_process_pragma): prefix function with
3204         port->fun_prefix,
3205         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3206         calling assembler, old 18Fxxxx macro is deprecated,
3207         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3208         PC_ASMDIR in while condition,
3209         * (findInstruction): add PC_ASMDIR in while condition,
3210         * (buildCallTree): prefix main with port->fun_prefix,
3211         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3212         identifier for variable with banked access in instructions BTFSS,
3213         BTFSC, BCF, BSF, BTG
3214         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3215         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3216         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3217         perform optimization when enviroment variable NO_REG_OPT is set,
3218         * (insideLRBlock): NEW, return 1 if register is inside an
3219         INF_LOCALREGS block,
3220         * (RemoveRegFromLRBlock): remove a register that is completely
3221         eliminated by register optimization, but it is still left in local
3222         register store/restore in/from stack block,
3223         * (Remove2pcodes): after removing register, check to see if it
3224         should be removed from local register store/restore in/from stack
3225         block,
3226         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3227         DUMMY_READ_VOLATILE,
3228
3229         * device/include/pic16/adc.h: minor prototype modifications and
3230         update,
3231         * device/include/pic16/malloc.h: added GPL notice various
3232         modifications,
3233         * device/include/pic16/stdint.h: NEW, standard header for ints
3234         * device/include/pic16/delay.h: NEW, header for delay functions,
3235         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3236         delay1mtcy,
3237         * device/include/pic16/signal.h: NEW, header providing helper macros
3238         for implementing signal handlers,
3239         * device/include/pic16/stdio.h: added prototypes for functions,
3240         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3241         prototypes for stdin and stdout, added macro PUTCHAR to
3242         automatically implement putchar function prototype,
3243         * device/include/pic16/usart.h: modified and updated USART library,
3244         * device/lib/pic16/libio/adc/,
3245         * device/lib/pic16/libio/i2c: some modifications to improve library
3246         performance,
3247         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3248         family of functions,
3249         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3250         family of functions and other sources,
3251         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3252         of the PIC18Fxx[28] devices,
3253         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3254         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3255         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3256         _do_cinit function, because the previous failed when local variables
3257         where not placed in the same memory bank,
3258         * device/lib/pic16/libsdcc/char/: various modifications to improve
3259         library performance,
3260         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3261         information on the new functions of the c library and more...
3262
3263 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3264
3265         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3266
3267 2005-03-26 Raphael Neider <rneider AT web.de>
3268
3269         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3270           if condition == CARRY)
3271         * (genCmp): adapted to new genSkipc semantics
3272         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3273           on rIfx (genCmp was broken)
3274
3275 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3276
3277         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3278         * src/z80/main.c (_keywords[]),
3279         * src/SDCCglobal.h (struct options),
3280         * src/SDCC.y,
3281         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3282         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3283         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3284         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3285         always available in leading double underscore form. The C99 support is
3286         mostly missing, but it's a start.
3287         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3288         reserved identifier "__data".
3289
3290 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3291
3292         * src/mcs51/peeph.def: fixed bug 1170013
3293
3294 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3295
3296         * device/include/mcs51reg.h: fixed bug 842007
3297
3298 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3299
3300         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3301         last time.
3302
3303 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3304
3305         * src/port.h (struct PORT),
3306         * src/avr/ralloc.c (avr_assignRegisters),
3307         * src/avr/main.c,
3308         * src/ds390/ralloc.c (ds390_assignRegisters),
3309         * src/ds390/main.c,
3310         * src/hc08/ralloc.c (hc08_assignRegisters),
3311         * src/hc08/main.c,
3312         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3313         * src/mcs51/main.c,
3314         * src/pic/ralloc.c (pic14_assignRegisters),
3315         * src/pic/main.c,
3316         * src/pic16/ralloc.c (pic16_assignRegisters),
3317         * src/pic16/main.c,
3318         * src/xa51/ralloc.c (xa51_assignRegisters),
3319         * src/xa51/main.c,
3320         * src/z80/ralloc.c (z80_assignRegisters),
3321         * src/z80/ralloc.h,
3322         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3323         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3324         * src/SDCCcse.h,
3325         * src/SDCCdflow.c (computeDataFlow),
3326         * src/SDCCdflow.h,
3327         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3328         * src/SDCCloop.h,
3329         * src/SDCCcflow.c (*),
3330         * src/SDCCcflow.h,
3331         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3332         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3333         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3334         immedDom() returning wrong block; probably fixes bug #1160833)
3335
3336 2005-03-20 Borut Razem <borut.razem AT siol.net>
3337
3338         * support/scripts/inc2h.pl: WIN32 port
3339
3340 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3341
3342         * device/lib/makefile.in: added abs.c and labs.c
3343
3344 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3345
3346         * device/include/stdint.h: added
3347         * device/lib/abs.c: added
3348         * device/lib/labs.c: added
3349         * device/include/stdlib.h: added abs() and labs() prototypes
3350         * device/lib/libsdcc.lib: added abs and labs
3351         * device/include/float.h,
3352         * device/lib/_fsmul.c,
3353         * device/lib/printf_fast.c,
3354         * device/lib/printf_tiny.c: updated comments
3355
3356 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3357
3358         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3359         bug #1164313
3360
3361 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3362
3363         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3364         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3365
3366 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3367
3368         * device/lib/printf_large.c: removed inline assembly for portability and
3369           readability. Use printf_fast if speed or size are more important.
3370         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3371         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3372
3373 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3374
3375         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3376         prevent compiler warning
3377
3378 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3379
3380         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3381         moved to level 0 and declared as static. Also they are explicit
3382         placed in access bank. This was necessery because some times they
3383         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3384         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3385         optimizations. Currently only compare to unsigned char is implemented,
3386         * src/pic16/gen.c: added fReturnIdx array,
3387         * (struct resolvedIfx) is moved to gen.h and made public,
3388         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3389         * (aopForSym): added an optimization to directly store in stack of
3390         the operand of a SEND iCode,
3391         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3392         but as registers instead (AOP_REG) using the fReturnIdx array,
3393         * (pic16_freeAsmop): remove the freed register from the
3394         _G.sregsAlloc field,
3395         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3396         a compare of 'WREG',
3397         * (pic16_popGetTempRegCond): changed function prototype, now
3398         function takes also a bitVector argument v which holds the current
3399         set of registers that are allocated for stack access by aopForSym,
3400         registers allocated in aopForSym for accessing stack symbols are not
3401         any more part of the functions usedRegs field,
3402         * (genCall): some times aopOp is called for a stack variable to be
3403         send, aopForSym might perform the push, if this is true make sure
3404         that genCall doesn't push the variable twice by testing _G.resDirect,
3405         * (genFunction): changed testing for unspecified interrupt number
3406         from 256 to INTNO_UNSPEC,
3407         * modified selection scheme of frame pointer generation. Previously
3408         if function did use local registers a frame pointer was generated,
3409         now a frame pointer is generated only if function has arguments
3410         (that need PLUSW2 register access), or has stack arguments, or the
3411         compiler is not instructed to omit the frame pointer,
3412         * (genEndFunction): before restoring local registers that were saved
3413         in the function preamble, also restore the registers that *might*
3414         have been allocated for stack access,
3415         * (genRet): removed some old comments,
3416         * (genCmp, the active (RN's) version): added a call to the
3417         pic16_genCmp_special function to perform the compare with a more
3418         robust and optimized way,
3419         * (genInline): a feature has been added in inline code generation,
3420         which allows a wildcard variable substitution when writing inline
3421         assembly. Code is incomplete and experimental therefore undocumented,
3422         * (genCast): changed order of aopOp for result and right to allow
3423         aopForSym to directly load the result if possible,
3424         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3425         perform an optimized compare on some selected special occasions,
3426         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3427         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3428         generate an IVT any more,
3429         * src/pic16/main.c (pic16_optionsTable): added command line option
3430         --optimize-cmp,
3431         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3432         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3433         macros,
3434         * src/pic16/NOTES: Raphael Neider added in list of active developers
3435         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3436         jumptable_end to prevent bug #,
3437         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3438         inCond and outCond fields,
3439         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3440         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3441         turn off register spilling,
3442         * (packRegsForOneUse): synced with other ports' versions although it
3443         is not used currently,
3444         * (pic16_packRegisters): added an optimization while reading
3445         structure bitfields, some registers may be saved (malloc code is
3446         decreased by 80 bytes)
3447
3448 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3449
3450         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3451         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3452         this can be optimized more?
3453
3454 2005-03-10 Raphael Neider <rneider AT web.de>
3455
3456         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3457           genNearPointerGet): (hopefully) fixed access to bitfields via
3458           pointers (p->bitN = x; and x = p->bitN; failed)
3459
3460 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3461
3462         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3463
3464 2005-03-09 Raphael Neider <rneider AT web.de>
3465
3466         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3467
3468 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3469
3470         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3471         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3472           (regTypeNum): set REG_BIT type if necessary
3473         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3474         * support/regression/tests/critical.c: check bug 1144613
3475
3476 2005-03-02 Raphael Neider <rneider AT web.de>
3477
3478         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3479
3480 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3481
3482         * src/avr/ralloc.c (serialRegAssign),
3483         * src/ds390/ralloc.c (serialRegAssign),
3484         * src/hc08/ralloc.c (serialRegAssign),
3485         * src/mcs51/ralloc.c (serialRegAssign),
3486         * src/pic/ralloc.c (serialRegAssign),
3487         * src/pic16/ralloc.c (serialRegAssign),
3488         * src/xa51/ralloc.c (serialRegAssign),
3489         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3490
3491 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3492
3493         * src/SDCCast.c (decorateType): fixed bug 1124787
3494
3495 2005-02-20 Hubert Sack <sack AT digiplan.de>
3496         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3497
3498         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3499         patch #1121755
3500
3501 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3502
3503         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3504         to keep the correct label reference count when adding/removing references
3505         to labels. A peephole file using this is appended to patch #1144962.
3506
3507 2005-02-14 Raphael Neider <rneider AT web.de>
3508
3509         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3510         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3511         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3512           retrievals of result operand's value on assignment
3513
3514 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3515
3516         * device/include/pic16/string.h: modified prototype for memccpy()
3517         to memccpy(void *, void *, char, size_t)
3518         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3519         check whether to omit frame pointer or not,
3520         * (genInline): convert all occurences of "\n" to LF in inline
3521         assembler blocks, this helps formatting the inline text,
3522         * (pic16_loadFSR0): modified prototype,
3523         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3524         removed some 8051 legacy code,
3525         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3526         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3527         before allocating temporary registers in functions,
3528
3529 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3530
3531         * support/regression/tests/bitvars.c: corrected the "fix"
3532
3533 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3534
3535         * support/regression/tests/bitvars.c,
3536         * support/regression/tests/bitwise.c,
3537         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3538
3539 2005-02-10 Raphael Neider <rneider AT web.de>
3540
3541         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3542           different size for Alpha
3543         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3544
3545 2005-02-09 Raphael Neider <rneider AT web.de>
3546
3547         * src/SDCC.lex(doPragma) : save and restore warning options as well
3548           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3549         * have #pragma less_pedantic set the errorlevel to WARNING
3550           (fixes #1117001)
3551         * (cloneOptimize) : fixed wrong malloc's size
3552         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3553           facilitate correct handling of #pragma (save|restore)
3554
3555 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3556
3557         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3558
3559 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3560
3561         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3562
3563 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3564
3565         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3566
3567 2005-02-02 Raphael Neider <rneider AT web.de>
3568
3569         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3570         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3571         * (pic16_storeForReturn): fixed to allow returning function pointers
3572         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3573         * device/include/pic16/{stddef.h,stdbool.h}: added
3574
3575 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3576
3577         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3578
3579 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3580
3581         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3582         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3583          appeared to be required
3584
3585 2005-01-31 Borut Razem <borut.razem AT siol.net>
3586
3587         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3588           include/mcs51 and include/z80 directories to the package
3589
3590 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3591
3592         * src/hc08/gen.c (genFunction): fixed bug #1112752
3593
3594 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3595
3596         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3597
3598 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3599
3600         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3601
3602 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3603
3604         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3605
3606 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3607
3608         * device/include/c8051fxxx.h: removed these 6 files
3609         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3610
3611 2005-01-26 Raphael Neider <rneider AT web.de>
3612
3613         * src/pic16/gen.c (genAssign): fixed assignment from longs
3614           in codespace (were cut to three bytes)
3615         * (genDummyRead): implemented (except for CODESPACE...),
3616           fixed bug #1108575
3617         * src/pic16/glue.c (emitStatistics): beautified
3618         * device/lib/pic16/libm/Makefile: added include path
3619
3620 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3621
3622         * src/z80/gen.c (aopPut): fixed bug #1103902
3623
3624 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3625
3626         * device/lib/expf.c: fixed bug #1095792
3627
3628 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3629
3630         * device/lib/pic16/libm: added Math library sources
3631
3632 2005-01-24 Raphael Neider <rneider AT web.de>
3633
3634         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3635           to enable upcast to pCodeOpReg2 (there is no type tag to
3636           differenciate the two and pic16_popGet2p cast into PCOR2)
3637         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3638           (sizeof(sectNames) changed to sizeof(sectName))
3639           Both patches fix segfaults under MinGW.
3640
3641 2005-01-23 Raphael Neider <rneider AT web.de>
3642
3643         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3644           Safe_[mc]?alloc()'ed variables
3645         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3646           of (byte sized) temporaries (assign them to WREG for now)
3647         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3648           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3649           this might fix SIGSEGVs on MinGW...
3650         * src/SDCCopt.c (killDeadCode): restored original behaviour
3651           (volatile operands might get thrown away though)
3652
3653 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3654
3655         * src/pic16/gen.c: fixed bug #1106975,
3656         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3657         pointer update, INTCON is saved, global interrupts are disabled and
3658         restored after updateing TOS.
3659         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3660         * added function attribute 'shadowregs' to take advantage of shadow
3661         registers,
3662         * added function attribute 'wparam' as an alternative to the wparam
3663         pragma,
3664         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3665         user declares a non-ISR function as 'shadowregs',
3666         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3667
3668 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3669
3670         * .version: bumped version number to 2.4.8
3671         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3672         pic16 port,
3673         * device/lib/pic16/libio/i2c/: I2C module support library,
3674         * device/include/pic16/i2c.h: I2C support library header,
3675         * device/lib/pic16/libc/stdio/: standard IO support sources,
3676         * (printf_small.c): printf_small() source, supports float print,
3677         * (printf_tiny.c): printf_tiny() source, does not support floats,
3678         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3679         enable global optimizations for entire library source, other
3680         Makefiles in the source tree are also modified to reflect this,
3681         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3682         function,
3683         * doc/sdccman.lyx: updated to reflect new changes,
3684         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3685         sym->onStack if-case,
3686         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3687         sbit, idata, _idata, xdata, _xdata,
3688         * added pragma library, to link an external library, (see doc),
3689         * removed command line options, --pomit-config-words, --pomit-ivt,
3690         --pleave-reset-vector,
3691         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3692         when calling assembler to reflect memory model used, also define
3693         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3694         reflect stack model used,
3695         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3696         on stack return NULL,
3697
3698 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3699
3700         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3701           of the operands is volatile. Fixes #1020220
3702
3703 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3704
3705         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3706         * (OptimizeRegUsage): make sure that there is really no other flow where
3707           the first pCode is used
3708
3709 2005-01-22 Raphael Neider <rneider AT web.de>
3710
3711         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3712           to fix #1106967 (pCode->seq are not set up correctly)
3713
3714 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3715
3716         * src/SDCCglue.c (glue): make sure code area is declared before the
3717         static initialization area.
3718
3719 2005-01-21 Raphael Neider <rneider AT web.de>
3720
3721         * device/lib/Makefile.in: fixed test for pic16 install dir
3722         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3723           optimizations
3724         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3725           added --optimize-goto compiler switch and pragma wparam documentation
3726         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3727         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3728           and PRODH closing bug #1071770 (peephole optimizer)
3729
3730 2005-01-19 Raphael Neider <rneider AT web.de>
3731
3732         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3733           cmdLine buffers (used when calling sdcpp...) are large enough
3734           (MAX_PATH=256 truncates arguments leading to system halts when
3735           used in MinGW...)
3736         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3737         * (genUminus): rewritten to for efficiency
3738         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3739           used uninitialized in some cases)
3740         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3741           copy the third byte from the int -- now assumes 0x80 (data memory)
3742         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3743           operands (genAddLit expects the iCode's operands to swapped as
3744           well), fixed leftover bytes (crashed for short left operands)
3745         * (pic16_genMinusDec): performance improvements, removed false
3746           PIC14 emitSKPNCs
3747         * (pic16_genMinus): fixed to cope with differently sized operands
3748         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3749           for --obanksel > 1
3750         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3751         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3752           new banksel optimization
3753         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3754           analysis for temporary registers (segfaults...)
3755         * src/pic16/peeph.def: added rule
3756
3757 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3758
3759         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3760         which converts a float number to its ASCII representation
3761         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3762         functions to convert the fractional and integer part of a float to ASCII,
3763         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3764         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3765         ram
3766         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3767         _STATMEM macros,
3768         * device/include/pic16/adc.h: added GPL info,
3769         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3770         a pCodeOp as tested operand,
3771         * (genNearPointerGet): optimized bit testing, does not use
3772         intermediate register for bit value, test directly instead with
3773         BTFSS, BTFSC, works only for single bits,
3774         * (genpic16Code): dump the name of the iCode in the asm,
3775         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3776         renamed to pic16_decodeOp,
3777         * (serialRegAssign): do not allocate a temporary register for iCode
3778         sequences that test a single bit for 1/0
3779
3780 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3781
3782         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3783         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3784         access stack and frame pointers. They are initially assigned to
3785         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3786         accessing SFRs. Updated all occurences of modification of stack or
3787         frame pointer in gen.c and pcode.c,
3788         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3789         assigning of a literal value to pointers,
3790         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3791         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3792         selected
3793
3794 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3795
3796         * doc/sdccman.lyx: update documentation about stack pragma, added
3797         some info for stack memory models
3798
3799 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3800
3801         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3802
3803 2005-01-08 Raphael Neider <rneider AT web.de>
3804
3805         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3806           udata sections to fix bug #1097823
3807
3808 2005-01-05 Raphael Neider <rneider AT web.de>
3809
3810         * src/pic16/gen.c (genGenericShift): added handling of differently
3811           sized left operand and result
3812
3813 2005-01-04 Raphael Neider <rneider AT web.de>
3814
3815         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3816         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3817           to hold the condition bit)
3818         * added new version of genCmp (old code available via #define)
3819         * added new version of genShiftLeft/genShiftRight in a generic
3820           way, now supports shifting by negative values
3821         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3822           shiftCount (expected by genGenericShift)
3823         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3824         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3825           dump
3826         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3827           is an invalid literal too...)
3828
3829 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3830
3831         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3832         from Raphael Neider,
3833         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3834         for 8-bit literals. This fixes some literal operands which are sign
3835         extended to 16-bits ints when instruction needs only 8-bits.
3836
3837 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3838
3839         * device/lib/logf.c: added mcs51 assembly version
3840         * device/lib/expf.c: added mcs51 assembly version
3841         * device/lib/_logexpf.c: new shared asm code for expf and logf
3842         * device/include/math.h: add defines for assembly math library
3843         * device/lib/Makefile.in: build new _logexpf.c
3844         * device/lib/libfloat.lib: use new _logexpf.c
3845
3846 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3847
3848         * src/pic/device.c
3849         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3850           device types which have less than 0x7f registers.
3851
3852 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3853
3854         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3855
3856 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3857
3858         * device/lib/printf_fast.c: only build on supported arch.
3859         * device/lib/printf_tiny.c: only build on supported arch.
3860         * device/lib/printf_fast_f.c: only build if asm float lib
3861         * device/lib/_fsget1arg.c: only build if asm float lib
3862         * device/lib/_fsget2args.c: only build if asm float lib
3863         * device/lib/_fsnormalize.c: only build if asm float lib
3864         * device/lib/_fsreturnval.c: only build if asm float lib
3865         * device/lib/_fsrshift.c: only build if asm float lib
3866         * device/lib/_fsswapargs.c: only build if asm float lib
3867         * device/include/stdio.h: don't provide print_fast,
3868           print_fast_f, print_tiny prototypes if --xstack used
3869
3870 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3871
3872         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3873         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3874           to the SOURCES
3875
3876 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3877
3878         * device/lib/printf_fast_f.c: same as printf_fast, but
3879           with floating point enabled
3880         * device/lib/printf_fast.c: minor tweaks
3881         * device/include/stdio.h: add printf_fast_f
3882
3883 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3884
3885         * src/SDCCmain.c: make --float-reent default for mcs51
3886         * device/lib/_fsadd.c: added mcs51 assembly version
3887         * device/lib/_fssub.c: added mcs51 assembly version
3888         * device/lib/_fsmul.c: added mcs51 assembly version
3889         * device/lib/_fsdiv.c: added mcs51 assembly version
3890         * device/lib/_fseq.c: added mcs51 assembly version
3891         * device/lib/_fsneq.c: added mcs51 assembly version
3892         * device/lib/_fsgt.c: added mcs51 assembly version
3893         * device/lib/_fslt.c: added mcs51 assembly version
3894         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3895         * device/lib/Makefile.in: add _fscmp to build
3896         * device/lib/libfloat.lib: add _fscmp to build
3897
3898 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3899
3900         * device/lib/_fs2slong.c: added mcs51 assembly version
3901         * device/lib/_fs2sint.c: added mcs51 assembly version
3902         * device/lib/_fs2schar.c: added mcs51 assembly version
3903         * device/lib/_fs2ulong.c: added mcs51 assembly version
3904         * device/lib/_fs2uint.c: added mcs51 assembly version
3905         * device/lib/_fs2uchar.c: added mcs51 assembly version
3906         * device/lib/_slong2fs.c: added mcs51 assembly version
3907         * device/lib/_sint2fs.c: added mcs51 assembly version
3908         * device/lib/_schar2fs.c: added mcs51 assembly version
3909         * device/lib/_ulong2fs.c: added mcs51 assembly version
3910         * device/lib/_uint2fs.c: added mcs51 assembly version
3911         * device/lib/_uchar2fs.c: added mcs51 assembly version
3912         * device/include/float.h: added #define to select asm vs c
3913
3914 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3915
3916         * device/lib/printf_fast.c: improvements to float output
3917         * device/include/float.h: add defines for assembly float library
3918         * device/lib/_fsget1arg.c: receive 1 float arg
3919         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3920         * device/lib/_fsnormalize.c: normalize a float
3921         * device/lib/_fsreturnval.c: return float, various helper routines
3922         * device/lib/_fsrshift.c: right shift a float's mantissa
3923         * device/lib/_fsswapargs.c: swap 2 floats
3924         * device/lib/Makefile.in: build these 6 new files for mcs51
3925         * device/lib/libfloat.lib: add these 6 files to the library
3926
3927 2004-12-26 Borut Razem <borut.razem AT siol.net>
3928
3929         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3930           built by gcc 3.4.2
3931
3932 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3933
3934         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3935           and fully reentrant and register bank neutral.
3936         * device/lib/printf_fast.c: added float (not enabled by default),
3937           added compact/slower integer (also not enabled by default),
3938           improved size/speed of fast integer code, other minor changes
3939         * device/include/stdio.h, device/lib/Makefile.in,
3940           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3941
3942 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3943
3944         * src/pic16/pcode.c: declaring variables other than at the start of a
3945           block is not supported in C by VC6.
3946
3947 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3948
3949         * applied a previous patch from Raphael Neider that wasn't included
3950         in the previous commits, which fixes infinite loops within jumptable
3951         improvements,
3952         * made some fixes that previous patches introduced
3953
3954 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3955
3956         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3957         that fixes an issue with AOP_PCODE asmop's offset,
3958         * (pic16_popCopyReg): update instance field too,
3959         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3960         function of pic port,
3961         * (genCmp, genAnd, genAssign),
3962         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3963
3964 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3965
3966         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3967         variables initial values to idata section,
3968         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3969         variables in some functions. This utilizes parmBytes field of iCode
3970         structure to hold the offset of the variable in stack. (might be
3971         able to use the stack field too?)
3972         * applied patch from Raphael Neider # ### , # ###
3973         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3974         variable initial values in idata section,
3975         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3976         for static variables with initial value
3977         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3978         applied fix in while loop from Raphael Neider.
3979
3980 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3981
3982         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3983         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3984         * src/ds390/ralloc.c (serialRegAssign): spill bits
3985         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3986         * support/Util/SDCCerr.c,
3987         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3988         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3989         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3990
3991 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3992
3993         * device/include/sdcc-lib.h: inserted LGPL, added includes
3994           asm/ds390/features.h and asm/mcs51/features.h
3995         * device/include/asm/default/features.h,
3996         * device/include/asm/gbz80/features.h,
3997         * device/include/asm/z80/features.h: added empty _AUTOMEM
3998           and _STATMEM
3999         * device/include/asm/ds390/features.h,
4000         * device/include/asm/mcs51/features.h: added files with defines for
4001           _AUTOMEM and _STATMEM indicating automatic and static storage class
4002         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4003         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4004         * src/SDCCicode.c (geniCodeCast),
4005         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4006         * src/SDCCloop.c (loopInduction): removed unused variable lr
4007         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4008           to convertToFcall to include char modulo (RFE 1065037), added check
4009           if left operand is unsigned and use abs of literal value
4010         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4011           as it doesn't work after conversion from peephole.def to peephole.rul
4012         * src/mcs51/gen.c (toBoolean): added check for size,
4013           (genModOneByte): optimized code for signed char modulo a literal
4014           power of 2 (thanks to Hubert Sack),
4015           (genRRC): removed unnecessary "clr c",
4016           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4017         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4018           jump optimization,
4019           swapped rules 256.c and 256.d,
4020           extended 256.d by using new multiple checks (thanks Erik),
4021           added rules 256.e and 256.f,
4022           updated rule 261.a and 261.b to new generated code
4023         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4024
4025 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4026
4027         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4028           induction related bugs, including first part of bug #1074377
4029
4030 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4031
4032         * applied patch from bug-report #1076292,
4033         * applied patches for genAnd and Goto-optimizations for Raphael
4034         Neider,
4035         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4036         dump a less iCode information,
4037         * src/pic16/device.h (pic16_options_t): added field debgen,
4038         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4039         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4040         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4041         puclic,
4042         * (various functions): added macros FENTRY and FENTRY2 to functions,
4043         to emit function prologue,
4044         * (various functions): fixed indentation,
4045         * (genNearPointerGet): fixed loading of FSR0,
4046         * (genPackBits): applied patch from Raphael Neider to fix updating
4047         of FSR0 and touching only the modified bits,
4048         * src/pic16/genarith.c (various functions): added macros FENTRY to
4049         emit function prologue in comments,
4050         * src/pic16/pcode.h: added functions debugf2, debugf3,
4051         * src/pic16/ralloc.c: partial fix for packForPush caused
4052         segmentation fault,
4053
4054 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4055
4056         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4057           <stsp AT users.sourceforge.net> with reversed byte order
4058         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4059
4060 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4061
4062         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4063           bug #1074377
4064         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4065         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4066
4067 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4068
4069         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4070
4071 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4072
4073         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4074           conditions,
4075           (setFromConditionArgs): friendly operand parser for peephole rules,
4076           (operandBaseName, operandsNotRelated): new peephole condition
4077           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4078           architecture specific register naming into account, handles n-way
4079           comparisons, and supports quoted literals
4080         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4081
4082 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4083
4084         * src/mcs51/peeph.def: fixed bug #1076940
4085
4086 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4087
4088         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4089
4090 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4091
4092         Adding support for replacing ljmps with sjmps in jumptables
4093         generated for switch statements. For now you need to set the
4094         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4095         Now 4 algorithms for mcs51 jumptable generation are used:
4096         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4097         addresses loaded pc-relative for up to 112 cases and stack-pushing
4098         target addresses loaded with offset from dptr for up to 256 cases.
4099
4100         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4101         * src/mcs51/main.c: adapted constants for switch table generation
4102         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4103
4104 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4105
4106         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4107         * support/regression/tests/bug1057979.c: added test for bug 1073386
4108
4109 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4110
4111         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4112         compilers
4113
4114 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4115
4116         * src/pic16/device.h,
4117         * src/pic16/genarith.c,
4118         * src/pic16/glue.c,
4119         * src/pic16/main.c,
4120         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4121
4122 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4123
4124         Large cummulative patch for pic16 port.
4125         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4126         to call when a stack overflow occurs,
4127         * (malloc.h): added CVS Id tag,
4128         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4129         variable,
4130         * added libc directory. The current version of LibC contains string
4131         functions, ctype functions and macros and some functions of the
4132         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4133         be extensively tested in the future. Standard disclaimer here.
4134         Library is not automatically build yet. But one can build it by
4135         invoking 'make' inside the libc directory.
4136         * added ADC library under libio. Preliminary version yet.
4137
4138         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4139         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4140         aopForRemat() now and not by pic16_aopOp(),
4141         * (pic16_popGetTempReg): removed warning messgae when allocating
4142         temporary registers, its a buggy feature and will be removed,
4143         * (pic16_popGet): set register instance field in AOP_CRY,
4144         * (pic16_outBitC): fixed for results in size greater than 1,
4145         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4146         * (pic16_storeForReturn): optimized return of 0,
4147         * (genCmp): experimental code for new genCmp which uses PIC18's
4148         special compare&skip instructions. Initial tests fail some times
4149         with variables grater than 1 byte in size, so new code is disabled,
4150         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4151         a single bit,
4152         * (genCast): began a fix to optimize the casting of a bit to another
4153         bit, now assigning a bitfield to another bitfield will fail, sorry,
4154         * src/pic16/main.c: disabled the use of lr-support feature,
4155         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4156         * added some function prototypes, added function _debugf prototype,
4157         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4158         bits with offset (case PO_GPR_BIT),
4159         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4160         command line,
4161         * (isBankInstruction): modified to return 0 for no banking instruction,
4162         and 1 for banking instruction,
4163         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4164         caused stop processing pCodes after a inline assembly block,
4165         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4166         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4167         registers when it shouldn't,
4168         * src/pic16/ralloc.c (allocReg): add preliminary support for
4169         supporting a limited set of temporary registers,
4170
4171 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4172
4173         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4174           genDataPointerSet): ensure assignments always copy in MSB to LSB
4175           order,
4176           (loadRegFromAop): recognize CLRH optimization,
4177           (genFunction): optimize RECEIVE iCodes in reentrant functions
4178
4179 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4180
4181         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4182           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4183           selected.
4184         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4185         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4186           contiguous with data
4187
4188 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4189
4190         * device/lib/_gptrget.c (_gptrget),
4191         * device/lib/_gptrgetc.c (_gptrgetc),
4192         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4193           instead of sjmp to ret
4194         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4195           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4196
4197 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4198
4199         * .version: bumped version to 2.4.7
4200         * device/lib/_gptrget.c (_gptrget): is now _naked
4201         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4202         * device/lib/_gptrput.c (_gptrput): is now _naked
4203         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4204           (createFunction): fixed xstack
4205         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4206         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4207           or bit either,
4208           (geniCodeCritical): store original interrupt state in an iTemp bit
4209           var unless stack-auto
4210         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4211         * src/SDCCmain.c (setIncludePath): added include/target to search path
4212         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4213         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4214           prototype,
4215           (processFuncArgs): put bit vars in bit area
4216         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4217           unsaveRBank): fixed xstack,
4218           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4219           (genFunction, genEndFunction): fixed xstack,
4220           (genAssign): optimization don't walk backwards through mem
4221         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4222         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4223         * support/regression/Makefile: also make library (for stack-auto) when
4224           making "all" and added "test-mcs51-xstack-auto"
4225         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4226         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4227         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4228         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4229         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4230           make-library by MAKE_LIBRARY
4231         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4232           regression tests for xstack
4233         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4234         * support/regression/tests/critical.c: test for critical on mcs51
4235
4236 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4237
4238         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4239           built version of sdcc instead of installed version
4240
4241 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4242
4243         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4244         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4245           vprintf.c now
4246         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4247         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4248           WARNING: remove device/lib/build/z80/printf.o by hand when
4249           updating from previous build!
4250         * device/lib/z80/printf.c: updated comment
4251         * support/regression/tests/bug1057979.c: test all ports now
4252         * support/regression/tests/bug1065458.c: file added
4253
4254 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4255
4256         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4257           *_start and *_end symbols for static functions
4258
4259 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4260
4261         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4262           and search crt0.o in all library paths,
4263           (setIncludePath): proper handling of --nostdinc,
4264           (setLibPath): proper handling of --nostdlib
4265         * support/regression/Makefile,
4266         * support/regression/ports/ds390/spec.mk,
4267         * support/regression/ports/gbz80/spec.mk,
4268         * support/regression/ports/hc08/spec.mk,
4269         * support/regression/ports/mcs51/spec.mk,
4270         * support/regression/ports/mcs51-large/spec.mk,
4271         * support/regression/ports/mcs51-stack-auto/spec.mk,
4272         * support/regression/ports/z80/spec.mk: use include and lib files from
4273           built version of sdcc instead of installed version
4274         * doc/sdccman.lyx: fixed typo in --nostdinc
4275
4276 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4277
4278         * src/pic/pcode.c,
4279         * src/pic/device.c,
4280         * src/pic/ralloc.c,
4281         * src/pic/gen.c : added support to generate code for struct bit fields.
4282
4283 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4284
4285         * as/xa51/xa_version.h,
4286         * device/include/errno.h,
4287         * device/include/regc515c.h,
4288         * device/lib/_itoa.c,
4289         * device/lib/_ltoa.c,
4290         * device/lib/ser_ir_cts_rts.c,
4291         * sim/ucsim/xa.src/glob.cc,
4292         * sim/ucsim/xa.src/inst_gen.cc,
4293         * sim/ucsim/xa.src/xa_bit.cc,
4294         * sim/ucsim/xa.src/xa_sfr.cc,
4295         * sim/ucsim/z80.src/inst_dd.cc,
4296         * sim/ucsim/z80.src/inst_fdcb.cc,
4297         * support/scripts/keil2sdcc.pl,
4298         * src/pic16/pic16.dsp,
4299         * src/pic16/pic16a.dsp: corrected cvs line endings
4300         * device/lib/printf_large.c: fixed bug 1057979
4301         * src/pic16/gen.c: fixed non-C standard code
4302         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4303         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4304         * support/regression/ports/mcs51/support.c: reload T1 asap
4305         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4306           pdata use and clear idata startup behaviour
4307         * support/regression/tests/bug1057979.c: added
4308
4309 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4310
4311         * device/examples/ds390/ow390/ad26.h,
4312         * device/examples/ds390/ow390/cnt1d.h,
4313         * device/examples/ds390/ow390/crcutil.c,
4314         * device/examples/ds390/ow390/ownet.h,
4315         * device/examples/ds390/ow390/owsesu.c,
4316         * device/examples/ds390/ow390/swt12.h,
4317         * device/examples/ds390/ow390/swtoper.c,
4318         * device/examples/ds390/ow390/temp10.h,
4319         * device/examples/ds390/ow390/thermodl.c,
4320         * device/examples/ds390/tinitalk/tinitalk.dsp,
4321         * device/examples/ds390/tinitalk/tinitalk.dsw,
4322         * device/examples/mcs51/clock/hw.h,
4323         * device/examples/mcs51/simple2/go.bat,
4324         * device/examples/serialcomm/windows/serial.h,
4325         * device/examples/xa51/dummy.c,
4326         * device/examples/xa51/hello.c,
4327         * device/include/80c51xa.h,
4328         * device/include/at89x051.h: corrected cvs line endings
4329
4330 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4331
4332         * src/pic16/main.c (options): added command line --gstack, to trace
4333         stack over/under flows,
4334         * added pragma 'wparam' to allow passing first byte of function
4335         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4336         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4337         call to __gstack_test function and sets up the symbol as extern,
4338         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4339         * popaop): added call to pic16_testStackOverflow,
4340         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4341         wparamList list,
4342         * (genCall, genPcall): now all parameters are passed via stack
4343         except in functions that are pass to wparam pragma in which WREG is
4344         used too,
4345         * (genPcall): REENTRANT flag is checked to see if variable prototype
4346         contains reentrant keyword, don't call a non-reentrant function, via
4347         a reentrant function pointer or vice versa, functions are never
4348         passed via WREG,
4349         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4350         D.Winkler,
4351         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4352         SIGSEGV when accessing a NULL register stucture,
4353         * (pic16_printGPointerType): modified to handle UPPER modifier for
4354         function initializers, changed prototype of function to simpler one,
4355         * (pic16_printIvalFuncPtr): check to see if function is already
4356         added in externs list,
4357         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4358         optimized a move from W to SFR with a move to the same register
4359         later after a CALL,
4360         * device/lib/pic16/debug: NEW directory, contains debug features
4361         which are enabled when linking with libdebug.lib, currently command
4362         line option --gstack enables stack pointer tracing for over/under
4363         flow, corresponding sources are in debug/gstack
4364
4365 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4366
4367         * doc/sdccman.lyx: updated SDCC version,
4368         * (PIC16 port): update list of command line options,
4369         * src/pic16/device.h (structure pic16_options_t): added field gstack
4370         to enable stack overflow tracing on push/pops,
4371         * src/pic16/device.c (statistics structure): added statistics
4372         structure,
4373         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4374         pic16_dump_int_registers): increase statistics counters for each
4375         * variable which is encountered
4376         * (pic16_dump_usection): emit each .udata variable to its own udata
4377         section,
4378         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4379         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4380         parameters via stack, otherwise use old scheme,
4381         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4382         assembler output file,
4383         * src/pic16/main.c: added command line options --gstack to enable
4384         push/pop tracing for stack overflow,
4385         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4386         instructions): added size of each instruction,
4387         * (pic16_countInstruction): estimate size of instructions in
4388         the_pFile list, inline assembly blocks are not counted,
4389         * (pic16_FixRegisterBanking): trace previous register usage, when
4390         banksel optimizations is greater than 0, don't emit a redudant
4391         banksel directive,
4392
4393 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4394
4395         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4396         * src/pic16/ralloc.c : applied same fix for pic16.
4397         * src/pic/gen.c : tidied it up a little.
4398
4399 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4400
4401         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4402         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4403
4404 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4405
4406         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4407
4408 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4409
4410         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4411         non-reentrant function __modsint in the interrupt function (thus
4412         corrupting math operations during serial I/O)
4413         * device/lib/ser_ir.c: as above, changed buffersize
4414         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4415         256.c,d for zeroing
4416         * doc/Makefile: added option -t for rsync
4417
4418 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4419
4420         * src/SDCCast.h (struct ast),
4421         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4422
4423 2004-10-20 Borut Razem <borut.razem AT siol.net>
4424
4425         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4426         package
4427
4428 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4429
4430         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4431         makefile targets,
4432         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4433         support functions to replace long sequences of MOVFF's from access
4434         bank registers to stack and vice versa,
4435         * src/pic16/device.h: added new field opt_flags, where optimization
4436         flags can be set to enable certain features,
4437         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4438         * pBlock, (genFunction, genEndFunction): surroung loop for
4439         saving/loading used registers in stack with PC_INFO pCodes,
4440         INF_LREGS. Code in between can then be optimized by pCode optimizer
4441         to support function calls,
4442         * (genDataPointerSet): fixed bug which loaded float fields in
4443         structures with corrupt data,
4444         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4445         in a standard way debug info on stderr. Feature used for developing
4446         and debugging only,
4447         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4448         obsolete chunks of code,
4449         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4450         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4451         * pic16/src/pcode.c (pic16_newpCodeInfo,
4452         * (pic16_newpCodeOpLocalRegs),
4453         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4454         feature,
4455         * (pic16_pCodeConstString): printing of the initial value of a
4456         symbol as a comment is inhibited since parsing was already done by
4457         copyStr and output is corrupt,
4458         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4459
4460 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4461
4462         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4463
4464 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4465
4466         * as/mcs51/lkarea.c: removed old K&R style,
4467           (lnksect): changed check on boundary error,
4468           (lnksect2): changed check on boundary error,
4469           (lnksect2): extend XSTK to end of page if size = 1
4470         * as/mcs51/lkmain.c: removed old K&R style,
4471           (Areas51): create l_IRAM symbol
4472         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4473         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4474           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4475         * device/lib/_mullong.c: added version to be compiled with xstack
4476         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4477         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4478         * device/lib/mcs51/crtxstack.asm: fixed comment
4479         * src/SDCCglue.c: maxInterrupts defaults to 0,
4480           (emitMaps): added pdata,
4481           (createInterruptVect): (re)moved default,
4482           (glue): added pdata,
4483           (glue): moved __start__xstack to XSTK with default size 1
4484         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4485           and options.float_rent when options.stackAuto is set,
4486           (linkEdit): only write XDATA_NAME if provided on command line
4487         * src/SDCCmem.h,
4488         * src/SDCCmem.c: added pdata
4489         * src/port.h: added pdata_name to PORT
4490         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4491           (saveRegisters, unsaveRegisters): removed usage of B,
4492           (genMinus): fixed accumulator clash,
4493           (genJumpTab): added comment, this needs another look
4494         * src/mcs51/gen.c: added check for "B in use" paranoia,
4495           added pushB() and popB()
4496         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4497           chance
4498         * src/avr/main.c,
4499         * src/ds390/main.c,
4500         * src/hc08/main.c,
4501         * src/mcs51/main.c,
4502         * src/pic/main.c,
4503         * src/pic16/main.c,
4504         * src/xa51/main.c,
4505         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4506           added PSEG (PAG,XDATA) or NULL to port specifier
4507         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4508         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4509           (_mcs51_genInitStartup): removed __start__xstack equ,
4510           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4511         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4512         * src/z80/gen.c (_rleAppend): fixed warnings
4513         * support/regression/tests/zeropad.c: added pdata test
4514         * .version: bumped to 2.4.6
4515
4516 2004-10-17 Borut Razem <borut.razem AT siol.net>
4517
4518         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4519         as a part of nightly build
4520
4521 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4522
4523         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4524         WREG holds the first byte function parameters,
4525         * (aopForSym): take special case for symbols which are in FARSPACE
4526         but in CODESPACE too,
4527         * (assignResultValue): modified to take into account _G.useWreg,
4528         * (genCall): don't use wreg for parameter passing when function is
4529         declared as reentrant, too, added optimization INCF to stack
4530         pointer when stack parameter count is 1,
4531         * (genFunction, genEndFunction): refurnished and fixed to not using
4532         wreg for passing parameters when function has varargs or is
4533         reentrant, fixed bug with symbol name compare for generating
4534         functions in absolute address,
4535         * (pic16_storeForReturn): refurnished,
4536         * (genCmp): began writing a new version of the function, not ready
4537         yet, therefore it is disabled,
4538         * (genAssign): do not read code memory when assigning a function to
4539         a pointer function,
4540         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4541         array of characters, not pointer,
4542         * (pic16initialComments): in debug mode emit an .ident directive for
4543         the assembler,
4544         * (_process_pragma): emit a new warning type (internal to pic16)
4545         when setting stack to default length, emit a similar warning when
4546         placing a function at absolute address and address is not word aligned
4547         * (_pic16_parseOptions): added 'return TRUE' statement,
4548         * (_pic16_linkEdit): if compiling a source, then add the source's
4549         file object, first in the list of objects to link,
4550
4551 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4552
4553         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4554         * src/pic/main.c : removed VC warning.
4555         * src/pic/gen.c : changed comment.
4556
4557 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4558
4559         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4560         reference to a deprecated symbol _GPTRREG was causing failure to
4561         link. Thanks G. M. Gallant for the info.
4562
4563 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4564
4565         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4566         comments for Bugs item #954788.
4567
4568 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4569
4570         * src/pic16/device.c (pic16_dump_gsection,
4571         * pic16_groupRegistersInSection): handle symbols declared to be in
4572         access bank differently,
4573         * src/pic16/gen.c (struct _G): added field resDirect,
4574         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4575         send values read from stack directly to result and don't allocate
4576         temporary values,
4577         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4578         same registers,
4579         * (pic16_sameRegsOfs): NEW,
4580         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4581         free because they were not allocated from temporary pool,
4582         * pic16_popRegFromString): workaround to fix a problem with
4583         allocating variables twice or never,
4584         * (genGenPointerGet): using PRODL instead of FSR0H,
4585         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4586         instead of FSR0H,
4587         * (genAssign): take advantage of the _G.resDirect flag,
4588         * (genCast): around line 11844, use mov2f instead of directly
4589         MOVFF'ing between operands to account for literal values,
4590         * src/pic16/genutils.c: some new debug functions for gpsim have been
4591         added,
4592         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4593         float with integer part only,
4594         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4595         place variables in access bank
4596         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4597         updated sources to reflect recent changes in gen.c
4598
4599 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4600
4601         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4602         sources that searched for headers in installation path, now the
4603         device/include/pic16 is used,
4604         * src/pic16/glue.c (pic16glue),
4605         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4606         .line directives if not in debug mode, this suppresses assembler's
4607         warnings for ignored directives
4608
4609 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4610
4611         * src/port.h: made reset_regparms prototype void parameter explicit.
4612         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4613         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4614         * doc/sdccman.lyx: documented warning disabling and how to use
4615           printf_large to make it print floats.
4616         * device/include/stdbool.h: NEW
4617         * device/lib/_atof.c,
4618         * device/lib/_divuint.c,
4619         * device/lib/_divulong.c,
4620         * device/lib/expf.c,
4621         * device/lib/printf_large.c,
4622         * device/lib/sincosf.c,
4623         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4624         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4625           a completely reentrant lib.
4626
4627 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4628
4629         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4630         * device/include/pic16/stdio.h: fixed bug with colon
4631
4632 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4633
4634         * device/include/pic16/stdio.h,
4635         * device/include/pic16/stdlib.h,
4636         * device/include/pic16/math.h: NEW
4637         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4638         declared as _naked to reduce overhead
4639         * device/lib/Makefile.in (target port-specific-objects-pic16):
4640         changed * to *.* so to ignore the CVS directory,
4641         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4642         stacked variables back in stack,
4643         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4644         corruption
4645
4646 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4647
4648         * .version: bumped version number to 2.4.5
4649         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4650         * support/Util/SDCCerr.c (messages structure): added entry for
4651         W_POSSBUG2
4652
4653         Large cumulative patch for pic16 port and libraries.
4654         * device/include/pic16/sdcc-lib.h,
4655         * device/include/pic16/stdarg.h,
4656         * device/include/asm/pic16/features.h,
4657         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4658         * device/include/pic16/float.h: changes reentrant keyword with
4659         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4660         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4661         updated target build-libraries to include objects from gptr,
4662         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4663         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4664         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4665         all function headings,
4666         * src/SDCCmain.c: added global parameter userIncDirsSet,
4667         * (parseCmdLine): when option -I is encountered add directory to
4668         userIncDirsSet too,
4669         * src/version.awk: added space between control and long,
4670         * src/pic16/NOTES: added some notes for the port,
4671         * src/pic16/gen.c: added prototype for mov2fp function,
4672         * (fReturnpic16[]): properly named return value registers,
4673         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4674         * (aopForSym): added code to handle symbols with onStack flag set,
4675         symbols onStack are allocated PTRSIZE bytes,
4676         * (aopFreeAsmop): handles special case where asmops are stack objects,
4677         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4678         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4679         added argument lock to trace flaws in allocating temporary registers
4680         when developing port,
4681         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4682         * (pic16_popRegFromString): reenabled allocating a direct register
4683         from string,
4684         * (assignResultValue): various beautifications,
4685         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4686         referenced function argument,
4687         * (genIpush): reenabled to allow stacked arguments, handles only
4688         ic->parmPush iCodes,
4689         * (genCall, genPcall): major changes to allow for variable argument
4690         functions, fixed a bug with falsely restoring stack pointer after
4691         returning from call,
4692         * (genFunction): pending code for critical function,
4693         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4694         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4695         * (genNearPointerGet): fixed bug with indirect reading, was always
4696         reading from INDF0
4697         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4698         pointers,
4699         * (genAddrOf): rewrote code to take address of a stacked function parameter
4700         * (genCast): fixed casting to generic pointer type,
4701         * src/pic16/gen.h: added AOP_STA,
4702         * (struct asmop): added field stk,
4703         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4704         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4705         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4706         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4707         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4708         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4709         generic pointers,
4710         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4711         and library paths,
4712         * (pic16_port structure): generic pointer size is set to 3,
4713         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4714         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4715         compiler warning,
4716         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4717         operand is an iTemp,
4718
4719 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4720
4721         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4722         * debugger/mcs51/simi.c: addapt new syntax of s51
4723
4724 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4725
4726         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4727         * src/pic16/pcode.c: commented out some calls to free() in order to
4728         fix bug #989576,
4729
4730 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4731
4732         * src/SDCCicode.h,
4733         * src/SDCCicode.c (isiCodeInFunctionCall),
4734         * src/avr/ralloc.c (selectSpil),
4735         * src/pic/ralloc.c (selectSpil),
4736         * src/pic16/ralloc.c (selectSpil),
4737         * src/ds390/ralloc.c (selectSpil),
4738         * src/hc08/ralloc.c (selectSpil),
4739         * src/xa51/ralloc.c (selectSpil),
4740         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4741         stack in the middle of a function call sequence (fixes bug #1020268)
4742         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4743         costs associated with the minimum switch case.
4744
4745 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4746
4747         * src/SDCC.lex: fixed bug #1030549
4748
4749 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4750
4751         * src/SDCCcse.h (struct cseDef),
4752         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4753         over a function call if the CSE is derived from a symbol whose
4754         address has been taken (fixes bug #1029883)
4755         * support/regression/tests/bug-1029883: a new regression test for
4756         this bug
4757
4758 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4759
4760         * src/hc08/gen.c (emitinline): fixed bug #1029778
4761         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4762         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4763         and starts toward RFE #905167)
4764
4765 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4766
4767         * src/pic16/gen.c (mov2f): New function to move an operand to
4768         another without considering if it is a literal or a register,
4769         * (pic16_sameRegs): don't check if they are both AOP_REG,
4770         * (AccRsh): removed andmask=0 lines,
4771         * (genLeftShift): duplicated to be improved in future versions,
4772         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4773         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4774         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4775         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4776         * (insertBankSwitch): fixed inserting banksel directives algorithm
4777         for instructions that follow a skip instruction, this fixes a report
4778         for broken subtraction code generation,
4779         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4780         iCode is a left op, just in case result and right share the same
4781         registers
4782
4783 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4784
4785         * src/hc08/main.c,
4786         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4787         preservation of HX
4788         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4789         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4790         on 2004-09-12; it was buggy
4791
4792 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4793
4794         * src/SDCCsymt.h: removed RESULT_CHECK
4795         * src/SDCCast.c,
4796         * src/SDCCglue.c,
4797         * src/SDCCval.c,
4798         * src/pic/glue.c,
4799         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4800
4801 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4802
4803         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4804         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4805         configuration values no more rejected by compiler, they are assigned
4806         to configuration registers with a warning message instead,
4807         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4808         the for-loop so last conf register is emitted too,
4809         * (_pic16_initPaths): link library libsdcc.lib by default,
4810         * (_hasNativeMulFor): modified test for multiplication according to
4811         Raphael Neider's remarks. Integer multiplication is also done with
4812         support functions,
4813         * device/include/pic16/pic18fregs.h: corrected type error in while
4814         testing and including 18f6720 header file
4815
4816 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4817
4818         * src/pic16/device.h (pic16_options): removed field use_crt,
4819         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4820         until an optimization to handle single bits is added,
4821         * (pic16_loadFSR0): moved before genUnpackBits,
4822         * (genAnd): some white lines removed,
4823         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4824         leave_reset flags in pic16_options when using crt modules,
4825
4826 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4827
4828         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4829           for bugs 898889 & 979599. Also used some safer print instructions.
4830
4831 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4832
4833         * src/pic16/device.h (pic16_options_t): added field use_crt,
4834         crt_name, no_crt,
4835         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4836         catch a probable future bug,
4837         * src/pic16/gen.c: aopIdx function commented out,
4838         * (genAssign): commented out old code which used aopIdx,
4839         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4840         code, added if conditionals to take into account the --use-crt
4841         command line options,
4842         * src/pic16/main.c (pic16_optionsTable): added new command line
4843         options, --use-crt= and --no-crt,
4844         * (_pic16_linkEdit): now the proper crt object is added in the
4845         linker command line except than when --no-crt is specified,
4846         * src/pic16/pcode.c,
4847         * src/pic16/pcode.h: added some structures and functions for a new
4848         optimization scheme to compansate for instruction overhead between
4849         same iCodes, this scheme is currently under development and is not
4850         working in any way,
4851         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4852         to && operator,
4853         * device/lib/pic16/startup/crt0i.c,
4854         * device/lib/pic16/startup/crt0iz.c: added global char variable
4855         __uflags to force the generation of an idata section
4856
4857 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4858
4859         * doc/Makefile,
4860         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4861         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4862
4863 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4864
4865         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4866         Frieder) and clarified the default code optimization mode
4867
4868 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4869
4870         * src/SDCC.lex (doPragma, process_pragma),
4871         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4872         "opt_code_size", and "opt_code_balanced"
4873         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4874         regrouped options by category, added support for category headers
4875         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4876         and "--opt-code-size"
4877         * doc/sdccman.lyx: documented these new options and pragmas
4878         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4879         preference into account
4880
4881 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4882
4883         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4884           geniCodePreDec): Fixed bug 904237 by generating a warning
4885         * src/SDCCerr.h,
4886         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4887
4888 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4889
4890         * src/pic/device.c : When no max ram set validate full memory range.
4891         * src/pic/pcode.c,
4892         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4893
4894 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4895
4896         * device/lib/_gptrget.c,
4897         * device/lib/_gptrput.c: updated comment
4898         * device/lib/calloc.c,
4899         * device/lib/free.c,
4900         * device/lib/malloc.c,
4901         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4902         * src/SDCCcse.c (cseBBlock),
4903         * src/SDCCicode.c (printOperand, geniCodeArray),
4904         * src/SDCCicode.h (struct operand): fixed bug 868103
4905         * support/regression/tests/bug-868103.c: added
4906         * src/SDCCast.c (searchLitOp),
4907         * src/SDCCcse.h (struct cseDef),
4908         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4909         * src/SDCCicode.h (struct operand),
4910         * src/SDCCsymt.h (struct sym_link),
4911         * src/avr/gen.c (hasInc),
4912         * src/ds390/gen.c (hasInc),
4913         * src/hc08/gen.c (genPlusIncr, hasInc),
4914         * src/mcs51/gen.c (hasInc),
4915         * src/pic16/glue.c (pic16_printIvalChar),
4916         * src/pic16/ralloc.c (regWithIdx),
4917         * src/xa51/gen.c (hasInc) : removed warnings
4918         * src/SDCCast.c (createBlock): added comment ???
4919         * src/hc08/ralloc.c: updated comments
4920
4921 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4922
4923         * doc/sdccman.lyx: updated section on switch statements, added
4924         section about semaphore locking
4925         * doc/Makefile: added option -info for latex2html
4926         * device/lib/_gptrget.c,
4927         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4928
4929 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4930
4931         * src/pic/device.h,
4932         * src/pic/device.c,
4933         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4934          maxram is less than 0x100.
4935
4936 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4937
4938         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4939
4940 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4941
4942         * src/port.h,
4943         * src/mcs51/main.c,
4944         * src/ds390/main.c,
4945         * src/z80/main.c,
4946         * src/hc08/main.c,
4947         * src/pic/main.c,
4948         * src/pic16/main.c,
4949         * src/avr/main.c,
4950         * src/xa51/main.c
4951         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4952         a jump table is the best form for a switch statement, including
4953         automatic insertion of missing cases to make the case range
4954         continuous. Developed in collaboration with Frieder Ferlemann.
4955
4956 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4957
4958         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4959         accumulator result if it needs sign extension
4960
4961 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4962
4963         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4964
4965 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4966
4967         * device/lib/gbz80/printf.c,
4968         * device/lib/z80/printf.c: removed define for NULL
4969
4970 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4971
4972         * as/xa51/xa_link.c,
4973         * device/examples/ds390/ow390/ad26.c,
4974         * device/examples/ds390/ow390/cnt1d.c,
4975         * device/examples/ds390/ow390/counter.c,
4976         * device/examples/ds390/ow390/ds2480.h,
4977         * device/examples/ds390/ow390/ds2480ut.c,
4978         * device/examples/ds390/ow390/findtype.c,
4979         * device/examples/ds390/ow390/gethumd.c,
4980         * device/examples/ds390/ow390/owllu.c,
4981         * device/examples/ds390/ow390/ownetu.c,
4982         * device/examples/ds390/ow390/swt12.c,
4983         * device/examples/ds390/ow390/swtloop.c,
4984         * device/examples/ds390/ow390/temp.c,
4985         * device/examples/ds390/ow390/temp10.c,
4986         * device/examples/ds390/ow390/thermo21.c,
4987         * device/examples/ds390/ow390/tinilnk.c,
4988         * device/examples/ds390/ow390/tstfind.c,
4989         * device/examples/serialcomm/windows/serial.cpp,
4990         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4991         * device/include/reg51.h: fixed line endings for cvs
4992
4993 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4994
4995         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4996         packRegsForAccUse, packRegisters): new accumulator register
4997         packing algorithm
4998         * support/regression/ports/hc08/support.c (_putchar): suppress
4999         warning of unused variable
5000         * src/SDCCicode.c: added SWAP entry to codeTable
5001
5002 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5003
5004         * device/lib/sprintf.c: forgot to add this file before previous commit
5005
5006 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5007
5008         * src/pic16/gen.c (genPackBits): added operand right in function
5009         parameters, load result directly if p_type is POINTER (that is
5010         called by genNearPointerSet)
5011         * (genUnPackBits): added operand left in function parameters,
5012         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5013         FSR0 if accessing bitfields,
5014
5015 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5016
5017         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5018           _print_format; updated printf, sprintf, vsprintf
5019         * device/include/asm/default/features.h: corrected comment/define
5020         * device/lib/Makefile.in: added sprintf.c
5021         * device/lib/libsdcc.lib: added sprintf module
5022         * device/lib/printf_large.c,
5023         * device/lib/vprintf.c,
5024         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5025           into these 3 files
5026         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5027         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5028         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5029           hc08 test
5030         * support/regression/tests/zeropad.c: define idata as data for hc08
5031
5032 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5033
5034         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5035         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5036         labels are referenced at least once (even if a reference is not found)
5037         * src/hc08/gen.c (emitcode): set isComment flag for comments
5038         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5039         loads), rules 6a..6b (optimize jumps to return)
5040
5041 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5042
5043         * device/lib/acosf.c (acosf),
5044         * device/lib/asinf.c (asinf),
5045         * device/lib/atanf.c (atanf),
5046         * device/lib/ceilf.c (ceilf),
5047         * device/lib/cosf.c (cosf),
5048         * device/lib/coshf.c (coshf),
5049         * device/lib/cotf.c (cotf),
5050         * device/lib/fabsf.c (fabsf),
5051         * device/lib/floorf.c (floorf),
5052         * device/lib/log10f.c (log10f),
5053         * device/lib/logf.c (logf),
5054         * device/lib/sinf.c (sinf),
5055         * device/lib/sinhf.c (sinhf),
5056         * device/lib/sqrtf.c (sqrtf),
5057         * device/lib/tanf.c (tanf),
5058         * device/lib/tanhf.c (tanhf),
5059         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5060         replaced all instances of "reentrant" in the library functions
5061         defined in math.h with this macro.
5062         * support/regression/tests/float_trans.c: reenabled test for hc08
5063
5064 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5065
5066         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5067         erroneously deleted
5068
5069 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5070
5071         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5072         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5073         multi-byte volatile operands are used
5074         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5075         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5076         initialization to area GSINIT0 so that it would always precede
5077         any static initializers in GSINIT
5078         * support/regression/tests/zeropad.c: fixed idata define for hc08
5079         * support/regression/tests/bug-927659.c,
5080         * support/regression/tests/float_trans.c: disabled tests for hc08
5081         pending missing library routines
5082         * .version: increased version number to 2.4.4 - hc08 port now passes
5083         regression tests
5084
5085
5086 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5087
5088         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5089         * Makefile.common.in,
5090         * as/Makefile,
5091         * as/hc08/Makefile.in,
5092         * as/mcs51/Makefile.in,
5093         * as/z80/Makefile.in,
5094         * debugger/mcs51/Makefile.in,
5095         * device/include/Makefile.in,
5096         * device/lib/Makefile.in,
5097         * doc/Makefile,
5098         * link/Makefile,
5099         * link/z80/Makefile.in,
5100         * packihx/Makefile.in,
5101         * sim/ucsim/main_in.mk,
5102         * sim/ucsim/avr.src/Makefile.in,
5103         * sim/ucsim/doc/Makefile.in,
5104         * sim/ucsim/gui.src/serio.src/Makefile.in,
5105         * sim/ucsim/hc08.src/Makefile.in,
5106         * sim/ucsim/s51.src/Makefile.in,
5107         * sim/ucsim/xa.src/Makefile.in,
5108         * sim/ucsim/z80.src/Makefile.in,
5109         * src/Makefile.in,
5110         * support/cpp2/Makefile.in,
5111         * support/librarian/Makefile,
5112         * support/makebin/Makefile: added DESTDIR to the install path proposed
5113         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5114         * doc/sdccman.lyx: added DESTDIR documentation
5115
5116 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5117
5118         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5119         instruction for interrupt handlers, use fast returns when returning
5120         from high priority interrupts
5121
5122 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5123
5124         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5125         code generation
5126         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5127         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5128         bugs, ported much of Bernhard's code from mcs51
5129         * src/mcs51/gen.c (genSend),
5130         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5131         than one when calling a reentrant function
5132         * device/lib/_mullong.c: defined an alternate struct layout for big
5133         endian ports (hc08)
5134
5135 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5138         test
5139
5140 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5141
5142         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5143         are sane and complete before asking the port its prefered parameter
5144         passing method (fixes bug #1017633)
5145         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5146         and _ret3
5147
5148 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5149
5150         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5151         problem in bitfields >= 8 bits.
5152
5153 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5154
5155         * src/SDCCsymt.c: undid changes that were not meant to be committed
5156
5157 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5158
5159         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5160
5161 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5162
5163         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5164           copied and wrong bit got inverted
5165
5166 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5167
5168         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5169         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5170         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5171         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5172         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5173         assignments to bitfields at known addresses
5174         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5175         reads from bitfields at known addresses
5176         * src/hc08/ralloc.c (packRegisters),
5177         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5178         genhc08Code): optimize pointer get values used as conditionals
5179         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5180         and branch
5181
5182 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5183
5184         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5185         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5186         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5187         as conditionals
5188
5189 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5190
5191         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5192
5193 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5194
5195         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5196         related problems
5197
5198 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5199
5200         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5201
5202 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5203
5204         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5205         mcs51 port
5206
5207 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5208
5209         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5210
5211 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5212
5213         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5214         cases use more compact code.
5215
5216 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5217
5218         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5219
5220 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5221
5222         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5223
5224 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5225
5226         * src/SDCCsymt.h,
5227         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5228         parameter of changePointer() from symbol* to sym_link*
5229         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5230         * src/SDCCsymt.c (compareType): void* type is castable to other
5231         pointers, but not necesarily an exact match.
5232         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5233         is no longer blindly treated as an exact match.
5234         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5235
5236 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5237
5238         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5239
5240 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5241
5242         * src/pic/gen.c,
5243         * src/pic/pcode.c,
5244         * src/pic/ralloc.h,
5245         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5246
5247 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5248
5249         * src/pic/device.c,
5250         * src/pic/device.h,
5251         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5252
5253 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5254
5255         * src/mcs51/gen.c (emitcode): fixed bug #992819
5256
5257 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5258
5259         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5260           there's no need to make it worse
5261
5262 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5263
5264         * src/mcs51/ralloc.c (deassignLR),
5265         * src/ds390/ralloc.c (deassignLR),
5266         * src/hc08/ralloc.c (deassignLR),
5267         * src/z80/ralloc.c (deassignLR),
5268         * src/pic/ralloc.c (deassignLR),
5269         * src/pic16/ralloc.c (deassignLR),
5270         * src/avr/ralloc.c (deassignLR),
5271         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5272         rlivePoint): fixed another part of bug #971834
5273
5274 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5275
5276         * src/z80/main.c: enabled "critical" keyword
5277         * src/z80/mappings.i,
5278         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5279         functions (fixes bug #979646)
5280         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5281
5282 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5283
5284         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5285           such as c:\mydir.
5286
5287 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5288
5289         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5290           doesn't disable too much optimizations
5291
5292 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5293
5294         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5295
5296 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5297
5298         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5299
5300 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5301
5302         * src/pic/gen.c tidied up tabs
5303         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5304         * src/pic/main.c tidied up tabs
5305         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5306         * src/pic/pcoderegs.c tidied up tabs
5307         * src/pic/ralloc.c tidied up tabs
5308
5309 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5310
5311         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5312         to S_FIXED for pic16 port and when symbol is not in level 0,
5313         allocate for S_REGISTER storage class and pic16 port, too,
5314         * src/pic16/device.h: prototype for checkSym,
5315         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5316         * (pic16_assignConfigWordValue): test the value and the mask to
5317         validate that the value is suitable for the configuration word,
5318         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5319         collect extern declared symbols, don't emit symbol twice, check
5320         first if symbol is in publics set first,
5321         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5322         * added command line '--fstack' which enables an experimental
5323         feature for stack access, too buggy to be used yet...
5324         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5325         * (pic16_allocDirReg): when register has storage class S_REGISTER
5326         allocate in pic16_dynAccessRegs,
5327         * device/include/pic16/pic18f????.h: modified configuration word
5328         naming convention, words started as CONFIG0H but should be CONFIG1H
5329
5330 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5331
5332         * device/include/mcs51reg.h: fixed bug 970993
5333
5334 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5335
5336         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5337         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5338         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5339         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5340         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5341         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5342           error/warning numbers,
5343           added function setWarningDisabled()
5344         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5345         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5346           _memcmp.c _memmove.c calloc.c realloc.c free.c
5347         * support/regression/tests/malloc.c: added tests for new functionality
5348         * support/regression/tests/zeropad.c: added tests for truncated initializers
5349           and initialized char arrays starting with '\x0'
5350         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5351
5352 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5353
5354         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5355
5356 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5357
5358         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5359         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5360         peephole 177.e. Thanks to anonymous
5361
5362 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5363
5364         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5365         function isn't used in the source but referenced as a
5366         variable initializer then declare it as extern in .asm file
5367
5368 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5369
5370         * .version: increased version number to 2.4.3
5371
5372         Adding version extension according to ChangeLog CVS revision
5373         * src/Makefile.in (target all): added dependency 'version.h'
5374         * (rule version.h): added rule to create version.h from ChangeLog,
5375         * (rule dep): added dependency version.h,
5376         * src/version.awk: AWK script to create version.h
5377         * src/SDCCdwarf2.c (dwWriteModule),
5378         * src/SDCCglue.c (initialComments),
5379         * src/SDCCmain.c (printVersionInfo): modified to write after
5380         version string the version extension number,
5381         * src/SDCCutil.c: included "version.h"
5382         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5383         number,
5384         * src/SDCCutil.h: added prototype for getBuildNumber
5385
5386         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5387         includeDirsSet, too,
5388         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5389         const char [] is found in function prototype...
5390
5391         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5392         moving to WREG with source is already in WREG,
5393         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5394         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5395         * (aopForSym): stack'ed symbols are partially supported, added
5396         if-clause to support symbols in FARSPACE,
5397         * (sameRegs): added test for AOP_ACC to see if registers are same,
5398         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5399         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5400         * (pic16_popRegFromString): will not allocate a new register if it
5401         doesn't find one by name, bug may have introduced...
5402         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5403         * (genIpush): revived to use pic16 port's stack,
5404         * (genAddrOf): added incomplete case for stack'ed operand,
5405         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5406         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5407         can handle multibyte operands,
5408         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5409         * (pic16initialComments): added message for MPLAB compatibility
5410         mode enabled,
5411         * src/pic16/main.h: prototype for pic16_mplab_comp,
5412         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5413         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5414         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5415         because of increased complexity of procedure,
5416         * (_process_pragma): stack pragma changed to format 'stack pos len',
5417         emit symbol '_stack_end' to conform with gplink,
5418         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5419         to search for register,
5420         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5421         PO_GPR_REGISTER,
5422         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5423         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5424         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5425         case for PO_GPR_REGISTER,
5426         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5427         dies, the new era is ahead !...
5428         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5429         pic16_dynInternalRegs,
5430         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5431         * (pic16_allocDirReg): minor optimizations and bug fixes,
5432         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5433
5434         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5435         load stack and frame pointer with address of 'stack_end' symbol
5436
5437 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5438
5439         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5440         without source code but only variable initializers
5441
5442 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5443
5444         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5445         external are not declared as extern to reduce overhead while linking
5446
5447 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5448
5449         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5450
5451 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5452
5453         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5454           Yee Keat for the patch
5455         * src/SDCCast.c (decorateType): fixed bug #979599
5456         * src/ds390/gen.h: removed local fReturnSizeDS390
5457         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5458         * src/ds390/gen.c (genAnd, genOr, genXor),
5459         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5460
5461 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5462
5463         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5464         add relFilesSet to $3, manipulate $2 to handle linking of object
5465         files without source files in command line,
5466         * device/include/pic16 (all headers): added ID location macros,
5467         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5468         entries for ID location bytes,
5469         * (pic16_assignIdByteValue): NEW,
5470         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5471         added field dumpcalltree to pic16_options_t,
5472         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5473         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5474         emitting rFalseIfx label after check_carry label,
5475         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5476         pic16_emitDIRegs), NEW
5477         * (pic16glue): dump .calltree file when option --calltree found,
5478         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5479         * (_pic16_genAssemblerPreamble): emit ID locations after
5480         configuration registers,
5481         * (pic16_linkCmd): modifications of the link command,
5482         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5483         * (pic16_pCodeInitRegisters): don't init stack registers,
5484         * (pic16_findPrevInstruction): fixed bug,
5485         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5486         bug with immediate registers,
5487         * (buildCallTree): traces stack push and pop,
5488         * (pct2): dump also stack usage for each function,
5489         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5490         * (pic16_allocDirReg): various modifications,
5491         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5492         fixed to 1,
5493
5494 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5495
5496         * src/pic16/pcode.c: removed buggy double colon
5497
5498 2004-07-01 Borut Razem <borut.razem AT siol.net>
5499
5500         * support/scripts/sdcc.nsi: added include/pic16 to setup
5501
5502 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5503
5504         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5505         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5506         target 'clean',
5507         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5508         specific command line arguments. Also added sample lkr script
5509         for placing a variable at a specific memory bank.
5510         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5511         at a specific memory bank,
5512         * (pic16_dump_isection): fixed bug which caused string literals to
5513         be omitted when dumping idata section,
5514         * (pic16_groupRegistersInSection): added code to handle registers
5515         in specific memory banks,
5516         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5517         public, all references are renamed too,
5518         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5519         AOP_DPTR2,
5520         * (pic16_storeForReturn): added case to handle when dest is WREG,
5521         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5522         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5523         pic16_rel_udata, check to see if that register is marked as being
5524         a member of a specific memory bank,
5525         * (pic16_printIvalCharPtr): added code to add string literals either
5526         to code or the idata sections,
5527         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5528         also accept the 'udata' pragma,
5529         * src/pic16/main.h: new structure types sectName and sectSym
5530         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5531         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5532         * (pic16_findPrevInstruction): fixed, it returned nothing,
5533         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5534         instruction combinations,
5535         * (pic16_FixRegisterBanking): heavily reorganised,
5536         * (pic16_AnalyzeBanking): if generating banksel directives is
5537         disabled, then don't call FixRegisterBanking at all,
5538         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5539         completely removed,
5540         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5541
5542 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5543
5544         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5545         Phuah Yee Keat <yk.phuah AT nestac.com>
5546
5547 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5548
5549         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5550         correctly the IVT even if it is relocated to some other location
5551
5552 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5553
5554         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5555         * device/include/pic16/pic18f2220.h: NEW,
5556         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5557         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5558         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5559         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5560         nodefaultlibs, ivt_loc is the location of the interrupt vector
5561         table, and nodefaultlibs signs that default libraries should not be
5562         linked in link stage,
5563         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5564         according to --ivt-loc argument,
5565         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5566         when pragma stack is found,
5567
5568 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5569
5570         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5571         256 (range check), 257 (do while), 258.a-f (bit banging
5572         f.e. on 3-wire SPI bus)
5573
5574 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5575
5576         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5577         variables used exclusively within a loop
5578
5579 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5580
5581         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5582
5583 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5584
5585         * src/SDCClrange.c (computeClash): fixed bug #971834
5586
5587 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5588
5589         * src/mcs51/gen.c (genCmp): fixed bug #975903
5590         * src/hc08/gen.c (operandsEqu),
5591         * src/ds390/gen.c (operandsEqu),
5592         * src/z80/gen.c (operandsEqu),
5593         * src/pic/gen.c (operandsEqu),
5594         * src/pic16/gen.c (operandsEqu),
5595         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5596         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5597
5598 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5599
5600         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5601
5602 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5603
5604         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5605         default case in switch statement,
5606         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5607         to eliminate problem with initialisation of pointers, but problem
5608         still exists,
5609         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5610         * (emitStaticSegment): removed various lines emitting debug info,
5611         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5612         added processor registers for utilizing EEPROM,
5613         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5614         configurable and set 8
5615
5616 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5617
5618         * .version: increased version number to 2.4.2,
5619
5620         Cumulative patch for pic16 port
5621         * src/pic16/device.c: changed scheme to dump initial values for
5622         variables in idata segment, all print_idata* functions were removed,
5623         now the pic16_printIval* will be called,
5624         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5625         * _pic16_printPointerType, pic16_printPointerType,
5626         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5627         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5628         NEW, similar to the respective functions in SDCCglue.c,
5629         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5630         way, emitting hex bytes,
5631         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5632
5633 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5634
5635         * src/avr/ralloc.c (serialRegAssign),
5636         * src/xa51/ralloc.c (serialRegAssign),
5637         * src/pic/ralloc.c (serialRegAssign),
5638         * src/pic16/ralloc.c (serialRegAssign),
5639         * src/hc08/ralloc.c (serialRegAssign),
5640         * src/z80/ralloc.c (serialRegAssign),
5641         * src/ds390/ralloc.c (serialRegAssign),
5642         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5643
5644 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5645
5646         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5647         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5648
5649 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5650
5651         Cumulative patch for pic16 port:
5652         * src/pic16/device.h (typedef PIC16_device) modified fields for
5653         defining microcontrollers,
5654         * src/pic16/device.c: added new info for all devices in Pics16 array,
5655         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5656         to be optimised out by the pCode optimiser,
5657         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5658         specially, bug reported by G.M. Gallant,
5659         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5660         as force'd so that cannot be optimised out by pCode optimiser,
5661         * src/pic16/pcode.c,
5662         * src/pic16/pcodepeeph.c,
5663         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5664         they are disabled by default, but can be enabled explicit with
5665         command argument --denable-peeps, for testing,
5666         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5667         --pomit-ivt in COMPILE_FLAGS
5668
5669 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5670
5671         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5672           compilation on MSVC
5673
5674 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5675
5676         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5677
5678 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5679
5680         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5681         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5682
5683 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5684
5685         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5686         would only assign 0x300001 register.
5687
5688 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5689
5690         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5691         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5692
5693 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5694
5695         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5696         for ds80c400
5697         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5698         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5699         added peephole 254 (left shift), 255 (jump table)
5700
5701 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5702
5703         * device/lib/Makefile.in: removed comment line with model-pic16,
5704         * (target port-specific-objects-pic16): the libraries and objects
5705         are copied to the build directory form the device/lib/pic16/bin
5706         directory
5707
5708         Cumulative patch concerning pic16 port:
5709         * library directory has been re-organized,
5710         * added support for PIC18F1220,
5711         * added headers and library sources for chips 18f1220,18f6520,
5712         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5713
5714         * configuration registers setting has changed, now each supported
5715         device has a complete description of the registers it uses,
5716         * all initialisations are moved to idata sections, these section
5717         can be absolute or relocatable,
5718         * fixed initialisation of codespace variables,
5719         * fixed warning about PCLATU and gpsim,
5720         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5721         * (genAssign): use table reads when assigning from variables in codespace,
5722         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5723         char/int variables placed in codespace,
5724         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5725         registers set in .asm file, no need for --pomit-config-words anymore,
5726         * (pic16glue): some 8051 legacy segments are commented out
5727         (to be removed completely),
5728         * added support for alternative assembler and linker with --asm=
5729         and --link= command line arguments,
5730         * peepholes are disabled automatically in the port, no need to
5731         specify on command line,
5732         * port supports natively char/int/long multiplication, but converts
5733         all divisions to support functions,
5734         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5735         to the file set in variable $2,
5736         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5737         strings in ASCII format and not in hex,
5738         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5739         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5740         allocate proper register if iCodes aren't temporary,
5741
5742 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5743
5744         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5745
5746 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5747
5748         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5749         is commented out
5750
5751 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5752
5753         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5754         computed address is reused
5755         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5756         multi-byte bitfields
5757
5758 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5759
5760         * src/z80/gen.c: (genArrayInit): must check for pointers too
5761
5762 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5763
5764         * support/regression/tests/zeropad.c: never meant to commit the
5765           nestedstruct test: removed, added check for GCC version
5766
5767 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5768
5769         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5770         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5771         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5772           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5773           bugs 928906 and 954082 half-empty initializers
5774         * src/SDCCsymt.h,
5775         * src/SDCCsymt.c (getAllocSize): added for above fix
5776         * src/z80/gen.c (genArrayInit): fixed bug 741044
5777         * support/regression/tests/zeropad.c: added tests
5778
5779 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5780
5781         * src/pic16/device.c (pic16_dump_section): corrected bug which
5782         caused some symbols of the libraries to be misplaced
5783
5784 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5785
5786         * src/pic16/glue.c,
5787         * src/pic16/ralloc.h,
5788         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5789         to fix conflict with pic port
5790
5791 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5792
5793         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5794         externs configuration variables,
5795         * src/pic16/ralloc.h,
5796         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5797         prototype in header, commented out some debug messages
5798
5799 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5800
5801         * src/pic16/glue.c,
5802         * src/pic16/main.c,
5803         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5804         for gpasm COFF object generation. Thanks to D. Hawkins for
5805         his patch info
5806
5807 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5808
5809         * src/ds390/main.c,
5810         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5811         Brock for spotting this)
5812         * src/ds390/gen.c (genEndFunction),
5813         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5814         interrupt handler and critical. Disable push/pop optimizations when
5815         peephole optimizations disabled.
5816
5817 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5818
5819         Updated pic16 library sources and headers.
5820         * device/lib/pic16/pic18f*/ ,
5821         * device/include/pic16/*.h: modified to handle structured SFR
5822         definitions
5823
5824 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5825
5826         * src/port.h (PORT structure): added hook initPaths, now each
5827         port can declare its own default search paths,
5828         which can been seen with the --print-search-dirs option,
5829         see pic16 port for example,
5830         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5831         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5832         * (doPrintSearchDirs): NEW, replaces in a central manner the
5833         printing of search dirs which was split in set*Paths functions,
5834         * (main): added call to port->initPaths and doPrintSearchDirs,
5835         * src/avr/main.c,
5836         * src/ds390/main.c,
5837         * src/hc08/main.c,
5838         * src/izt/i186.c,
5839         * src/izt/tlcs900h.c,
5840         * src/mcs51/main.c,
5841         * src/pic/main.c,
5842         * src/pic16/main.c: modified port structures to reflect addition of
5843         initPaths hook,
5844
5845         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5846         * (pic16_dump_section): for registers in same address reserve memory once,
5847         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5848         to no_banksel,
5849         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5850         result is greater in size than right or left,
5851         * (pic16_genUMult8X8_8): there are some cases where the result can
5852         be 16 bits size, so handle these,
5853         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5854         * (pic16_outBitC): modified to emit pcodes,
5855         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5856         or not,
5857         * (genDivOneByte): implemented algorithm to divide 8-bits,
5858         * (genCmp): uncommented goto, but issues still exist,
5859         * (genAnd): fixed a bug with variables >8bits,
5860         * (genPackBits): optimization added that uses BCF/BSF to change a
5861         single bit,
5862         * (genAssign): fixed bug when assigning floating point literals,
5863         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5864         __sdcc_gsinit_startup label,
5865         * src/pic16/main.c (_pic16_init): removed search directory
5866         initialisations,
5867         * (_pic16_initPaths): NEW, used to initialise search directories,
5868         * (_hasNativeMulFor): support functions for all except char/int
5869         multiplication, and char division,
5870         * (PIC16_port struct): modified entry for native mul support,
5871         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5872         no_banksel option,
5873         * (buildCallTree): call to register_usage is ifdef'ed out,
5874
5875 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5876
5877         * device/include/string.h: applied Stas Sergeev's patch to make this
5878         header file compatible with the preprocessor -Wundef option
5879         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5880         failure (fixes bug #941458)
5881
5882 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5885         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5886         that the variable, not the function, should be static
5887         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5888         to be consistent with non-literal case
5889
5890 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5891
5892         * src/SDCCast.c (isConformingBody): fixed bug #949967
5893         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5894         convilong): fixed bug #952086
5895
5896 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5897
5898         * src/SDCCmem.c (allocVariables): fixed bug #955321
5899
5900 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5901
5902         * src/hc08/main.c (_hc08_genAssemblerEnd),
5903         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5904         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5905         completely eliminated the use of a temporary file
5906         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5907         when more than one file linked
5908         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5909
5910 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5913         which fixes bug #543481
5914         * support/regression/tests/bug-751703.c: fixed comments left from a
5915         cut and paste error
5916         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5917         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5918         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5919         scopes
5920         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5921         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5922         are now changed to underscores in moduleName
5923
5924 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5925
5926         * as/mcs51/lkmem.c: better fix for bug #954173
5927
5928 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5929         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5930
5931         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5932         * device/include/c8051f000.h,
5933         * device/include/c8051f120.h,
5934         * device/include/c8051f300.h,
5935         * device/include/c8051f310.h,
5936         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5937         PWM16) and detab'ed
5938
5939 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5940
5941         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5942         and mailing lists, doc'ed --no-peep-comments, removed reference
5943         to knoppix (newest version has no LyX/LaTeX), other minor changes
5944         * src/SDCCglue.c (glue): save 2 bytes stack space with
5945         option --main-return. The ljmp could probably be avoided too
5946
5947 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5948
5949         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5950
5951 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5952
5953         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5954         * src/SDCCopt.c (isLocalWithoutDef),
5955         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5956         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5957         (credit to Maarten Brock for patch #949363, on which this is based)
5958         * support/regression/tests/bug-751703.c: some test cases of extern used
5959         within inner scopes.
5960
5961 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5962
5963         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5964         SPEC_STRUCT
5965         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5966         struct definitions
5967         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5968         dwWriteLabel): fix to create valid debugger symbols even when
5969         the module name has non-alphanumeric symbols in it
5970         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5971         when a variable's allocation has been optimized away
5972
5973
5974 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5975
5976         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5977         * src/hc08/main.c,
5978         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5979         * src/mcs51/main.c,
5980         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5981         * src/ds390/main.c,
5982         * src/z80/gen.c (z80_emitDebuggerSymbol),
5983         * src/z80/main.c,
5984         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5985         * src/pic/main.c,
5986         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5987         * src/pic16/main.c,
5988         * src/avr/gen.c (avr_emitDebuggerSymbol),
5989         * src/avr/main.c,
5990         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5991         * src/xa51/main.c,
5992         * src/SDCCdebug.c (emitDebuggerSymbol),
5993         * src/SDCCdebug.h,
5994         * src/port.h: added a debugger struct to the port struct. Added a
5995         callback for defining debugger symbols
5996
5997         * src/SDCCast.c (createLabel),
5998         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5999         with isitmp = 1
6000         * src/SDCCicode.h,
6001         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6002         iCode back to the ast for the function
6003
6004         * src/hc08/ralloc.c (hc08_assignRegisters),
6005         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6006         unneeded fields from the regs struct.
6007         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6008         pushReg() & pullReg() functions instead of emitcode()
6009
6010         * src/hc08/gen.c (genLabel, genhc08Code),
6011         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6012
6013         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6014         debugger hooks
6015
6016         * src/hc08/gen.c (genEndFunction, genhc08Code),
6017         * src/hc08/gen.h,
6018         * src/mcs51/gen.c (genEndFunction, gen51Code),
6019         * src/mcs51/gen.h,
6020         * src/ds390/gen.c (genEndFunction, gen390Code),
6021         * src/ds390/gen.h,
6022         * src/z80/gen.c (genEndFunction, genZ80Code),
6023         * src/z80/gen.h,
6024         * src/z80/z80.h,
6025         * src/pic/gen.c (genEndFunction, genpic14Code),
6026         * src/pic/gen.h,
6027         * src/pic16/gen.c (genEndFunction, genpic16Code),
6028         * src/pic16/gen.h,
6029         * src/avr/gen.c (genEndFunction, genAVRCode),
6030         * src/avr/gen.h,
6031         * src/xa51/gen.c (genEndFunction, genXA51Code),
6032         * src/xa51/gen.h,
6033         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6034         specific code to cdbFile.c and out of the backend code generators
6035
6036         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6037         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6038         starting address is now 0
6039
6040         * as/hc08/asm.h,
6041         * as/hc08/m08pst.c,
6042         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6043         assembler directive for DWARF support
6044         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6045
6046         * src/src.dsp,
6047         * src/Makefile.in,
6048         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6049
6050 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6051
6052         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6053         and inappropriate peephole optimization in jump tables
6054
6055 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6056
6057         * as/hc08/m08pst.c,
6058         * src/SDCCglue.c: sdccopt works for the hc08 port now
6059
6060 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6061
6062         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6063
6064 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6065
6066         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6067
6068 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6069
6070         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6071         rules
6072         * src/SDCCmain.c,
6073         * src/SDCCglobl.h,
6074         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6075         comments from the peephole optimizer replacement rules
6076         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6077         symbols
6078         * src/SDCCcse.c (updateSpillLocation),
6079         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6080         equivalents
6081         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6082         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6083         objects far pointers
6084
6085 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6086
6087         * src/SDCCsymt.h: a missing part of my last change
6088         * src/pic/ralloc.c (regTypeNum),
6089         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6090
6091 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6092
6093         * src/SDCCicode.h,
6094         * src/SDCCicode.c (aggrToPtrDclType),
6095         * src/SDCCptropt.h,
6096         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6097         ptrPseudoSymConvert),
6098         * src/pic/ralloc.c (regTypeNum),
6099         * src/pic16/ralloc.c (regTypeNum),
6100         * src/hc08/ralloc.c (regTypeNum),
6101         * src/ds390/ralloc.c (regTypeNum),
6102         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6103         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6104
6105 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6106
6107         * link/z80/lkmain.c (afile),
6108         * as/hc08/lkmain.c (afile),
6109         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6110         prevent a pointer problem when a filename has no directory and
6111         no extension specified.
6112
6113 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6114
6115         * link/z80/lkmain.c (afile): allow periods in directory names
6116         * link/z80/lkmain.c (afile),
6117         * as/mcs51/lkmain.c (afile),
6118         * as/hc08/lkmain.c (afile): allow linker script file to have an
6119         extension other than ".lnk"
6120         * link/z80/lklex.c (getfid),
6121         * link/z80/lkmain.c (parse),
6122         * as/mcs51/lklex.c (getfid),
6123         * as/mcs51/lkmain.c (parse),
6124         * as/hc08/lklex.c (getfid),
6125         * as/hc08/lkmain.c (parse): Support comments in the linker script
6126         file on lines by themselves and after filenames
6127
6128 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6129
6130         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6131
6132 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6133
6134         * src/z80/peeph-z80.def: removed some peephole rules that don't
6135         work with multibyte arithmetic (fixed bug #937126)
6136         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6137         to registers and not global variables
6138         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6139         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6140         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6141         checking for assignments not internally generated (fixed bug #931895)
6142         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6143         structure member (fixed bug #930072)
6144
6145 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6146
6147         * src/SDCCmain.c (linkEdit),
6148         * src/hc08/main.c (_hc08_parseOptions),
6149         * as/hc08/Makefile.in,
6150         * as/hc08/aslink.h,
6151         * as/hc08/asm.h,
6152         * as/hc08/m08pst.c,
6153         * as/hc08/lkrloc.c (relr, rele),
6154         * as/hc08/lkarea.c (lnkarea)
6155         * as/hc08/lkmain.c (afile, parse),
6156         * as/hc08/lkelf.c: support for ELF output
6157         * as/hc08/lks19.c (s19),
6158         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6159
6160 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6161
6162         * as/mcs51/lkihx.c: Fixed bug #899105.
6163
6164 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6165
6166         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6167         .dsp files from Unix to DOS.
6168
6169 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6170
6171         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6172         function pointers; we have been compliant for several months now.
6173         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6174         change that was accidently commented out
6175         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6176         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6177         bug #922319
6178
6179 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6180
6181         * src/hc08/gen.c: output of all of the internal debugging information
6182         is now controlled by the D() macro; it is disabled by default
6183
6184 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6185
6186         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6187         harder to keep the same registers during a CAST iCode
6188         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6189         long via int can be done in a single cast, if the signedness is
6190         correct.
6191         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6192         putchar() in tinibios.c in ds390's library
6193
6194 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6195
6196         * src/SDCCast.c (decorateType): fixed bug #898889,
6197         cast result of a literal complement too
6198         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6199         fixed check for bitfields
6200
6201 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6202
6203         * src/SDCCicode.c (geniCodeLogic): made it static,
6204         (geniCodeLogicAndOr): added in order to fix bug #905492,
6205         (ast2iCode): fixed bug #905492
6206         * support/regression/tests/bug-905492.c: added
6207         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6208         (processParms): fixed bug #927659: don't copy parms, this will clear
6209         decorated flag
6210         * support/regression/tests/bug-927659.c: added
6211
6212 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6213
6214         * src/SDCCast.c (addCast): don't cast float to char
6215         * device/lib/libsdcc.lib: added _memmove
6216
6217 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6218
6219         * device/lib/large/Makefile: fixed parallel execution by
6220         replacing `make` by `$(MAKE)`
6221
6222 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6223
6224         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6225         offsets (fixes bug #923936)
6226
6227 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6228
6229         * device/lib/small/Makefile: fixed parallel execution by
6230         replacing `make` by `$(MAKE)`
6231
6232 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6233
6234         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6235
6236 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6237
6238         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6239         * src/regression/Makefile: Regression test was not running.
6240
6241 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6242
6243         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6244         complement if possible
6245         * src/SDCCval.c (valComplement),
6246         * src/SDCCicode.c (operandOperation): fixed complement of literal
6247         * support/regression/tests/onebyte.c (testComplement): added
6248
6249 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6250
6251         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6252         return an optimized tree; actually replace actParm with the new tree
6253         * src/SDCCast.h: added some parantheses to remove side effects
6254         * support/regression/tests/bug-920866.c
6255
6256 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6257         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6258         Bit operands were not being handled properly in the pic14 port.
6259         (now src/regression/add.c passes again).
6260
6261 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6262
6263         * src/SDCC.y (labeled_statement): case and default no longer require
6264         a following statement (RFE #893037)
6265
6266 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6267
6268         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6269         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6270         disabled (fixes bug #916294)
6271         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6272         "mov a,acc"; patch provided by Lenny Story
6273         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6274
6275 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6276
6277         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6278         functions
6279         * src/ds390/gen.c (genFunction, genEndFunction),
6280         * src/ds390/ralloc.c (ds390_assignRegisters),
6281         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6282         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6283         pushed if there are parameters passed on the stack. Also, a cleaner
6284         way to decide if r0/r1 should be pushed/popped. (Together they fix
6285         bug #918693)
6286
6287 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6288
6289         * doc/sdccman.lyx,
6290         * device/lib/mcs51/crtpagesfr.asm,
6291         * device/lib/mcs51/crtxinit.asm,
6292         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6293         to avoid confusion with Si Lab's SFRPAGE register.
6294
6295 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6296
6297         * src/SDCCglue.c (emitMaps): allow public sfr variables
6298         * src/SDCCglue.c (initialComments): include compiler build date
6299         with compiler version and put the timestamp of the generated
6300         assembly file on a serperate line to be less confusing.
6301         * src/port.h: added genInitStartup hook
6302         * src/avr/main.c,
6303         * src/ds390/main.c,
6304         * src/hc08/main.c,
6305         * src/pic/main.c,
6306         * src/pic16/main.c,
6307         * src/xa51/main.c,
6308         * src/z80/main.c: genInitStartup initialize as NULL (default to
6309         historical behaviour)
6310         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6311         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6312         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6313         library instead of hard coding it into the compiler.
6314         * support/regression/ports/mcs51-stack-auto/spec.mk,
6315         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6316         * device/lib/mcs51/Makefile,
6317         * device/lib/small/Makefile,
6318         * device/lib/large/Makefile,
6319         * device/lib/mcs51/crtpagesfr.asm,
6320         * device/lib/mcs51/crtstart.asm,
6321         * device/lib/mcs51/crtxclear.asm,
6322         * device/lib/mcs51/crtxinit.asm,
6323         * device/lib/mcs51/crtclear.asm,
6324         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6325         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6326         and into user configurable files.
6327         * device/lib/clean.mk: clean mcs51 directory too
6328         * support/regression/tests/longlit.c: added static to T1 declaration
6329         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6330         accesses in the initialization code
6331
6332 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6333
6334         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6335         OSCTRIMVAL as noted in bug #916008
6336
6337 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6338
6339         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6340         in loops with multiple exits (reported as incorrect registers
6341         used by Martin Helmling in Sdcc-user list)
6342
6343 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6344
6345         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6346         made ds390 register extensions look less like error messages
6347
6348 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6349
6350         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6351         reported by Adam Wozniak in Sdcc-user list
6352
6353 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6354
6355         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6356         arithmetic optimizations, added debug output
6357
6358 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6359
6360         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6361         * sdcc.spec: updated and split sdcc into 3 rpms
6362         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6363         needed for literals of LEFT_OP and '+'
6364         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6365         introduced RESULT_TYPE_NOPROM
6366         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6367         left shift
6368         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6369         limited promotion to int only for '*'
6370         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6371
6372 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6373
6374         * src/pic16/gen.c (genSkip),
6375         (genc16bit2lit), (gencjneshort): commented out
6376         (is_LitOp): new helper function, checks operand type
6377         (genCmpEq): rewritten
6378
6379 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6380
6381         * support/regression/tests/bug-908454.c: added
6382
6383 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6384
6385         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6386         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6387         (geniCodeCast): cosmetic, don't preserve bit storage class
6388         (geniCodeLeftShift): added promotion
6389         (geniCodeLogic): fixed regression
6390         * src/SDCCsymt.c (computeTypeOr): accept bits too
6391         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6392
6393 2004-03-07  Borut Razem <borut.razem AT siol.net>
6394
6395         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6396
6397 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6398
6399         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6400         version of pic16_genPackRegisters which does not check if ic is a
6401         CAST operator,
6402         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6403         function cause string1.c regression test fails
6404
6405 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6406
6407         * sim/ucsim/configure.in,
6408         * sim/ucsim/configure,
6409         * sim/ucsim/doc/Makefile.in: use docdir
6410         * src/SDCC.y: fixed sbit atrributes
6411         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6412         * src/SDCCast.c (decorateType): |^& need special promotion handling
6413         * src/SDCCast.h,
6414         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6415         * src/SDCCsymt.h (computeType),
6416         * src/SDCCicode.c: computeType() needs op
6417         * src/SDCCsymt.c (checkTypeSanity),
6418         * doc/sddman.lyx: "plain" bitfields are unsigned
6419         * src/SDCCsymt.c (computeTypeOr): added
6420         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6421         |^& ops
6422         * src/SDCCval.c (val*): computeType() needs op
6423         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6424         * support/regression/tests/onebyte.c: added tests for |^&
6425
6426 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6427
6428         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6429         for writing icode into asm output.
6430
6431 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6432
6433         * src/pic16/device.c: added some debug lines enabled
6434         with macro DEBUG_CHECK,
6435         * src/pic16/genarith.c: more debug in genPlus,
6436         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6437         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6438         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6439         * (aopForSym): onStack symbols are re-placed in data memspace,
6440         and onStack flag is cleared,
6441         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6442         copy temporary pcodeop,
6443         * (genPcall): added warning for not updating PCLATU,
6444         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6445         always true for pic16 port,
6446         * (genMultOneWord): NEW, supports integer multiplication,
6447         * (genMult): modified to call genMultOneWord,
6448         * (ifxForOp): added warning when return NULL,
6449         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6450         flag is set before call to operandFromSymbol for implicit
6451         added structures,
6452         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6453         options.intlong_rent are set by default,
6454         * (_hasNativeMulFor): modified to allow port generation of integer
6455         multiplication,
6456         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6457         set regtype to REG_SFR for all registers, restricting seting the
6458         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6459
6460 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6461
6462         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6463         more than 500 times in the regression tests
6464
6465 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6466
6467         * support/Util/SDCCerr.h,
6468         * support/Util/SDCCerr.c,
6469         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6470         enumerator_list),
6471         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6472         for symbol conflicts.
6473         * support/valdiags/tests/enum.c,
6474         * support/valdiags/tests/tentdecl.c,
6475         * support/valdiags/tests/struct.c: expect possible error messages
6476         referring to original symbol definitions.
6477         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6478         * src/SDCCsymt.h,
6479         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6480
6481 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6482
6483         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6484
6485 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6486
6487         * src/pic16/ralloc.c (newReg): fixed bug #908929
6488
6489 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6490
6491         * src/ds390/gen.c: added missing #include "main.h"
6492
6493 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6494
6495         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6496         checking if symbol is already in set,
6497         * src/pic16/device.h: prototype for checkAddSym,
6498         * src/pic16/gen.c: (_G): added entry interruptvector,
6499         * (assignResultValue): removed some commented out lines,
6500         * (genFunction): check for ISR via sym->type, absolute section for
6501         interrupt code is created via a new pBlock, the goto instruction is
6502         placed now correctly at the interrupt vector position, changed all
6503         references from ivec to _G.interruptvector,
6504         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6505         is the interrupt is a high priority one, same for return from ISR,
6506         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6507         externs to calls of checkAddSym,
6508         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6509         pic16_pcode_verbose flag is set,
6510         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6511         * src/pic16/pcoderegs.c: message about how many registers are saved
6512         will only be emitted if pic16_pcode_verbose flag is set,
6513
6514 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6515
6516         * src/ds390/ralloc.h,
6517         * src/ds390/ralloc.c (ds390_regWithIdx),
6518         * src/ds390/gen.c (emitcode),
6519         * src/ds390/main.h,
6520         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6521         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6522         ds390operandCompare, getRegsRead, getRegsWritten,
6523         initializeAsmLineNode): customized instruction size calculation for
6524         ds390, started basis for some register optimizations
6525         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6526         corresponding assembly output
6527         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6528         missing push/pop of r0/r1. Optimized push/pops
6529
6530 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6531
6532         * src/mcs51/main.c (instructionSize): fixed ACALL size
6533         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6534
6535 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6536
6537         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6538         the sorting of rlist with NULL elements
6539         * (print_idataType, print_idata): NEW to create idata sections
6540         * src/pic16/device.h: idataSymSet new variable
6541         * src/pic16/gen.c (genFunction): fixed some bugs in string
6542         comparing, improved the absolute section creation for ISRs,
6543         added FSR0L/FSR0H in registers that are saved in an ISR,
6544         * (genInline): fixed the processing of inline snippets,
6545         now they undergo no process by the peephole optimizer
6546         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6547         are placed in idataSymSet,
6548         * (pic16emitStaticSeg): extern symbols are added in externs,
6549         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6550         switching when aboslute variables are placed in access bank memory
6551         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6552         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6553         commented out with #if,
6554         * (pic16_packRegisters): reintroduce the check for CAST because some
6555         symbols are not correctly handled,
6556         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6557         pCodeInstruction instead of pCode,
6558         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6559         pCodeAsmDir definition,
6560         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6561         directive, then the argument directive is emitted without the leading
6562         tab, hack for inline labels which must be in the first column,
6563         * (compareLabel,pic16_findNextInstruction),
6564         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6565         * (insertBankSwitch): modified for the new pCodeAsmDir,
6566
6567 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6568         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6569
6570         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6571         instance,
6572         * (pushSide): commented out with #if,
6573         * (assignResultValue): fixed some typos in saving
6574         registers,
6575         * (genPcall): FIXED and sync'ed with genCall,
6576         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6577         * (genNearPointerGet): fixed to handle some more cases,
6578         implementation scheme via table reads,
6579         * (genConstPointerGet): modified to access code memory correct,
6580         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6581         and improved to handle some cases
6582         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6583         instead of "RETLW" for init data
6584         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6585         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6586         variables are placed in access bank memory (<0x80 and >=0xf80),
6587         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6588         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6589         TBLWT_POSTDEC,TBLWT_PREINC
6590         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6591         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6592         directives
6593         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6594         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6595         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6596         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6597
6598 2004-02-29  Borut Razem <borut.razem AT siol.net>
6599
6600         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6601         support/Util/findme.h, support/Util/system.h: enhance binary relative
6602         search for lib and include by using findProgramPath()
6603
6604 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6605
6606         * src/SDCCpeeph.h,
6607         * src/SDCCpeeph.c (pcDistance),
6608         * src/port.h,
6609         * src/mcs51/ralloc.h,
6610         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6611         * src/mcs51/main.h,
6612         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6613         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6614         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6615         size calculation port specific, started basis for some register
6616         optimizations
6617         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6618         missing push/pop of r0/r1. Optimized push/pops
6619         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6620         * device/lib/_modsint.c (_modsint),
6621         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6622         and stack version so regression tests pass
6623
6624 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6625
6626         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6627         * src/SDCCast.c (decorateType): catch another small optimization
6628         with '?' operator
6629         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6630         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6631         modified to finally use computeType() all over SDCC,
6632         see Feature Request #877103
6633         * src/SDCCval.h: cosmetic
6634         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6635         valCompare(); regression tested in muldiv.c
6636         * support/regression/tests/muldiv.c (testMod): mod sign follows
6637         dividend only
6638
6639 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6640
6641         * src/SDCCast.c (decorateType): fixed bug #902362
6642         * doc/INSTALL.txt: fixed install instructions for win32
6643
6644 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6645
6646         * device/include/Makefile.in (install): fixed by replacing spaces
6647         by tabs
6648         * doc/README.txt,
6649         * doc/INSTALL.txt: updated for release
6650         * doc/sdccman.lyx: added warning for --xstack being buggy
6651
6652 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6653
6654         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6655         to eliminate build warnings.
6656         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6657
6658 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6659            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6660
6661         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6662         removed -penable-stack, added comment for stack pragma, added
6663         warning for not initializing the stack/frame registers, removed
6664         comment at interrupts section
6665
6666         Stack is made permanent, there is no ability to disable stack usage.
6667         * src/pic16/device.h,
6668         * src/pic16/device.c: removed all references to USE_STACK macro,
6669         * src/pic16/device.c (pic16_dump_section): when no elements in
6670         rlist, free rlist before return,
6671         * (pic16_dump_int_registers): NEW, internal registers are a new set
6672         of general purpose registers reused by each function,
6673         * (checkAddReg): returns 1 if registers is added to set,
6674         * (pic16_groupRegistersInSection): when a registers is of type
6675         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6676         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6677         SRCASECMP macro is moved here from device.c
6678         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6679         PO_PCLATU, PO_PRODL, PO_PRODH,
6680         * (pic16_pCodeOpType, genMinus,
6681         changed compares to "a" register, with AOP_ACC,
6682         * (pic16_genPlus): fixed some bugs and indented properly,
6683         * (pic16_addSign): changed size to size+offset in the MOVWF
6684         instruction,
6685         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6686         multiply 8-bit operand by literal, result is 8-bit,
6687         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6688         multiply 2 8-bit operand, result is 8-bit,
6689         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6690         genUMult8X*_16,
6691         * src/pic16/gen.c: changed accUse to contain WREG only,
6692         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6693         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6694         true, do not use immediate addressing any more unless sym is a
6695         pointer in codespace,
6696         * (aopForRemat): do not use immediate addressing when symbol not in
6697         codespace and when symbol's address is requested,
6698         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6699         accUse size (= 1),
6700         * (aopGet): added case for AOP_ACC and don't return "accumulator
6701         bug" but WREG instead,
6702         * (popGetTempReg): pushes contents of temporary register in stack,
6703         * (popReleaseTempReg): pops contents of temporary register from
6704         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6705         * (pic16_popGet): separated case AOP_ACC to return register WREG
6706         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6707         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6708         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6709         the use of immediate pointers to certain cases only.
6710
6711         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6712         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6713         * (assignResultValue, genCall, genRet): modified to use the new
6714         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6715         genPcall is still broken,
6716         * (genFunction): added code to create 'A' type pBlocks when
6717         interrupt functions are generated, code not extensively tested yet,
6718         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6719         * (genEndFunction): modified so ISRs pop stored registers from stack,
6720         * (genMultOneByte): cleanup,
6721         * (AccRsh): added flag andmask, to and result with appropriate mask,
6722         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6723         * (genDataPointerGet): fixed and reenabled its use,
6724         * (genNearDataPointerGet): bugs fixed,
6725         * (genDataPointerSet): bugs fixed,
6726         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6727         pic16_DumpSymbol, pic16_DumpOp,
6728         * src/pic16/genutils.h: function prototypes for the above functions,
6729         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6730         pointers,
6731         * (pic16emitRegularMap): many many many improvements, but needs a
6732         major cleanup,
6733         * src/pic16/main.c: enable_stack in pic16_options is removed,
6734         * (_pic16_parseOptions): removed command line options -penable-stack,
6735         * (_process_pragma): emit stack symbol only when stack pragma is
6736         processed,
6737         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6738         redirected to FSR0L/FSR0H pair,
6739         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6740         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6741         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6742         for immediates,
6743         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6744         * (dumpPicOptype): NEW,
6745         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6746         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6747         with movff instruction,
6748         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6749         added pic16_int_regs, some packRegsFor* functions are commented out,
6750         because produce errors,
6751         * src/pic16/NOTES: minor modifications
6752
6753 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6754
6755         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6756         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6757         --pack-iram.
6758         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6759         * as/mcs51/lkaomf51.c: fixed bug #895763
6760
6761 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6762
6763         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6764
6765 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6766
6767         * doc/sdccman.lyx: added details about the HC08 storage classes and
6768         interrupts, fixed the register usage info for z80 & gbz80
6769
6770 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6771
6772         * doc/sdccman.lyx: added more pic16 port documentation
6773         * device/include/pic16/: added header pic18fregs.h
6774
6775 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6776
6777         * doc/sdccman.lyx: added Vangelis' contribution
6778
6779 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6780
6781         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6782         extend to the next CALL or PCALL, not just to the next CALL.
6783
6784 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6785
6786         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6787
6788 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6789
6790         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6791         bug #895752 and a better fix for bug #716790
6792
6793 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6794
6795         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6796
6797 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6798
6799         * doc/sdccman.lyx: minor changes, minor changed
6800
6801 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6802
6803         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6804         which can't handle SDCC_NEWONEBYTEOPS,
6805         (geniCodeMultiply): removed conversion from mult to shift for pic14
6806         and pic16
6807
6808 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6809
6810         * src/hc08/gen.h,
6811         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6812         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6813         thus fixing bug #895406
6814
6815 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6816
6817         * device/lib/_modsint.c,
6818         * device/lib/_modslong.c: sign follows divisor only
6819         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6820         signs or signedness can be ignored
6821         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6822         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6823         added optimization for IFX,
6824         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6825         arguments;
6826         reenabled optimization for IFX, which was removed on 2004-01-11
6827         * src/SDCCast.h: added return type IFX
6828         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6829         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6830         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6831         SDCC_OLDONEBYTEOPS selects the old behaviour
6832         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6833         changed again and commented promotion rule
6834         * src/SDCCval.c (valDiv): promotion no longer necessary
6835         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6836         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6837         rewritten
6838         * support/regression/tests/onebyte.c: added
6839
6840 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6841
6842         * gen.c (genInline): reverted to old code for assemnling inline
6843         code because of bug reported James Chadd
6844
6845 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6846
6847         * ralloc.h: missing declarations from previous patch,
6848         seems that patch for ralloc.h was never applied, fixed
6849
6850 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6851            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6852
6853         * pcode.c,
6854         * pcode.h,
6855         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6856         indirect addressing. Marked FSR0 as deprecated
6857         * gen.c (pointerCode): commented out, not needed now
6858         (pic16_popGet2p): new MOVFF helper function
6859         (genGenPointerGet),
6860         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6861         (shiftRLong): removed duplicate debugging info
6862
6863 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6864
6865         * src/ds390/gen.c (genNearPointerGet),
6866         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6867         optimization with bits, but not bitfields.
6868         * src/ds390/ralloc.c (packRegisters),
6869         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6870
6871 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6872
6873         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6874
6875 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6876
6877         * src/SDCCsymt.h,
6878         * src/SDCCicode.c (operandFromSymbol),
6879         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6880         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6881         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6882         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6883         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6884         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6885         bug #892038
6886         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6887         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6888         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6889         * src/SDCCsymt.c (newSymbol),
6890         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6891         enumerator_list),
6892         * src/SDCCval.h,
6893         * src/SDCCval.c (newiList): fixed bug #885705
6894
6895 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6896
6897         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6898         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6899
6900 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6901
6902         * device/include/c8051f120.h,
6903         * device/include/c8051f300.h,
6904         * device/include/c8051f310.h: added/updated header files for Silicon
6905         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6906         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6907         in new section Submitting patches
6908
6909 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6910
6911         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6912         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6913         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6914         genGenPointerSet),
6915         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6916         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6917         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6918         genGenPointerSet),
6919         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6920         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6921         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6922         genGenPointerSet),
6923         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6924         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6925         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6926         genGenPointerSet): fixed bug #892400
6927         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6928         to eliminate build warnings.
6929         * src/SDCCast.c (processParms),
6930         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6931         fixed bug 751859
6932         * support/valdiag/valdiag.py: added GCC to the list of defines active
6933         when compiling with gcc
6934
6935 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6936
6937         * support/Util/SDCCerr.h,
6938         * support/Util/SDCCerr.c,
6939         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6940         with an incomplete type (fixed bug #883734)
6941         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6942
6943 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6944
6945         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6946
6947 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6948
6949         * src/SDCCast.c (decorateType),
6950         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6951         function pointer implementation
6952         * support/regression/tests/funptrs.c: added tests to verify both forms
6953         of function pointers work correctly. Added tests to verify parameters
6954         are passed in the correct order.
6955
6956 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6957
6958         * device.c (regCompare): registers are sorted by ascending
6959         address and increasing size,
6960         * main.c (_pic16_finaliseOptions): removed the declaration
6961         of compiler macro MCU. Now a macro of the format pic18fxxxx
6962         will be defined from the command line
6963
6964 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6965             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6966
6967         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6968         PCOP_RLCF was overwritten!
6969         * gen.c (genSkip): commented out calls to pic16_emitcode,
6970         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6971         * (genlshTwo),
6972         * (genRRC): added debugging info,
6973         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6974         overwritten while shifting,
6975         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6976         overwritten while shifting,
6977         * (AccLsh),
6978         * (AccRsh),
6979         * (shiftLLeftOrResult),
6980         * (shiftRLeftOrResult),
6981         * (shiftRLong),
6982         * (shiftLLong): Implemented with pic16_emitpcode
6983         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6984         * (genLeftShift): Fixed bug, operand for shift by variable always
6985         was "and"ed with 0x0f,
6986         * (genLeftShiftLiteral),
6987         * (genrshTwo),
6988         * (genRightShiftLiteral): added debugging info,
6989         * (genrshFour): added comment,
6990         * (genRightShift): determined signedness from operand "left"
6991         instead of "result"
6992
6993 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6994
6995         * src/SDCCicode.c (geniCodeParms),
6996         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6997         function pointers, fixed function pointer bugs #861242 and #861896
6998
6999 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7000
7001         * device/include/c8051f000.h,
7002         * device/include/c8051f120.h,
7003         * device/include/c8051f300.h: added header files for Silicon
7004         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7005
7006 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7007
7008         * src/SDCCast.c (processParams): added new type flow and restructured
7009         (gatherAutoInit): added new type flow
7010         (addCast): cosmetic changes
7011         (getLeftResultType): added new type flow for array indices, patch
7012         provided by Stas, see FR #877103
7013         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7014         array index patch by Stas
7015         * src/SDCCast.h: added prototype getResultTypeFromType()
7016         * src/SDCCval.h,
7017         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7018         * src/pic/glue.c (pic14emitStaticSeg),
7019         * src/pic16/glue.c (pic16emitStaticSeg),
7020         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7021         for initialization of symbols
7022         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7023         * support/Util/SDCCerr.h:
7024         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7025         * .version: bumped version number to 2.3.8
7026         * device/include/Makefile.in (install),
7027         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7028         avoid warnings
7029
7030 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7031
7032         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7033         Slade Rich fixed an optimization bug
7034         * src/pic/pcodepeep.c,
7035         * src/pic/pcoderegs.c
7036         * doc/Makefile (install): added test for directory
7037
7038 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7039
7040         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7041         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7042         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7043         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7044         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7045         * as/mcs51/asexpr.c (term),
7046         * as/hc08/asexpr.c (term): fixed bug #887146
7047
7048 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7049
7050         * src/z80/gen.c (genMult): handle single byte result product
7051         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7052         DUMMY_READ_VOLATILE (fixed bug #886367)
7053
7054 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7055
7056         * support/regression/tests/libmullong.c: fixed logic, on little endian
7057         hosts we ended without a mullong_wrapper()
7058
7059 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7060
7061         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7062         virus/worm forged address usage.
7063
7064 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7065
7066         Fixed promotion, it should be done on AST level:
7067         * src/SDCCast.c (addCast): added promotion to int
7068         (decorateType): updated call to upCast()
7069         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7070         usualUnaryConversions()
7071
7072 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7073
7074         * support/regression/tests/literalop.c (mulWrapper): Added a
7075         wrapper to remove integer overflow warnings.
7076
7077         * support/regression/tests/float_trans.c: Made work on host.
7078
7079         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7080         location of sz80.
7081
7082         * support/regression/generate-cases.py (main): Changed from inline
7083         to a main method.
7084
7085         * doc/Makefile (install): Changed to depth first to get rid of
7086         missing directory install warning.
7087
7088         * as/Makefile (install-doc): Made work on Mac.
7089
7090 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7091
7092         * src/SDCCast.c: added an additional type flow in decorateType() of
7093         opposite direction, see feature request #860006; it's enabled at runtime
7094         by setting the environment variable SDCC_NEWTYPEFLOW
7095         * src/SDCCast.h: changed prototype of decorateType()
7096         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7097         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7098         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7099         see feature request #877103
7100         * src/SDCCval.c: updated call of decorateType()
7101         (valBitwise): fixed bug #882876
7102         (valMinus): added promotion
7103         (valLogicAndOr): result is unsigned
7104         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7105         * src/SDCCsymt.c (computeType),
7106         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7107         must not cause an unsigned operation
7108         * src/pic/glue (pic14emitRegularMap),
7109         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7110
7111 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7112
7113         * src/pic/pcode.c (PCodeID): commented out left over debug code
7114
7115 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7116
7117         * support/valdiag/tests/overflow.c: added shift tests
7118         * src/pic/device.c,
7119         * src/pic/gen.c,
7120         * src/pic/gen.h,
7121         * src/pic/glue.c,
7122         * src/pic/main.c,
7123         * src/pic/pcode.c,
7124         * src/pic/pcode.h,
7125         * src/pic/pcodepeep.c,
7126         * src/pic/pcoderegs.c,
7127         * src/pic/ralloc.c,
7128         * src/pic/ralloc.h: applied patch from Slade Rich;
7129         added support for multiple code pages and multiple RAM banks on the
7130         PIC 14 port. The ASM files now no longer simply assume all the
7131         code / RAM are in the same page / bank. This means the linker can
7132         safely allocate code/RAM of separate ASM files to different pages/banks.
7133         * doc/sdccman.lyx: added Slade's tips
7134         * src/mcs51/peeph.def: fixed bug #880768
7135
7136 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7137
7138         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7139         * src/SDCCast.c (decorateType): fixed bug #880197
7140
7141 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7142
7143         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7144         getopt.h.
7145
7146         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7147         strtof is not part of C89 and isn't included with Mac OS X.
7148
7149 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7150
7151         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7152         shiftL2Left2Result): fixed bug #879326
7153         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7154         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7155         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7156         address fetch for clr instruction
7157         * device/lib/hc08/_mulint.c: created optimized assembly version
7158         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7159
7160 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7161
7162         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7163         proposed in FR #877103
7164
7165 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7166
7167         * src/SDCCval.c (cheapestVal): added missing checks
7168         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7169         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7170
7171 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7172
7173         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7174         equal operands
7175
7176 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7177
7178         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7179         loaded with the linker search paths (-L arguments) and the libraries
7180         to be linked with the current source (-l arguments). Changes
7181         currently will affect only the pic16 port.
7182         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7183         include path the port specific paths and port specific libraries,
7184         * gplink command now contains the $3 argument,
7185         * src/pic16/device.h,
7186         * src/pic16/device.c,: structure PIC_device is made public and
7187         renamed to PIC16_device, the same for variable Pics which is renamed
7188         to Pics16. Updated all references to them.
7189         * src/pic16/glue.c (pic16glue): corrected bug with code
7190         initialization which bypassed the variable initializations block.
7191
7192         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7193         COMPILE_FLAGS and added the --nostdinc option
7194
7195 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7196
7197         * device/include/mc68hc908jb8.h: Register defs for another member
7198         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7199
7200 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7201
7202         Documenting changes from previous commits.
7203         * configure.in (version 1.56),
7204         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7205         when generating output files to configure the pic16 library,
7206         but now I've commented it out, since gputils aren't installed in the
7207         SF compile farm, so library won't compile
7208
7209         * device/lib/Makefile.in (version 1.56): initially I've added in
7210         target 'all' the prerequestive 'model-pic16' so it compiled the
7211         pic16 library, but now I've commented it out for the same reasons
7212         above,
7213         * added targets 'model-pic16' and 'objects-pic16' to compile the
7214         library
7215         * added target 'port-specific-objects-pic16' to handle the
7216         generated libraries and copy them into the build/ directory
7217         * added target 'clean-intermediate-pic16' to clean intermediate
7218         files into pic16 directory
7219         * in target 'installdirs' added line to create directory pic16 in
7220         the installation path
7221
7222         * device/include/Makefile.in (version 1.11): in target 'install'
7223         added lines to copy all header files to installation path,
7224         * in target 'installdirs' added line create directory for pic16
7225         headers in the installation path
7226
7227 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7228
7229         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7230          a function call
7231
7232 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7233
7234         * configure,
7235         * device/lib/configure.in,
7236         * device/lib/configure: fixed for autoconf 2.57
7237
7238 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7239
7240         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7241         option so that it actually works. Made it specific to the z80, since
7242         the gbz80 doesn't have these kinds of I/O ports.
7243
7244 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7245
7246         * device/include/z180.h,
7247         * device/lib/_memcpy.c,
7248         * device/lib/_memmove.c,
7249         * device/lib/_mulint.c,
7250         * device/lib/ser_ir.c,
7251         * device/lib/ser_ir_cts_rts.c,
7252         * device/lib/_strcmp.c,
7253         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7254         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7255         portmode; added deprecation warning for bank= and protmode= forms.
7256         Also, guard against buffer overflow.
7257         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7258
7259 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7260
7261         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7262         changed interrupt vector table generation to only emit declared vectors.
7263         * device/include/Makefile.in: added missing backslash
7264         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7265
7266 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7267
7268         Mainly changes to support compilation of the device libraries
7269         * src/pic16/device.c: stack is allocated via symbol and not
7270         via literal number. The symbol is placed in the corresponding
7271         position of the data ram
7272         * (pic16_dump_section): relocatable and absolute uninitialized
7273         data are now emitted in sorted order to reduce section naming,
7274         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7275         weren't marked as being in the access bank,
7276
7277 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7278
7279         Added portion of GNU PIC Library under the directory
7280         device/include/pic16 and device/lib/pic16. These files
7281         contain the declarations of SFRs for the PIC18Fxx2 devices.
7282         The directory is initialized via configure from toplevel.
7283
7284 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7285
7286         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7287         the spilllocations to be compared correctly
7288
7289 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7290
7291         * src/SDCCast.c (decorateType): fixed bug introduced today
7292
7293 2004-01-12  Borut Razem <borut.razem AT siol.net>
7294
7295         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7296         doc/sdccman.lyx: upper case pragmas are deprecated
7297
7298 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7299
7300         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7301         in simpler and even better code
7302
7303 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7304
7305         * src/SDCCicode.c (operandOperation): fixed bug #874819
7306         * src/SDCCast.c (decorateType): fixed
7307         char foo (unsigned long ul) { return ul > 0; }
7308
7309 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7310
7311         * doc/sdccman.lyx: Moved and added some sections, small changes
7312         all over. Telling LaTeX to be less strict with word spacing
7313         to better keep the right margin. Changed some notes about
7314         maintainance of the ports in section 3.2.1 - is it OK like this?
7315
7316 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7317
7318         SDCC source changes:
7319         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7320         convilong): modified to inform the pic16 port that builtin functions
7321         are external
7322
7323         PIC16 PORT specific changes:
7324         * src/pic16/device.c pic16_dump_equates() added,
7325         processor registers declared internally by the port are emitted in
7326         the translation as equates,
7327         * src/pic16/gen.c: inline code is passed unprocessed to the
7328         translation,
7329         * (pic16_popGetLit2): fnuction modified to take second operand as
7330         pCodeOp pointer and not as literal,
7331         * (popRegFromIdx): prefixed with pic16_,
7332         * (pic16_popCombine2): modified to receive already allocated pCode
7333         operands,
7334         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7335         * (genFunction): initializes local stack frame and pushes on stack
7336         all the registers used by this function,
7337         * (genEndFunction): restores all registers from stack and restores
7338         stack frame,
7339         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7340         improvements,
7341         * (pic16glue): changed the program startup sequence,
7342         * added new dbName code 'A' for functions placed in absolute section
7343         * src/pic16/main.c: added function attribute _naked,
7344         * added pragma 'code' to place a fnuction at an absolute address,
7345         * added command line arguments --debug-ralloc and --pcode-verbose,
7346         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7347         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7348         * (pic16_newpCodeOpLit2): modified to take the second operand as
7349         pCodeOp pointer,
7350         * (pic16_printpBlock): modified to emit each function in a separate
7351         section,
7352         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7353         UPPER for immediate operands,
7354         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7355         instruction,
7356         * src/pic16/peeph.def: all peepholes with movff are commented out,
7357         because there is a problem in the pcode peep optimizer,
7358         * src/pic16/ralloc.c: the register allocator can now reuse local
7359         function symbols for another function. This saves register usage.
7360         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7361
7362         Added file src/pic16/NOTES with information about program writing on
7363         the current port version.
7364
7365 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7366
7367         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7368         and peephole 252 (array access)
7369
7370 2004-01-09  Borut Razem <borut.razem AT siol.net>
7371
7372         * src/SDCCmain.c : fixed #872250: -l command line defined library
7373           files are scanned before standard library files
7374
7375 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7376
7377         * src/SDCCast.c (decorateType): fixed bug #874046
7378
7379 2004-01-09  Borut Razem <borut.razem AT siol.net>
7380
7381         * support/scripts/sdcc.nsi: remove previous installation
7382
7383 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7384
7385         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7386         bytes for last interrupt vector (mcs51)
7387         * sdcc.spec: fixed typo
7388
7389 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7390
7391         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7392         gen51Code): more efficient parameter receive for --model-large
7393         ("bug" #845294)
7394
7395 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7396
7397         * src/ds390/main.c,
7398         * src/z80/main.c: added missed needLinkerScript flags (more than
7399         one port structure defined in these file)
7400         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7401         bug #795325
7402
7403 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7404
7405         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7406         * src/port.h: added flag needLinkerScript in port->linker
7407         structure to inform whether to create a .lnk file or not,
7408         * src/avr/main.c,
7409         * src/ds390/main.c,
7410         * src/hc08/main.c,
7411         * src/mcs51/main.c,
7412         * src/pic/main.c,
7413         * src/pic16/main.c,
7414         * src/xa51/main.c,
7415         * src/z80/main.c: changed appropriately to configure
7416         needLinkerScript flag
7417         * src/pic/gen.c,
7418         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7419         * src/pic/glue.c: added variable udata_section_name to
7420         override default uninitialized data segment definition for
7421         devices only with SHAREBANK memory (reported from Erik Epetrich)
7422         * (pic14emitOverlay): modified to emit a commented overlay segment
7423         directive when no overlay data exist
7424         * (picglue): modified to emit uninitialized data segment
7425         according to udata_section_name
7426         * src/pic/main.c (_pic14_parseOptions): added command line
7427         options --udata-section-name=[name] to override default
7428         udata definition name
7429         * modified _linkCmd and _asmCmd to include compiler passed
7430         arguments via -W option
7431         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7432         object file from '.rel' to '.o' in port->linker structure,
7433         changed size of fptr from 2 to 3 in port structure
7434
7435 2004-01-07  Borut Razem <borut.razem AT siol.net>
7436
7437         * support/scripts/sdcc.nsi: update PATH
7438         * support/scripts/sdcc.ico: craeted
7439
7440 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7441
7442         * device/include/Makefile.in: fix install
7443         * doc/Makefile: fix install
7444
7445 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7446
7447         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7448         in bug #860505
7449         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7450         how the function variable allocation summary is displayed; also
7451         include information about variables allocated to the overlay
7452         segment
7453
7454 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7455
7456         * as/mcs51/lkmain.c: Help about -Y option
7457         * as/mcs51/lkarea.c: Fixed gcc warnings
7458
7459 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7460
7461         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7462         fixed warning
7463         * support/valdiag/tests/overflow.c: added
7464         * src/SDCCast.c (decorateType),
7465         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7466         LEFT_OP (left shift)
7467
7468 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7469
7470         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7471         (default behaviour).
7472
7473 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7474
7475         A python script to validate compiler diagnostic messages. It can be
7476         used to verify that sdcc complains about bad c source code and
7477         gives a good location of the error.
7478         * support/valdiag/Makefile,
7479         * support/valdiag/valdiag.py,
7480         * support/valdiag/tests/*
7481
7482 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7483
7484         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7485         * src/SDCCsymt.c (newEnumType),
7486         * src/SDCCsymt.h
7487         * support/Util/SDCCerr.c,
7488         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7489         enum related bugs.
7490         * support/regression/tests/enum.c: added test for enum values that
7491         require at least 2 bytes of storage.
7492
7493 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7494
7495         * src/common.h: added ifndef/define/endif macros
7496         around the header file.
7497         Bug reported from Jesus Calvino-Fraga
7498
7499 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7500
7501         * sdcc.spec: updated
7502         * device/include/Makefile.in: don't install CVS directories
7503         * device/lib/Makefile.in: added removal of CVS directories after install
7504         * doc/Makefile: fixed install, added local_icons
7505         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7506         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7507         * src/ds390/gen.c (genRightShift): fixed bug #870788
7508         * src/SDCCast.c (decorateType): fixed bug #870781
7509
7510 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7511
7512         PIC16 port related changes:
7513         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7514         added variable stackPos,
7515
7516         * gen.c: genCall, assignResultValue: added support for
7517         pushing/retrieving function parameters to/from stack,
7518         genFunction,genEndFunction: setup stack frame for the
7519         generated function,
7520         genAddrOf: will be changed according to bug 863624
7521
7522         * added files genutils.c and genutils.h which contain gen*
7523         debugged and optimised functions extracted from gen.c
7524
7525         * glue.c: added variable 'externs' which holds extern symbols,
7526         pic16emitRegularMap: is modified to properly handle relocatable
7527          symbols under the new scheme,
7528         pic16createInterruptVect: is modified
7529         pic16printPublics: is modified to emit 'global' assembler directives,
7530         added pic16_printExterns to print extern symbols,
7531         pic16glue: initializes stack/frame pointer in the beginning of
7532         the assembly output. Temporary hack, will be corrected later,
7533         because gplink yet does not support stack and SDCC does not
7534         yet support a type of crt0.o object to create the final binary.
7535
7536         * Removed many lines that contain 8051 legacy code.
7537         * The code is finally placed under a 'code' directive.
7538         * Added port specific options.
7539
7540         * _process_pragma: simplified since now we do not need *special*
7541         include file to define SFR registers. But a separate header
7542         will be needed. This will be developed later.
7543         * _pic16_parseOptions: added, parses port specific options:
7544         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7545         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7546         --preplace-udata-with=
7547
7548         * _pic16_setDefaultOptions: modified to initialize section names,
7549         but hack is temporarly out of order since it needs improvement.
7550         * _pic16_genAssemblerPreamble: configuration words are emitted by
7551         their address instead of their name. This part is incomplete and
7552         supports only the 18Fxx2 devices. Other devices will emit an error
7553         during assembly since they do not contain the same set of config
7554         registers
7555         * _pic16_genIVT: is modified,
7556
7557         * pcode.c: added definitions for some hardware registers that are needed
7558         for stack support
7559         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7560         All PCI entries are updated. Now LFSR is supported.
7561         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7562         * added pic16_newpCodeOpLit2 to support instructions with
7563         two literal arguments
7564         * pic16_pCode2str: corrected code that emits assembler instructions
7565         with two literal operands and those that have an access bit modifier
7566         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7567         this fixes a bug which caused some labels to be lost, when an
7568         assembler directive was added, i.e. banksel,
7569         * pic16_FixRegisterBanking: improved logic that causes the insertion
7570         of bank switching,
7571         * InlineFunction: functions that are called once, are not any more
7572         inlined. This can be a port option in the future,
7573
7574         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7575
7576         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7577         hold the corresponding uninitialized symbols,
7578         * pic16_allocProcessorRegister: registers have explicit marked the
7579         accessBank field,
7580         * pic16_allocInternalRegister: registers are explicit marked as
7581         not used,
7582         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7583         processing list, so bit registers were lost,
7584         *
7585
7586         * ralloc.h: added field 'accessBank' and original symbol operand
7587         in register definition,
7588         * removed the field isMapped from register definition,
7589
7590         ** Several functions have been removed from various sources:
7591         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7592         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7593         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7594         pic16_assignRelocatableRegisters
7595
7596         ** others have been introduced:
7597         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7598         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7599
7600 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7601
7602         * support/scripts/inc2h.pl: changed definition of BIT_AT
7603         to emit 'sbit at' instead of 'bit at'. This was a request.
7604
7605         PIC16 port related preliminary changes:
7606         * gen.c: prefixed function popRegFromString with
7607         pic16_ and all references to it corrected
7608         * pcode.c: all pic16_pc_* hardware registers prefixed
7609         with underscore (_),
7610         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7611         * ralloc.c: newReg(): when register is REG_SFR then
7612         set address to rIdx,
7613         pic16_allocProcessorRegister(): marks register wasUsed=0
7614         pic16_writeUsedRegs(): added a call to assign processor
7615         registers via pic16_assignFixedRegisters
7616
7617 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7618
7619         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7620         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7621         variables in unused register banks.  Also the SSEG is placed
7622         wherever there is enough space for it, and IDATA can be anywhere
7623         in internal RAM.  For now compile using -Wl-Y[stack_size].
7624         The mem file is different for this option as well, since it
7625         makes no sense of talking about DSEG lenght.
7626
7627 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7628
7629         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7630         in certain cases, e.g. when ROM assignment, patch provided
7631         from Albert den Haan.
7632
7633 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7634
7635         Many signedness and type propagation fixes:
7636         * src/SDCCicode.c: made geniCodeCast() static
7637         replaced SPEC_ by IS_ (cosmetic)
7638         (operandOperation): fixed div and mod operation
7639         (usualBinaryConversions): added support for promotion of char
7640         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7641         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7642         (geniCodeAdd): an array index will stay unsigned, even if promoted
7643         from char to int
7644         (geniCodeArray): ditto
7645         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7646         * src/SDCCsymt.c (computeType): added more support for char;
7647         promotion of char is selectable by promoteCharToInt, fixed signedness
7648         for all cases
7649         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7650         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7651         * src/SDCCval (val*): replaced signedness calculation by
7652         computeType()
7653         rearranged if-branches (cosmetic)
7654         (valShift): added warning W_SHIFT_CHANGED
7655         (valCompare): fixed problem with different types
7656         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7657         * support/regression/tests/literalop.c: added many cases
7658         * support/regression/tests/ast_constant_folding.c: changed finally to
7659         'unsigned int'
7660         * .version: new year, new version: 2.3.7
7661         * src/SDCCmain.c (main): applied patch #866468
7662         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7663         provided by Scott Bronson
7664         * doc/sdccman.lyx: updated documentation for sdcdb
7665         updated and added chapter tips
7666
7667 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7668
7669         * src/SDCCsymt.h: missing from yesterday's commits
7670
7671 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7672
7673         * src/SDCC.y (struct_or_union_specifier),
7674         * support/Util/SDCCerr.c,
7675         * support/Util/SDCCerr.h: verify that struct & union tags are used
7676         as declared.
7677
7678 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7679
7680         * src/SDCCglobl.h: missing from yesterday's commits
7681
7682 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7683
7684         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7685         sft_attributes, struct_declaration, parameter_declaration,
7686         type_name, start_block, declaration_list),
7687         * src/SDCC.lex (check_type): support redefinition of typedef names
7688
7689 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7690
7691         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7692         aligned xdata arrays. Erik helped me with the if clause.
7693
7694 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7695
7696         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7697         warning
7698
7699 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7700
7701         * src/SDCCast.h,
7702         * src/SDCCast.c (newAst_),
7703         * src/SDCCicode.h,
7704         * src/SDCCicode.c (ast2iCode, newiCode),
7705         * src/SDCCglobl.h,
7706         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7707         expr, statement, expression_statement, selection_statement,
7708         iteration_statement, expr_opt, jump_statement): foundation for tracking
7709         sequence points
7710         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7711         point code too)
7712
7713 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7714
7715         * support/Util/SDCCerr.c,
7716         * src/SDCCast.h,
7717         * src/SDCCast.c (createCase, createDefault, decorateType),
7718         * src/SDCClabel.c (labelUnreach),
7719         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7720         to error messages.
7721         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7722         (with thanks to Stas Sergeev)
7723         * device/include/time.h,
7724         * device/lib/time.c (CheckTime): suppress unreachable code warning
7725
7726 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7727
7728         * src/SDCCast.c (createIvalCharPtr),
7729         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7730         bug #753752)
7731         * support/regression/tests/nullstring.c: tests for these two bugs
7732
7733 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7734
7735         * support/Util/SDCCerr.h,
7736         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7737         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7738         about storage class and 'at' used inside struct or union
7739         * src/SDCCBBlock.c (iCodeFromeBBlock),
7740         * src/SDCCcse.c (ifxOptimize),
7741         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7742         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7743         printIval, emitStaticSeg, emitOverlay),
7744         * src/SDCClabel.c (deleteIfx),
7745         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7746         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7747         gatherAutoInit, processParms),
7748         * support/Util/SDCCerr.h,
7749         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7750         reporting for post-parse errors.
7751
7752 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7753
7754         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7755         implicit casts via union; they don't work on big endian systems
7756         (possible fix for bug #861138)
7757
7758 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7759
7760         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7761         * src/mcs51/main.c: fixed the fix for bug #737001
7762
7763 2003-12-15  Borut Razem <borut.razem AT siol.net>
7764
7765         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7766
7767 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7768
7769         * support/makebin/makebin.c: put output in binary mode
7770
7771 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7772
7773         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7774         xdata and data memory on startup. Set the environment variable
7775         SDCC_NOGENRAMCLEAR to disable this.
7776         * src/mcs51/peephole.def,
7777         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7778         (allows non-interrupt and interrupt code to safely compete for a resource
7779         without the non-interrupt code having to disable interrupts)
7780
7781 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7782
7783         * src/SDCCicode.c (geniCodeAdd),
7784         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7785         with valFromType if type might be a pointer and host is big endian).
7786         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7787         types, not just integer types.
7788         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7789         multiply defined with mismatching "at" address.
7790
7791 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7792
7793         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7794         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7795         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7796         with embedded nulls (fixed bug #753752)
7797
7798 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7799
7800         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7801         Apparently this did not see much testing (endless loop)
7802
7803 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7804
7805         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7806
7807 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7808
7809         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7810         gracefully handle NULL memmap pointers
7811
7812 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7813
7814         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7815         instead of deleting the iCode when an operand is volatile
7816         * src/z80/gen.c (genDummyRead),
7817         * src/mcs51/gen.c (genDummyRead),
7818         * src/ds390/gen.c (genDummyRead),
7819         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7820         not just IC_RIGHT
7821         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7822         * src/SDCC.y: fixed bug #850420
7823
7824 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7825
7826         Applied z80 i/o port patch from Peter Townson and fixed some operators
7827         to better handle operands in A register.
7828         * device/include/z180.h
7829         * src/SDCC.y
7830         * src/SDCCglue.c
7831         * src/z80/gen.c
7832         * src/z80/gen.h
7833         * src/z80/main.c
7834         * src/z80/peeph-z80.def
7835         * src/z80/peeph.def
7836         * src/z80/z80.h
7837
7838 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7839
7840         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7841
7842 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7843
7844         * device/lib/hc08/_mullong.c: Removed extra #endif
7845
7846 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7847
7848         * sim/ucsim/hc08.src/inst.cc,
7849         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7850         carries from x to h
7851         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7852         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7853         * device/include/stdarg.h: fixed varargs for hc08
7854         * device/lib/Makefile.in,
7855         * device/lib/hc08/Makefile,
7856         * device/lib/hc08/_mulint.c,
7857         * device/lib/hc08/_mullong.c: fixed some endian problems
7858
7859 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7860
7861         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7862         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7863         * device/lib/_gptrget.c,
7864         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7865
7866 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7867
7868         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7869         * src/SDCCast.c (astErrors): fixed bug #846007
7870         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7871
7872 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7873
7874         * src/SDCCast.c (decorateType): disabled a transformation I added in
7875         revision 1.188 (access to fields of a structure at an absolute address);
7876         it breaks with bitfields, extern declarations, and gcse analysis.
7877         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7878         could be assigned through a pointer, so don't complain.
7879         * src/SDCCast.c (astErrors),
7880         * src/SDCCast.h,
7881         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7882
7883 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7884
7885         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7886         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7887         output of __config directives, since gpasm now supports them
7888         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7889         pre-processor macro, i.e. -DMCU=p18f452
7890         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7891         and modified to handle 'cast' icode similarly to '=' icode
7892         * src/pic16/device.h (typedef struct PIC_device): added field
7893         'extMIface' to indicate that chip has external memory interface
7894         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7895         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7896         18F8720
7897
7898 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7899
7900         * src/SDCC.y (pointer): fixed bug #846006
7901         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7902         * src/SDCCast.c (decorateType): fixed bug #846009
7903         * src/ds390/peeph.def,
7904         * src/ds390/gen.c (genAnd, genOr),
7905         * src/mcs51/peeph.def,
7906         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7907
7908 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7909
7910         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7911         * src/SDCCdflow.c
7912         * src/SDCCcse.c
7913         * src/SDCCcse.h
7914         * src/SDCCBBlock.h
7915         * src/SDCCBBlock.c
7916
7917 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7918
7919         fixed bug #845089
7920         * src/SDCCbitv.h,
7921         * src/SDCCbitv.c: added function to free a bitvector
7922         * src/SDCClrange.h,
7923         * src/SDCClrange.c: added function to recompute the liveranges
7924         * src/avr/ralloc.c,
7925         * src/ds390/ralloc.c,
7926         * src/hc08/ralloc.c,
7927         * src/mcs51/ralloc.c,
7928         * src/pic/ralloc.c,
7929         * src/pic16/ralloc.c,
7930         * src/xa51/ralloc.c,
7931         * src/z80/ralloc.c: recompute the liveranges after register packing
7932
7933 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7934
7935         * src/SDCCloop.c (newInduction): fixed bug #845630
7936
7937 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7938
7939         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7940         inadvertantly left behind from my 2003-11-12 change
7941
7942 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7943
7944         Updated headers I neglected to commit yesterday.
7945         * src/SDCClrange.h,
7946         * src/SDCCicode.h
7947
7948 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7949
7950         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7951         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7952         * src/SDCCopt.c (eBBlockFromiCode),
7953         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7954         the creation of the key hash table from the sequencing so it can be used
7955         earlier (for some GCSE bug fixes still pending)
7956
7957 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7958
7959         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7960         * support/regression/tests/addsub.c: testing genPlus shortcut
7961
7962 2003-11-15  Borut Razem <borut.razem AT siol.net>
7963
7964         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7965
7966 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7967
7968         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7969         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7970         ordering is immaterial.
7971         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7972
7973 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7974
7975         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7976         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7977         (SIGSEV) of bug #840381
7978         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7979         unlink new file before rename if new and old filenames are the same)
7980
7981 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7982
7983         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7984         uninitialized variables) for the mcs51. Set environment variable
7985         SDCC_GENRAMCLEAR to test.
7986         xdata initialization slightly shorter
7987
7988 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7989
7990         * src/SDCCsymt.h,
7991         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7992         #838241 & 780691 (basicly the same bug)
7993         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7994         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7995
7996 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7997
7998         * src/SDCCmain.c (linkEdit): "fix" #834252
7999
8000 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8001
8002         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8003         * src/SDCCast.h,
8004         * src/SDCC.y: fixed bug #819403
8005
8006 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8007
8008         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8009         the reentrant attribute.
8010         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8011         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8012         simulation
8013         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8014         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8015         erroneously reduced to a literal.
8016         * src/hc08/ralloc.c (packRegisters, rematStr),
8017         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8018         some cases
8019
8020 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8021
8022         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8023         * doc/sdccman.lyx: changed from 'article' to 'book'
8024         * doc/Makefile: readded test_suite_spec and cdbfileformat
8025
8026 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8027
8028         * device/include/stdlib.h: include malloc.h to comply with ANSI
8029         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8030
8031 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8032
8033         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8034         * doc/clean.mk: also remove *.out files
8035         * doc/sdccman.lyx: some additions, larger top/bottom margins
8036
8037 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8038
8039         * src/SDCC.y: fixed bug #837365
8040         * support/regression/tests/bitopcse.c
8041         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8042         a symbol (might be valop instead)
8043         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8044         * device/lib/clean.mk: added hc08 to the cleaning list
8045
8046 2003-11-04  Borut Razem <borut.razem AT siol.net>
8047
8048         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8049           made 2003-11-04
8050         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8051           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8052           malloc is declared in standard stdlib.h
8053
8054 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8055
8056         * device/lib/hc08/Makefile: need to clean .rel not .o files
8057         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8058
8059 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8060
8061         * src/port.h,
8062         * src/hc08/main.c,
8063         * src/mcs51/main.c,
8064         * src/ds390/main.c,
8065         * src/z80/main.c,
8066         * src/avr/main.c,
8067         * src/pic/main.c,
8068         * src/pic16/main.c,
8069         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8070         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8071         tests (which uses the port's oclsExpense function)
8072         * src/SDCC.y,
8073         * src/SDCCast.c,
8074         * src/SDCCicode.c,
8075         * src/hc08/gen.c,
8076         * src/ds390/gen.c,
8077         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8078
8079 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8080
8081         * src/SDCCcse.c (ifxOptimize),
8082         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8083         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8084         deleting the IFX iCode.
8085         * src/hc08/ralloc.c: reduced unneeded slocs
8086         * src/hc08/gen.c: fixed bug in asmopToBoolean
8087
8088 2003-11-04  Borut Razem <borut.razem AT siol.net>
8089
8090         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8091           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8092           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8093           transferred to configure
8094
8095 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8096
8097         Use headers defined in the C[++] standards:
8098         * sim/ucsim/gui.src/serio.src/fileio.cc
8099         * sim/ucsim/gui.src/serio.src/frontend.cc
8100         * sim/ucsim/gui.src/serio.src/main.cc
8101         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8102         * support/Util/NewAlloc.c
8103         * as/hc08/lklibr.c
8104         * as/mcs51/lklibr.c
8105         * as/z80/aslist.c
8106         * as/z80/assym.c
8107
8108 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8109
8110         * Added MSVC projects for hc08 assembler and linker:
8111         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8112         /as/hc08/link_hc08.dsp
8113
8114 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8115
8116         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8117
8118 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8119
8120         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8121
8122 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8123
8124         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8125
8126 2003-10-31  Borut Razem <borut.razem AT siol.net>
8127
8128         * support/cpp2/cpplib.h,
8129           support/cpp2/cpplib.c,
8130           support/cpp2/cpplex.c,
8131           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8132           to switch _asm block preprocessing on / off. Default is
8133           #pragma preproc_asm +
8134
8135 2003-10-31  Borut Razem <borut.razem AT siol.net>
8136
8137         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8138           when outputting comment blocks (when executed with -C option) and
8139           _asm (SDCPP specific) blocks
8140
8141 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8142
8143         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8144
8145 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8146
8147         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8148
8149 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8150
8151         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8152         * src/SDCCast.c (decorateType): fixed bug #832664
8153
8154 2003-10-31  Borut Razem <borut.razem AT siol.net>
8155
8156         * support\cpp2\cpplex.c: fixed for SDCPP:
8157           comments(when executed with -C option) and _asm blocks
8158           were included even if they where in skipped #if block.
8159           Applied solution from GCC cpp 3.3.2
8160
8161 2003-10-31  Borut Razem <borut.razem AT siol.net>
8162
8163         * src/SDCC.lex: sdcc now understands both formats:
8164           '# <line_number> <file_name>' and
8165           '#line <line_number> <file_name>'
8166         * support/cpp2/cppmain.c: sdcpp now generates the standard
8167           '# <line_number> <file_name>' instead of former
8168           '#line <line_number> <file_name>'
8169
8170 2003-10-30  Borut Razem <borut.razem AT siol.net>
8171
8172         * support/cpp2/cpphash.h,
8173         * support/cpp2/cpplib.h
8174         * support/cpp2/cpplex.c,
8175         * support/cpp2/cppmain.c,
8176         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8177
8178 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8179
8180         Fixed a number of problems revealed by bug #827883.
8181         * src/SDCCloop.c (loopInvariants): Spill location of the
8182         result operand should be recomputed if extracted from
8183         a loop. Also, don't extract assignments of an iTemp
8184         from a literal.
8185         * src/SDCCast.c (isConformingBody): loop reversal should
8186         not occur if the control variable is involved with a
8187         relational operator.
8188
8189 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8190
8191         * .version: bumped to 2.3.6 to reflect the big improvements
8192         made by Erik and Klaus. Thanks!
8193
8194 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8195
8196         Replaced the livrange code.
8197         * src/SDCClrange.c: added new LR code
8198         * src/SDCCloop.c,
8199         * src/SDCCBBlock.h: removed remainig parts from old LR code
8200         * src/ds390/ralloc.c,
8201         * src/ds390/gen.c: minor fixes to make it work with new code
8202
8203 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8204
8205         * as/hc08/asm.h,
8206         * as/hc08/lkrloc.c,
8207         * src/hc08/gen.c,
8208         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8209         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8210         (tweaked fix for bug #818696)
8211
8212 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8213
8214         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8215
8216 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8217
8218         * src/SDCCmain.c,
8219         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8220         * src/mcs51/gen.c (gencjneshort),
8221         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8222         more efficient (per Scott Bronson's suggestion)
8223
8224 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8225
8226         Extended the semantics of the critical keyword to include
8227         individual statements. See RFE #827755 and #799831
8228         * src/SDCC.y
8229         * src/SDCCicode.c
8230         * src/SDCCopt.c
8231         * src/SDCCast.c
8232         * support/Util/SDCCerr.c
8233         * support/Util/SDCCerr.h
8234         * src/mcs51/gen.c
8235         * src/ds390/gen.c
8236         * src/hc08/gen.c
8237
8238 2003-10-19  Borut Razem <borut.razem AT siol.net>
8239
8240         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8241
8242 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8243
8244         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8245         Fixed bug #818696
8246         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8247         and predecrement operand is displayed
8248
8249 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8250
8251         * src/SDCCval.c (valMinus): fixed bug #826041
8252
8253 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8254
8255         Some hc08 related updates that I missed earlier
8256         * sim/ucsim/stypes.h
8257         * support/regression/ports/hc08/spec.mk
8258
8259 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8260
8261         New target "hc08" for the Motorola 68hc08 family of micros
8262
8263         * configure
8264         * configure.in
8265         * Makefile
8266         * src/hc08/*
8267         * src/SDCCmain.c
8268         * src/port.h
8269         * sim/ucsim/hc08.src/*
8270         * sim/ucsim/configure.in
8271         * src/ucsim/configure
8272         * sim/ucsim/packages_in.mk
8273         * as/hc08/*
8274         * as/Makefile
8275         * device/include/mc68hc908qy.h
8276         * device/lib/hc08/*
8277         * device/lib/Makefile.in
8278         * support/regression/ports/hc08/*
8279         * support/regression/Makefile
8280
8281 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8282
8283         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8284         regression test
8285         * src/ds390/gen.c (genCast): fixed bug #821957
8286
8287 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8288
8289         * device/lib/logf.c: "fixed" overlay bug
8290         * support/regression/ports/host/spec.mk: added m library
8291         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8292         * support/regression/tests/float_trans: added (for Eric)
8293
8294 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8295
8296         * src/mcs51/gen.c (genCpl): fixed bug
8297         http://sf.net/mailarchive/message.php?msg_id=6263915
8298
8299 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8300
8301         * src/SDCCast.c (decorateType): added extended constant folding
8302         * src/SDCCsymt.c (computeType): cleanup
8303         * src/SDCCval.c (valShift): minor optimization
8304         * support/regression/tests/ast_constant_folding.c: added
8305
8306 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8307
8308         * src/SDCCmain.c: removed some unintended changes
8309
8310 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8311
8312         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8313         * src/z80/gen.c: fixed part of bug #817589
8314         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8315
8316 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8317
8318         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8319         * src/SDCCcflow.c
8320         * src/SDCCcse.c
8321         * src/SDCCdflow.c
8322         * src/SDCClabel.c
8323         * src/SDCClrange.c
8324         * src/SDCCmem.c
8325         * src/SDCCopt.c
8326         * src/SDCCpeeph.c
8327         * src/SDCCset.c
8328         * src/avr/ralloc.c
8329         * src/ds390/ralloc.c
8330         * src/izt/ralloc.c
8331         * src/mcs51/ralloc.c
8332         * src/pic/ralloc.c
8333         * src/pic16/ralloc.c
8334         * src/xa51/ralloc.c
8335         * src/z80/ralloc.c
8336         * src/z80/gen.c: removed unused label "release:"
8337
8338 2003-10-06  Borut Razem <borut.razem AT siol.net>
8339
8340         * src/SDCC.lex: removed definition of unused variables
8341           save_optimize and save_options
8342
8343 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8344
8345         * clean.mk: removed '=' in "-maxdepth=1"
8346         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8347         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8348
8349 2003-10-06  Borut Razem <borut.razem AT siol.net>
8350
8351         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8352           my_unput() replaced by unput()
8353
8354 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8355
8356         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8357         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8358         type-punned pointer will break strict-aliasing rules"
8359         Old LR behaviour is again default; Klaus' LR can be choosen by
8360         defining the environment variable LRKLAUS
8361         * src/SDCCBBlock.h
8362         * src/SDCCloop.c
8363         * src/SDCClrange.c
8364         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8365         * clean.mk: fixed removal of files in bin/CVS/
8366         * device/lib/clean.mk: fixed removal of directories small and large
8367         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8368         * src/SDCCicode.c,
8369         * src/SDCCval.c: removed superflous test for pedantic
8370
8371 2003-10-05  Borut Razem <borut.razem AT siol.net>
8372
8373         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8374           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8375           message "unmatched #pragma SAVE and #pragma RESTORE"
8376
8377 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8378
8379         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8380           assembly, critical functions, atomic, nojtbound)
8381
8382 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8383
8384         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8385         * src/SDCCBBlock.h
8386         * src/SDCCloop.c
8387         * src/SDCCloop.h
8388         * src/SDCClrange.c
8389
8390 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8391
8392         * src/z80/gen.h,
8393         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8394         * src/mcs51/gen.h
8395         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8396         * src/ds390/gen.h
8397         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8398         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8399         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8400
8401 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8402
8403         * src/z80/gen.c (genRet): fixed bug #524753
8404         * src/z80/gen.c (genCast): fixed internal error on cast from
8405         pointer to long
8406         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8407         fix for bug #477835 to the z80
8408         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8409         for tracking iCodes in the peephole optimizer for z80
8410
8411 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8412
8413         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8414         the other part of bug #814548
8415         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8416
8417 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8418
8419         * src/SDCCcse.c: fixed part of bug #814548
8420
8421 2003-09-28  Borut Razem <borut.razem AT siol.net>
8422
8423         * src/asm.c: rewrite of printILine() to use temporary file instead
8424           a pipe
8425         * src/xa51/main.c: commented out declaration of int rewinds
8426
8427 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8428
8429         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8430
8431 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8432
8433         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8434         * src/asm.c (printILine): Fixed bug #811015
8435
8436 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8437
8438         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8439         freeing.
8440
8441 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8442
8443         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8444         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8445         to correctly handle general case of AOP_PAIRPTR
8446         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8447
8448 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8449
8450         * src/mcs51/ralloc.c (fillGaps),
8451         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8452         register positioning bug)
8453
8454 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8455
8456         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8457
8458 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8459
8460         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8461         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8462         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8463         (ralloc doesn't intentionally do this now, but perhaps later)
8464         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8465         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8466         register positioning bugs (Fixed bug #762602 and #795325)
8467         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8468         (Fixed bug #808779)
8469         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8470         lines that --i-code-in-asm generates
8471
8472 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8473
8474         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8475         trying to fclose a FILE* that was already closed.
8476
8477 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8478
8479         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8480         of const struct should be treated as if const themselves)
8481
8482 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8483
8484         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8485
8486 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8487
8488         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8489         Unix (/n) and DOS (/r/n) line terminations.
8490
8491 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8492
8493         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8494         bug #613775
8495
8496 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8497
8498         * src/mcs51/gen.c (genFunction, genEndFunction),
8499         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8500         and restore of EA so that stack offsets to parameters are
8501         correct when using both critical and reentrant/stack-auto.
8502         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8503         size (can be triggered in error if sloc is shared between
8504         different sized objects)
8505         * device/include/float.h: fixed macros to explicitly use
8506         unsigned long where needed
8507
8508 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8509
8510         Feature req. 799831: added code to allow nesting of critical functions
8511         * src/mcs51/gen.c (genFunction, genEndFunction)
8512         * src/ds390/gen.c (genFunction, genEndFunction)
8513
8514 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8515
8516         * src/SDCCsymt.c (sclsFromPtr),
8517         * src/SDCCsymt.h,
8518         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8519         support for standard C idiom of memory mapped variables; for
8520         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8521         to xdata int at 0x1234 tempvar = 1.
8522         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8523         provided by Akiya ISHIDA
8524
8525 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8526
8527         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8528         * src/SDCCval.c (constVal): added reduction from int to char
8529         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8530         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8531         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8532         to ignore the sign
8533         * support/regression/tests/shifts.c: fixed
8534
8535 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8536
8537         * src/z80/gen.c (genXor): Fixed bug #805445
8538
8539 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8540
8541         Fixed bug #621531 (const & volatile confusion in the type chain).
8542         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8543         refer to the const or volatile state of the pointer itself.
8544
8545         * src/SDCCast.c
8546         * src/SDCCglue.c
8547         * src/SDCCicode.c
8548         * src/SDCCsymt.c
8549         * src/SDCCval.c
8550         * src/SDCC.y
8551         * src/SDCCsymt.h
8552         * src/pic/gen.c
8553         * src/pic/ralloc.c
8554         * src/pic16/gen.c
8555         * src/pic16/ralloc.c
8556         * support/regression/tests/const.c
8557
8558 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8559
8560         When checking for duplicated modules, use absolute paths
8561         instead of relative paths.  Files changed:
8562
8563         * as/mcs51/lklib.c
8564         * link/z80/lklib.c
8565
8566 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8567
8568         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8569
8570 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8571
8572         * device/include/string.h: added size_t typedef, changed
8573         prototypes to use size_t, eliminated separate reentrant and
8574         non-reentrant declarations, added _memmove declaration
8575         * device/lib/_memcpy.c: changed to use size_t instead of int,
8576         changed /4 to >>2 to avoid division library call
8577         * device/lib/_memcmp.c,
8578         * device/lib/_memset.c,
8579         * device/lib/_strncat.c,
8580         * device/lib/_strncpy.c,
8581         * device/lib/_strncmp.c: changed to use size_t instead of int
8582         * device/lib/_memmove.c: new file (fixed bug #772294)
8583         * device/lib/Makefile.in: added _memmove.c
8584         * device/lib/z80/asm_strings.s: fixed bug #772290
8585         * support/regression/tests/bitfields.c: attempt to fix host assertion
8586         failure on amd64-unknown-linux2.2
8587
8588 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8589
8590         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8591         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8592         * as/z80/asmain.c (main): fixed bug #801766
8593
8594 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8595
8596         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8597         compilers
8598
8599 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8600
8601         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8602         reported in bug #800609
8603
8604 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8605
8606         * Top header beautifications in src/pic16 directory:
8607           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8608           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8609           pcoderegs.h, ralloc.c, ralloc.h
8610         * main.c: added top header and GPL license notice
8611         * pcode.c: fixed the if-conditional warning
8612
8613 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8614
8615         * device/lib/_mullong.c: replaced int by short for gcc
8616
8617 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8618
8619         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8620         and JUMPTABLE iCodes properly now (worked by accident before)
8621         * src/mcs51/gen.c (leftRightUseAcc),
8622         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8623         iCode properly now. Use getSize instead of nRegs since a & b
8624         aren't part of the nRegs tally.
8625
8626 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8627
8628         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8629         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8630           before instructions that use the _STATUS register
8631
8632 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8633
8634         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8635         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8636         fetching of the pointer
8637         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8638         copied from genNearPointerSet()
8639         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8640         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8641         If they pop r0/r1 they must be called in the opposite order than aopOp().
8642         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8643         (resp. --stack-auto), prepared for --xstack
8644
8645 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8646
8647         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8648
8649 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8650
8651         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8652         these ports have their own __sdcc_external_start()
8653
8654 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8655
8656         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8657         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8658         type for bits was changed. It resulted in bit variables becoming
8659         global, which is not permitted in PIC 14 assembly output.
8660
8661 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8662
8663         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8664
8665 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8666
8667         Z80 and MCS51 linkers complaint if a public symbol is defined
8668         in more than one library module:
8669
8670         * as/mcs51/lklib.c
8671         * link/z80/lklib.c
8672         * as/mcs51/Makefile.in
8673
8674 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8675
8676         A few small changes that speed up the peephole optimizer.
8677
8678         * src/SDCCpeeph.c
8679
8680 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8681
8682         Try to make the peephole optimizer smarter by maintaining
8683         an association between the assembly source code and the
8684         iCodes that originated them. Put this information to use
8685         with a new peephole rule condition "notVolatile" so that
8686         the rules can be aggressive yet still safe.
8687
8688         * src/SDCCpeeph.c
8689         * src/SDCCpeeph.h
8690         * src/mcs51/gen.c
8691         * src/mcs51/peeph.def
8692
8693 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8694
8695         Fixed bug #741761
8696
8697         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8698         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8699         if the left or right operand symbols have the accuse flag set.
8700
8701 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8702
8703         Changed the type of the result of the ! (NOT) operator to char;
8704         previously it returned the same type as the source. This allows
8705         us to eliminate all the genFloatNot functions (all of its target
8706         implementations were very buggy) since !float can use the same
8707         code as !long now.
8708
8709         * src/SDCCicode.c (ast2iCode): ! returns char
8710         * src/mcs51/gen.c (genNot, genNotFloat),
8711         * src/ds390/gen.c (genNot, genNotFloat),
8712         * src/z80/gen.c (genNot, genNotFloat),
8713         * src/pic/gen.c (genNot, genNotFloat),
8714         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8715
8716 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8717
8718         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8719         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8720            during interrupts. Ensure WSAVE is located at a shared bank address.
8721         2. Fixed page selection in some places
8722         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8723            the registers name strings.
8724         4. Fixed "signed / unsigned compare" compiler warnings.
8725         5. The PIC port manages its own allocation of the general purpose
8726            registers, but makes no attempt to reuse them. As a result when
8727            compiling it soon runs out of general purpose registers. Some
8728            additional code was added to the files pcode.c and device.c to walk
8729            through the function call tree and rename the registers so that they
8730            get reused.
8731
8732         * src/pic/device.c
8733         * src/pic/gen.c
8734         * src/pic/glue.c
8735         * src/pic/pcode.c
8736         * src/pic/pcode.h
8737         * src/pic/ralloc.c
8738         * src/pic/ralloc.h
8739         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8740         genPlus() & genMinus() when the result is the same as left or right
8741
8742 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8743
8744         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8745
8746 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8747
8748         Made bitfield a distinct type from bit so that bitfields
8749         convert as per ANSI C and bits retain their traditional
8750         boolean style behaviour. Implemented bitfield support in
8751         the z80 port.
8752
8753         * src/SDCCsymt.h,
8754         * src/SDCCsymt.c,
8755         * src/SDCCast.c,
8756         * src/cdbFile.c,
8757         * src/mcs51/gen.c,
8758         * src/ds390/gen.c: bit v bitfield split
8759         * src/z80/gen.c: New support for bitfields
8760         * support/regression/tests/bitfields.c: reenabled z80,
8761         added more tests
8762
8763 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8764
8765         Rules 246.x, 247.x relate to bitfields, the others speed up
8766         access to xdata mapped I/O devices.
8767
8768         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8769
8770 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8771
8772         Cleaned up genPackBits and genUnpackBits and added two helper
8773         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8774         for literal assignments in genPackBits (thanks to Frieder for
8775         reminding me).
8776
8777         * src/mcs51/gen.c
8778         * src/ds390/gen.c
8779
8780 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8781
8782         Fixed bug #748310 (pointer to function type mishandled when the
8783         function name is omitted). Also fixed a SIGSEGV when a function
8784         attribute (reentrant, etc) is used on a non-function or on a
8785         function but misplaced before the parameter list.
8786
8787         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8788         bug #748310
8789         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8790         * support/Util/SDCCerr.h,
8791         * support/Util/SDCCerr.c: Added func attr misuse error msg
8792
8793 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8794
8795         Fixed bug #787649 by anonymous
8796         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8797         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8798
8799 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8800
8801         Fixed numerous bitfield problems.
8802
8803         * src/SDCC.y: More bitfield related error checking
8804         * src/SDCCsymt.h,
8805         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8806         * support/Util/SDCCerr.h,
8807         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8808         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8809         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8810         * support/regression/tests/bitfields.c: tests added
8811
8812 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8813
8814         Made the constant following the "interrupt" keyword optional. If
8815         omitted, the function will not automatically be given an entry
8816         in the interrupt vector table (similar to #pragma NOIV, but
8817         less syntacticly kludgy). The interrupt number is also now
8818         range checked. Also fixed a bug in the high order bit example
8819         in the manual.
8820
8821         * src/SDCC.y
8822         * src/SDCCmem.c
8823         * src/SDCCglue.c
8824         * src/SDCCsymt.h
8825         * support/Util/SDCCerr.c
8826         * support/Util/SDCCerr.h
8827         * doc/sdccman.lyx
8828
8829 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8830
8831         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8832         * src/SDCCicode.c (operandOperation): rewritten some ops
8833         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8834         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8835         other type
8836         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8837         be re-activated by defining REDUCE_LITERALS)
8838         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8839         unsigned, but are signed by default
8840         * src/SDCCval.c (constVal): rearranged
8841         * src/SDCCval.c (valMod): preliminary fix
8842         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8843         * support/regression/literalop.c: added, work in progress
8844
8845 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8846
8847         Generate warnings for useless declarations like "char data;"
8848         that don't do what new users expect.
8849
8850         * src/SDCC.y
8851         * support/Util/SDCCerr.h
8852         * support/Util/SDCCerr.c
8853
8854 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8855
8856         * src/SDCCval.c (valMult): fix overflow detection of negative int
8857
8858 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8859
8860         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8861
8862         Changes to support big endian targets:
8863
8864         * src/ports.h
8865         * src/SDCCglue.c
8866         * src/avr/main.c
8867         * src/ds390/main.c
8868         * src/izt/i186.c
8869         * src/mcs51/main.c
8870         * src/pic/main.c
8871         * src/pic16/main.c
8872         * src/xa51/main.c
8873         * src/z80/main.c
8874
8875 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8876
8877         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8878         * device/lib/time.c: fixed warning "integer overflow in expression"
8879
8880 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8881
8882         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8883         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8884         constants are unsigned; added recognition of "u" flag for unsigned
8885         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8886         * src/SDCCval.c (valDiv, valMod): fixed signdness
8887         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8888         signedness of modulo, left and right shift
8889         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8890         * support/Util/SDCCerr.h: added warning W_INT_OVL
8891         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8892         * src/SDCCast.c (ast_print): improved output of constants
8893
8894 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8895
8896         Fixed some warnings when building with MSVC:
8897
8898         * as\mcs51\asdata.c
8899         * as\z80\asdata.c
8900         * as\mcs51\asm.h
8901         * as\z80\asm.h
8902         * link\z80\aslink.h
8903         * link\z80\lkdata.c
8904         * link\z80\lkeval.c
8905         * link\z80\lkgb.c
8906         * link\z80\lkihx.c
8907         * link\z80\lks19.c
8908         * link\z80\lksym.c
8909         * support\cpp2\cpplib.c
8910         * src\ds390\gen.c
8911         * src\mcs51\gen.c
8912
8913 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8914
8915         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8916
8917 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8918
8919         * support\librarian\clean.mk: Do not remove Makefile.
8920         * support\librarian\Makefile: added.
8921
8922 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8923
8924         Added librarian to MSVC build:
8925         * all.dsp
8926         * sdcc.dsw
8927         * support\librarian\librarian.dsp
8928
8929         'configure' not needed for librarian, removed:
8930         * support\librarian\configure
8931         * support\librarian\configure.in
8932         * support\librarian\config_in.h
8933         * support\librarian\Makefile.in
8934
8935         Hopefully these ones built the librarian and the rest of sdcc properly:
8936         * Makefile
8937         * Makefile.common.in
8938
8939         Messed up 'configure', so revert to previous version:
8940         * configure
8941         * configure.in
8942
8943 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8944
8945         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8946         there, while the mantissa of a double is "only" 53 bits wide.
8947
8948 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8949
8950         Adding sdcclib to the build.  MSVC project coming soon.
8951         Files added/changed:
8952
8953         * support\librarian\clean.mk
8954         * support\librarian\configure
8955         * support\librarian\configure.in
8956         * support\librarian\config_in.h
8957         * support\librarian\Makefile.bcc
8958         * support\librarian\Makefile.in
8959         * support\librarian\sdcclib.c
8960         * Makefile.bcc
8961         * Makefile
8962         * Makefile.common.in
8963         * configure
8964         * configure.in
8965
8966 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8967
8968         Linker now complaints if linked modules have conflicting options, for
8969         example, one compiled using --model-large and another one compiled with
8970         --model-small.  The following files were modified:
8971
8972         * as\mcs51\asdata.c
8973         * as\mcs51\aslink.h
8974         * as\mcs51\asm.h
8975         * as\mcs51\asmain.c
8976         * as\mcs51\asout.c
8977         * as\mcs51\i51pst.c
8978         * as\mcs51\lkdata.c
8979         * as\mcs51\lklibr.c
8980         * as\mcs51\lkmain.c
8981         * as\z80\asdata.c
8982         * as\z80\asm.h
8983         * as\z80\asmain.c
8984         * as\z80\asout.c
8985         * as\z80\z80pst.c
8986         * link\z80\aslink.h
8987         * link\z80\lkdata.c
8988         * link\z80\lklibr.c
8989         * link\z80\lkmain.c
8990         * src\SDCCglue.c
8991
8992 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8993
8994         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8995         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8996
8997 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8998
8999         * src/z80/mappings.i: fix _mul[us][int,long] entries
9000
9001 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9002
9003         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9004
9005 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9006
9007         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9008         * support/regression/tests/bitopcse.c: added
9009         fixed warning:
9010         * src/avr/gen.c:
9011         * src/pic/gen.c:
9012         * src/pic16/gen.c:
9013         * src/z80/gen.c:
9014         * src/xa51/gen.c:
9015
9016 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9017
9018         added support for new library format to z80, gbz80 linkers:
9019         *link/z80/aslink.h
9020         *link/z80/lklex.c
9021         *link/z80/lklib.c
9022         *link/z80/lklist.c
9023
9024 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9025
9026         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9027         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9028
9029 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9030
9031         added DUMMY_READ_VOLATILE:
9032         * src/SDCC.y:
9033         * src/avr/gen.c:
9034         * src/xa51/gen.c:
9035         * src/z80/gen.c:
9036         * src/pic/gen.c:
9037         * src/pic16/gen.c:
9038         * src/mcs51/gen.c:
9039         * src/ds390/gen.c:
9040         * src/SDCCcse.c (algebraicOpts): many improvements
9041         * src/SDCCcse.h: removed algebraicOpts()
9042         * src/SDCCicode.c (picDummyRead): added
9043
9044 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9045
9046         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9047         "Insufficient space in data memory".
9048
9049 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9050
9051         * src/mcs51/gen.c: fixed bug #771358
9052         * src/z80/gen.c: fixed bug #759087
9053
9054 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9055
9056         * src/pic16/glue.c: minor cleanup by Vangelis
9057
9058 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9059
9060         * device/include/regc515c.h: fixed #758477
9061         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9062         * device/lib/_gptrput.c: saved a few bytes
9063         * my tab spacing is 8, yours too?)
9064         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9065         * device/lib/serial.c: process RX bytes earlier than TX bytes
9066         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9067
9068 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9069
9070         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9071
9072 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9073
9074     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9075
9076 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9077
9078         * device/lib/Makefile.in: bad fix, reverted to 1.43
9079
9080 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9081
9082         * device/lib/Makefile.in: added missing z80 object files
9083
9084 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9085
9086         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9087         pic16 progress by Vangelis:
9088         * src/SDCCglobl.h:
9089         * src/SDCCmain.c:
9090         * src/pic/Makefile:
9091         * src/pic:
9092         * pic/Makefile:
9093         * pic16/device.c:
9094         * pic16/device.h:
9095         * pic16/gen.c:
9096         * pic16/gen.h:
9097         * pic16/genarith.c:
9098         * pic16/glue.c:
9099         * pic16/main.c:
9100         * pic16/pcode.c:
9101         * pic16/pcode.h:
9102         * pic16/pcodepeep.c:
9103         * pic16/peeph.def:
9104
9105 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9106
9107     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9108
9109 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9110
9111     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9112     added gbz80 build to MSVC project.
9113     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9114     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9115     from 8051 stuff and setup so it links using a .lnk file.
9116
9117 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9118
9119     * support/librarian/sdcclib.c: sdcc librarian.
9120     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9121     with sdcclib.
9122
9123 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9124
9125     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9126
9127 2003-07-02  Borut Razem <borut.razem AT siol.net>
9128
9129         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9130         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9131         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9132         src/xa51/main.c, src/z80/main.c:
9133         virtualization of glue() function: each port has it's own glue function,
9134         which is accessed by do_glue function pointer in PORT.general structure
9135
9136 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9137
9138         * DS800C400 fun, improved ROM interface and tinibios.
9139
9140 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9141
9142         * More support for DS80C400. Now includes beginning of interface to ROM.
9143
9144 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9145
9146         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9147
9148 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9149
9150         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9151
9152 2003-06-19  Borut Razem <borut.razem AT siol.net>
9153
9154         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9155
9156 2003-06-19  Borut Razem <borut.razem AT siol.net>
9157
9158         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9159         fixed Z80 port - crt0.o: cannot open.
9160
9161 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9162
9163         * support/Util/MySystem.c (merge_command): revert bad fix
9164
9165 2003-06-18  Borut Razem <borut.razem AT siol.net>
9166
9167         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9168
9169 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9170
9171         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9172         option --use-stdout sends errors to stdout instead of stderr.
9173
9174 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9175
9176         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9177
9178 2003-06-15  Borut Razem <borut.razem AT siol.net>
9179
9180         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9181         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9182         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9183         fixed width array of pointers replaced with sets;
9184         multiple include and lib paths ared transferred to preprocessor and linker
9185         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9186         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9187         fixed width array of pointers
9188         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9189         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9190         fixupPath(), getPathDifference()
9191         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9192         fixed width array of pointers
9193
9194 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9195
9196         * src/pic16/ralloc.c: fix warnings
9197         * src/pic16/pcode.c: fix warning
9198
9199 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9200
9201          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9202         know all the details, but essentially this set of changes enable
9203         the pic16 port to generate movff instructions and generate assembler
9204         directives,
9205         * src/SDCCmain.c:
9206         * src/pic16/gen.c:
9207         * src/pic16/glue.c:
9208         * src/pic16/pcode.c:
9209         * src/pic16/device.c:
9210         * src/pic16/main.c:
9211         * src/pic16/pcode.h:
9212         * src/pic16/pcoderegs.c:
9213         * src/pic16/ralloc.c:
9214         * src/pic16/ralloc.h:
9215
9216 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9217
9218         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9219         added option --vc, so sdcc errors and warnings are compatible with
9220         Microsoft Visual Studio.
9221
9222 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9223
9224         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9225           device/lib/libfloat.lib: added atof function.
9226
9227 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9228
9229         * doc/sdccman.lyx: updated to Lyx 1.3
9230         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9231         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9232         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9233
9234 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9235
9236         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9237
9238 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9239
9240         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9241           additions to the "related tools/documentation" section
9242
9243 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9244
9245         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9246
9247 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9248
9249         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9250         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9251
9252 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9253
9254         * doc/sdccman.lyx: fix double dash and other minor things
9255         * doc/Makefile: fix double dash
9256
9257 2003-05-28  Karl Bongers(patches from Martin Helmling)
9258         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9259           condition and ignore commands.
9260
9261 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9262
9263         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9264           is in parts still quite out of date, I did changes as far as I felt makes sense
9265           for a non-native english speaker.
9266           Please feel free to add to the manual or to correct my changes.
9267         * doc/Makefile: undid touching the date of intermediate tex files.
9268
9269 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9270
9271         * doc/sdccman.lyx: Manual has an index now
9272
9273 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9274
9275         Finalize muluint/mulsint and mululong/mulslong merging:
9276         * device/lib/_mulint.c
9277         * device/lib/_mullong.c
9278         * device/lib/gbz80/mul.s
9279         * device/lib/gbz80/stubs.s
9280         * device/lib/z80/mul.s
9281         * device/lib/z80/stubs.s
9282         * src/SDCCsymt.c (initCSupport)
9283
9284 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9285
9286         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9287         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9288           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9289           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9290           instead of /Zm500.
9291
9292 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9293
9294         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9295           the regression tests I'm not brave enough to enable 245.b, 245.c
9296         * doc/sdccman.lyx: added latex preamble for hyperref package.
9297           Using pdflatex this will give you a hyperlinked pdf file with
9298           bookmarks. (prepend '%' before /usepackage if this breaks something)
9299
9300 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9301
9302          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9303
9304 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9305
9306         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9307
9308 2003-05-21    <johan AT balder>
9309
9310         * src/SDCCglue.c (printIval): fixed bug #739934
9311
9312 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9313
9314         Applied patch from bug 737905 (renamed yylineo to mylineno):
9315         * src/altlex.c
9316         * src/SDCCast.c
9317         * src/SDCglobl.h
9318         * src/SDCC.lex
9319         * src/SDCCsymt.c
9320         * src/SDCCval.c
9321         * src/pic16/pcode.c: Cleaned warnings
9322         * src/pic16/pcodeflow.c: Cleaned warnings
9323         * src/pic16/pcoderegs.c: Cleaned warnings
9324
9325 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9326
9327         * src/pic16/pcode.c: Cleaned warnings
9328         * src/pic16/pcodepeep.c: Cleaned warnings
9329         * src/pic16/ralloc.c: Cleaned warnings
9330
9331 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9332
9333         * doc/sdccman.lyx: fixed bug 739745
9334         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9335
9336 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9337
9338         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9339         it can be defined with CFLAGS when running configure
9340         * src/SDCCmain.c: fixed compiling + linking with object files
9341
9342 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9343
9344         * configure.in: configure for pic16 port,
9345             added --disable-pic16-port
9346         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9347         * src/SDCCmain.c: linkOptions is changed to set *,
9348             added if/endif conditional macros to remove options help
9349             messages from optionsTable when a port is not configured, added
9350             support for the PIc16 port in the ports table, when executing
9351             the compiler with no port specified on command line, a default
9352             port is selected with the new macro DEFAULT_PORT which is
9353             defined in port.h, in setDefaultOptions() linkOptions is removed
9354             from initialization assignment, since now it is a set,
9355             parseCmdLine uses setParseWithComma for linkOptions, in
9356             linkEdit() linkOptions are accessed with new function indexSet()
9357             which returns the i'th item of a set variable. See SDCCset.c, in
9358             linkEdit() when calling buildCmdLine(), added linkOptions as
9359             last argument. Now users can pass arguments to gplink via the
9360             -Wl option, main() uses pic16glue() to glue up pic16 programs
9361         * src/SDCCpeeph.c: various changes to support pic16
9362         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9363             return the i'th item of the set
9364         * src/SDCCset.h: added function prototype for indexSet()
9365         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9366         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9367         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9368             added macro DEFAULT_PORT
9369         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9370         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9371             generated
9372         * src/pic16/glue.c: commented out some error producing lines
9373         * src/pic16/main.c: __config directives are commented out to stop
9374             gpasm complaining and test the linkage with gplink, _linkCmd and
9375             _asmCmd changed to be more gplink and gpasm friendly
9376         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9377             produced an error when parsed, peep rule 12 is added to utilize
9378             movff, but it is commented out since the pCode does not support
9379             yet a command with 2 address arguments
9380
9381 2003-05-18    <johan AT balder>
9382
9383         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9384         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9385 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9386
9387         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9388   Added feature to script commands from file.
9389
9390 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9391
9392         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9393         * src/SDCCutil.c: include ctype.h for win32
9394
9395 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9396
9397         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9398
9399 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9400
9401         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9402   Fixed so you can set breakpoints prior to run, run does not stop
9403   on entry now.  Add tbreak.  Other enhancements and fixes for use
9404   with ddd.
9405
9406 2003-05-12  Borut Razem <borut.razem AT siol.net>
9407
9408         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9409
9410 2003-05-11  Borut Razem <borut.razem AT siol.net>
9411
9412         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9413         the path of bin directory, so that PATH is the only env. variable, which has to be set
9414         in case of standard installation.
9415         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9416         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9417         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9418
9419 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9420
9421         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9422         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9423         temp files are in the port dir; clean the gen/test directory when
9424         generating new test.c
9425         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9426         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9427         * support/regression/tests/zeropad.c: added
9428
9429 2003-05-09    <johan AT balder>
9430
9431         * src/SDCCglue.c: fixed bug #597940
9432
9433 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9434
9435         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9436   cache sfr, optimize next,step, fix off by one sourceline,
9437   support ddd list function.
9438         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9439
9440 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9441
9442         * support/regression/HTMLgen.py: added compare_s2f()
9443         * support/regression/Makefile: redo 1.27
9444         * support/regression/generate-cases.py: redo 1.5
9445
9446 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9447
9448         * support/regression/tests/float.c: workaround 33 bit hex constant
9449         * support/regression/tests/simplefloat.c: fix division for host
9450
9451 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9452
9453         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9454         that tame's the PIC's over-aggressive optimizer.
9455
9456 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9457
9458          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9459          support for MSVC.
9460
9461 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9462
9463         Initial support for DS80C400. "Hello world" runs on TINIm400
9464         (with polled I/O).
9465
9466 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9467
9468          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9469          * Some notes on ddd usage added in debugger/README
9470          Martin Helmling adding more features and fixes for ddd GUI debugger.
9471          Code added for nexti, stepi, up, down, and other adjustments.
9472
9473 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9474
9475         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9476         * src/pic/peeph.def Added two rules to optimize carry manipulation
9477         * src/pic/* removed debug printfs
9478
9479 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9480
9481         * debugger/mcs51/cmd.c: added header newalloc.h
9482
9483 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9484
9485         * as/Makefile: new EXEEXT
9486         * as/z80/Makefile: remove trailing slash of BUILDIR
9487         * as/z80/clean.mk: new EXEEXT
9488         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9489         * support/cpp2/Makefile.in: new EXEEXT
9490         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9491
9492 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9493
9494         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9495         EXEEXT was introduced to fix all related problems with targets
9496         "clean", "install" and "uninstall"; a couple of further flaws
9497         especially with "clean" have been fixed too
9498         * as/mcs51/Makefile.in
9499         * as/mcs51/clean.mk
9500         * as/z80/Makefile
9501         * Makefile
9502         * clean.mk
9503         * debugger/mcs51/Makefile.in
9504         * debugger/mcs51/clean.mk
9505         * link/z80/Makefile
9506         * link/z80/Makefile.in
9507         * link/z80/clean.mk
9508         * link/Makefile
9509         * packihx/Makefile.in
9510         * packihx/clean.mk
9511         * sim/ucsim/Makefile
9512         * sim/ucsim/clean.mk
9513         * sim/ucsim/avr.src/Makefile.in
9514         * sim/ucsim/avr.src/clean.mk
9515         * sim/ucsim/s51.src/Makefile.in
9516         * sim/ucsim/s51.src/clean.mk
9517         * sim/ucsim/xa.src/Makefile.in
9518         * sim/ucsim/xa.src/clean.mk
9519         * sim/ucsim/z80.src/Makefile.in
9520         * sim/ucsim/z80.src/clean.mk
9521         * sim/ucsim/main_in.mk
9522         * sim/ucsim/packages_in.mk
9523         * sim/ucsim/gui.src/Makefile.in
9524         * sim/ucsim/gui.src/serio.src/Makefile.in
9525         * sim/ucsim/gui.src/serio.src/clean.mk
9526         * src/Makefile.in
9527         * src/clean.mk
9528         * support/cpp2/Makefile.in
9529         * support/cpp2/clean.mk
9530         * support/makebin/Makefile
9531         * support/makebin/clean.mk
9532         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9533         * doc/sdccman.lyx: --program-suffix no longer needed
9534
9535 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9536
9537          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9538          Martin Helmling added support for ddd GUI debugger.
9539          Code added to display assembly, set variables, and other commands
9540          to interface to ddd.
9541
9542 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9543
9544         * as/Makefile: fix target clean
9545         * as/clean.mk: fix target clean
9546         * as/z80/clean.mk: fix target clean
9547
9548 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9549
9550         * Makefile.common.in: added  AT EXEEXT AT
9551         * configure.in: removed all mingw32 stuff
9552         * configure: rebuilt from configure.in
9553         * doc/sdccman.lyx: updated section "installation"
9554         * support/scripts/sdcc_mingw32: adapted to configure
9555         * support/scripts/sdcc_cygwin_mingw32: added
9556
9557 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9558
9559         * src/pic Added object file support for the PIC port
9560         * src/pic Applied patch from Craig Franklin (this started the object file support)
9561         * src/regression Updated the PIC regression tests for object files
9562
9563 2003-04-20  Borut Razem <borut.razem AT siol.net>
9564
9565         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9566           lklex.c: In function `getfid':
9567           lklex.c:203: warning: array subscript has type `char'
9568         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9569           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9570         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9571           stack handling macros
9572
9573 2003-04-19  Borut Razem <borut.razem AT siol.net>
9574
9575         * "handling space characters in file path" task:
9576         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9577         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9578         * support/Util/MySystem.h: make it self-sufficient
9579         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9580           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9581           handling space characters in file path
9582         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9583           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9584         * support/Util/MySystem.c: handling space characters in executable's path
9585
9586 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9587
9588         * as/z80/Makefile: fix permanent rebuild of z80
9589         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9590         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9591
9592 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9593
9594         * src/SDCCopt.c: add special case optimization to replace modulo by
9595           a power of two with a bitwise AND.
9596
9597 2003-04-18    <johan AT balder>
9598
9599         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9600
9601 2003-04-17    <johan AT balder>
9602
9603         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9604         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9605
9606 2003-04-13  Borut Razem <borut.razem AT siol.net>
9607
9608         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9609         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9610           fixed mingw problem in adl_NORMALIZE_PATH
9611
9612 2003-04-12  Borut Razem <borut.razem AT siol.net>
9613
9614         * fixed "#pragma SAVE/RESTORE can not be nested":
9615         * src/SDCC.lex: reworked pragma handling functions
9616         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9617         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9618
9619 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9620
9621         * src/SDCCutil.c (pathEquivalent): defined but not used
9622         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9623         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9624         * configure: rebuilt from configure.in
9625         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9626         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9627         * device/include/Makefile.in: replace sdcc_datadir
9628         * device/lib/Makefile.in: replace sdcc_datadir
9629         * Makefile.common.in: add LDFLAGS from configure
9630         * packihx/Makefile.in: use LDFLAGS
9631         * src/Makefile.in: use LDFLAGS
9632         * support/cpp2/Makefile.in: add LDFLAGS from configure
9633         * support/makebin/Makefile: use LDFLAGS
9634         * .version: bumped version number to 2.3.5
9635
9636 2003-04-12  Borut Razem <borut.razem AT siol.net>
9637
9638         * completed "different paths" task:
9639         * src/SDCCmacro.c: fixed bug in handling quotes
9640         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9641         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9642
9643 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9644
9645         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9646
9647 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9648
9649         * ds390/gen.c ds390/peeph.def: fix bug 706781
9650
9651 2003-04-11  Borut Razem <borut.razem AT siol.net>
9652
9653         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9654
9655 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9656
9657         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9658         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9659          set - this bit used to not be set...).
9660         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9661           bad code in PIC Port
9662         * src/regression/and2.c added to test bug 609268
9663         * src/regression/Makefile added and2.c to regression test
9664
9665
9666 2003-04-08    <johan AT CP255758-A>
9667
9668         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9669         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9670         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9671
9672 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9673
9674         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9675         fix bug #487815
9676         * support/cpp2/Makefile.in: fix bug #487815
9677         * configure: rebuilt from configure.in
9678         * Makefile.common.in: docdir changed, new path suffixes
9679         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9680         * sdcc_vc_in.h: reflect changes from sdccconf.h
9681         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9682         * src/SDCCutil.h: remove BINDIR hack
9683         * doc/sdccman.lyx: update new path hierarchy
9684
9685 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9686
9687         * src/SDCCpeeph.c: added okToRemoveSLOC test
9688
9689 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9690
9691         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9692
9693 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9694
9695         * src/SDCCpeeph.c: added labelIsReturnOnly test
9696         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9697
9698 2003-04-05    <johan AT balder>
9699
9700         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9701         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9702         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9703         * src/SDCCast.c: fixed a warning
9704         * src/SDCCast.h: fixed a warning
9705         * src/SDCCicode.c (operandFromAst): fixed a warning
9706
9707 2003-04-04    <johan AT balder>
9708
9709         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9710         * src/SDCCast.c (decorateType): fixed bug #715076
9711         * src/SDCC.y: fixed bug #702907
9712
9713 2003-04-03    <johan AT balder>
9714
9715         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9716         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9717         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9718         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9719         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9720
9721 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9722
9723         * _decdptr.c: fix return values
9724         * _gptrget.c: fix return values
9725         * _gptrgetc.c: fix return values
9726         * _gptrput.c: fix return values
9727         * _mulint.c: fix return values
9728         * as/z80/Makefile: fix 'make -j' problem
9729
9730 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9731
9732         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9733         * configure.in: big cleanup, updated to autoconf 2.5x
9734         * configure: rebuilt from configure.in
9735         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9736         * sdcc_vc_in.h: reflect changes from sdccconf.h
9737         * doc/Makefile: fixed a flaw in "make install"
9738
9739 2003-04-02    <johan AT balder>
9740
9741         * src/ds390/gen.c (genCmp): no comments
9742         * src/mcs51/gen.c (genCmp): no comments
9743         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9744         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9745
9746 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9747
9748         * support/regression/generate-cases.py: place generated file in given sub directory
9749         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9750         * support/regression/Makefile: improvements for 'make -j';
9751         side effect: it's simpler and faster now
9752
9753 2003-03-31  Borut Razem <borut.razem AT siol.net>
9754
9755         * src/z80/main.c: link-{port} and as-{port} defined without path
9756         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9757
9758 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9759
9760         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9761
9762 2003-03-30  Borut Razem <borut.razem AT siol.net>
9763
9764         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9765           changed type of list parameter to set
9766         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9767         * src/port.h: changed type of do_assemble() parameter to set
9768         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9769           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9770           definition of "cppoutfilename" macro with NULL value in preProcess()
9771         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9772         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9773         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9774           replaced with set *binPathSet
9775         * shash_add() deallocates the item, if allready exsists, before adding the new one
9776         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9777
9778 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9779
9780         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9781           a nested for loop bug in the PIC port
9782         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9783           for loops
9784
9785 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9786
9787         * support/Util/dbuf.h: remove C++ stuff to make it portable
9788
9789 2003-03-28  Borut Razem <borut.razem AT siol.net>
9790
9791         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9792           literal strings in stringLiteral()
9793         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9794         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9795           to the project
9796
9797 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9798
9799         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9800
9801 2003-03-26    <johan AT balder>
9802
9803         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9804         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9805         * src/SDCCast.c (decorateType): fixed " -v < 3"
9806
9807 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9808
9809         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9810         Added Lenny Story's debug infrastructure changes:
9811         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9812         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9813         * src/cdbFile.c: added
9814         * src/SDCCdebug.c: added
9815         * src/SDCCdebug.h: added
9816         * src/SDCCast.c (createFunction)
9817         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9818         * src/SDCCmain.c (parseCmdLine, main)
9819         * src/SDCCmem.c (redoStackOffsets)
9820         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9821         * src/SDCCsymt.h
9822         * src/common.h
9823         * src/avr/gen.c (genAVRCode)
9824         * src/ds390/gen.c (gen390Code)
9825         * src/mcs51/gen.c (gen51Code)
9826         * src/pic/gen.c (genpic14Code)
9827         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9828         * src/xa51/gen.c (genXA51Code)
9829         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9830
9831 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9832
9833         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9834         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9835
9836 2003-03-22    <johan AT balder>
9837
9838         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9839
9840 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9841
9842         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9843         * doc/cdbfileformat.lyx: added, written by Lenny Story
9844         * doc/Makefile: added cdbfileformat.lyx
9845         * doc/clean.mk: added cdbfileformat.lyx
9846
9847 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9848
9849         * src/mcs51/peeph.def: fix bug #705773
9850
9851 2003-03-20    <johan AT balder>
9852
9853         An sfr/sbit can have an "at #" AND an initializer
9854         * src/SDCCsymt.c (checkSClass):
9855         * src/SDCCmem.c (allocGlobal):
9856         * src/SDCCmem.c (allocLocal):
9857         * src/SDCCast.c (createBlock):
9858
9859 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9860
9861         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9862
9863 2003-03-16    <johan AT balder>
9864
9865         Undid the hackup of const and volatile, the problem is much bigger
9866         * src/SDCC.y:1.65
9867         * src/SDCCast.c:1.171
9868         * src/SDCCglue.c:1.138
9869         * src/SDCCicode.c:1.146
9870         * src/SDCCsymt.c:1.150
9871         * src/SDCCval.c:1.65
9872
9873 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9874
9875         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9876         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9877
9878 2003-03-13    <johan AT balder>
9879
9880         Hackup const and volatile modifiers in type chains a bit:
9881         * src/SDCC.y:1.63
9882         * src/SDCCast.c:1.169
9883         * src/SDCCglue.c:1.136
9884         * src/SDCCicode.c:1.143
9885         * src/SDCCsymt.c1.146
9886         * src/SDCCsymt.h1.59
9887         * src/SDCCval.c:1.63
9888
9889 2003-03-12    <johan AT balder>
9890
9891         * src/SDCCBBlock.h: more LRH debugging junk
9892         * src/SDCCcflow.h: more LRH debugging junk
9893         * src/SDCCloop.c: more LRH debugging junk
9894         * src/SDCC.y (struct_declaration): fixed bug #697590
9895         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9896         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9897         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9898
9899 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9900         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9901         test function names must now match exactly).
9902         * src/SDCCcse.c: added special case in findCheaperOp to allow
9903         extending a short integer. Makes less awful code for bug 700121 test case.
9904
9905 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9906
9907         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9908         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9909
9910 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9911
9912         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9913         actually called (operandsNotEqual() was called for all
9914         operandsNotEqualX tests).
9915
9916 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9917
9918         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9919         with shorter literals. Fixes bug 700121.
9920
9921 2003-03-11    <johan AT balder>
9922
9923         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9924
9925 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9926
9927         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9928         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9929
9930 2003-03-10  Borut Razem <borut.razem AT siol.net>
9931
9932         * src/SDCCmain.c: pipe preprocessor's output
9933         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9934         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9935         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9936         which closes all pipes in pipeSet set
9937         * src/SDCCset.c: free deleted item in function deleteSetItem()
9938         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9939         moved from z80 to src subproject
9940         * .version: increased version number to 2.3.4
9941
9942 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9943
9944         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9945         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9946         * support/regression/ports/xa51/spec.mk: fix typo
9947
9948 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9949
9950         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9951
9952 2003-03-09  Borut Razem <borut.razem AT siol.net>
9953
9954         * src/SDCCmain.c: pipe preprocessor's output
9955         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9956         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9957         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9958         which closes all pipes in pipeSet set
9959         * src/SDCCset.c: free deleted item in function deleteSetItem()
9960         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9961         moved from z80 to src subproject
9962
9963 2003-03-09  Borut Razem <borut.razem AT siol.net>
9964
9965         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9966         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9967         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9968         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9969         * src/SDCCglobl.h: unification of WIN32 native definitions
9970
9971 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9972
9973         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9974
9975 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9976
9977         * src/configure.in:   check for endianess (even while cross-compiling)
9978         * src/configure:      check for endianess (even while cross-compiling)
9979         * src/configure_in.h: check for endianess (even while cross-compiling)
9980         * src/avr/gen.c:        remove old endianess stuff
9981         * src/mcs51/gen.c:      remove old endianess stuff
9982         * src/ds390/gen.c:      remove old endianess stuff
9983         * src/pic/gen.c:        remove old endianess stuff
9984         * src/pic/genarith.c:   remove old endianess stuff
9985         * src/pic/glue.c:       fix endianess check
9986         * src/pic16/gen.c:      remove old endianess stuff
9987         * src/pic16/genarith.c: remove old endianess stuff
9988         * src/pic16/glue.c:     fix endianess check
9989         * src/xa51/gen.c:       remove old endianess stuff
9990         * src/z80/gen.c:        fix endianess check
9991         * src/SDCCglue.c:       fix endianess check
9992         * src/ds390/peeph.def: fix bug 700036
9993
9994 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9995
9996         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9997         * src/configure: find appropriate data-types on host for SDCC's int and long
9998         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9999         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10000         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10001
10002 2003-03-07    <johan AT balder>
10003
10004         Just a big NOOP:
10005                 some minor cleanups before the big shot
10006                 OP_DEFS and OP_USES now use Kevin's protection
10007                 new option --nolabelopt
10008
10009         * src/SDCCBBlock.c:
10010         * src/SDCCast.c,:
10011         * src/SDCCcflow.c:
10012         * src/SDCCcse.c:
10013         * src/SDCCicode.c:
10014         * src/SDCCicode.h:
10015         * src/SDCClabel.c:
10016         * src/SDCCloop.c:
10017         * src/SDCCmain.c:
10018         * src/ds390/ralloc.c:
10019         * src/mcs51/ralloc.c:
10020         * src/pic/ralloc.c:
10021         * src/xa51/ralloc.c:
10022         * src/z80/ralloc.c:
10023
10024 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10025
10026         * src/pic/pcode.c (get_op): fix 64 bit warnings
10027         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10028         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10029         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10030         * support/regression/tests/malloc.c: fix 64 bit warnings
10031
10032 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10033
10034         * src/mcs51/gen.c (genMinus): fixed bug 696436
10035
10036 2003-03-02  Borut Razem <borut.razem AT siol.net>
10037
10038         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10039
10040 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10041
10042         * configure.in: test for mkstemp
10043         * sdccconf_in.h: add HAVE_MKSTEMP
10044
10045 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10046
10047         * device/include/ctype.h: removed warning while using --stack-auto
10048         * device/include/malloc.h: removed warning while using --stack-auto
10049         * device/include/string.h: removed warning while using --stack-auto
10050
10051 2003-02-23  Borut Razem <borut.razem AT siol.net>
10052
10053         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10054         because NDEBUG is defined (see man assert)
10055         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10056
10057 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10058
10059         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10060         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10061
10062 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10063
10064         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10065         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10066
10067 2003-02-18    <johan AT balder>
10068
10069         * as/mcs51/asmain.c (asmbl): module can start with a digit
10070         * as/z80/asmain.c (asmbl): module can start with a digit
10071
10072 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10073
10074         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10075         * src/asm.c: fix pipe() for Mingw32
10076
10077 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10078
10079         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10080         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10081         make -V work again; --c1mode reads now from stdin
10082         * doc/sdccman.lyx: added --c1mode
10083         * support/Util/SDCCerr.c: new messages for c1 mode
10084         * support/Util/SDCCerr.h: new messages for c1 mode
10085         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10086
10087 2003-02-15    <johan AT balder>
10088
10089         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10090
10091 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10092
10093         * doc/sdccman.lyx: Environment variables, -o and other minor things
10094
10095 2003-02-14    <johan AT balder>
10096
10097         * src/xa51/main.c: before anyone really tries to use it :)
10098
10099         * Install doc's in share/sdcc/doc
10100         * removed some obsolete files
10101         * Do a proper make distclean and uninstall
10102         M Makefile.common.in
10103         R sdccbuild.sh
10104         M as/Makefile
10105         M device/include/Makefile.in
10106         M device/lib/Makefile.in
10107         M doc/sdccman.lyx
10108         M link/Makefile
10109         M sim/ucsim/doc/Makefile.in
10110         M src/clean.mk
10111         R src/avr/peeph.rul
10112         R src/xa51/peeph.rul
10113         M support/cpp2/Makefile.in
10114         M support/makebin/Makefile
10115
10116
10117 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10118
10119         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10120
10121 2003-02-10  Borut Razem <borut.razem AT siol.net>
10122
10123         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10124         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10125         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10126         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10127         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10128         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10129         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10130         src/z80/Makefile.bcc: Borland Makefile cleanup
10131         * as/z80/Makefile.bcc: Added Borland Makefile
10132         * support/cpp2/borland.h: Removed
10133
10134 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10135
10136         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10137         * src/SDCC.lex: new pragma NOIV
10138         * src/SDCCglobl.h: new pragma NOIV
10139         * src/SDCCmem.c: new pragma NOIV
10140
10141 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10142
10143         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10144
10145 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10146
10147         * src/SDCCmain.c: signal handling is switched off by --debug
10148         * doc/Makefile: small fix for install; use clean.mk again
10149         * doc/clean.mk: clean *.pdf and *.html too
10150
10151 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10152
10153         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10154         * device/lib/printfl.c: fix a ds390 bug by making it portable
10155         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10156         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10157         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10158         * debugger/mcs51/cmd.c: converted multi-line string literals
10159         * sim/ucsim/globals.cc: converted multi-line string literals
10160         * src/SDCCmain.c: introduced signal handler to remove temp files
10161         * doc/Makefile: small tweaks, implement clean
10162         * doc: removed generated files
10163
10164 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10165
10166         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10167         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10168         Address Record is not correctly generated for DS390."
10169
10170 2003-02-02  Borut Razem <borut.razem AT siol.net>
10171
10172         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10173         * as/mcs51/asm.h: fixed compilation with Borland C
10174         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10175         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10176         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10177         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10178         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10179         src/z80/Makefile.bcc: delete $(LIB) only if exist
10180         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10181
10182 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10183
10184         * device/include/malloc.h: introduced NULL
10185         * device/include/string.h: introduced NULL
10186         * device/include/stdlib.h: introduced NULL
10187         * device/lib/_memcpy.c: removed NULL
10188         * device/lib/_strcat.c: removed NULL
10189         * device/lib/_strchr.c: removed NULL
10190         * device/lib/_strcmp.c: removed NULL
10191         * device/lib/_strcpy.c: removed NULL
10192         * device/lib/_strcspn.c: removed NULL
10193         * device/lib/_strlen.c: removed NULL
10194         * device/lib/_strncat.c: removed NULL
10195         * device/lib/_strncmp.c: removed NULL
10196         * device/lib/_strncpy.c: removed NULL
10197         * device/lib/_strpbrk.c: removed NULL
10198         * device/lib/_strrchr.c: removed NULL
10199         * device/lib/_strspn.c: removed NULL
10200         * device/lib/_strstr.c: removed NULL
10201         * device/lib/_strtok.c: removed NULL
10202         * device/lib/malloc.c: removed NULL, include own header
10203
10204 2003-02-02    <johan AT balder>
10205
10206         * 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
10207         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10208         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10209         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10210         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10211         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10212
10213 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10214
10215         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10216         area 'DATA'"
10217
10218 2003-02-01    <johan AT balder>
10219
10220         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10221
10222 2003-01-31    <johan AT CP255758-A>
10223
10224         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10225
10226 2003-01-30    <johan AT balder>
10227
10228         * src/SDCCBBlock.c: automatic bug detection
10229         * src/SDCCicode.c: automatic bug detection
10230
10231 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10232
10233         * src/SDCCglobl.h:   now --xram-size 0 works
10234         * src/SDCCmain.c:    now --xram-size 0 works
10235
10236 2003-01-29    <johan AT balder>
10237
10238         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10239
10240 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10241
10242         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10243         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10244         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10245         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10246         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10247         * src/SDCCmain.c:    Added options --xram-size and --code-size
10248
10249 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10250
10251         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10252         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10253
10254 2003-01-27    <johan AT balder>
10255
10256         * src/SDCC.y: fixed bug #613764
10257
10258 2003-01-26    <johan AT balder>
10259
10260         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10261         * src/SDCCsymt.h: fixed bug #673374
10262         * src/SDCCglue.c: fixed bug #661910
10263         * src/SDCCast.c: fixed bug #458099 and 673374
10264
10265 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10266
10267         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10268         * as/mcs51/strcmpi.h: added
10269         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10270         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10271         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10272         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10273         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10274         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10275         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10276         * as/mcs51/Makefile.aslink: new module strcmpi
10277         * as/mcs51/Makefile.asx8051: new module strcmpi
10278         * as/mcs51/Makefil.bcc: new module strcmpi
10279         * as/mcs51/Makefile.in: new module strcmpi
10280         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10281
10282 2003-01-26    <johan AT balder>
10283
10284         * src/SDCCglue.c: reverted back to 1.124
10285         * src/SDCCast.c: reverted back to 1.156
10286         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10287
10288 2003-01-25    <johan AT balder>
10289
10290         * src/SDCCglue.c: A better fix for bug #661910
10291         * src/SDCCast.c: A better fix for bug #661910
10292         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10293
10294 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10295
10296         * src/Makefile.in: remove spawn.o
10297         * src/SDCCmain.c: remove spawn.h
10298         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10299         * src/spawn.c: removed
10300         * src/spawn.h: removed
10301         * support/regression/ports/ds390/spec.mk: link with -r
10302
10303 2003-01-24    <johan AT CP255758-A>
10304
10305         * src/ds390/gen.c (aopOp): fixed bug #667458
10306         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10307         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10308         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10309
10310 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10311
10312         * src/mcs51/peeph.def: better assembler identation by Frieder
10313         * src/mcs51/gen.c: better assembler identation by Frieder
10314
10315 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10316
10317         * as/z80/string.h: removed for gcc 3.2
10318         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10319         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10320
10321 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10322
10323         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10324         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10325         * support/regression/Makefile: separate temp files for ports
10326         * support/regression/generate-cases.py: separate temp files for ports
10327         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10328         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10329
10330 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10331
10332         * moved tinitalk to device/examples/ds390
10333
10334 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10335
10336         * as/mcs51/lkmem.c: rflag is for DS390
10337         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10338         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10339                          (linkEdit): move mem- and map-files the same way as ihx-files
10340         * src/z80/main.c (_setDefaultOptions): removed --generic
10341         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10342         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10343         * src/pic/glue.c (picglue): --c1mode works again
10344         * src/pic16/glue.c (pic16glue): --c1mode works again
10345         * src/asm.c (printCLine): fix #660034
10346
10347 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10348
10349         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10350         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10351         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10352         * as/mcs51/lkmem (summary): better fix for sp problem
10353         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10354         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10355         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10356                                               remove --stack-after-data
10357
10358 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10359
10360         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10361         * src/SDCCutil.c (join): ugly bug: missing '\0'
10362         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10363
10364 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10365
10366         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10367         * src/port.h: typo
10368         * src/pic/main.c (_asmCmd): gpasm supports -o
10369         * src/z80/main.c: more general macros
10370         * device/lib/Makefile.in: remove intermediate files
10371
10372 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10373
10374         * .version: Bumped version number to 2.3.3
10375         * src/SDCCBBlock.c: new option -o
10376         * src/SDCCglobl.h: new option -o
10377         * src/SDCCglue.c: new option -o
10378         * src/SDCCmain.c: new option -o
10379         * src/asm.c: new option -o
10380         * src/ds390/main.c: new option -o
10381         * src/pic/glue.c: new option -o
10382         * src/pic/pcode.c: new option -o
10383         * src/pic/ralloc.c: new option -o
10384         * src/pic16/glue.c: new option -o
10385         * src/pic16/pcode.c: new option -o
10386         * src/pic16/ralloc.c: new option -o
10387         * src/z80/main.c: new option -o
10388         * device/lib/Makefile.in: use -o
10389         * support/regression/ports/ds390/spec.mk: use -o
10390         * support/regression/ports/gbz80/spec.mk: use -o
10391         * support/regression/ports/mcs51/spec.mk: use -o
10392         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10393         * support/regression/ports/z80/spec.mk: use -o
10394         * support/regression/ports/ucz80/spec.mk: use -o
10395         * support/regression/ports/xa51/spec.mk: use -o
10396         * support/regression/fwk/lib/timeout.c: fix usage string
10397
10398 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10399         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10400
10401 2003-01-07    <johan AT balder>
10402
10403         * src/SDCCast.c (decorateType): fixed bug #600035
10404
10405 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10406         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10407         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10408         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10409         * src/pic/pcode.c: outcommented unused variable to remove warnings
10410         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10411
10412 2003-01-06    <karl AT turbobit.com>
10413         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10414    regression tests.
10415
10416 2003-01-06    <johan AT balder>
10417
10418         * src/SDCCicode.c: fixed array add
10419
10420 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10421         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10422         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10423
10424 2003-01-04    <johan AT balder>
10425
10426         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10427
10428 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10429         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10430
10431 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10432         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10433         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10434
10435 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10436         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10437
10438 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10439         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10440
10441 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10442         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10443
10444 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10445
10446     * in \sdcc\as\mcs51\ changed these files in order to create an
10447     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10448     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10449     following files to include the previous two files: aslink.dsp,
10450     Makefile.aslink, Makefile.bcc, and Makefile.in.
10451
10452     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10453     .adb instead of .cdb
10454
10455 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10456
10457         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10458         value from option --iram-size.
10459
10460 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10461
10462         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10463         dram[] array.
10464
10465 2002-09-18    <wiml AT hhhh.org>
10466
10467         * SDCClrange.h: exposed setFromRange() and setToRange()
10468         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10469           packRegsForAccUse() (bug 542397)
10470         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10471           multiple times and emitting the fetch operations more than once
10472           added aopGetUsesAcc() function to allow binary operators to
10473           fetch their operands in the correct order; made genMinus() emit
10474           compact code for X = LITERAL - Y
10475
10476 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10477         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10478         sprintf() in line 1267.
10479
10480 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10481         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10482         like ports.
10483
10484 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10485         Changes to aslink (All the changes are marked with 'JCF'):
10486
10487         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10488         summary().
10489
10490         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10491         area BSEG.  Also moves, if possible, the DATA area down into the internal
10492         ram so more space is available.
10493
10494         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10495         sflag.
10496
10497         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10498         not bytes.  Function summary() which creates a memory usage summary
10499         file with extension .mem.  Reports of overlaping stack and small stack
10500         size.  If the space for the stack is less than 16 bytes aslink trows a
10501         warning.
10502
10503         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10504         the 8051.  Option 'y' for memory summary output file.
10505
10506         Changes to sdcc (All the changes are marked with 'JCF'):
10507
10508         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10509
10510         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10511         overlaying area for it (uses RegBankUsed[4]).
10512
10513         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10514         bank zero as used by default.  By default aslink locates the stack
10515         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10516         the creation of the .mem file.  Delegates the allocation of data area
10517         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10518         the begining of the stack area to aslink.
10519
10520         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10521         glue() in SDCCglue.c creates an area for it.
10522
10523 2002-09-03  Borut Razem <borut.razem AT siol.net>
10524         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10525         sdcc/src/pic/glue.c:
10526         introduced atexit() handler for teporay files removal in case of
10527         errors, assertions, ...
10528
10529 2002-08-29  Borut Razem <borut.razem AT siol.net>
10530         * sdcc/support/cpp2/auto-host_vc_in.h:
10531         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10532         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10533         Maybe there is a similar problem with BORLANDC? It should be checked!
10534
10535         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10536         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10537         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10538         was not executed, and the compiler (cl) launched a warning:
10539         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10540
10541 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10542         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10543
10544 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10545         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10546
10547         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10548           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10549           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10550           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10551           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10552           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10553           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10554         - added Release configuration in VS projects
10555         - review of compiler an linker options
10556         - VC .exe files are generated in bin_vc directory, not to interfere
10557           with binaries generated from other projects (cygwin, mingw, bcc ...)
10558
10559         * sdcc/src/yacc.dsp: added
10560
10561         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10562         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10563         and insert the version number definitions from .version
10564
10565         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10566
10567         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10568         added - genarate auto-host.h using auto-host_vc_in.h as template
10569
10570         * sdcc/sdcc_vc.h,
10571         removed from CVS, generated automatically
10572
10573 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10574         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10575
10576 2002-08-11  Borut Razem <borut.razem AT siol.net>
10577         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10578
10579 2002-08-10  Borut Razem <borut.razem AT siol.net>
10580         * src/SDCCmain.c (main):
10581         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10582         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10583         The consequence was that some temporary files were not removed.
10584
10585         * src/SDCCglue.c:
10586         unification of code in functions tempfilename() and tempfile():
10587         function tempnam() is defined in Visual Studio 6.0 and .NET
10588
10589         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10590
10591         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10592           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10593         - removed compiler command line option /WX: Treats all warnings as errors
10594         - update a list of source files, included into the project
10595
10596         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10597           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10598         changed project type to Generic Project so that can be correcly converted to VS.NET project
10599
10600         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10601
10602         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10603
10604         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10605
10606         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10607         added return 0 statements after assert() to make compiler happy
10608
10609         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10610         added newline in the def file to keep MSC compiler satisfied
10611
10612         * sdcc/src/z80/gen.c:
10613         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10614           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10615         - solved MSC error in function aopDump()
10616
10617         * sdcc_vc.h: define PREFIX as "\\sdcc"
10618
10619 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10620         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10621
10622 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10623         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10624         - Rewrote the register banking algorithm.
10625         - Added pCode live-range analysis to registers (for now, only non-used and
10626         singly-used registers optimized away)
10627
10628         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10629
10630         * 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.
10631
10632 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10633         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10634
10635 2002-04-22  Michael Hope  <michaelh AT vroom>
10636
10637         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10638
10639         * configure.in (DD_COPT): Added include support required for gbdk.
10640
10641         * .version: Bumped version number just to increase it.
10642
10643         * src/SDCCmain.c: Added -nostdinc to the default options.
10644
10645 2002-04-15  Michael Hope  <michaelh AT vroom>
10646
10647         * device/lib/z80/printf.c (sprintf): Added.
10648
10649         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10650
10651         * src/z80/peeph.def: Added transpose redundent load rule.
10652
10653         * src/z80/main.c: Added force callee saves for jaune.
10654
10655         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10656
10657         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10658
10659 2002-03-28  Johan Knol  <johan AT balder>
10660
10661         * src/SDCCval.c: fixed bug #532436
10662
10663 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10664         * /src/port.h:
10665         Added "char *Processor" field to the port structure.
10666
10667         * /src/SDCCmain.c:
10668         Added -p option. Allows port dependent processor to be specified.
10669
10670         * all ports:
10671         Initialized the new field char *Processor field to NULL in all ports
10672
10673         * /src/pic/*:
10674         Compiler generated registers for interrupt context saving
10675         were not getting allocated.
10676
10677 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10678
10679         * /src/SDCCast.c:
10680         Fixed left shift. Will promote the left side of a left shift
10681         if a) left shifting more than size of operand or b) when assigned
10682         to something size > size of left side
10683
10684 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10685         * src/pic/*
10686         tons of changes. Register allocation has been
10687         rewritten. Added customization for the various PICs. Flow
10688         analysis is restructured. ...
10689
10690         * src/pic/device.h:
10691         Added
10692
10693         * src/pic/device.c:
10694         Added. device.c is a PIC port hack to accomodate variations
10695         in PIC devices.
10696
10697 2002-03-13  Michael Hope  <michaelh AT vroom>
10698
10699         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10700
10701 2002-03-04  johanknol  <johanknol AT manik>
10702
10703         * /src/SDCCval.c: fixed
10704
10705         const unsigned char arr[][2] = { { 0, 1 } };
10706         t18.c:1: error: Initializer element is not constant
10707
10708 2002-03-04  bela  <bela AT manik>
10709
10710         * /device/include/mcs51reg.h:
10711         ds89c420 register definition update
10712
10713 2002-03-03    <johan AT FRIJA>
10714
10715         * support/Util/SDCCerr.c: did something, but don't no why anymore
10716
10717         * support/regression/tests/bug-524691.c: made it a little less shy
10718
10719         * src/SDCCast.c (decorateType): fixed bug #524697
10720
10721         * src/SDCCast.c: made some lineno improvements
10722
10723         * src/SDCCval.c (getNelements): changed warning to error
10724
10725         * src/SDCCglue.c (printIvalArray): changed warning to error
10726
10727         * src/SDCCicode.c: fixed a warning for mingw
10728
10729         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10730
10731         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10732
10733 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10734
10735         * src/ds390/peeph.def:
10736         Added some more peephole rules
10737
10738         * src/ds390/gen.c: Various fixes & enhancements
10739
10740         * src/SDCClrange.c, src/SDCClrange.h:
10741         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10742
10743         * src/ds390/ralloc.c:
10744         various fixes & enhancements (ds390) specific
10745
10746         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10747         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10748         from rallocs.
10749
10750         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10751
10752 2002-03-02    <johan AT FRIJA>
10753
10754         * src/SDCCast.c (decorateType): fixed bug #524708
10755
10756         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10757
10758         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10759
10760 2002-03-01  Michael Hope  <michaelh AT vroom>
10761
10762         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10763
10764         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10765
10766 2002-03-01    <johan AT FRIJA>
10767
10768         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10769
10770         * src/SDCCast.c (decorateType): fixed bug #524209
10771
10772         * src/SDCCval.c (valNot): fixed bug #524195
10773
10774 2002-02-26    <johan AT balder>
10775
10776         * src/xa51/gen.c: fixed a warning
10777
10778         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10779
10780         * src/SDCCast.c (decorateType): fixed bug #522534
10781
10782 2002-02-23    <johan AT balder>
10783
10784         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10785
10786 2002-02-22    <johan AT balder>
10787
10788         * src/SDCCast.c: fixed bug #514865
10789
10790         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10791
10792 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10793
10794         * sdcc/src/SDCCloop.c:
10795         Previous fix was not good. basic blocks that have "break" or "return" are
10796         not really partof a loop , but live ranges used in these blocks should
10797         be live thru the entire loop, so set partOfLoop but don't add them to
10798         loop region
10799
10800 2002-02-21    <johan AT FRIJA>
10801
10802         * src/SDCCcse.c: fixed bug #514308
10803
10804 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10805
10806         * src/SDCCloop.c:
10807         Fixed BUG #519583. If a conditional block ended in a return/break
10808         statement inside a loop, it was not being considered part of the loop.
10809
10810         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10811
10812 2002-02-10  Karl Bongers <karl AT turbobit.com>
10813
10814         * debugger/*:
10815         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10816         with lots of comments and notes.
10817
10818         * device/examples/test2.c:
10819         Fix bug, "red" variable not being initialized(compiler complained).
10820
10821         * device/examples/Makefile, examples/test3.c:
10822         Add Makefile in device/examples folder, compiles test3.c
10823         for use as a multiple module SDCDB test case.
10824
10825         * sim/ucsim/cmd.src/cmdset.cc:
10826         Took out debug printfs in ucsim "next" command.
10827
10828         * sim/ucsim/xa.src:
10829         Karl and Johan start ucsim XA support.  Most dissassembly working,
10830         about 75% emulation done(plenty of work remaining).
10831
10832         * sim/ucsim/z80.src:
10833         Add Z80 support to ucsim, add test-ucz80 regression test,
10834         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10835         Notice z80 compiler fails on examples/test3.c/crc code.
10836
10837 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10838
10839         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10840         Added support for --parms-in-bank1
10841
10842         * src/ds390/peeph.def:
10843         added a few more peephole optimzations
10844
10845         * src/ds390/main.c:
10846         1) added __builtin_inp & __builtin_outp used to read in data of given length
10847            from a memory mapped port
10848         2) added __builtin_memcmp
10849         3) added __builtin_swapw swap bytes of a short
10850
10851         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10852         1) handle multiple send & receives from register bank1
10853         2) ralloc can now allocate DPTR1 to some liveRanges
10854
10855         * src/SDCCsymt.c, src/SDCCsymt.h:
10856         changes to handle multiple sends & receives
10857
10858         * src/SDCCptropt.h:
10859         added some pointer arithmetic optimization
10860
10861         * src/SDCCptropt.c:
10862         added some pointer arithmetic optimizations but not stable yet so not
10863         called from anywhere (will get this working shortly)
10864
10865         * src/SDCCopt.c: fixed for multiple sends & receives
10866
10867         * src/SDCCmain.c:
10868         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10869         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10870            set preprocessor defines (depending on options)
10871
10872         * src/SDCCicode.c, src/SDCCicode.h:
10873         changes made to handle multiple sends & receives
10874
10875         * src/SDCCglobl.h:
10876         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10877
10878         * src/SDCCcse.c, src/SDCCcse.h:
10879         added function findbackward def (to be used in upcoming optimization)
10880
10881         * src/SDCCcflow.c, src/SDCCcflow.h:
10882         added function returnAtEnd - to determine if a basic block terminates with
10883         a RETURN iCode
10884
10885         * src/SDCCast.c, src/SDCCast.h:
10886         added option parms-in-bank1
10887
10888         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10889         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10890         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10891         adjusted for --parms-in-bank1 option
10892
10893         * device/include/string.h:
10894         donot redefine "reentrant" keyword
10895
10896         * device/include/ds80c390.h: Added some more SFRs
10897
10898 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10899
10900         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10901
10902 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10903
10904         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10905
10906 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10907
10908         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10909
10910 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10911
10912         * Added --xram-movc option
10913
10914 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10915
10916         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10917
10918 2002-01-11  Johan Knol
10919
10920         * Added math lib of Jesus Calvino-Fraga
10921
10922 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10923
10924         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10925         * support/regression/Makefile: new target test-mcs51-stack-auto
10926         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10927
10928 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10929
10930         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10931
10932 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10933
10934         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10935
10936 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10937
10938         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10939
10940         * src/SDCCglue.h: add definition for printIvalChar()
10941
10942 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10943
10944         * src/SDCCast.c: fix #498138 by Johan
10945
10946         * src/SDCCglue.c: fix #498138 by Johan
10947
10948 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10949
10950         * support/regression/Makefile: fix clean
10951
10952         * support/regression/ports/ds390/support.c: fix transmission of last character
10953
10954 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10955
10956         * /sdcc/src/ds390/gen.c:
10957         a) improved computing address of stack variable
10958         b) took out some #if 0 code
10959         c) improved parmBytes adjustment
10960         d) improved genPlusIncr & genMinusIncr
10961         e) genCmp could generate bad code (when left assigned to DPTR)
10962         f) Fixed bug in hasInc
10963
10964         * /sdcc/src/ds390/ralloc.c:
10965         a) packRegsForSupport could mess up live information (Fixed)
10966         b) packRegsDPTRuse could be incorrect for left & right shift
10967
10968         * /sdcc/src/mcs51/ralloc.c:
10969         packRegsForSupport could mess up the live information (Fixed)
10970
10971         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10972
10973         * /sdcc/src/SDCCast.c:
10974         can reverse a loop even if function call is present as long
10975         as the loop control variable is local & is not passed as parameter
10976
10977 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10978
10979         * /sdcc/ChangeLog: *** empty log message ***
10980
10981         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10982         More builtin function additions for TININative
10983
10984         * /sdcc/src/ds390/ralloc.c:
10985         Had broken the regression testsuite
10986
10987         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10988
10989         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10990         Added funcattr hasStackParms will be set for reentrant functions when there
10991         are paramteres on the stack, this helps in minimizing frame pointer generation
10992         typeFromStr can handle function pointers now
10993
10994         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10995         *** empty log message ***
10996
10997 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10998
10999         * /src/ds390/gen.c, /src/ds390/main.c:
11000         More builtin function additions for TININative
11001
11002         * /src/ds390/ralloc.c:
11003         Had broken the regression testsuite
11004
11005         * /src/SDCCast.c: Fixed a bug in dumptree
11006
11007         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11008         Added funcattr hasStackParms will be set for reentrant functions when there
11009         are paramteres on the stack, this helps in minimizing frame pointer generation
11010         typeFromStr can handle function pointers now
11011
11012         * /doc/builtins.txt, /doc/TININative.txt:
11013         *** empty log message ***
11014
11015
11016 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11017
11018         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11019         ALPHA version for -mTININative
11020
11021         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11022         updated to reflect changes in the port structure
11023
11024         * /src/port.h:
11025         added function do_assemble (similar to do_link) if non-null this function
11026         will be called to do assembly (-mTININative) requires a multi command
11027         assembly
11028         added function genAssemblerEnd will be called to generate assembler Epilogue
11029
11030         * /src/SDCCsymt.c:
11031         added _JavaNative to debug info printing
11032
11033         * /src/SDCCmain.c: added option --tini-libid
11034         added port->do_assemble function (-mTININative) has a multi command assemble
11035
11036         * /src/SDCCglue.c: Disabled "constExpr" check
11037         added port->genAssemblerEnd function
11038
11039         * /src/SDCCglobl.h: Added option --tini-libid value
11040
11041         * /src/SDCCast.h:
11042         tookout optimizeCompare from the header (has no external references)
11043
11044         * /src/SDCCast.c: made one more function "static"
11045
11046 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11047
11048         * src/z80/mappings.i: Added z80asm support.
11049
11050         * src/z80/main.c: Added z80asm support on --asm=z80asm
11051
11052         * src/z80/gen.c: Fixed asm portability issues.
11053
11054         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11055
11056         * src/SDCCglue.c (printExterns): Added global/extern split.
11057
11058 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11059
11060         * support/regression/Makefile: added test for mcs51 model large
11061
11062         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11063
11064         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11065
11066 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11067
11068         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11069
11070 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11071
11072         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11073
11074         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11075
11076 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11077
11078         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11079
11080         * support/regression/tests/simplefloat.c: Port to mcs51.
11081
11082 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11083         * support/regression/tests/bug-485362.c: Added.
11084
11085         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11086
11087         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11088
11089         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11090
11091         * src/z80/gen.c (aopDump): Added a dump function.
11092
11093 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11094         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11095
11096         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11097
11098         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11099
11100         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11101
11102         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11103
11104         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11105
11106         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11107
11108         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11109
11110         * support/regression/ports/ds390/support.c: Use tinibios.
11111
11112         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11113
11114 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11115
11116         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11117         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11118
11119         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11120
11121         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11122
11123 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11124
11125         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11126
11127         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11128         (packRegsForIYUse): Created and optimised.
11129
11130 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11131
11132         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11133 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11134
11135         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11136
11137         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11138
11139         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11140
11141 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11142
11143         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11144
11145         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11146
11147 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11148
11149         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11150
11151         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11152
11153         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11154
11155 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11156
11157         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11158         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11159         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11160
11161         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11162
11163         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11164         (genNotFloat): Added.
11165         (genUminusFloat): Added.
11166
11167         * device/lib/z80/Makefile: Added floating pt stubs.
11168
11169         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11170
11171         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11172
11173         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11174
11175 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11176
11177         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11178
11179         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11180
11181         * sdcc/support/regression/Makefile: Add port ds390.
11182
11183         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11184
11185         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11186
11187         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11188
11189         * sdcc/support/regression/ports/ds390/support.c: Added.
11190
11191         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11192
11193         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11194
11195         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11196
11197 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11198
11199         * device/include/malloc.h: Added z80 and gbz80 support.
11200
11201         * device/lib/gbz80/heap.s: Added.
11202
11203         * device/lib/z80/heap.s: Added.
11204
11205         * device/lib/malloc.c: Added z80 and gbz80 support.
11206
11207         * support/regression/tests/malloc.c (testMalloc): Added.
11208
11209         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11210
11211         * support/regression/tests/bug-478094.c: Added.
11212
11213         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11214
11215 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11216
11217         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11218
11219         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11220
11221         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11222
11223         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11224
11225         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11226
11227 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11228
11229         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11230
11231 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11232
11233         * support/regression/tests/bug-477927.c: Added.
11234
11235         * src/z80/peeph.def: Added minor rules.
11236
11237         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11238
11239         * src/z80/peeph.def: Added jump optimisation modification.
11240
11241 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11242
11243         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11244
11245 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11246
11247         * support/regression/tests/funptrs.c: Added.
11248
11249 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11250
11251         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11252
11253 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11254
11255         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11256
11257         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11258
11259         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11260         (movLeft2ResultLong): Created.
11261
11262         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11263         (joinPushes): Added.  Joins two char pushes into a word push.
11264
11265 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11266
11267         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11268
11269         * support/makebin/Makefile (install): Added creation of dest dir.
11270
11271 2001-10-24 Karl Bongers <karl AT turbobit.com>
11272
11273         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11274
11275 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11276
11277         * src/z80/ralloc.c: Turned off faulty pack for one use.
11278
11279         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11280
11281         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11282
11283 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11284
11285         * support/regression/Makefile: Improved clean
11286
11287         * support/regression/ports/gbz80/spec.mk: Added clean
11288
11289         * support/regression/ports/host/spec.mk: Added clean
11290
11291         * support/regression/ports/z80/spec.mk: Added clean
11292
11293         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11294
11295         * support/regression/ports/mcs51/timeout.c: little improvements
11296
11297 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11298
11299         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11300
11301         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11302
11303         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11304
11305 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11306
11307         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11308
11309         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11310
11311 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11312         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11313
11314         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11315
11316         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11317
11318         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11319
11320         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11321
11322         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11323
11324         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11325
11326         * support/regression/tests/longor.c: Added.
11327
11328 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11329
11330         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11331
11332         * as/mcs51/aslink.h: define PATH_MAX
11333
11334         * as/mcs51/asm.h: define PATH_MAX
11335
11336         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11337
11338         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11339
11340         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11341
11342         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11343
11344         * src/SDCCglobl.h: define PATH_MAX
11345
11346         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11347
11348         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11349
11350 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11351
11352         * src/z80/gen.c (gencjneshort): Fixed
11353
11354         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11355
11356 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11357
11358         * support/regression/tests/bug-469671.c: Added.
11359
11360         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11361
11362 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11363
11364         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11365
11366         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11367
11368 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11369
11370         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11371
11372         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11373
11374         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11375
11376         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11377
11378         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11379
11380         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11381
11382         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11383
11384 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11385
11386         * 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.
11387
11388         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11389
11390         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11391
11392 2001-10-07    <johan AT FRIJA>
11393
11394         * device/lib/gets.c (gets): fixed the return value.
11395
11396 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11397         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11398
11399         * 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.
11400
11401         * 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.
11402
11403         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11404
11405         * src/pic/gen.c: Removed Safe_strdup.
11406
11407         * configure.in: Added option to enable libgc support.
11408
11409         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11410         (bitVectUnion): Optimised.
11411         (bitVectIntersect): Optimised.
11412         (bitVectBitsInCommon): Optimised.
11413         (bitVectCplAnd): Optimised.
11414
11415         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11416
11417 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11418
11419         * src/SDCCmain.c: distinguish between assembler debug and plain options
11420
11421         * src/avr/main.c:   remove standard assembler options
11422
11423         * src/ds390/main.c: remove standard assembler options
11424
11425         * src/mcs51/main.c: remove standard assembler options
11426
11427         * src/port.h: removed "PENDING" comment
11428
11429 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11430
11431         * src/device/lib/_mulint.c  : new, with assember functions
11432
11433         * src/device/lib/_mullong.c : new, with assember functions
11434
11435         * src/device/lib/_divuint.c : with assember functions
11436
11437         * src/device/lib/_divsint.c : with assember functions
11438
11439         * src/device/lib/_divulong.c: with assember functions
11440
11441         * src/device/lib/_divslong.c: with assember functions
11442
11443         * src/device/lib/_moduint.c : with assember functions
11444
11445         * src/device/lib/_modsint.c : with assember functions
11446
11447         * src/device/lib/_modulong.c: with assember functions
11448
11449         * src/device/lib/_modslong.c: with assember functions
11450
11451         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11452
11453         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11454
11455         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11456                                       replaced _mululong.c and _mulslong.c by _mullong.c
11457
11458 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11459
11460         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11461
11462 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11463
11464         * src/SDCCglue.c: test, if win32api is available for MINGW
11465
11466 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11467
11468         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11469         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11470         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11471         * support/regression/ports/host/spec.mk: removed GENERIC
11472         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11473         * support/regression/ports/z80/spec.mk: removed GENERIC
11474
11475 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11476
11477         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11478
11479         * support/regression/tests/bug-467035.c: Created.
11480
11481 2001-10-01    <johan AT FRIJA>
11482
11483         * src/SDCC.y: fixed bug #466586 part 1
11484
11485 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11486
11487         * SDCCicode.c: z80 has no generic pointers
11488         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11489
11490 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11491
11492         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11493
11494 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11495
11496         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11497
11498         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11499
11500 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11501
11502         * configure.in: Fixed up so that ucsim is only configured once.
11503
11504         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11505
11506         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11507         (getPathDifference): As above.
11508
11509         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11510
11511         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11512
11513 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11514         * .version: Updated to 2.3.1
11515
11516         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11517         Added copyright header.
11518
11519         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11520         (assemble): Added support for macro based assembler commands.
11521         (linkEdit): Added support for macro based linker commands.
11522         (preProcess): Changed the pre-processor to use macros.
11523         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11524         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11525
11526         * device/lib/z80/crt0.s: Added module name for debugging.
11527
11528 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11529
11530         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11531
11532         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11533
11534         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11535
11536         * src/Makefile.in: Added SDCCmacro and SDCCutil
11537
11538 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11539
11540         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11541
11542 2001-09-16    <johan AT FRIJA>
11543
11544         * 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.
11545
11546 2001-09-15    <johan AT FRIJA>
11547
11548         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11549         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11550
11551 2001-09-11    <johan AT FRIJA>
11552
11553         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11554
11555 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11556
11557         * support/regression/tests/bug-460444.c: Added test case.
11558
11559         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11560         (genCast): Added justification for all of the asserts.
11561
11562 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11563
11564         * support/regression/support.c: _xdata replaced by xdata
11565
11566         * support/regression/spec.mk: removed _generic
11567
11568 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11569
11570         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11571
11572         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11573         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11574
11575         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11576
11577         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11578
11579         * support/regression/tests/bug-460010.c: Added test case.
11580
11581         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11582
11583 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11584
11585         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11586
11587         * support/regression/testfwk.c: removed workaround for bug #436344
11588
11589         * support/regression/tests/bp.c: use less memory with mcs51
11590
11591         * support/regression/tests/bug-441448.c: use less memory
11592
11593         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11594
11595         * support/regression/collate-results.py: typo
11596
11597 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11598
11599         * support/regression/tests/fetchoverlap.c: Added new test case.
11600
11601         * support/regression/tests/bp.c: Added new test case.
11602
11603         * support/regression/tests/bug-448984.c: Added new test case.
11604
11605         * support/regression/tests/pow2shifts.c: Added new test case.
11606
11607         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11608         (genlshTwo): Fixed right shift for count > 8.
11609
11610         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11611
11612 2001-09-08    <johan AT FRIJA>
11613
11614         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11615
11616 2001-09-07    <johan AT FRIJA>
11617
11618         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11619
11620         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11621
11622 2001-09-06    <johan AT FRIJA>
11623
11624         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11625         * bernhard noted me at this: "() equals to (void)" (1.38)
11626
11627 2001-09-05    <johan AT FRIJA>
11628
11629         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11630
11631 2001-09-04    <johan AT FRIJA>
11632
11633         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11634
11635
11636 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11637
11638         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11639
11640 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11641
11642         * link/z80/aslink.h: Fixed path for PATH_MAX
11643
11644 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11645
11646         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11647
11648         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11649
11650         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11651
11652         * 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.
11653
11654 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11655
11656         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11657         (genCmp): Fixed up genCmp for the GB with longs.
11658
11659         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11660
11661         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11662
11663         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11664
11665         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11666
11667 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11668
11669         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11670
11671 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11672
11673         * 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.
11674
11675         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11676
11677 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11678
11679         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11680
11681         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11682
11683 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11684
11685   * sim/ucsim/configure:    little improvement of Cygwin-detection
11686   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11687   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11688   * support/regression/tests/bug-221100.c: small changes for mcs51
11689   * support/regression/tests/bug-221168.c: small changes for mcs51
11690   * support/regression/tests/bug-227710.c: small changes for mcs51
11691   * support/regression/tests/staticinit.c: small changes for mcs51
11692   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11693   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11694   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11695
11696 $Revision$