* debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and 1208515
[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
6 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
7
8         * src/port.h (struct PORT): added field gp_tags, to hold the tag
9         value of generic pointers,
10         * src/avr/main.c,
11           src/ds390/main.c,
12           src/hc08/main.c,
13           src/izt/i186.c,
14           src/izt/tlcs900h.c,
15           src/mcs51/main.c,
16           src/pic/main.c,
17           src/pic16/main.c,
18           src/xa51/main.c,
19           src/z80/main.c: PORT structure, added elements for gp_tags field,
20         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
21         fields in the PORT structure of each port,
22         * src/SDCCast.c (decorateType): allow processing of generic pointers
23         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
24         S_FIXED symbols
25
26 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
27
28         * link/z80/lkgb.c,
29         * link/z80/lkgg.c,
30         * src/pic16/gen.c,
31         * src/pic16/main.c,
32         * src/pic16/pcode.c,
33         * src/pic/main.c,
34         * src/pic/pcoderegs.c,
35         * src/SDCCicode.c,
36         * src/SDCCmain.c,
37         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
38           bug 1504689 on minGW
39
40 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
41
42         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
43
44 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
45
46         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
47
48 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
49
50         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
51           for optimization
52
53 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
54
55         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
56         to a char variable. Fixed bug #1504211
57         * device/include/pic16/adc.h,
58         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
59         and fixed bug #1364390
60
61 2006-06-10 Borut Razem <borut.razem AT siol.net>
62
63         * CVSROOT: removed the CVS left-over
64
65 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
66
67         * as/hc08/asmain.c (asexit),
68         * as/hc08/lkmain.c (lkexit),
69         * as/mcs51/asmain.c (asexit),
70         * as/mcs51/lkmain.c (lkexit),
71         * src/SDCCglue.c (DEFSETFUNC),
72         * src/SDCCmain.c (linkEdit, assemble),
73         * support/librarian/sdcclib.c (AddRel),
74           replaced unlink() by standard C remove()
75         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
76         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
77           gatherImplicitVariables): new, added to fix bug 608752,
78           (createFunction): added gatherImplicitVariables()
79         * src/SDCCast.h: added createRMW prototype
80         * src/SDCCsymt.h (struct symbol): added infertype
81         * support/regression/tests/bug608752.c: new, added
82
83 2006-06-10 Raphael Neider <rneider AT web.de>
84
85         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
86           multibyte dummy reads (fixes #1503234)
87
88 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
89
90         * device/include/mcs51/compiler.h: new, added header file to enable
91           creating common sfr definition header files for different compilers
92
93 2006-06-05 Raphael Neider <rneider AT web.de>
94
95         * src/pic16/{pcode.h,genarith.c}:
96           introduced pCodeOp combining any two pCodeOps (previously only
97           two register operands could be combined), removed pcop2 from
98           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
99         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
100         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
101           rewritten to use new PO_TWO_OPS
102         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
103         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
104           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
105           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
106           (pic16_get_op): embraced return arg to allow #define return(x),
107             added new case for combined opcodes
108           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
109           (pic16_pCode2str,pic16_getRegFrompCodeOp,
110            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
111
112 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
113
114         * src/SDCCval.c (checkConstantRange): added
115         * src/SDCCval.h: added checkConstantRange
116         * support/Util/SDCCerr.c,
117         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
118         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
119         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
120         * src/SDCCast.c (decorateType): added checkConstantRange,
121         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
122         can be emitted with the correct always true/false warning,
123         added optimization for double '!';
124         result of decorateType() must be assigned back to the tree, because
125         decorateType() can change the tree
126         * src/SDCCicode.c (geniCodeLogic),
127         (geniCodeAssign): replaced new checkConstantRange, added warnings,
128         (checkConstantRange): removed, it was only a fragment which never
129         emitted a warning
130         * src/SDCCsymt.c (computeType): fixed promotion for
131         "-1 < (unsigned bit) b"
132         * src/pic/ralloc.c (packRegsForAssign),
133         * src/pic16/ralloc.c (packRegsForAssign),
134         * src/hc08/ralloc.c (packRegsForAssign),
135         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
136         from mcs51
137         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
138         * support/regression/tests/constantRange.c: added
139         * support/valdiag/tests/constantRange.c: added
140         * support/valdiag/valdiag.py: added -DPORT_HOST=1
141
142 2006-06-02 Borut Razem <borut.razem AT siol.net>
143
144         * support/regression/ports/pic16/support.c: increase stack size
145           to 255 bytes
146         * support/regression/Makefile.in: sort tests by name so that the
147           resutlts can be compared on different machines / platforms
148
149 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
150
151         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
152         * src/ds390/gen.c (emitLabel): new, added,
153           (genDjnz): fixed stack overflow bug,
154           (throughout): cosmetic changes to sync with mcs51/gen.c,
155           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
156         * src/mcs51/gen.c (genEndFunction): small optimization,
157           (throughout): cosmetic changes to sync with ds390/gen.c
158
159 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
160
161         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
162           (_print_format): fixed printing pointers
163         * src/mcs51/gen.c (emitLabel, movb): new, added,
164           (genAssign): small optimization,
165           (genDjnz): fixed stack overflow bug,
166           (throughout): replaced sprintf with SNPRINTF,
167           replaced mcs51_regWithIdx with REG_WITH_INDEX,
168           replaced emitcode("mov", "b,...") with MOVB(...),
169           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
170           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
171         * src/mcs51/peeph.def: added rules 140 and 264
172         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
173           so they may get optimized into registers
174
175 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
176
177         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
178           immediately when encountered,
179           (printUsage): always use stderr even on windows
180
181 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
182
183         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
184         (processParms): fixed bug #1247551
185         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
186         parseCmdLine, main): print '--version' to stdout,
187         print 'help' to stdout if --help is given,
188         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
189         arguments are given; fixed --help
190
191 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
192
193         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
194         * support/regression/tests/bug-1493710.c: added
195
196 2006-05-27 Borut Razem <borut.razem AT siol.net>
197
198         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
199           static instead auto
200         * support/regression/ports/pic16/support.c: increase stack size
201           from default 64 bytes to 128 bytes
202         * support/regression/tests/staticinit.c,
203           support/regression/tests/float.c: regression tests fully enabled
204           for pic16 port by putting the initialized data arrays into the code
205           section
206         * support/regression/ports/pic16/spec.mk: don't link default libraries.
207           This was changed by mistake in the previous version.
208
209 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
210
211         * src/pic16/gen.c (genFunction, genEndFunction): some
212         beautifications, fixed bug with falsely restoring FSR2 in large
213         stack model, thanks to Beau E. Cox for reporting the bug
214
215 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
216
217         * debugger/mcs51/break.c,
218         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
219           use %p to print pointers, made address variables unsigned
220         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
221         * debugger/mcs51/symtab.c (parseSymbol): must return something
222         * src/mcs51/gen.c (aopForSym): small optimization,
223            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
224           (freeAsmop): added missing break,
225           (aopPut): removed parameter bvolatile, determine it inside the function,
226           (saveRegisters, unsaveRegisters): small optimization,
227           (genIpush): removed pointless check,
228           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
229           replaced sprintf with SNPRINTF,
230           replaced strcpy with strncpyz,
231           updated aopPut calls,
232           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
233         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
234
235 2006-05-24 Borut Razem <borut.razem AT siol.net>
236
237         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
238           modification of test for the pic16 port, put the array to the code
239           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
240
241 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
242
243         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
244         * support/Util/pstdint.h: added
245
246 2006-05-22 Borut Razem <borut.razem AT siol.net>
247
248         * src/regression/Makefile: removed bool2.c test, added -q linker option
249         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
250           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
251           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
252           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
253           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
254           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
255           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
256           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
257           define SUPPORT_BIT_TYPES 0, removed unused bit variables
258
259 2006-05-22 Raphael Neider <rneider AT web.de>
260
261         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
262           bug #1492360 (problematic due to generic pointers, see code)
263
264 2006-05-22 Borut Razem <borut.razem AT siol.net>
265
266         * support/regression/ports/pic16/specs.mk: removed stack size linker
267           directive
268         * support/regression/tests/array.c,
269           support/regression/tests/bitopcse.c,
270           support/regression/tests/bug-908454.c,
271           support/regression/tests/malloc.c: modified for pic16 regression test
272         * support/regression/tests/bitfields.c:
273           pic16 - excluded bitfileds of size > 8
274         * support/regression/tests/bp.c: pic16 - reduced data size
275         * support/regression/tests/bug-221100.c: pic16 - reduced data size
276         * support/regression/tests/bug-460010.c:
277           pic16 - used the absolute address the fits in memory
278         * support/regression/tests/bug-716242.c:
279           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
280         * support/regression/tests/float.c:
281           pic16 - excluded - data size too big
282         * support/regression/tests/onebyte.c:
283           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
284         * support/regression/tests/shifts.c:
285           pic16 - function names probably have to differ in first X characters
286           (gpasm limitation?)
287         * support/regression/tests/staticinit.c:
288           pic16 - excluded some tests due error: no target memory available for
289           section ".idata"
290
291 2006-05-22 Borut Razem <borut.razem AT siol.net>
292
293         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
294           second try. Thanks Stas Sergeev once more.
295
296 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
297
298         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
299           (genLeftShift, genRightShift): fixed bug 1491627
300         * src/hc08/peeph.def (rules 7, 8.x): added
301         * support/regression/tests/shifts.c (ShiftLeftByParam,
302           ShiftRightByParam, testShiftByParam): added to test variable shifting
303
304 2006-05-20 Raphael Neider <rneider AT web.de>
305
306         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
307         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
308           (allocReg): add only new registers to dynAllocRegs,
309           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
310             #1489055, #1445850, and probably #1483693
311
312 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
313
314         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
315         bug in for-loop that didn't emit the last of CONFIG and ID registers
316
317 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
318
319         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
320           with offset
321         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
322           1489016, 1434401 and 1490124
323         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
324           1489016, 1434401 and 1490124
325
326 2006-05-17 Borut Razem <borut.razem AT siol.net>
327
328         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
329           thanks Stas Sergeev
330
331 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
332
333         * device/include/mcs51/P89c51RD2.h,
334         * device/include/mcs51/P89LPC901.h,
335         * device/include/mcs51/P89LPC922.h,
336         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
337
338 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
339
340         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
341         to fix missing stack pragma in compiled binary object file,
342
343 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
344
345         * support/packihx/configure.in,
346         * support/packihx/configure: removed warning, autoconf >= 2.5x can
347         determine sizeof basic types even while cross compiling
348
349 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
350
351         * src/avr/gen.c (aopop),
352         * src/ds390/gen.c (aopOp),
353         * src/hc08/gen.c (aopOp),
354         * src/mcs51/gen.c (aopop),
355         * src/pic16/gen.c (pic16_aopOp),
356         * src/pic/gen.c (aopOp),
357         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
358         if size of operand is smaller than spill location
359
360 2006-05-12 Borut Razem <borut.razem AT siol.net>
361
362         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
363           have to have CR/LF line endings even if they are checked out on *nix
364           or on WIN32 in cygwin binmode
365
366 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
367
368         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
369         * device/include/ds80c390.h: added sfr16 definitions
370         * src/ds390/gen.c,
371         * src/ds390/gen.h,
372         * src/ds390/main.c,
373         * src/ds390/ralloc.c,
374         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
375           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
376           bit returning functions
377         * support/regression/tests/sfr16.c: enabled test on ds390
378
379 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
380
381         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
382         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
383
384 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
385
386         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
387         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
388           (cl_address_space constructor): removed expensive initialization,
389           (cl_address_space::get_cell): extended for late initialization,
390           (cl_address_space::*): use late initialization,
391           (cl_address_decoder::activate): removed expensive initialization,
392           This reduced regression test running time by 25%
393
394 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
395
396         * packihx/,
397         * configure.in,
398         * configure,
399         * sdcc.dsw,
400         * Makefile.bcc,
401         * Makefile.in,
402         * support/packihx/Makefile.in,
403         * support/packihx/clean.mk,
404         * support/packihx/Makefile.bcc,
405         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
406
407 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
408
409         * src/SDCCval.c (valNot): fix for regression test failure
410           of not.c on big endian hosts
411
412 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
413
414         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
415
416 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
417
418         * device/lib/mcs51/Makefile.in: changed string comparison operator
419           to = for POSIX compliance; == is bash extension
420
421 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
422
423         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
424           kosmonaut_pirx
425
426 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
427
428         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
429         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
430         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
431         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
432         bug report #1478657,
433
434 2006-05-05 Borut Razem <borut.razem AT siol.net>
435
436         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
437           making the html
438
439 2006-05-02 Borut Razem <borut.razem AT siol.net>
440
441         * doc/Makefile.in: removed *.ind dependency since there is no rule to
442           create *.ind, which made make to fail if invoked with -j 2
443
444 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
445
446         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
447           Hubert Sack for patch 1479782
448
449 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
450
451         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
452
453 2006-05-01 Raphael Neider <rneider AT web.de>
454
455         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
456           (create_pic): store only prefix-free device name,
457           (init_pic): check for device names with "16" prefix,
458           (list_valid_pics),
459         * src/pic/device.h (struct PIC_device),
460         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
461             stored device name,
462         * device/include/pic/pic12f{635,675,629,683}.h,
463         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
464         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
465         * device/include/pic/pic16f505.h,
466         * device/lib/pic/libdev/pic16f505.c: removed
467         * device/include/pic/pic14devices.txt: added support for pic12f
468             devices, removed unsupported non 16-bit devices
469             [above changes provided by patch from Zik Saleeba]
470         * src/pic/*, src/pic16/*, device/include/pic16/*,
471           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
472
473 2006-05-01 Borut Razem <borut.razem AT siol.net>
474
475         * configure.in, configure, doc/Makefile.in:
476           sync with nightly build makefile - latex, dvipdf and dvips
477           not needed any more
478
479 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
480
481         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
482         in the library source
483
484 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
485
486         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
487
488 2006-04-28 Raphael Neider <rneider AT web.de>
489
490         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
491         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
492           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
493         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
494
495 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
496
497         * device/lib/pic/libdev/Makefile.in,
498         * device/lib/hc08/Makefile.in,
499         * device/lib/gbz80/Makefile.in,
500         * device/lib/z80/Makefile.in,
501         * device/lib/ds390/Makefile.in,
502         * device/lib/ds400/Makefile.in: added srcdir to include search path,
503         thanks to Borut for the bug report
504         * configure.in,
505         * configure: always create doc/Makefile independent from --enable-doc
506         * Makefile.in: always install from directory doc independent from
507         --enable-doc
508         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
509         removed
510         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
511         * doc/Makefile.in: install *.txt if present
512         * device/include/Makefile.in (install): added installation of pic/*.inc
513         and pic/*.txt files again, they were erroneously removed
514
515 2006-04-28 Raphael Neider <rneider AT web.de>
516
517         * src/pic/{gen.c,main.h,pcode.c},
518         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
519             concerning signedness with casts
520
521 2006-04-28 Raphael Neider <rneider AT web.de>
522
523         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
524             definition of an interrupt handler,
525         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
526             interrupt handler stuff from picglue() to separate routine,
527           (picglue): enabled definition of intr handlers in files w/o main()
528
529 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
530
531         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
532           compilation with MSVC 2005 Express Edition (VC8)
533
534 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
535
536         * device/lib/Makefile: fixed build of gbz80 lib
537
538 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
539
540         * support/regression/tests/bug-460010.c,
541         * support/regression/tests/bug-524691.c,
542         * support/regression/tests/bug-716242.c: removed conditional defines
543           that are already in testfwk.h
544
545 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
546
547         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
548           (AccAXRsh1): added, shift right by 1,
549           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
550            AccAXLrl1
551         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
552
553 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
554
555         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
556         remove cast to same type
557         * src/SDCCast.c (decorateType): fix for RFE 1475742,
558         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
559         * as/z80/Makefile,
560         * link/z80/Makefile: removed, they have moved to
561         Makefile.in files
562         * configure,
563         * configure.in: replaced duplicate message about ucsim by missing sdcpp
564         * install-sh: fix bug #1204398 by setting umask 0022
565         * device/lib/Makefile: separate build of z80 and gbz80 lib
566
567 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
568
569         Enabled VPATH feature: changed nearly all Makefiles (149 files).
570         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
571
572         One basic decision: e.g. src/clean.mk includes further files. In order
573         to make this work there are two solutions:
574         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
575           run configure on them. This way they can use
576           'include $(srcdir)/port-clean.mk'
577         - always include clean.mk by the Makefile at the same level. To avoid
578           that `make clean` tries to include and build Makefile.dep the
579           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
580           implemented, because now even `make uninstall` doesn't create
581           Makefile.in. clean.mk could be eliminated by pasting it in
582           Makefile.in.
583
584         * debugger/mcs51/Makefile.in: build own objects from library sources
585         (SLIB, SDCC) in current directory
586
587         * configure, configure.in: renamed --disable-device-lib-build in
588         --disable-device-lib; added --enable-doc, the required tools are
589         searched by configure; added result message; the toolchain for the
590         belonging ports are now only built, if the port is enabled.
591
592         * support/regression/*: all output is written in directory gen, because
593         the fwk and ports directories don't livet in the build tree using vpath
594
595         * doc/sdccman.lyx: renamed --disable-device-lib-build to
596         --disable-device-lib, added --enable-doc, added section VPATH
597
598         * sim/ucsim/configure.in,
599         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
600         z80 are enabled by default
601
602 2006-04-24 Raphael Neider <rneider AT web.de>
603
604         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
605             to config word, "pic14_"-prefixed some extern functions
606           (pic14_emitConfigWord): emit __config directive(s) if assignment to
607             config word has been found
608         * src/pic/device.h: added prototypes
609         * src/pic/pcode.c: added "pic14_"-prefix where needed
610         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
611             fixup
612         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
613             words,
614           (pic14emitRegularMap): ignore config words,
615           (pic14createInterruptVect): moved generating __config directives away
616           (picglue): have __config directives emitted
617
618 2006-04-24 Borut Razem <borut.razem AT siol.net>
619
620         * doc/Makefile: sync with nightly build makefile
621
622 2006-04-24 Raphael Neider <rneider AT web.de>
623
624         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
625             registers that have not been assigned proper liveranges,
626             fixes #1469504 and #1474602,
627           (pCodeRegOptimizeRegUsage): fixed typo in comment
628
629 2006-04-24 Borut Razem <borut.razem AT siol.net>
630
631         * device/examples/main8051.c: deleted - it was removed from CVS
632           24.mar.2000 and after that modified 18.feb.2001, so it reappered
633           after the transition to Subversion
634         * src/SDCCalloc.h: deleted - it was removed  from CVS
635           3.feb.2001 and after that modified 18.feb.2001, so it reappered
636           after the transition to Subversion
637         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
638           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
639           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
640           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
641
642 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
643
644         * as/asx8051.dsp: added mcs51/strcmpi.h
645         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
646         * as/hc08/aslink.h: updated lnksect prototype
647         * as/hc08/asm.h,
648         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
649         * as/hc08/asmain.c,
650         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
651           (newdot): handle A_ABS
652         * as/hc08/asout.c,
653         * as/mcs51/asout.c (outarea): output address
654         * as/hc08/lkaomf51.c,
655         * as/mcs51/lkaomf51.c: disabled unused array UsageType
656         * as/hc08/m08pst.c,
657         * as/mcs51/i51pst.c,
658         * as/z80/z80pst.c: "ABS" is not A_OVR
659         * as/hc08/lkarea.c (newarea): read a_addr,
660           (lnkarea): added codemap array, sort absolute areas to the front,
661            combine all GSINITx/GSFINAL,
662           (find_empty_space, allocate_space): new functions,
663           (lnksect): return next address, handle absolute sections
664         * as/mcs51/lkarea.c (newarea): read a_addr,
665           lnksect2 prototype changed,
666           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
667           (find_empty_space, allocate_space): new, factored out of lnksect2,
668           (lnksect2): return next address, handle absolute sections
669         * as/hc08/lkhead.c,
670         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
671         * as/hc08/lklibr.c (addfile, fndsym),
672         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
673           index out of range and detect both '\' and '/'
674         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
675         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
676           regression tests (ds390 cannot return bool yet)
677         * doc/sdccman.lyx: changed version number, document changed --no-peep,
678           document critical interrupts on z80, document changed SDCC define
679         * src/asm.c (_asxxxx_mapping): fixed .org directive,
680           (_a390_mapping): added .org directive
681         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
682           (genMultOneByte): fixed warnings
683         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
684           ones
685         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
686         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
687           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
688         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
689         * src/pic16/main.c: removed newReg prototype
690         * src/pic16/pcode.c,
691         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
692           warnings
693         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
694           ones
695         * src/pic16/ralloc.c
696         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
697           to fix warnings
698         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
699           from short to PIC_OPTYPE
700         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
701         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
702           optype from short to PIC_OPTYPE
703         * src/port.h: made int_size unsigned to fix warnings
704         * src/SDCC.y: fixed warning on MSVC
705         * src/SDCCicode.c (getArraySizePtr): return unsigned int
706         * src/SDCCopt.c (convertToFcall): fixed warnings
707         * src/SDCCsymt.h: removed double prototype for genSymName
708         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
709           offset int to fix warnings
710
711 2006-04-22 Borut Razem <borut.razem AT siol.net>
712
713         * doc/sdccman.lyx, */Makefile, */Makefile.in:
714           references to CVS replaced with Subversion
715
716 2006-04-21 Borut Razem <borut.razem AT siol.net>
717
718         * doc/sdccman.lyx, */Makefile, */Makefile.in:
719           references to CVS replaced with Subversion
720
721 2006-04-19 Borut Razem <borut.razem AT siol.net>
722
723         * src/version.awk: adapted for svn
724         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
725           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
726           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
727           /binutils-avr/etc/*.vi, *.jin: removed all properties
728           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
729
730 2006-04-19 Borut Razem <borut.razem AT siol.net>
731
732         * CVS to Subversion migration completed
733
734 2006-04-18 Borut Razem <borut.razem AT siol.net>
735
736         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
737           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
738
739 2006-04-17 Borut Razem <borut.razem AT siol.net>
740
741         * device/include/Makefile.in: added pic/*.inc to the installation
742
743 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
744
745         * support/regression/collate-results.py: fixed output in case of
746         a valdiag error
747         * support/regression/generate-cases.py: fixed splitting of pathnames
748         with dots
749         * as/hc08/lklibr.c (addfile),
750         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
751
752 2006-04-11 Raphael Neider <rneider AT web.de>
753
754         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
755         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
756         * src/pic16/pcode.c (assignValnums): fixed #1460578
757
758 2006-04-11 Raphael Neider <rneider AT web.de>
759
760         * device/lib/pic/libdev/*.c,
761         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
762           fixes #1468739, enables compilation in --std-c99 mode
763         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
764
765 2006-04-11 Raphael Neider <rneider AT web.de>
766
767         * src/pic/device.c (find_device): removed debug output
768           (list_valid_pics): enabled verbose listing of supported devices
769         * device/include/stdbool.h: define bool as char for pic14/16 as well
770
771 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
772
773         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
774
775 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
776
777         * .version: bumped version to 2.5.6
778         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
779
780 2006-04-06 Raphael Neider <rneider AT web.de>
781
782         * .version: bumped version to 2.5.6 (pic14 ABI changed)
783         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
784         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
785           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
786             pic14_constructAbsMap
787           (pic14printPublics): declare absolute global symbols as global
788           (pic14createInterruptVect),
789         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
790           (newReg): assume new registers unused, use correct name in
791             hashtable (reg->name instead of name), more debugLog output
792         * src/pic/device.h (PIC_device): added fields for verbose output
793         * src/pic/device.c: moved device definition to pic14devices.txt,
794             added routines for runtime parsing of pic14devices.txt,
795             added support for second config word
796         * src/pic/main.c (_process_pragma): removed #pragma maxram,
797           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
798           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
799           (_pic14_parseOptions): moved pCodeInitRegisters here
800           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
801         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
802           (pCodeInitRegisters): rewrapped comments, perpared new approach to
803             handling the pseudo stack
804         * device/lib/Makefile.in: ignore failures in objects-pic16,
805         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
806         * device/lib/pic/NEWS: document new dependency on picXXX.lib
807         * device/lib/pic/Makefile.subdir,
808         * device/lib/pic16/Makefile.subdir: improved clean rules
809         * device/lib/pic/libdev/: NEW, pic14 device libraries
810         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
811         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
812         * device/include/Makefile.in: create subdir and install pic14 headers
813         * device/include/pic/p16f_common.inc: removed unused declarations
814         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
815             PICs from inc2h.pl v1.6,
816             replaced BIT_AT macros with struct declarations
817         * device/include/pic/pic14devices.txt: definition of supported devices,
818             all above improvements contributed by Zik Saleeba, thanks
819         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
820         * support/scripts/sdcc.nsi: also install pic14 device libraries and
821             headers
822
823 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
824
825         * device/include/mcs51/c8051f410.h: added interrupt numbers,
826         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
827           thanks to Charles Olds
828
829 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
830
831         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
832
833 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
834
835         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
836         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
837         * support/regression/bug1464657.c: added, new test
838
839 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
840
841         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
842           version number
843
844 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
845
846         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
847           --no-peep and --peep-file <file> are used don't use default rules but
848           do use the <file>
849
850 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
851
852         * src/mcs51/gen.c (genCall): fixed bug 1457608
853
854 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
855
856         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
857         changes seem to cause (trigger?) problems with the build system.
858
859 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
860
861         * src/SDCCpeeph.c (operandsLiteral): new, added,
862           (callFuncByName): inserted operandsLiteral
863         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
864
865 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
866
867         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
868         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
869
870 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
871
872         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
873           implemented patch 1120823 Thanks to Willy De la Court (normal
874           interrupts need an interrupt number now if they are made critical),
875           and enabled nesting of critical functions though not for gbz80
876           (genCritical, genEndCritical): added functions
877           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
878         * src/z80/mappings.i: added "ei" to all mappings
879
880 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
881
882         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
883         submitted by the Debian SDCC maintainer Aurelien Jarno:
884         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
885         archive with gcc 4.1 on mips and wrote the patch"
886
887 2006-03-16 Raphael Neider <rneider AT web.de>
888
889         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
890           the left operand is shorter than the result (c* = lit-c* + int),
891           fixes bug #1450796
892         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
893           OP_SYMBOL
894
895 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
896
897         * src/.version: increased version number to 2.5.5
898         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
899         linking is done manually in pic16 port's _linkEdit,
900         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
901         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
902         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
903         allocate asmop as AOP_ACC,
904         (aopForRemat): added parameter 'bool result' in function declaration,
905         (pic16_aopGet): return AOP_ACC when accessing WREG,
906         (pic16_popGetTempReg): minor modification,
907         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
908         'pic16_allocWithIdx',
909         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
910         calling function in absolute addresses,
911         (genAssign): take into account AOP_ACC asmop,
912         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
913         * src/pic16/pcoderegs.c: some debug functions and lines added,
914         * src/pic16/ralloc.c (decodeRegType): added but commented out,
915         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
916         register too,
917         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
918         call to allocReg, not by manually allocating a new one,
919         (pic16_assignRegisters): now before going through the register
920         allocating functions mark all registers as free. This eliminates some
921         side effects resulting from peephole parser done earlier in the backbone
922
923 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
924
925         * src/SDCCicode.c (geniCodeLogic),
926         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
927
928 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
929
930         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
931           (genSend): bugfix, do not allocate and free twice,
932           (shiftRLong): handle partially overlapping aops
933         * support/regression/tests/bitopcse.c: fixed warning redefined idata
934
935 2006-03-08 Borut Razem <borut.razem AT siol.net>
936
937         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
938           for pic16
939
940 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
941
942         * support/regression/tests/bug1409955.c: new, added
943         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
944         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
945           (aopForSym, aopOp): increment asmop.allocated if reused,
946           (freeAsmop): decrement asmop.allocated and check for zero instead of
947           using asmop.freed,
948           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
949           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
950            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
951            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
952            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
953            genSignedRightShift, genRightShift, genDataPointerGet,
954            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
955            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
956             in reverse order from allocation,
957           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
958             added swappedLR to keep track
959         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
960           pdata & code for GCC, z80, gbz80 & hc08
961         * support/regression/tests/zeropad.c: moved defines to testfwk.h
962
963 2006-03-08 Raphael Neider <rneider AT web.de>
964
965         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
966
967 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
968
969         * device/include/mcs51/c8051f410.h: new SiLabs mcu
970         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
971         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
972
973 2006-03-06 Borut Razem <borut.razem AT siol.net>
974
975         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
976           made the linker quiet
977
978 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
979
980         * src/pic16/gen.c (genPcall): fixed bug #1443644
981         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
982         which dumps before the function entry point a data byte which represents
983         the number of the local variables used by the specified function, added
984         'xinst' for initial support for Extended Instruction Support,
985         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
986         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
987         port->fun_prefix anymore (may change later),
988         (genFunction, genEndFunction): do not store/restore local registers for
989         _main (this should take care the --main-return command line option in
990         the future),
991         (genOr): removed some legacy pic-port instructions,
992         * src/pic16/genarith.c (genAddLit): re-enabled old code because
993         performing operations with SFR's causes data to be written more than
994         once to each SFR. Perhaps SFRs should be handled in special cases...
995         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
996         pcode.h
997         * src/pic16/main.c (_process_pragma): stack bound checking did not take
998         into account for stack starting position,
999         (struct OPTIONS pic16_optionsTable): added command line argument
1000         --extended or -y for Extended Instruction Support,
1001         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1002         (deassignLRs): *** perhaps the most important change, old 'for' code
1003         (commented out for reference), didn't account for some registers which
1004         were left marked 'not free' after a pointer operation. The change
1005         reduces register usage a lot in some cases
1006
1007 2006-03-04 Borut Razem <borut.razem AT siol.net>
1008
1009         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1010           _clean
1011         * support/regression/tests/bug-524697.c: decreased array size for
1012           mcs51 to fit into the internal RAM
1013         * support/regression/Makefile.in: a little bit more verbose
1014
1015 2006-03-03 Borut Razem <borut.razem AT siol.net>
1016
1017         * support/regression/fwk/lib/testfwk.c,
1018           support/regression/fwk/include/testfwk.h: introduced function
1019           _prints(), nonrecursive _printn(), call _initEmu() from main()
1020         * support/regression/ports/gbz80/support.asm,
1021           support/regression/ports/ucz80/support.asm,
1022           support/regression/ports/z80/support.asm,
1023           support/regression/ports/ds390/support.c,
1024           support/regression/ports/hc08/support.c,
1025           support/regression/ports/host/support.c,
1026           support/regression/ports/mcs51/support.c,
1027           support/regression/ports/xa51/support.c: added empty _initEmu()
1028           function
1029         * support/regression/ports/pic16/gpsim.cmd,
1030           support/regression/ports/pic16/spec.mk,
1031           support/regression/ports/pic16/support.c,
1032           support/regression/Makefile.in: added pic16 regression test
1033
1034 2006-03-01 Raphael Neider <rneider AT web.de>
1035
1036         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1037           genConstPointerGet): use safe way of generating MOVFF to cover
1038             literals as well as registers, fixes bug #1440527
1039         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1040             dereference
1041           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1042             more correctly, fixes bug #1232186
1043           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1044         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1045             gplink guess the correct processor in more cases, applied patch
1046             from Till Riedel attached to and fixing bug #1436552
1047
1048 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1049
1050         * support/regression/tests/array.c: added, contains check for #1434401
1051         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1052
1053 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1054
1055         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1056         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1057         * device/include/mcs51/c8051f326.h,
1058         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1059         * device/include/mcs51/c8051f000.h,
1060         * device/include/mcs51/c8051f018.h,
1061         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1062           PCON_IDLE,PCON_STOP and added sfr16 definitions
1063
1064 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1065
1066         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1067           genGetWord): fixed bug 1409955
1068
1069 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1070
1071         * device/include/hc08/mc68hc908gp32.h,
1072         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1073
1074 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1075
1076         * src/SDCCast.c (constExprValue): return NULL if not a value
1077         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1078         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1079         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1080
1081 2006-02-13 Borut Razem <borut.razem AT siol.net>
1082
1083         * src/regression/ptrarg.c: added, fails due to bug #1430967
1084         * src/regression/Makefile: ptrarg.c added, ...
1085
1086 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1087
1088         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1089         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1090
1091 2006-02-11 Borut Razem <borut.razem AT siol.net>
1092
1093         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1094           print "Processor: xxx" message to stdout only if --verbose
1095
1096 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1097
1098         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1099         * support/regression/tests/bug1426356.c: added
1100         * support/regression/tests/bitfields.c: removed 2 tests
1101
1102 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1103
1104         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1105         * device/include/mcs51/c8051f330.h,
1106         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1107           PCON_IDLE,PCON_STOP and added sfr16 definitions
1108         * device/lib/_divsint.c,
1109         * device/lib/_divuint.c,
1110         * device/lib/_divulong.c,
1111         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1112           register bank bug for small stackauto
1113
1114 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1115
1116         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1117
1118 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1119
1120         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1121         * all.dsp: corrected several bin paths
1122         * device/include/mcs51/c8051f120.h,
1123         * device/include/mcs51/c8051f300.h,
1124         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1125           to PCON_IDLE,PCON_STOP
1126         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1127         * device/lib/printf_large.c (output_float): fixed bug 1388703
1128         * support/regression/tests/bug1057979.c: added test for bug 1388703
1129
1130 2006-02-08 Raphael Neider <rneider AT web.de>
1131
1132         * src/pic/pcode.c (pciTRIS): fixed typo,
1133           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1134           (LinkFlow): fixed handling of flows that end in a call,
1135           (ReuseReg): perform safety check earlier
1136         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1137             to work with flows at the beginning of a pBlock,
1138             fixes #1426557 (Symbol not previously defined),
1139           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1140             usage information
1141           (RemoveUnusedRegisters): update register usage info
1142         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1143             created, reuse existing ones instead
1144         * src/pic/gen.c (genPcall): fixed #1424719
1145
1146 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1147
1148         * link/z80/lkmain.c,
1149         * link/z80/lklex.c,
1150         * link/z80/lkdata.c,
1151         * link/z80/aslink.h: fixed build on current cygwin:
1152         replaced getline() by lk_getline()
1153
1154 2006-02-01 Borut Razem <borut.razem AT siol.net>
1155
1156         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1157           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1158           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1159           src/regression/bool1.c, src/regression/bool2.c,
1160           src/regression/bool3.c, src/regression/call1.c,
1161           src/regression/compare.c, src/regression/compare10.c,
1162           src/regression/compare2.c, src/regression/compare3.c,
1163           src/regression/compare4.c, src/regression/compare5.c,
1164           src/regression/compare6.c, src/regression/compare7.c,
1165           src/regression/compare8.c, src/regression/compare9.c,
1166           src/regression/configword.c, src/regression/for.c,
1167           src/regression/inline.c, src/regression/mult1.c,
1168           src/regression/nestfor.c, src/regression/or1.c,
1169           src/regression/pointer1.c, src/regression/ptrfunc.c,
1170           src/regression/rotate1.c, src/regression/rotate2.c,
1171           src/regression/rotate3.c, src/regression/rotate4.c,
1172           src/regression/rotate5.c, src/regression/rotate6.c,
1173           src/regression/rotate7.c, src/regression/string1.c,
1174           src/regression/struct1.c, src/regression/sub.c,
1175           src/regression/sub2.c, src/regression/switch1.c,
1176           src/regression/while.c, src/regression/xor.c,
1177           src/regression/create_stc, src/regression/simulate,
1178           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1179           regression tests
1180         * src/regression/gpsim_assert.h: added
1181
1182 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1183
1184         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1185         ((void (code *) (void)) 0) ();
1186         * as/hc08/aslex.c,
1187         * as/hc08/aslink.h,
1188         * as/hc08/asm.h,
1189         * as/hc08/asmain.c,
1190         * as/hc08/lkdata.c,
1191         * as/hc08/lklex.c,
1192         * as/hc08/lkmain.c,
1193         * as/mcs51/aslex.c,
1194         * as/mcs51/aslink.h,
1195         * as/mcs51/asm.h,
1196         * as/mcs51/asmain.c,
1197         * as/mcs51/lkdata.c,
1198         * as/mcs51/lklex.c,
1199         * as/mcs51/lkmain.c,
1200         * as/z80/aslex.c,
1201         * as/z80/asm.h,
1202         * as/z80/asmain.c: fixed build on current cygwin:
1203         replaced getline() by as_getline()
1204
1205 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1206
1207         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1208         declarator in the symbol chain
1209         * src/SDCCsymt.h,
1210         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1211         parameter list for function pointers
1212         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1213         * support/regression/tests/bug-716242.c: added
1214
1215 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1216
1217         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1218         offset if possible
1219         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1220
1221 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1222
1223         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1224         inifinitely recurseable, added static
1225         * support/regression/tests/bug-1408066.c: added
1226
1227 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1228
1229         * src/SDCCicode.h,
1230         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1231         renamed, added possibility to create "postLoopLbl"-labels
1232         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1233         newiTempLoopHeaderLabel
1234         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1235         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1236         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1237         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1238         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1239         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1240         (basicInduction): fixed bug #136564, made static,
1241         (loopInduction): changed parameter of basicInduction, made static,
1242         (addPostLoopBlock): added
1243         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1244         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1245         findLoopEndSeq
1246         * support/regression/tests/bug-136564.c: added
1247         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1248         --std-sdcc99 to LIBSDCCFLAGS
1249
1250 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1251
1252         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1253         while loop
1254         * support/regression/tests/bug-1406131.c: added
1255
1256 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1257
1258         * src/SDCCast.c (decorateType): fix promotion of unary minus
1259         * src/SDCCsymt.c (computeType): beautified
1260         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1261         (valUnaryPM, valComplement): fix sign and promotion,
1262         (valNot): ANSI: result type is int (SDCC: unsigned char)
1263         * support/regression/tests/uminus.c: speedup by removing superflous
1264         test case 'int'
1265         * support/regression/tests/onebyte.c: added promotion and signedness
1266         tests for unary minus
1267         * support/regressions/tests/bug-477927.c: disable warning about
1268         uninitialized variables
1269         * support/regression/tests/not.c: added
1270
1271 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1272
1273         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1274         * src/mcs51/gen.c (gen51Code): show final register usage after
1275         fillGaps in asm with --i-code-in-asm
1276         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1277         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1278         incUsed, rliveClear, adjustIChain): made static,
1279         (setFromRange): excluded because it's unused,
1280         (findPrevUseSym, markWholeLoop): added,
1281         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1282         through all branches of predecessors enables sdcc to emit the warning
1283         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1284         (rlivePoint): made static, added parameter emitWarnings which is only
1285         true during the first run out of two,
1286         (findRecursiveSucc, findRecursivePred): removed,
1287         (computeLiveRanges): made static, added parameter emitWarnings,
1288         (dumpIcRlive): added for debugging only
1289         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1290         removed prototype of setFromRange()
1291         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1292         in call of computeLiveRanges()
1293         * support/regression/tests/bug-895992.c: added
1294         * support/regression/tests/bug-971834.c: added
1295         * support/valdiag/tests/bug-895992.c: added
1296         * support/valdiag/tests/bug-971834.c: added
1297
1298 2005-12-18 Raphael Neider <rneider AT web.de>
1299
1300         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1301           (genUnpackBits): improved code for direct operands,
1302           (genPackBits): improved code for literal assignment to bitfields
1303             and for direct destination operands (no FSR indirection),
1304             prevented redundant AND, fixes #1362800,
1305           (AccLsh): added parameter to disable masking of the result
1306         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1307           skip instructions with side-effects (like incfsz),
1308           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1309         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1310         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1311           fixes #1375263
1312
1313 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1314
1315         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1316         volatile variables as spill location
1317
1318 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1319
1320         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1321         replacing literals
1322         * support/regression/tests/bug-1376320.c: added
1323
1324 2005-12-08 Raphael Neider <rneider AT web.de>
1325
1326         * src/pic/device.c: renamed is_shared to pic14_is_shared
1327         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1328         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1329           (is_valid_identifier): added for above workaround
1330
1331 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1332
1333         * device/lib/Makefile.in: fixed to enable port-specific-objects
1334         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1335           char, thanks Hubert Sack
1336         * doc/sdccman.lyx: documented --xstack-loc,
1337           elaborated a bit more on interrupts and pitfalls,
1338           removed "setjmp/longjmp unsupported",
1339           documented some unsupported C99 features
1340         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1341         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1342           if, thanks Hubert Sack
1343         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1344         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1345           make make_library
1346         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1347           regression tests can report resource usage (rfe 700441)
1348         * support/regression/collate-results.py: report resource usage
1349         * support/regression/ports/ds390/spec.mk,
1350         * support/regression/ports/hc08/spec.mk,
1351         * support/regression/ports/mcs51/spec.mk,
1352         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1353         * support/regression/ports/ds390/uCsim.cmd,
1354         * support/regression/ports/hc08/uCsim.cmd,
1355         * support/regression/ports/mcs51/uCsim.cmd,
1356         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1357         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1358           library, use the default one
1359         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1360           building the library
1361
1362 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1363
1364         * config.dsp: added dependency on .version and configure_vc.awk
1365         * device/include/setjmp.h: updated for --stack-auto and --xstack
1366         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1367         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1368         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1369         * device/lib/libsdcc.lib: added _setjmp
1370         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1371           (decorateType): fixed bug 1372851,
1372           (optimizeGetHbit): fixed warning
1373         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1374           array initialisation
1375         * support/regression/tests/bug1057979.c: added test for bug 1358192
1376         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1377
1378 2005-12-03 Borut Razem <borut.razem AT siol.net>
1379
1380         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1381           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1382
1383 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1384
1385         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1386         createIval): implement symbol independant "flexible array member",
1387         (createIvalCharPtr): implemented flexible array initialisation with a
1388         string
1389         * src/SDCCsymt.c (copyStruct): removed,
1390         (getSize): fixed misleading comment,
1391         (getAllocSize): removed, the additional allocation size is now in
1392         sym->flexArrayLength,
1393         (checkStructFlexArray): new, syntax checks for flexible array members,
1394         (compStructSize): added syntax checks for "flexible array members"
1395         (copyStruct): removed,
1396         (copyLinkChain): removed inefficient fix for bug 770487
1397         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1398         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1399         symbol->flexArrayLength
1400         * src/SDCCerr.c,
1401         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1402         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1403         * support/regression/tests/structflexarray.c: added
1404         * support/valdiag/tests/structflexiblearray.c: added
1405
1406 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1407
1408         * src/SDCCast.c (decorateType): fixed bug 1368489
1409         * support/Util/SDCCerr.c,
1410         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1411
1412 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1413
1414         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1415           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1416
1417 2005-11-27 Borut Razem <borut.razem AT siol.net>
1418
1419         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1420           support/cpp2/mkdeps.h: added command line option
1421           -obj-ext=<extension> to SDCPP to define object file externion, used
1422           for generation of make dependencies (-M)
1423         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1424
1425 2005-11-26 Borut Razem <borut.razem AT siol.net>
1426
1427         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1428           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1429           added pic and pic16 libraries
1430
1431 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1432
1433         * device/include/float.h: Corrected typo in prototype of __fsgt
1434
1435 2005-11-25 Borut Razem <borut.razem AT siol.net>
1436
1437         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1438           added creation of model-mcs51-stack-auto libraries
1439
1440 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1441
1442         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1443         and fields-list too
1444         * src/SDCCast.c (createIvalArray): removed obsolete comment
1445
1446 2005-11-24 Borut Razem <borut.razem AT siol.net>
1447
1448         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1449           added missing device/lib/mcs51/crt*.asm sources
1450
1451 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1452
1453         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1454
1455 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1456
1457         * device/lib/_fs2schar.c,
1458         * device/lib/_fs2sint.c,
1459         * device/lib/_fs2slong.c: optimized inline asm
1460
1461 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1462
1463         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1464           Better handling of floats between -1.0 and 0.0.
1465
1466 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1467
1468         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1469           (the missing "if"s prohibited removal of redundant labels)
1470
1471 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1472
1473         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1474           Properly convert floats between -1.0 and 0.0 to long, int, and char
1475           types (max integer value of negative floats tends to zero).
1476         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1477           Removed changes made so to work properly with floats between
1478           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1479           and _fs2char.c
1480
1481 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1482
1483         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1484         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1485         (genCast) cosmetic change
1486         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1487         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1488         from mcs51
1489         * support/regression/tests/bitfields (testSignedBitfields): added
1490
1491 2005-11-18 Borut Razem <borut.razem AT siol.net>
1492
1493         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1494         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1495           introduced SILENT option to make building of pic16 libraries less
1496
1497 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1498
1499         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1500           Now they work properly with floats between -1.0 and 0.0
1501         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1502
1503 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1504
1505         * src/SDCCicode.c (printOperand): added missing else
1506
1507 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1508
1509         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1510         reformatted for better readability
1511         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1512         signed bitfields
1513
1514 2005-11-17 Borut Razem <borut.razem AT siol.net>
1515
1516         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1517           introduced SILENT option to make building of pic16 libraries less
1518           verbose - used for nightly snapshot build
1519         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1520           available on Win32 platforms.
1521         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1522           medium, large, pic and pic16
1523
1524 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1525
1526         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1527           printf("%f"...) sets fraction to zero.
1528
1529 2005-11-16 Raphael Neider <rneider AT web.de>
1530
1531         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1532           fixes #1357221
1533         * src/pic/gen.c (genIfx): implemented for CARRY bit
1534         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1535           to generic pointers, fixes #1357332,
1536           (pic16_movLit2f): NEW,
1537           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1538
1539 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1540
1541         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1542
1543 2005-11-11 Raphael Neider <rneider AT web.de>
1544
1545         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1546         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1547           compute pointer's type from operand,
1548           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1549           improved single bit reads, fixes bug #1353379
1550
1551 2005-11-09 Borut Razem <borut.razem AT siol.net>
1552
1553         * support/scripts/sdcc.nsi: added lib/pic to the package
1554
1555 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1556
1557         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1558
1559 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1560
1561         * support/regression/tests/bug1348008.c: added
1562         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1563         * support/regression/tests/bug1337835.c: updated comment
1564
1565 2005-11-06 Borut Razem <borut.razem AT siol.net>
1566
1567         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1568           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1569           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1570           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1571           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1572           dynamic construction of cl_error_class and derivates - 2.nd try
1573
1574 2005-11-05 Borut Razem <borut.razem AT siol.net>
1575
1576         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1577           bug, which caused Bus Errors on sparc solaris
1578
1579 2005-11-04 Borut Razem <borut.razem AT siol.net>
1580
1581         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1582           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1583           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1584           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1585           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1586           and derivates to resolve the initialization problem on OSX
1587
1588 2005-11-02 Borut Razem <borut.razem AT siol.net>
1589
1590         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1591           corrected typo - #include <winsock2.h>
1592
1593 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1594
1595         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1596           (_asxxxx_mapping): added org directive for future enhancements
1597
1598 2005-11-01 Borut Razem <borut.razem AT siol.net>
1599
1600         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1601           enabled sockets on WIN32
1602         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1603
1604 2005-10-31 Borut Razem <borut.razem AT siol.net>
1605
1606         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1607           WIN32 backslash path delimiters should be escaped when used in C strings
1608         * support/regression/tests/bitfields.c: exclude failing assertions for
1609           __CYGWIN32__ and __MINGW32__ hosts
1610
1611 2005-10-30 Borut Razem <borut.razem AT siol.net>
1612
1613         * src/SDCCutil.c: corrected double comparison typo
1614
1615 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1616
1617         * device/lib/medium/Makefile: added for new memory model medium
1618         * device/include/asm/mcs51/features.h: updated for medium/pdata
1619         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1620           added Multiply & Accumulate sbit's and MAC0_PAGE define
1621         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1622         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1623         * device/lib/_mullong.c: update for medium model
1624         * device/lib/incl.mk: added medium model
1625         * doc/sdccman.lyx: documented medium model
1626         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1627         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1628         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1629         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1630           (allocParms): set SCLS and OCLS to pdata for medium model
1631         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1632           for pdata,
1633           (powof2): return <0 if not power of 2
1634         * src/avr/gen.c (genBitWise): use updated powof2
1635         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1636           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1637           (shiftLLeftOrResult): use B if necessary
1638         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1639         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1640         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1641         * support/regression/Makefile.in: added test-mcs51-medium
1642         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1643
1644 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1645
1646         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1647         specifier unsigned
1648         * device/lib/time.c (mktime): fixed bug 1334315
1649
1650 2005-10-28 Raphael Neider <rneider AT web.de>
1651
1652         * device/include/pic/p16f_common.inc: added common declarations
1653         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1654
1655 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1656
1657         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1658           (aopPutUsesAcc): added to predict accumulator use,
1659           (assignResultValue): save acc if necessary,
1660           (genMinusDec): store result if indirectly addressed,
1661           (genDivOneByte):  save acc if necessary,
1662           (movLeft2Result): bugfix if left already in acc,
1663           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1664             attention to accumulator use (esp. pdata),
1665           (genReceive): receive pdata correctly
1666         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1667         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1668
1669 2005-10-27 Raphael Neider <rneider AT web.de>
1670
1671         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1672
1673 2005-10-27 Raphael Neider <rneider AT web.de>
1674
1675         * .version: changed version to 2.5.4
1676         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1677         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1678           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1679             arithmetics support routines
1680         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1681         * device/lib/Makefile.in: also create installdir for pic
1682
1683         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1684           pic14 port as well
1685         * src/pic/device.c (dump_sfr): rewritten to delegate register
1686           placement to the linker (use `extern sym' rather than sym EQU addr),
1687           (validAddress): fixed to check last specified address
1688         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1689           (popGetLit): truncate literal value to 8 bit,
1690           (popGet): moved assert to more appropriate place
1691           (popGetExternal): create pCode operand from and mark the according
1692             symbol as being `extern'
1693           (popGetAddr): added sanity check on immediate's offset, provide
1694             GPOINTER tag on demand
1695           (aopPut): fixed for immediates,
1696           (mov2w_op): move operand's address or contents to WREG (depending on
1697             operand type), safer variant of mov2w,
1698           (movwf,call_libraryfunc): NEW, handy abbreviations,
1699           (get_argument_pcop,get_return_val_pcop,pass_argument,
1700           get_returnvalue): interface for accessing function parameters and
1701             return values,
1702           (assignResultValuei,genRet): use new parameter/return value interface
1703           (pic14_getDataSize): back to old version handling generic pointers,
1704           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1705             provided implementation and/or fixed old one,
1706           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1707             calls, removed legacy 8051 reference code
1708           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1709           (loadSignToC): NEW, move the operands sign bit to CARRY,
1710           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1711             genRightShiftSigned, accepts negative shift counts,
1712           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1713           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1714             generic pointers, __data pointers and __code pointers,
1715           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1716             and signed bitfields, limit bitfields to 8 bit,
1717           (genDataPointerGet): fixed number of bytes read,
1718           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1719           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1720             pointers to constant data are no longer assumed to point to __code
1721             space, removed invalid pointer types,
1722           (bitpatternFromVal): retrieve the PICs representation of an integer
1723             or float literal,
1724           (genDataPointerSet): fixed assigning to po_immediate operands,
1725           (genGenPointerSet): implemented as library call,
1726           (genIfx): fixed incorrect condition,
1727           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1728             provide GPOINTER tag according to destination's storage class,
1729           (genCast): added code to handle casting to generic pointers, added
1730             sign-/zero extension of the result
1731           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1732         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1733         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1734           extend the result
1735         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1736           address/register resides in the shared banks
1737           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1738             put all variables into separate sections (have the linker arrange
1739             them)
1740           (picglue): put init code and interrupt handlers in separate sections
1741         * src/pic/main.c: added port specific options table, modified to PORT
1742           structure to make GPOINTERs 3 byte, added pic14_options
1743           (_pic14_do_link): private linking routine (update paths to libraries,
1744             add libsdcc.lib by default)
1745         * src/pic/main.h: declare pic14_options
1746         * src/pic/pcode.c: fixed instructions i/o relations,
1747           (RegCond): reverted to correct version,
1748           (newpCodeOpLit): truncate literals to 8 bit,
1749           (genericPrint): added debug output,
1750           (getRegFromInstruction): fixed for various operand types, simplified
1751           (BuildFlow): fixed broken handling of isntructions with labels
1752           (LinkFlow): start at last instruction in flow (skip trailing comments),
1753             pass the flow on to the next instruction after CALL
1754           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1755           (insertPCodeInstruction): fixed inserting after a skip instruction,
1756           (DoBankSelect): fixed for labeled instructions
1757           (OptimizepBlock): honor --nopeep switch
1758           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1759         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1760         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1761           (pCodeOptime2pCodes): allow disabling this optimization via
1762             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1763             but is still buggy), started implementation of a dataflow based
1764             pCode optimization (CSE + dead code elimination)
1765           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1766         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1767           names are independant of the stack location and therefore portable across
1768           devices
1769
1770 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1771
1772         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1773           (selectSpil): fixed bug 1337835 by not spilling bit variables
1774         * support/regression/tests/bug1337835.c: added test for this bug
1775         * src/mcs51/peeph.def: restart after rule 3.c,
1776           addded rules 263.x to optimize loading constants
1777
1778 2005-10-26 Raphael Neider <rneider AT web.de>
1779
1780         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1781         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1782           (genAssign): emit warning when casting literals to generic pointer
1783             type, also applies when taking the address of a fixed variable,
1784           (genCast): improved casting to generic pointers
1785         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1786           extern variables, added verbose error message
1787         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1788
1789 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1790
1791         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1792         carry must be complemented too
1793         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1794         could be emitted by genMinus
1795         * src/SDCCval.c (constVal): fixed bug 1305065
1796
1797 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1798
1799         * src/SDCCast.c (addCast): added promotion for bit variables
1800         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1801         promotion casts + optimisation
1802         (optimizeGetWord): fix warning 'i' might be used uninitialized
1803         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1804         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1805
1806 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1807
1808         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1809         all chars are promoted to int; promotion should be handled in SDCCast.c
1810
1811 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1812
1813         * device/lib/_strcmp.c: Fixed bug 1326457
1814
1815 2005-10-11 Raphael Neider <rneider AT web.de>
1816
1817         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1818         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1819
1820 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1821
1822         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1823         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1824
1825 2005-10-04 Raphael Neider <rneider AT web.de>
1826
1827         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1828           device/lib/pic16/pics.all: added pic18f1320
1829         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1830
1831 2005-09-30 Raphael Neider <rneider AT web.de>
1832
1833         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1834         * src/pic16/devices.inc: NEW, provides device descriptions
1835         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1836
1837 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1838
1839         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1840           GETHBIT
1841
1842 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1843
1844         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1845           documented Any Order Bit, Higher Order Byte and Higher Order Word
1846         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1847         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1848           (optimizeGetAbit): new, to get any bit, not only the high bit,
1849           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1850           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1851           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1852           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1853             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1854             GETABIT, GETBYTE, GETWORD: decorate them,
1855           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1856           (ast_print): added GETABIT, GETBYTE, GETWORD
1857         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1858         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1859           (geniCodeBinary): new generic binary icode,
1860           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1861         * src/port.h: updated comment for PORT.hasExtBitOp
1862         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1863           (genGetByte): new, to get a single byte,
1864           (genGetWord): new, to get a word from a long,
1865           (gen51Code): added GETABIT, GETBYTE, GETWORD
1866         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1867
1868 2005-09-23 Raphael Neider <rneider AT web.de>
1869
1870         * configure.in, configure: have device/lib/pic configured
1871         * device/lib/Makefile.in: added model-pic14
1872         * device/lib/clean.mk: added pic/ to clean rule
1873         * device/lib/pic: added rudimentary pic14 library providing support
1874           functions for multiplication/division/generic pointer access
1875         * src/SDCCopt.c (convilong): mark support functions as extern
1876           for pic14 port as well
1877         * src/pic/gen.c (genMult): added assertions,
1878           (genpic14Code): emit warning on unhandled iCodes
1879         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1880         * src/pic/pcode.c (pCodeOpCopy),
1881         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1882           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1883           SFR_REGISTER}), made safe for future extensions
1884         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1885           instructions even if preceeded by SKIP instructions (also remove
1886           them); removed unused code
1887         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1888           prevents leaving parts of the structure uninitialized after copying
1889
1890 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1891
1892         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1893           ago by me
1894         * support/regression/tests/addsub.c: added test for the bug
1895
1896 2005-09-21 Raphael Neider <rneider AT web.de>
1897
1898         * device/include/pic16/pic18f1220.h,
1899           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1900         * device/lib/pic16/Makefile.rules: added missing opening paren
1901         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1902           are provided in genutils.c,
1903           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1904           operand/result sizes,
1905           (genCmp): assert on NULL pointers first, then check deref'ed values
1906         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1907           result size
1908
1909 2005-09-18 Raphael Neider <rneider AT web.de>
1910
1911         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1912           as these are now unused,
1913           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1914         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1915           local, avoids uninitialized pointer dereference on r->name
1916         * src/pic16/ralloc.c (newReg): fixed indentation
1917
1918 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1919
1920         * src/SDCCval.c (constVal): fixed bug 730366
1921         * support/Util/SDCCerr.c,
1922         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1923
1924 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1925
1926         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1927
1928 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1929
1930         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1931
1932 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1933
1934         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1935           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1936         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1937           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1938         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1939         * packihx/packihx.c (hexDigit): made c unsigned char
1940         * as/mcs51/lklibr.c (fndsym),
1941         * link/z80/lkgb.c (gb),
1942         * link/z80/lklibr.c (fndsym),
1943         * link/z80/lkrloc.c (relr),
1944         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1945         * src/SDCC.lex (checkCurrFile, process_pragma),
1946         * src/SDCCglue.c (spacesToUnderscores),
1947         * src/SDCCmain.c (setParseWithComma, processFile),
1948         * src/asm.c (tvsprintf, printCLine),
1949         * src/avr/gen.c (emitcode, aopPut),
1950         * src/ds390/gen.c (emitcode),
1951         * src/hc08/gen.c (emitcode, emitinline),
1952         * src/mcs51/gen.c (emitcode, genInline),
1953         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1954           tokenizeLineNode),
1955         * src/pic/ralloc.c (debugLog),
1956         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1957           tokenizeLineNode),
1958         * src/pic16/ralloc.c (debugLog),
1959         * src/z80/main.c (_process_pragma):
1960            made all ctype.h function calls safe
1961         * src/SDCCopt.c: include math.h for fabs
1962         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1963           and used them throughout the code to make ctype.h function calls safe
1964         * src/ds390/main.c (asmLineNodeFromLineNode),
1965         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1966         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1967            unsigned char*
1968         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1969           (newpCodeAsmDir): made ctype.h function calls safe
1970         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1971           pic16_emitcode):  made lbp unsigned char*
1972         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1973           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1974         * src/xa51/gen.c (emitcode),
1975         * src/z80/gen.c (_emit2): made lbp unsigned char*
1976         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1977            char*
1978
1979 2005-09-05 Raphael Neider <rneider AT web.de>
1980
1981         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1982           access bank splitpoint
1983
1984 2005-09-05 Raphael Neider <rneider AT web.de>
1985
1986         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1987
1988 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1989
1990         * .version: changed to version 2.5.3
1991         * doc/sdccman.lyx: changed version to 2.5.3,
1992           documented --codeseg and --constseg and pragma codeseg and constseg,
1993           documented bit parameters (reentrant) and bit returning
1994         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1995            currFunc->recvSize, but is this ok for all ports?
1996           (ast2iCode): result of ~ on unsigned char must be cast to int for
1997            bool to work
1998         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1999           function pointers in bit space
2000         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2001           (processFuncArgs): call port.reg_parm() with reentrancy info
2002         * src/port.h,
2003         * src/avr/main.c,
2004         * src/ds390/main.c,
2005         * src/hc08/main.c,
2006         * src/pic/main.c,
2007         * src/pic16/main.c,
2008         * src/xa51/main.c,
2009         * src/z80/main.c: port.reg_parm prototype extended with
2010           "bool reentrant" parameter
2011         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2012           options.stackAuto for allocating bit register parameters
2013         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2014           (genSend): set BitBankUsed if it is,
2015           (selectRegBank): factored out of genCall for use in genPcall,
2016           (genCall): removed redundant dtype assignmen, use selectRegBank,
2017           (genPcall): handle returning in Carry properly, save in F0 if needed,
2018           (genReceive): handle bit register parameters
2019         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2020           (mcs51_assignRegisters): enable bit registers for all reentrant
2021            functions and don't set BitBankUsed unconditionally
2022         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2023         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2024         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2025
2026 2005-08-27 Borut Razem <borut.razem AT siol.net>
2027
2028         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2029         ppc-osx (Darwin) does not support -u option. It seems that it is
2030         supported only on Linux - GNU cp
2031
2032 2005-08-25 Borut Razem <borut.razem AT siol.net>
2033
2034         * sim/ucsim/gui.src/serio.src/Makefile.in,
2035           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2036           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2037           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2038           install and strip, since the strip at /usr/ccs/bin should be used
2039           on solaris
2040
2041 2005-08-24 Borut Razem <borut.razem AT siol.net>
2042
2043         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2044
2045 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2046
2047         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2048         ffffffffu
2049
2050 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2051
2052         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2053         * as/mcs51/lkmain.c (link_main): fixed warning
2054         * device/include/stdbool.h: ds390 has no advanced bit support yet
2055         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2056         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2057         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2058           and updated their macros
2059         * src/SDCCval.c (constVal): updated comment for renamed b_long
2060
2061 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2062
2063         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2064         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2065           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2066           (oprio): set priority for '['
2067         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2068            and adb_24_bit
2069         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2070         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2071         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2072         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2073           added overlayable BIT_BANK area
2074         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2075           (summary2): explain 'T' in legenda
2076         * as/mcs51/lkrloc.c: replaced old K&R style,
2077           (relr): added R_BIT processing,
2078           (errmsg): added "Bit-addressable relocation error",
2079           (adb_bit): added for converting from byte- to bit-addressable space,
2080           (adb_24_bit): added for converting from byte- to bit-addressable space
2081         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2082            used in reentrant functions now even as return value
2083         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2084         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2085           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2086         * src/SDCCglobl.h: added indicator BitBankUsed
2087         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2088            the bit registers b0-b7
2089         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2090           (geniCodeCast): fixed bug 1263853,
2091           (geniCodeLogicAndOr): put result in bool or char,
2092           (geniCodeReceive): added parameter func for accessing the return type,
2093           (geniCodeFunctionBody): pass func to geniCodeReceive
2094         * src/SDCCmain.c: added indicator BitBankUsed
2095         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2096         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2097           (checkSClass): don't put automatic bool/bit on stack,
2098           (checkFunction): removed check on function cannot return bit
2099         * src/SDCCsymt.h: added newBoolLink prototype
2100         * src/mcs51/gen.c (rb1regs): added bit registers,
2101           (movc): created for assigning to carry,
2102           (pushReg, popReg): created for pushing registers,
2103           (sameRegs): check both AOP_REG and AOP_CRY types,
2104           (aopOp): handle bit registers,
2105           (aopPut): optimization no self-assign,
2106           (saveRegisters): push reg->base (bits) only once for bit registers,
2107            and use pushReg,
2108           (unsaveRegisters): pop reg->base only once and use popReg,
2109           (assignResultValue): added parameter func and return in carry for bits,
2110           (genIpush): optimization no reload in A if not changed,
2111           (genSend): bit parameters in reentrant functions are passed in bit
2112            registers by first assigning to bits in B, then save registers and
2113            copy B to bits,
2114           (genCall): handle returning in Carry properly, save it in F0 if needed,
2115           (genPcall): updated assignResultValue call, this is not safe yet for bit
2116            returning function !!!
2117           (genFunction): don't generate equ's for bit registers and use pushReg,
2118           (genEndFunction): take care of bit returning functions and use popReg,
2119           (genRet): return bit in Carry,
2120           (genIfx): optimize bit registers and other directly addressable bits,
2121           (genReceive): updated assignResultValue call
2122         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2123           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2124            registers when using stack-auto
2125         * src/mcs51/ralloc.c (_G): added allBitregs,
2126           (regs8051): added the bit registers,
2127           (createStackSpil): use macro IS_BIT,
2128           (getRegBit): added to allocate a bit register, else spill,
2129           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2130           (updateRegUsage): factored out to ease stepping while debugging,
2131           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2132            also allocate bit registers,
2133           (fillGaps): handle bit registers,
2134           (findAllBitregs): added to create bit vector with all bit registers,
2135           (mcs51_allBitregs): returns this bit vector,
2136           (mcs51_assignRegisters): when using stack-auto use bit registers for
2137            passing parameters and creating local variables
2138         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2139
2140 2005-08-22 Borut Razem <borut.razem AT siol.net>
2141
2142         * device/lib/Makefile.in: replaced find option -or with -o
2143           to make it run on solaris
2144
2145 2005-08-22 Raphael Neider <rneider AT web.de>
2146
2147         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2148           fixes #1265442 (crash on Solaris)
2149
2150 2005-08-20 Borut Razem <borut.razem AT siol.net>
2151
2152         * configure, configure.in: added tests for libsocket and libnsl libraries,
2153           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2154           from support/regression/Makefile.in
2155         * support/regression/Makefile.in: added
2156         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2157         * sim/ucsim/libtool: regenerated on sparc-solaris
2158         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2159           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2160           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2161           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2162           sparc-solaris, which doesn't use GNU ld linker
2163         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2164         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2165
2166 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2167
2168         * src/mcs51/peeph.def: updated comments
2169
2170 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2171
2172         * device/lib/_gptrget.c,
2173         * device/lib/_gptrput.c: slightly shorter
2174         * doc/sdccman.lyx: incremented version
2175         * src/mcs51/peeph.def: moved peephole comments to the line of first
2176           change to better keep line correlation, reanimated 186.e
2177         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2178
2179 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2180
2181         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2182           David Saxton with quotes around file name.
2183
2184 2005-08-15 Borut Razem <borut.razem AT siol.net>
2185
2186         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2187           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2188           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2189           make tests run on x86_64 platform
2190
2191 2005-08-13 Raphael Neider <rneider AT web.de>
2192
2193         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2194           as it might be executed DURING a build (parallel make is wonderful)
2195
2196 2005-08-13 Raphael Neider <rneider AT web.de>
2197
2198         * device/lib/Makefile.in (port-specific-objects-pic16):
2199           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2200         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2201           dependency
2202         * device/lib/pic16/Makefile.rules: build subdirs before creating
2203           the library, removed builddir rule, create $(builddir) early in
2204           recurse rule, use empty recurse rule for leaf directories
2205         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2206           mkdir errors (race condition), removed duplicate suffix "hex"
2207           from clean rules
2208         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2209         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2210           prevents mkdir -p from aborting on Alpha
2211
2212 2005-08-12 Raphael Neider <rneider AT web.de>
2213
2214         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2215           db-statements in order to allow for arrays of pointers in code
2216           sections to be placed without interspersed 0-padding, fixes
2217           bug #1256215
2218         * (emitStatistics): fixed division by zero for pic18f1220
2219         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2220           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2221         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2222         * (pic16_pCodeConstString): keep track of already emitted string
2223           literals to prevent "duplicate definitions of symbol _str_NR"
2224         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2225           debug message
2226         * device/lib/Makefile.in: ignore failing PIC16 library builds
2227         * device/lib/pic16/Makefile: do not build if gputils are missing
2228         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2229
2230 2005-08-10 Raphael Neider <rneider AT web.de>
2231
2232         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2233           my last commit)
2234
2235 2005-08-10 Raphael Neider <rneider AT web.de>
2236
2237         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2238           Rokas' patch to add the new fixed point type "__fixed16x16"
2239         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2240           functions for __fixed16x16 arithmetics
2241         * device/lib/pic16: reimplemented the build system to support
2242           a separate build directory, better handling of libio (create
2243           the library in a separate subdir for each architecture) and
2244           easier configuration (centralized in Makefile.common)
2245
2246 2005-08-07 Raphael Neider <rneider AT web.de>
2247
2248         * src/pic16/gen.c (genrshTwo): fixed sign extension
2249         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2250         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2251           added T0CONbits
2252         * device/include/pic16/pic18f4220.h: NEW, header for
2253           pic18f4220 and pic18f4320
2254         * device/include/pic16/pic18fregs.h: added new devices,
2255           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2256         * device/include/pic16/signal.h: resolved name clashes
2257           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2258           to also allow testing for interrupt enable bits, added
2259           comments on how to use the macros
2260         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2261         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2262           register definitions for the devices
2263         * device/lib/pic16/pics.all: added new devices
2264         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2265           allocated memory
2266         * device/lib/pic16/libc/stdlib/memfree: do not count
2267           the block header as free memory
2268         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2269           simplified and added missing end-of-blocklist-marker
2270           (reported by Peter Onion, fixes #1252814)
2271         * (_mergeHeapBlock): fixed loop condition
2272         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2273           len==0, restructured code
2274         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2275           up a bit, reduced bitfield accesses, prevent endless loops
2276           in case of heap corruption
2277         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2278           "unreferenced arguments/must return a value" warnings
2279         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2280           replaced BAUDREG with SPBRG
2281         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2282           device/lib/pic16/debug/gstack/gstack.c: replaced
2283           _naked, _asm, _endasm with __naked, __asm, __endasm
2284
2285 2005-08-05 Raphael Neider <rneider AT web.de>
2286
2287         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2288           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2289
2290 2005-08-05 Borut Razem <borut.razem AT siol.net>
2291
2292         * device/lib/Makefile.in: added missing ';'
2293         * configure: removed ^M characters
2294
2295 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2296
2297         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2298           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2299           License
2300
2301 2005-08-04 Borut Razem <borut.razem AT siol.net>
2302
2303         * configure.in: pic16 libraries build 2nd try - enable running
2304           configure in device/lib/pic16
2305         * configure: regenerated from configure.in
2306         * device/lib/Makefile.in: create $(PORT)/bin directory
2307
2308 2005-08-03 Raphael Neider <rneider AT web.de>
2309
2310         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2311           to get/set values via pointers
2312         * (genUnpackBits,genPackBits): changed detection of
2313           ptr->bitfield vs. sym.bitfield, fixed access via generic
2314           pointers, removed dead (wrong) code for multibyte bitfields
2315         * (genNearPointerGet, genGenPointerGet): removed useless code,
2316           fixed bitfield detection, fixes #1250594
2317         * (genNearPointerSet): removed useless code
2318         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2319           and introduced macro pic16_emitpcode that conditionally emits
2320           the origin of the following pCode (useful for debugging SDCC)
2321         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2322         * (createDefmap): fixed handling of LFSR for --optimize-df
2323
2324 2005-08-02 Borut Razem <borut.razem AT siol.net>
2325
2326         * device/lib/Makefile.in: pic16 libraries build enabled since
2327           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2328
2329 2005-08-02 Raphael Neider <rneider AT web.de>
2330
2331         * src/pic16/gen.c (genPackBits): removed deprecated warning
2332         * (genGenPointerSet): fixed bitfield detection
2333
2334 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2335
2336         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2337
2338 2005-07-31 Raphael Neider <rneider AT web.de>
2339
2340         * device/lib/pic16/libdev/pic18f458.c,
2341           device/include/pic16/pic18f458.h: added missing T0CONbits
2342
2343 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2344
2345         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2346
2347 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2348
2349         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2350
2351 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2352
2353         * device/include/mcs51/at89c51ed2.h: added.
2354
2355 2005-07-23 Raphael Neider <rneider AT web.de>
2356
2357         * src/pic/gen.h: added emitpcode macro for debugging
2358         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2359           and replace by macro adding debug information on demand
2360         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2361         * (gencjne): tried to fix; replaced with correct (slower) code
2362         * (gen{Unp,P}ackBits): fixed single bit access
2363         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2364         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2365           previous instruction
2366         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2367           register has to be handled with care (forbidding movement
2368           of assignments/uses, removing assignments completely, ...)
2369         * (pCodeOptime2pCodes): make use of regIsSpecial
2370         * added lots of debugging output (commented out)
2371         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2372           from being reused as result UNLESS it is known to work
2373
2374 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2375
2376         * support/Util/dbuf.h: include <stddef.h> for size_t
2377         * .version: changed to version 2.5.2
2378
2379 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2380
2381         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2382
2383 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2384
2385         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2386           (genModOneByte): removed needless psha/pula
2387
2388 2005-07-22 Raphael Neider <rneider AT web.de>
2389
2390         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2391           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2392         * src/pic/gen.c (resolveIfx): do not "invent" labels
2393         * (genSkipc): changed to positive logic
2394         * (genSkipCond): removed as no longer needed
2395         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2396           backport from PIC16
2397         * (genLeftShift): check operands are in different registers
2398         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2399           INCF does not update CARRY...
2400         * src/pic/main.c: fixed _linkCmd
2401         * src/pic/pcode.c (unlinkpCode): added inactive code
2402         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2403           alive (do not assign result and operand overlapping registers)
2404
2405 2005-07-22 Raphael Neider <rneider AT web.de>
2406
2407         * src/pic/device.c (dump_sfr): replaced register declaration with
2408           call to emitSymbolToFile() to avoid duplicate symbols
2409         * (assignRelocatableRegisters): do not declare external symbols
2410         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2411           right (take size of type, not etype)
2412         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2413         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2414         * (packRegsForAccUse): disabled assignment of WREG as
2415           the result reg to prevent occurence of just fixed #1235003,
2416           fixes #1242954
2417         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2418           symbols (avoids duplicate symbols in .asm file)
2419         * (pic14emitRegularMap): use emitSymbolToFile()
2420         * src/pic/gen.c (aopOp): fixed spillLocation handling
2421         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2422         * (genDataPointerSet): removed unneccessary variables/output
2423
2424 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2425
2426         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2427         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2428
2429 2005-07-21 Raphael Neider <rneider AT web.de>
2430
2431         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2432           architecture cannot handle them efficiently, fixes bug #1235003
2433         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2434           check for empty sets before using them (fixes bug #1232190)
2435
2436 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2437
2438         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2439           (lnksect2): generate warnings for memory overlap
2440         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2441           constseg to set the name of these segments so you can instruct the linker
2442           to place them in banks
2443         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2444         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2445           added code_seg and const_seg to options
2446         * src/SDCCglue.c (emitMaps): use options.const_seg,
2447           (createInterruptVect): put interrupt vectors in segment HOME,
2448           (glue): put HOME before static segment and put the main glue in HOME,
2449           (glue): use options.code_seg
2450         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2451         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2452           these segments so you can instruct the linker to place them in banks
2453           (linkEdit): use code_loc for HOME segment which should be the first
2454           segment in code memory now
2455         * src/SDCCmem.c: fixed more stuff like bug 1238386
2456         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2457           (changePointer): don't change function pointers to code pointers for
2458           banked functions,
2459           (compareType): added exceptional check for banked function pointers
2460         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2461         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2462           after static in code memory
2463         * src/mcs51/gen.c: added aopLiteralLong prototype,
2464           (aopForSym): use getSize for functions,
2465           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2466           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2467           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2468           the segment,
2469           (genPcall): use call for literal function pointers and generate banked
2470           calls over the one trampoline so there's only one place for the user to
2471           modify according to his/hers hardware,
2472           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2473           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2474         * src/mcs51/main.c: added keyword banked,
2475           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2476         * support/Util/SDCCerr.c,
2477         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2478           needed for passing the bank and address to the trampoline
2479         * device/lib/mcs51/crtbank.asm: added for bankswitching
2480         * device/lib/mcs51/Makefile: added crtbank
2481
2482 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2483
2484         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2485           for fields at offset 0 of a struct or union as reported
2486           on 2005-07-07 in the developer mailing list.
2487
2488 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2489
2490         * src/SDCCmem.c: fixed bug 1238386
2491
2492 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2493
2494         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2495           (patch #1144962), added peephole 300, enabled 259.x
2496         * doc/sdccman.lyx: removed screenshot and provided link instead
2497
2498 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2499
2500         * doc/sdccman.lyx: added section about debugging with ddd
2501         * doc/figures/ddd_example.eps: screenshot of debugging session
2502
2503 2005-07-04 Raphael Neider <rneider AT web.de>
2504
2505         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2506           like CODE pointers, fixes #1115683
2507         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2508           call, fixes bugs #1232211, #1228110,
2509           fixed wrong casts to pCodeFlow from pCodeInstructions
2510
2511 2005-07-04 Raphael Neider <rneider AT web.de>
2512
2513         * src/pic/gen.c (popGet): changed assert to allow for
2514           bit operands
2515         * (popGetAddr): changed signature to provide
2516           an additional index, patched all call sites
2517         * (genCmpEq): handle literal-like operands correctly
2518         * (genAddrOf): added sanity checks on __code/__data pointers
2519         * (genAssign): added handling of symbols from __code section
2520         * (gencjne): do not generate code for comparisons whose result
2521           is neither stored nor used, fixes bug #1171114
2522         * (AccLsh, AccRsh): operate on operand instead of WREG
2523         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2524           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2525           by known count
2526         * rewrote complete shift-by-literal logic, commented unused
2527           functions out
2528         * (genConstPointerGet): get multiple bytes (if result size > 1),
2529           fixed handling of non-immediate addresses
2530         * (genPointerGet): handle CODE pointers like CONST pointers
2531         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2532         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2533           operand is to be treated as a literal or not
2534         * (mov2w,genPcall,genCmpEq),
2535           src/pic/genarith.c: use aop_isLitLike() to decide between
2536           literal/register contents
2537         * (addSign): added missing offset
2538         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2539           only emit comment in debug-mode,
2540           use {aop,op}_isLitLike throughout the file
2541         * src/pic/glue.c: fix initializers for pointers (work in progress)
2542         * src/pic/pcode.c (get_op): honor index on _const symbols
2543         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2544         * (dumppBlock): added pCode size estimation
2545         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2546           check for IS_SYMOP before OP_SYMBOL'ing
2547         * fixed indentation, compacted switch-statements
2548         * (allocReg): find free register and allocate it instead of
2549           allocating new registers all the time
2550         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2551           registers as its operands (necessary only for multibyte GETs)
2552
2553 2005-07-01 Raphael Neider <rneider AT web.de>
2554
2555         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2556           debugging .asm-output macros FENTRY + FEXIT
2557         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2558           way... I wonder...
2559         * (emitpComment): NEW, printf to pCode
2560         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2561           offset handling
2562         * (popGetAddr): NEW, variant of popGet to access an immediates
2563           high(er) bytes instead of the n'th byte of memory they reference,
2564           replaced popGet with popGetAddr where neccessary
2565         * (genDataPointerGet): reactivated and fixed implementation
2566         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2567           accesses
2568         * (genDataPointerSet): fixed multibyte assignments
2569         * (genpic14Code): fixed --i-code-in-asm handling
2570         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2571         * (genPlus): fixed index-out-of-bounds error
2572         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2573         * src/pic/ralloc.c: added debugging output macro FENTRY2
2574         * (spillThis): fixed indentation, enbraced for-body for clarity
2575         * (rematStr): commented out as now unused
2576         * (regTypeNum): commented out special spill case (overwrites
2577           arbitrary values)
2578         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2579
2580 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2581
2582         * doc/sdccman.lyx: documented sfr16/sfr32,
2583           added example for using storage class with function pointers
2584         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2585
2586 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2587
2588         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2589         * device/lib/_itoa.c,
2590         * device/lib/_ltoa.c: optimized codesize
2591         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2592           but don't know how to suppress the double warning.
2593         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2594         * support/Util/SDCCerr.c,
2595         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2596
2597 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2598
2599         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2600           fixed old K&R prototypes
2601         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2602         * device/lib/_gptrget.c,
2603         * device/lib/_gptrgetc.c,
2604         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2605           also new versions for small generic pointers and banked generic pointers
2606         * src/port.h: added const_name
2607         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2608         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2609         * src/SDCCcse.c (findPrevIc): check all associative operators
2610         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2611         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2612         * src/SDCCmem.c: updated comments,
2613           set far-space to 0 for pdata, results in optimized code
2614         * src/SDCCmem.h: added macro CONST_NAME
2615         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2616           moving the info into the highest bits, see also gptrget/gptrput
2617         * src/src.dsp: added sdcc.ico to project files
2618         * src/avr/gen.c (genCast): fixed bug 0x%d
2619         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2620         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2621           relation between ptr_type and DCL_TYPE,
2622           (genCast): fixed bug 0x%d
2623         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2624           (CODE)" for const_name
2625         * src/hc08/gen.c (genCast): fixed bug 0x%d
2626         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2627           (hc08_port): added "CONST (CODE)" for const_name
2628         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2629           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2630           between ptr_type and DCL_TYPE,
2631           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2632           operand* and took AOP() inside function so sfr-ness can be checked,
2633           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2634           new prototype,
2635           (genFunction, genEndFunction): optimized stack setup,
2636           (genMinus): optimized for literals with ending zeroes (in bytes),
2637           (genCast): fixed bug 0x%d
2638         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2639           (mcs51_port): added "CONST (CODE)" for const_name
2640         * src/mcs51/peeph.def: made rule 226 more generic
2641         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2642         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2643         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2644         * src/z80/main.c (z80_port): added NULL for const_name,
2645           (gbz80_port): added NULL for const_name
2646         * support/regression/tests/bug663539.c,
2647         * support/regression/tests/sfr16.c: new tests
2648
2649 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2650
2651         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2652
2653 2005-06-24 Raphael Neider <rneider AT web.de>
2654
2655         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2656           corrected typos...
2657         * device/include/pic16/signal.h: added USBIF
2658           and SIG_USB
2659
2660 2005-06-24 Raphael Neider <rneider AT web.de>
2661
2662         * device/lib/pic16/libdev/pic18f2455.c,
2663           device/include/pic16/pic18f2455.h: NEW
2664         * device/include/pic16/pic18fregs.h,
2665           device/lib/pic16/pics.all,
2666           src/pic16/device.c: added 18f2455
2667         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2668           device/include/pic16/{pic18f[68][567].h,usart.h}:
2669           replaced MULTIPLE_USARTS define with more relaible
2670           compatibility sfrs (for USART access)
2671
2672 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2673
2674         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2675           and the output asm file line is printed on two lines.
2676
2677 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2678
2679         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2680           BGT, BLE, BHI, and BLS instructions
2681         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2682           genCmpEq): removed
2683         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2684           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2685           fixes bug #1216342
2686         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2687
2688 2005-06-15 Raphael Neider <rneider AT web.de>
2689
2690         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2691         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2692         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2693           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2694           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2695
2696 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2697
2698         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2699           Marcel Telka in bug #1215704
2700
2701 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2702
2703         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2704           located in shared memory bank.
2705
2706 2005-05-31 Raphael Neider <rneider AT web.de>
2707
2708         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2709           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2710           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2711
2712 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2713
2714         * device/lib/_strncpy.c: fixed the fix
2715
2716 2005-05-26 Raphael Neider <rneider AT web.de>
2717
2718         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2719           initializers with \0, bug #1208187
2720         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2721           intializers with \0, bug #1208187
2722
2723 2005-05-26 Raphael Neider <rneider AT web.de>
2724
2725         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2726           initializers with \0, bug #1208187
2727         * src/pic16/main.c (_process_pragma): added sanity checks
2728           for stack position and size, emit warnings when appropriate
2729
2730 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2731
2732         * device/lib/_strncpy.c: fixed not filling with \0
2733
2734 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2735
2736         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2737           createFunction),
2738         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2739           compound_statement),
2740         * src/SDCCsymt.h,
2741         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2742
2743 2005-05-24 Raphael Neider <rneider AT web.de>
2744
2745         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2746
2747 2005-05-24 Raphael Neider <rneider AT web.de>
2748
2749         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2750           TRISE definitions, closes bug #1162453
2751
2752 2005-05-22 Raphael Neider <rneider AT web.de>
2753
2754         * src/pic16/main.c (_process_pragma): check for missing
2755           arguments to pragmas code and udata
2756         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2757           consistency fixes to match other headers (thanks to Jim Paris)
2758         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2759
2760 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2761
2762         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2763
2764 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2765
2766         * support/regression/tests/bug1198642.c: new test
2767         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2768         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2769         * support/scripts/resource.h,
2770         * support/scripts/resource.rc,
2771         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2772         * support/scripts/sdcc.ico: added 32x32 icon
2773
2774 2005-05-18 Raphael Neider <rneider AT web.de>
2775
2776         * device/lib/pic16/libdev/pic18f*.c,
2777         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2778           keywords to "__sfr" and "__at (X)"
2779         * device/include/pic16/pic18fregs.h: added pic18f4520
2780         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2781           #1203088 (MPLAB compatibility)
2782
2783 2005-05-17 Raphael Neider <rneider AT web.de>
2784
2785         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2786         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2787         * device/lib/pic16/pics.all: added new devices
2788         * src/pic16/device.c: added support for pic18f4520
2789
2790 2005-05-16 Raphael Neider <rneider AT web.de>
2791         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2792         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2793         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2794           convenience function for bit access
2795
2796 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2797
2798         * device/lib/printf_large.c: fixed bug 1193299
2799         * support/regression/tests/bug1057979.c: added test %3.3s
2800
2801 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2802
2803         * device/include/mcs51/8051.h,
2804         * device/include/mcs51/8052.h: made parseable with lint
2805         * device/include/mcs51/lint.h: added include file for (sp)lint
2806         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2807         * doc/cdbfileformat.lyx,
2808         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2809
2810 2005-05-14 Raphael Neider <rneider AT web.de>
2811
2812         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2813         * device/lib/pic16/libc/stdlib/itoa.c (new)
2814         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2815         * device/lib/pic16/libio/Makefile: exclude subdir according to
2816           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2817         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2818         * src/pic16/gen.c (genFunction): prevent annoying warning
2819         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2820           nameclashes on BeOS
2821         * support/cpp2/cppmain.c (cpp_output_string): new
2822         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2823           fixes bug 1116802
2824
2825 2005-05-13 Borut Razem <borut.razem AT siol.net>
2826
2827         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2828
2829 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2830
2831         * .version: changed to version 2.5.1; back to bleeding edge development
2832
2833 2005-05-11 Borut Razem <borut.razem AT siol.net>
2834
2835         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2836           generate PDF version 1.3 documents
2837
2838 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2839
2840         * .version: changed to version 2.5.0
2841
2842 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2843
2844         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2845
2846 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2847
2848         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2849         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2850         well as many smaller updates.
2851         * .version: changed to version 2.5.0-pre1
2852
2853 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2854
2855         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2856
2857 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2858
2859         * support/regression/tests/bug1185672.c: added
2860         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2861           bug 1185672
2862         * src/mcs51/gen.c (genCall): added comments, made it look safer
2863         * src/mcs51/gen.c (genEndFunction): simplified
2864
2865 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2866
2867         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2868
2869 2005-04-14 Borut Razem <borut.razem AT siol.net>
2870
2871         * fixed bug 1045046 - SIGSEGV with really simple code?:
2872           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2873           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2874
2875 2005-04-14 Borut Razem <borut.razem AT siol.net>
2876
2877         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2878           src/pic16/device.h: temporarily disabled experimental #inline pragma
2879           for 2.5.0 release
2880
2881 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2882
2883         * device/include/z80/stdio.h,
2884         * device/include/z80/string.h: removed these highly incomplete files so
2885           SDCC can use the default ones in device/include/
2886
2887 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2888
2889         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2890         gcc warning.
2891         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2892         fix sdcpp warnings.
2893
2894 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2895
2896         * device/include/malloc.h: removed redundant __reentrant prototypes
2897         * device/lib/_mullong.c: added working xstack variant in asm (C version
2898           doesn't pass regression tests)
2899         * device/lib/bpx.c: used __data and made bpx char for mcs51
2900         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2901           (createFunction): fixed bug with xstackPtr
2902         * src/SDCCcse.c: corrected comments
2903         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2904           (killDeadCode, eBBlockFromiCode): removed unused code
2905         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2906           corrected comments
2907         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2908           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2909           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2910           (genModOneByte): fixed warning in MSVC
2911         * src/mcs51/main.c (): added comments
2912         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2913
2914 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2915
2916         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2917
2918 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2919
2920         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2921
2922 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2923
2924         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2925         characters arrays of larger size than the declared one.
2926
2927 2005-04-10 Borut Razem <borut.razem AT siol.net>
2928
2929         * src/pic/gen.c (genInline),
2930           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2931           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2932           (findNextInstruction), (findPrevInstruction),
2933           (findInstructionUsingLabel),
2934           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2935         * src/pic/pcode.c (findLabel): added missing '\n'
2936         * src/src.dsp: added SDCCdwarf2.c to the project
2937
2938 2005-04-09 Borut Razem <borut.razem AT siol.net>
2939
2940         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2941
2942 2005-04-08 Raphael Neider <rneider AT web.de>
2943
2944         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2945           into the chain after a given one) and mergeDefmapSymbols (combine
2946           defmap entries for each symbol per pcode)
2947         * (createDefmap): have defmap entries merged in the end
2948         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2949           a symbol before replacing one access type's symbol, merge symbols in
2950           the end (replacement symbol might already have an entry)
2951         * (assignValnums): keep reference to written WREG intact
2952
2953 2005-04-08 Raphael Neider <rneider AT web.de>
2954
2955         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2956           Alpha)
2957
2958 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2959
2960         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2961         bytes
2962
2963 2005-04-07 Raphael Neider <rneider AT web.de>
2964
2965         * device/include/pic16/usart.h: added compatibility defines for
2966           devices with more than one USART
2967         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2968
2969 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2970
2971         * device/lib/Makefile.in: updated for port specific include
2972
2973 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2974
2975         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2976
2977 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2978
2979         * device/include/8051.h,
2980         * device/include/8052.h,
2981         * device/include/at89S8252.h,
2982         * device/include/at89c55.h,
2983         * device/include/at89x051.h,
2984         * device/include/at89x51.h,
2985         * device/include/at89x52.h,
2986         * device/include/mcs51reg.h,
2987         * device/include/reg51.h,
2988         * device/include/reg764.h,
2989         * device/include/regc515c.h,
2990         * device/include/sab80515.h: (re)moved these 12 files
2991         * device/include/mcs51/8051.h,
2992         * device/include/mcs51/8052.h,
2993         * device/include/mcs51/at89S8252.h,
2994         * device/include/mcs51/at89c55.h,
2995         * device/include/mcs51/at89x051.h,
2996         * device/include/mcs51/at89x51.h,
2997         * device/include/mcs51/at89x52.h,
2998         * device/include/mcs51/mcs51reg.h,
2999         * device/include/mcs51/reg51.h,
3000         * device/include/mcs51/reg764.h,
3001         * device/include/mcs51/regc515c.h,
3002         * device/include/mcs51/sab80515.h: and added them here
3003
3004 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3005
3006         * device/include/stdarg.h: changed SDCC specific keywords to double
3007           underlined form.
3008         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3009           mcs51 and ds390.
3010         * device/include/hc08/mc68hc908gp32.h,
3011         * device/include/hc08/mc68hc908jb8.h,
3012         * device/include/hc08/mc68hc908jkjl.h,
3013         * device/include/hc08/mc68hc908qy.h: fixed comments
3014         * device/include/mcs51/README: updated
3015         * device/include/mcs51/c8051f120.h: added PINRSF
3016         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3017         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3018           amidst code. Also inline is not supported.
3019
3020 2005-04-06 Raphael Neider <rneider AT web.de>
3021
3022         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3023         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3024           callers stack/frame pointers
3025
3026 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3027
3028         * device/include/pic16/usart.h: added, missing in previous commit,
3029         * device/include/pic16/adc.h: fixed typo,
3030         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3031         commit,
3032         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3033         <p18fxxx.inc>
3034         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3035         uninitialized because a bug appears with gplink
3036         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3037         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3038         complains for unrecognised option
3039
3040 2005-04-05 Raphael Neider <rneider AT web.de>
3041
3042         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3043           structs as well (using memcpy)
3044         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3045           on ISRs (GOTO has no label)
3046         * src/pic16/device.h: added OF_OPTIMIZE_DF
3047         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3048           new data flow analysis/optimization
3049         * src/pic16/pcode.c: added (prototypes for and implementation of)
3050           dataflow analysis functions, fixed pCodeInstructions' inCond and
3051           outCond values, made RCALL a branch instruction
3052         * (pic16_unlinkpCode): keep C line if possible
3053         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3054           C line moved if possible
3055         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3056         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3057           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3058         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3059           new flow)
3060         * (pic16_getJumptabpCode): NEW, needed in...
3061         * (LinkFlow): fixed handling of jumptables, calls and conditional
3062           branches
3063         * (pic16_InsertCommentAfter): NEW
3064         * (pic16_pCodeReplace): made verbose and flow preserving
3065         * (AnalyzeFlow): added call to data flow analysis
3066         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3067         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3068         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3069
3070 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3071
3072         * src/SDCCast.c (decorateType): fixed bug #1105626
3073
3074 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3075
3076         * device/include/asm/pic16/features.h,
3077         * pic18f*.h headers,
3078         * device/include/pic16/adc.h,
3079         * device/include/pic16/delay.h,
3080         * device/include/pic16/i2c.h,
3081         * device/include/pic16/malloc.h,
3082         * device/include/pic16/stdio.h,
3083         * device/include/pic16/stdlib.h,
3084         * device/include/pic16/string.h,
3085         * device/lib/pic16/libc/stdio/printf_tiny.c,
3086         * device/lib/pic16/libc/stdio/printf_small.c,
3087         * device/lib/pic16/libc/stdio/strmgpsim.c,
3088         * device/lib/pic16/libc/stdio/strmmssp.c,
3089         * device/lib/pic16/libc/stdio/strmusart.c,
3090         * device/lib/pic16/libc/stdio/vfprintf.c,
3091         * device/lib/pic16/libc/stdlib/ltoa.c,
3092         * device/lib/pic16/libc/stdlib/putchar.c,
3093         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3094         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3095         * device/lib/pic16/libc/stdlib/memchrram.c,
3096         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3097         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3098         * device/lib/pic16/libio/adc/adcbusy.c,
3099         * device/lib/pic16/libio/adc/adcread.c,
3100         * device/lib/pic16/libio/adc/adcsetch.c,
3101         * device/lib/pic16/libio/usart/ubaud.c,
3102         * device/lib/pic16/libio/usart/ubusy.c,
3103         * device/lib/pic16/libio/usart/udrdy.c,
3104         * device/lib/pic16/libio/usart/uopen.c,
3105         * device/lib/pic16/libio/usart/uputc.c,
3106         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3107         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3108         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3109         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3110         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3111         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3112         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3113         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3114         specific keywords to double underlined form,
3115         * device/lib/pic16/libc/Makefile.rules,
3116         * device/lib/pic16/libsdcc/Makefile.rules,
3117         * device/lib/pic16/libm/Makefile,
3118         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3119         to compile with C standard set in Makefile.common
3120         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3121         rand.c and crc.c in compilation process,
3122         * device/lib/pic16/libsdcc/int/divuint.c,
3123         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3124         `c' from signed to unsigned,
3125         * device/lib/pic16/startup/crt0.c,
3126         * device/lib/pic16/startup/crt0i.c,
3127         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3128         keywords to double underlined form, bug fixes in _do_cinit function
3129         which prevented the correct initialization of the .idata segment,
3130         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3131         core to enter a infinite loop
3132         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3133
3134 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3135
3136         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3137
3138 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3139
3140         * device/include/Makefile.in: add support for hc08 subdirectory
3141         * device/include/hc08/: new subdirectory
3142         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3143         Lucas Loizaga, thanks!
3144         * device/include/hc08/mc68hc908qy.h,
3145         * device/include/hc08/mc68hc908gp32.h,
3146         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3147         their own directory. Changed internal macro names to use the compiler
3148         reserved namespace. Changed SDCC specific keywords to double
3149         underlined form.
3150         * device/include/math.h,
3151         * device/include/malloc.h,
3152         * device/include/stdarg.h,
3153         * device/include/stdbool.h
3154         * device/include/string.h,
3155         * device/include/tinibios.h,
3156         * device/include/ds400rom.h,
3157         * device/include/8051.h,
3158         * device/include/8052.h,
3159         * device/include/80c51xa.h,
3160         * device/include/at89c55.h,
3161         * device/include/at89S8252.h,
3162         * device/include/at89x51.h,
3163         * device/include/at89x52.h,
3164         * device/include/ds80c390.h,
3165         * device/include/reg764.h,
3166         * device/include/regc515c.h,
3167         * device/include/sab80515.h,
3168         * device/include/mcs51/c8051f000.h,
3169         * device/include/mcs51/c8051f018.h,
3170         * device/include/mcs51/c8051f020.h,
3171         * device/include/mcs51/c8051f040.h,
3172         * device/include/mcs51/c8051f060.h,
3173         * device/include/mcs51/c8051f120.h,
3174         * device/include/mcs51/c8051f300.h,
3175         * device/include/mcs51/c8051f310.h,
3176         * device/include/mcs51/c8051f320.h,
3177         * device/include/mcs51/c8051f330.h,
3178         * device/include/mcs51/c8051f350.h,
3179         * device/include/z180.h: Changed SDCC specific keywords to double
3180         underlined form.
3181
3182 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3183
3184         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3185         18F4455,
3186         * (pic16_assignConfigWordValue): disable testing of configuration
3187         register value with config mask,
3188         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3189         function with port->fun_prefix,
3190         * (genFunction): when generating a naked interrupt function never
3191         create an absolute segment placed in interrupt vector address, place
3192         the actual interrupt function at IVA instead, when an interrupt
3193         function is generated with unspecified interrupt then do not create
3194         the absolute section,
3195         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3196         code for generating a call to generic pointer get/put function with
3197         a call to function pic16_callGenericPointer(),
3198         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3199         the call to the generic pointer get/put functions with prefixing the
3200         function name with port->fun_prefix,
3201         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3202         * src/pic16/main.c (_process_pragma): prefix function with
3203         port->fun_prefix,
3204         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3205         calling assembler, old 18Fxxxx macro is deprecated,
3206         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3207         PC_ASMDIR in while condition,
3208         * (findInstruction): add PC_ASMDIR in while condition,
3209         * (buildCallTree): prefix main with port->fun_prefix,
3210         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3211         identifier for variable with banked access in instructions BTFSS,
3212         BTFSC, BCF, BSF, BTG
3213         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3214         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3215         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3216         perform optimization when enviroment variable NO_REG_OPT is set,
3217         * (insideLRBlock): NEW, return 1 if register is inside an
3218         INF_LOCALREGS block,
3219         * (RemoveRegFromLRBlock): remove a register that is completely
3220         eliminated by register optimization, but it is still left in local
3221         register store/restore in/from stack block,
3222         * (Remove2pcodes): after removing register, check to see if it
3223         should be removed from local register store/restore in/from stack
3224         block,
3225         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3226         DUMMY_READ_VOLATILE,
3227
3228         * device/include/pic16/adc.h: minor prototype modifications and
3229         update,
3230         * device/include/pic16/malloc.h: added GPL notice various
3231         modifications,
3232         * device/include/pic16/stdint.h: NEW, standard header for ints
3233         * device/include/pic16/delay.h: NEW, header for delay functions,
3234         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3235         delay1mtcy,
3236         * device/include/pic16/signal.h: NEW, header providing helper macros
3237         for implementing signal handlers,
3238         * device/include/pic16/stdio.h: added prototypes for functions,
3239         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3240         prototypes for stdin and stdout, added macro PUTCHAR to
3241         automatically implement putchar function prototype,
3242         * device/include/pic16/usart.h: modified and updated USART library,
3243         * device/lib/pic16/libio/adc/,
3244         * device/lib/pic16/libio/i2c: some modifications to improve library
3245         performance,
3246         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3247         family of functions,
3248         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3249         family of functions and other sources,
3250         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3251         of the PIC18Fxx[28] devices,
3252         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3253         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3254         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3255         _do_cinit function, because the previous failed when local variables
3256         where not placed in the same memory bank,
3257         * device/lib/pic16/libsdcc/char/: various modifications to improve
3258         library performance,
3259         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3260         information on the new functions of the c library and more...
3261
3262 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3263
3264         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3265
3266 2005-03-26 Raphael Neider <rneider AT web.de>
3267
3268         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3269           if condition == CARRY)
3270         * (genCmp): adapted to new genSkipc semantics
3271         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3272           on rIfx (genCmp was broken)
3273
3274 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3275
3276         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3277         * src/z80/main.c (_keywords[]),
3278         * src/SDCCglobal.h (struct options),
3279         * src/SDCC.y,
3280         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3281         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3282         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3283         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3284         always available in leading double underscore form. The C99 support is
3285         mostly missing, but it's a start.
3286         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3287         reserved identifier "__data".
3288
3289 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3290
3291         * src/mcs51/peeph.def: fixed bug 1170013
3292
3293 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3294
3295         * device/include/mcs51reg.h: fixed bug 842007
3296
3297 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3298
3299         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3300         last time.
3301
3302 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3303
3304         * src/port.h (struct PORT),
3305         * src/avr/ralloc.c (avr_assignRegisters),
3306         * src/avr/main.c,
3307         * src/ds390/ralloc.c (ds390_assignRegisters),
3308         * src/ds390/main.c,
3309         * src/hc08/ralloc.c (hc08_assignRegisters),
3310         * src/hc08/main.c,
3311         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3312         * src/mcs51/main.c,
3313         * src/pic/ralloc.c (pic14_assignRegisters),
3314         * src/pic/main.c,
3315         * src/pic16/ralloc.c (pic16_assignRegisters),
3316         * src/pic16/main.c,
3317         * src/xa51/ralloc.c (xa51_assignRegisters),
3318         * src/xa51/main.c,
3319         * src/z80/ralloc.c (z80_assignRegisters),
3320         * src/z80/ralloc.h,
3321         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3322         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3323         * src/SDCCcse.h,
3324         * src/SDCCdflow.c (computeDataFlow),
3325         * src/SDCCdflow.h,
3326         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3327         * src/SDCCloop.h,
3328         * src/SDCCcflow.c (*),
3329         * src/SDCCcflow.h,
3330         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3331         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3332         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3333         immedDom() returning wrong block; probably fixes bug #1160833)
3334
3335 2005-03-20 Borut Razem <borut.razem AT siol.net>
3336
3337         * support/scripts/inc2h.pl: WIN32 port
3338
3339 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3340
3341         * device/lib/makefile.in: added abs.c and labs.c
3342
3343 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3344
3345         * device/include/stdint.h: added
3346         * device/lib/abs.c: added
3347         * device/lib/labs.c: added
3348         * device/include/stdlib.h: added abs() and labs() prototypes
3349         * device/lib/libsdcc.lib: added abs and labs
3350         * device/include/float.h,
3351         * device/lib/_fsmul.c,
3352         * device/lib/printf_fast.c,
3353         * device/lib/printf_tiny.c: updated comments
3354
3355 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3356
3357         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3358         bug #1164313
3359
3360 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3361
3362         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3363         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3364
3365 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3366
3367         * device/lib/printf_large.c: removed inline assembly for portability and
3368           readability. Use printf_fast if speed or size are more important.
3369         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3370         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3371
3372 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3373
3374         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3375         prevent compiler warning
3376
3377 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3378
3379         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3380         moved to level 0 and declared as static. Also they are explicit
3381         placed in access bank. This was necessery because some times they
3382         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3383         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3384         optimizations. Currently only compare to unsigned char is implemented,
3385         * src/pic16/gen.c: added fReturnIdx array,
3386         * (struct resolvedIfx) is moved to gen.h and made public,
3387         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3388         * (aopForSym): added an optimization to directly store in stack of
3389         the operand of a SEND iCode,
3390         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3391         but as registers instead (AOP_REG) using the fReturnIdx array,
3392         * (pic16_freeAsmop): remove the freed register from the
3393         _G.sregsAlloc field,
3394         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3395         a compare of 'WREG',
3396         * (pic16_popGetTempRegCond): changed function prototype, now
3397         function takes also a bitVector argument v which holds the current
3398         set of registers that are allocated for stack access by aopForSym,
3399         registers allocated in aopForSym for accessing stack symbols are not
3400         any more part of the functions usedRegs field,
3401         * (genCall): some times aopOp is called for a stack variable to be
3402         send, aopForSym might perform the push, if this is true make sure
3403         that genCall doesn't push the variable twice by testing _G.resDirect,
3404         * (genFunction): changed testing for unspecified interrupt number
3405         from 256 to INTNO_UNSPEC,
3406         * modified selection scheme of frame pointer generation. Previously
3407         if function did use local registers a frame pointer was generated,
3408         now a frame pointer is generated only if function has arguments
3409         (that need PLUSW2 register access), or has stack arguments, or the
3410         compiler is not instructed to omit the frame pointer,
3411         * (genEndFunction): before restoring local registers that were saved
3412         in the function preamble, also restore the registers that *might*
3413         have been allocated for stack access,
3414         * (genRet): removed some old comments,
3415         * (genCmp, the active (RN's) version): added a call to the
3416         pic16_genCmp_special function to perform the compare with a more
3417         robust and optimized way,
3418         * (genInline): a feature has been added in inline code generation,
3419         which allows a wildcard variable substitution when writing inline
3420         assembly. Code is incomplete and experimental therefore undocumented,
3421         * (genCast): changed order of aopOp for result and right to allow
3422         aopForSym to directly load the result if possible,
3423         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3424         perform an optimized compare on some selected special occasions,
3425         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3426         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3427         generate an IVT any more,
3428         * src/pic16/main.c (pic16_optionsTable): added command line option
3429         --optimize-cmp,
3430         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3431         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3432         macros,
3433         * src/pic16/NOTES: Raphael Neider added in list of active developers
3434         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3435         jumptable_end to prevent bug #,
3436         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3437         inCond and outCond fields,
3438         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3439         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3440         turn off register spilling,
3441         * (packRegsForOneUse): synced with other ports' versions although it
3442         is not used currently,
3443         * (pic16_packRegisters): added an optimization while reading
3444         structure bitfields, some registers may be saved (malloc code is
3445         decreased by 80 bytes)
3446
3447 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3448
3449         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3450         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3451         this can be optimized more?
3452
3453 2005-03-10 Raphael Neider <rneider AT web.de>
3454
3455         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3456           genNearPointerGet): (hopefully) fixed access to bitfields via
3457           pointers (p->bitN = x; and x = p->bitN; failed)
3458
3459 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3460
3461         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3462
3463 2005-03-09 Raphael Neider <rneider AT web.de>
3464
3465         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3466
3467 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3468
3469         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3470         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3471           (regTypeNum): set REG_BIT type if necessary
3472         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3473         * support/regression/tests/critical.c: check bug 1144613
3474
3475 2005-03-02 Raphael Neider <rneider AT web.de>
3476
3477         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3478
3479 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3480
3481         * src/avr/ralloc.c (serialRegAssign),
3482         * src/ds390/ralloc.c (serialRegAssign),
3483         * src/hc08/ralloc.c (serialRegAssign),
3484         * src/mcs51/ralloc.c (serialRegAssign),
3485         * src/pic/ralloc.c (serialRegAssign),
3486         * src/pic16/ralloc.c (serialRegAssign),
3487         * src/xa51/ralloc.c (serialRegAssign),
3488         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3489
3490 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3491
3492         * src/SDCCast.c (decorateType): fixed bug 1124787
3493
3494 2005-02-20 Hubert Sack <sack AT digiplan.de>
3495         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3496
3497         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3498         patch #1121755
3499
3500 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3501
3502         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3503         to keep the correct label reference count when adding/removing references
3504         to labels. A peephole file using this is appended to patch #1144962.
3505
3506 2005-02-14 Raphael Neider <rneider AT web.de>
3507
3508         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3509         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3510         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3511           retrievals of result operand's value on assignment
3512
3513 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3514
3515         * device/include/pic16/string.h: modified prototype for memccpy()
3516         to memccpy(void *, void *, char, size_t)
3517         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3518         check whether to omit frame pointer or not,
3519         * (genInline): convert all occurences of "\n" to LF in inline
3520         assembler blocks, this helps formatting the inline text,
3521         * (pic16_loadFSR0): modified prototype,
3522         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3523         removed some 8051 legacy code,
3524         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3525         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3526         before allocating temporary registers in functions,
3527
3528 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3529
3530         * support/regression/tests/bitvars.c: corrected the "fix"
3531
3532 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3533
3534         * support/regression/tests/bitvars.c,
3535         * support/regression/tests/bitwise.c,
3536         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3537
3538 2005-02-10 Raphael Neider <rneider AT web.de>
3539
3540         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3541           different size for Alpha
3542         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3543
3544 2005-02-09 Raphael Neider <rneider AT web.de>
3545
3546         * src/SDCC.lex(doPragma) : save and restore warning options as well
3547           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3548         * have #pragma less_pedantic set the errorlevel to WARNING
3549           (fixes #1117001)
3550         * (cloneOptimize) : fixed wrong malloc's size
3551         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3552           facilitate correct handling of #pragma (save|restore)
3553
3554 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3555
3556         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3557
3558 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3559
3560         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3561
3562 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3563
3564         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3565
3566 2005-02-02 Raphael Neider <rneider AT web.de>
3567
3568         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3569         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3570         * (pic16_storeForReturn): fixed to allow returning function pointers
3571         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3572         * device/include/pic16/{stddef.h,stdbool.h}: added
3573
3574 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3575
3576         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3577
3578 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3579
3580         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3581         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3582          appeared to be required
3583
3584 2005-01-31 Borut Razem <borut.razem AT siol.net>
3585
3586         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3587           include/mcs51 and include/z80 directories to the package
3588
3589 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3590
3591         * src/hc08/gen.c (genFunction): fixed bug #1112752
3592
3593 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3594
3595         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3596
3597 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3598
3599         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3600
3601 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3602
3603         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3604
3605 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3606
3607         * device/include/c8051fxxx.h: removed these 6 files
3608         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3609
3610 2005-01-26 Raphael Neider <rneider AT web.de>
3611
3612         * src/pic16/gen.c (genAssign): fixed assignment from longs
3613           in codespace (were cut to three bytes)
3614         * (genDummyRead): implemented (except for CODESPACE...),
3615           fixed bug #1108575
3616         * src/pic16/glue.c (emitStatistics): beautified
3617         * device/lib/pic16/libm/Makefile: added include path
3618
3619 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3620
3621         * src/z80/gen.c (aopPut): fixed bug #1103902
3622
3623 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3624
3625         * device/lib/expf.c: fixed bug #1095792
3626
3627 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3628
3629         * device/lib/pic16/libm: added Math library sources
3630
3631 2005-01-24 Raphael Neider <rneider AT web.de>
3632
3633         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3634           to enable upcast to pCodeOpReg2 (there is no type tag to
3635           differenciate the two and pic16_popGet2p cast into PCOR2)
3636         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3637           (sizeof(sectNames) changed to sizeof(sectName))
3638           Both patches fix segfaults under MinGW.
3639
3640 2005-01-23 Raphael Neider <rneider AT web.de>
3641
3642         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3643           Safe_[mc]?alloc()'ed variables
3644         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3645           of (byte sized) temporaries (assign them to WREG for now)
3646         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3647           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3648           this might fix SIGSEGVs on MinGW...
3649         * src/SDCCopt.c (killDeadCode): restored original behaviour
3650           (volatile operands might get thrown away though)
3651
3652 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3653
3654         * src/pic16/gen.c: fixed bug #1106975,
3655         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3656         pointer update, INTCON is saved, global interrupts are disabled and
3657         restored after updateing TOS.
3658         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3659         * added function attribute 'shadowregs' to take advantage of shadow
3660         registers,
3661         * added function attribute 'wparam' as an alternative to the wparam
3662         pragma,
3663         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3664         user declares a non-ISR function as 'shadowregs',
3665         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3666
3667 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3668
3669         * .version: bumped version number to 2.4.8
3670         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3671         pic16 port,
3672         * device/lib/pic16/libio/i2c/: I2C module support library,
3673         * device/include/pic16/i2c.h: I2C support library header,
3674         * device/lib/pic16/libc/stdio/: standard IO support sources,
3675         * (printf_small.c): printf_small() source, supports float print,
3676         * (printf_tiny.c): printf_tiny() source, does not support floats,
3677         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3678         enable global optimizations for entire library source, other
3679         Makefiles in the source tree are also modified to reflect this,
3680         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3681         function,
3682         * doc/sdccman.lyx: updated to reflect new changes,
3683         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3684         sym->onStack if-case,
3685         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3686         sbit, idata, _idata, xdata, _xdata,
3687         * added pragma library, to link an external library, (see doc),
3688         * removed command line options, --pomit-config-words, --pomit-ivt,
3689         --pleave-reset-vector,
3690         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3691         when calling assembler to reflect memory model used, also define
3692         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3693         reflect stack model used,
3694         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3695         on stack return NULL,
3696
3697 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3698
3699         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3700           of the operands is volatile. Fixes #1020220
3701
3702 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3703
3704         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3705         * (OptimizeRegUsage): make sure that there is really no other flow where
3706           the first pCode is used
3707
3708 2005-01-22 Raphael Neider <rneider AT web.de>
3709
3710         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3711           to fix #1106967 (pCode->seq are not set up correctly)
3712
3713 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3714
3715         * src/SDCCglue.c (glue): make sure code area is declared before the
3716         static initialization area.
3717
3718 2005-01-21 Raphael Neider <rneider AT web.de>
3719
3720         * device/lib/Makefile.in: fixed test for pic16 install dir
3721         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3722           optimizations
3723         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3724           added --optimize-goto compiler switch and pragma wparam documentation
3725         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3726         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3727           and PRODH closing bug #1071770 (peephole optimizer)
3728
3729 2005-01-19 Raphael Neider <rneider AT web.de>
3730
3731         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3732           cmdLine buffers (used when calling sdcpp...) are large enough
3733           (MAX_PATH=256 truncates arguments leading to system halts when
3734           used in MinGW...)
3735         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3736         * (genUminus): rewritten to for efficiency
3737         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3738           used uninitialized in some cases)
3739         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3740           copy the third byte from the int -- now assumes 0x80 (data memory)
3741         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3742           operands (genAddLit expects the iCode's operands to swapped as
3743           well), fixed leftover bytes (crashed for short left operands)
3744         * (pic16_genMinusDec): performance improvements, removed false
3745           PIC14 emitSKPNCs
3746         * (pic16_genMinus): fixed to cope with differently sized operands
3747         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3748           for --obanksel > 1
3749         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3750         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3751           new banksel optimization
3752         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3753           analysis for temporary registers (segfaults...)
3754         * src/pic16/peeph.def: added rule
3755
3756 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3757
3758         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3759         which converts a float number to its ASCII representation
3760         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3761         functions to convert the fractional and integer part of a float to ASCII,
3762         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3763         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3764         ram
3765         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3766         _STATMEM macros,
3767         * device/include/pic16/adc.h: added GPL info,
3768         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3769         a pCodeOp as tested operand,
3770         * (genNearPointerGet): optimized bit testing, does not use
3771         intermediate register for bit value, test directly instead with
3772         BTFSS, BTFSC, works only for single bits,
3773         * (genpic16Code): dump the name of the iCode in the asm,
3774         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3775         renamed to pic16_decodeOp,
3776         * (serialRegAssign): do not allocate a temporary register for iCode
3777         sequences that test a single bit for 1/0
3778
3779 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3780
3781         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3782         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3783         access stack and frame pointers. They are initially assigned to
3784         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3785         accessing SFRs. Updated all occurences of modification of stack or
3786         frame pointer in gen.c and pcode.c,
3787         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3788         assigning of a literal value to pointers,
3789         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3790         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3791         selected
3792
3793 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3794
3795         * doc/sdccman.lyx: update documentation about stack pragma, added
3796         some info for stack memory models
3797
3798 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3799
3800         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3801
3802 2005-01-08 Raphael Neider <rneider AT web.de>
3803
3804         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3805           udata sections to fix bug #1097823
3806
3807 2005-01-05 Raphael Neider <rneider AT web.de>
3808
3809         * src/pic16/gen.c (genGenericShift): added handling of differently
3810           sized left operand and result
3811
3812 2005-01-04 Raphael Neider <rneider AT web.de>
3813
3814         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3815         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3816           to hold the condition bit)
3817         * added new version of genCmp (old code available via #define)
3818         * added new version of genShiftLeft/genShiftRight in a generic
3819           way, now supports shifting by negative values
3820         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3821           shiftCount (expected by genGenericShift)
3822         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3823         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3824           dump
3825         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3826           is an invalid literal too...)
3827
3828 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3829
3830         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3831         from Raphael Neider,
3832         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3833         for 8-bit literals. This fixes some literal operands which are sign
3834         extended to 16-bits ints when instruction needs only 8-bits.
3835
3836 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3837
3838         * device/lib/logf.c: added mcs51 assembly version
3839         * device/lib/expf.c: added mcs51 assembly version
3840         * device/lib/_logexpf.c: new shared asm code for expf and logf
3841         * device/include/math.h: add defines for assembly math library
3842         * device/lib/Makefile.in: build new _logexpf.c
3843         * device/lib/libfloat.lib: use new _logexpf.c
3844
3845 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3846
3847         * src/pic/device.c
3848         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3849           device types which have less than 0x7f registers.
3850
3851 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3852
3853         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3854
3855 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3856
3857         * device/lib/printf_fast.c: only build on supported arch.
3858         * device/lib/printf_tiny.c: only build on supported arch.
3859         * device/lib/printf_fast_f.c: only build if asm float lib
3860         * device/lib/_fsget1arg.c: only build if asm float lib
3861         * device/lib/_fsget2args.c: only build if asm float lib
3862         * device/lib/_fsnormalize.c: only build if asm float lib
3863         * device/lib/_fsreturnval.c: only build if asm float lib
3864         * device/lib/_fsrshift.c: only build if asm float lib
3865         * device/lib/_fsswapargs.c: only build if asm float lib
3866         * device/include/stdio.h: don't provide print_fast,
3867           print_fast_f, print_tiny prototypes if --xstack used
3868
3869 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3870
3871         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3872         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3873           to the SOURCES
3874
3875 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3876
3877         * device/lib/printf_fast_f.c: same as printf_fast, but
3878           with floating point enabled
3879         * device/lib/printf_fast.c: minor tweaks
3880         * device/include/stdio.h: add printf_fast_f
3881
3882 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3883
3884         * src/SDCCmain.c: make --float-reent default for mcs51
3885         * device/lib/_fsadd.c: added mcs51 assembly version
3886         * device/lib/_fssub.c: added mcs51 assembly version
3887         * device/lib/_fsmul.c: added mcs51 assembly version
3888         * device/lib/_fsdiv.c: added mcs51 assembly version
3889         * device/lib/_fseq.c: added mcs51 assembly version
3890         * device/lib/_fsneq.c: added mcs51 assembly version
3891         * device/lib/_fsgt.c: added mcs51 assembly version
3892         * device/lib/_fslt.c: added mcs51 assembly version
3893         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3894         * device/lib/Makefile.in: add _fscmp to build
3895         * device/lib/libfloat.lib: add _fscmp to build
3896
3897 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3898
3899         * device/lib/_fs2slong.c: added mcs51 assembly version
3900         * device/lib/_fs2sint.c: added mcs51 assembly version
3901         * device/lib/_fs2schar.c: added mcs51 assembly version
3902         * device/lib/_fs2ulong.c: added mcs51 assembly version
3903         * device/lib/_fs2uint.c: added mcs51 assembly version
3904         * device/lib/_fs2uchar.c: added mcs51 assembly version
3905         * device/lib/_slong2fs.c: added mcs51 assembly version
3906         * device/lib/_sint2fs.c: added mcs51 assembly version
3907         * device/lib/_schar2fs.c: added mcs51 assembly version
3908         * device/lib/_ulong2fs.c: added mcs51 assembly version
3909         * device/lib/_uint2fs.c: added mcs51 assembly version
3910         * device/lib/_uchar2fs.c: added mcs51 assembly version
3911         * device/include/float.h: added #define to select asm vs c
3912
3913 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3914
3915         * device/lib/printf_fast.c: improvements to float output
3916         * device/include/float.h: add defines for assembly float library
3917         * device/lib/_fsget1arg.c: receive 1 float arg
3918         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3919         * device/lib/_fsnormalize.c: normalize a float
3920         * device/lib/_fsreturnval.c: return float, various helper routines
3921         * device/lib/_fsrshift.c: right shift a float's mantissa
3922         * device/lib/_fsswapargs.c: swap 2 floats
3923         * device/lib/Makefile.in: build these 6 new files for mcs51
3924         * device/lib/libfloat.lib: add these 6 files to the library
3925
3926 2004-12-26 Borut Razem <borut.razem AT siol.net>
3927
3928         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3929           built by gcc 3.4.2
3930
3931 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3932
3933         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3934           and fully reentrant and register bank neutral.
3935         * device/lib/printf_fast.c: added float (not enabled by default),
3936           added compact/slower integer (also not enabled by default),
3937           improved size/speed of fast integer code, other minor changes
3938         * device/include/stdio.h, device/lib/Makefile.in,
3939           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3940
3941 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3942
3943         * src/pic16/pcode.c: declaring variables other than at the start of a
3944           block is not supported in C by VC6.
3945
3946 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3947
3948         * applied a previous patch from Raphael Neider that wasn't included
3949         in the previous commits, which fixes infinite loops within jumptable
3950         improvements,
3951         * made some fixes that previous patches introduced
3952
3953 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3954
3955         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3956         that fixes an issue with AOP_PCODE asmop's offset,
3957         * (pic16_popCopyReg): update instance field too,
3958         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3959         function of pic port,
3960         * (genCmp, genAnd, genAssign),
3961         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3962
3963 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3964
3965         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3966         variables initial values to idata section,
3967         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3968         variables in some functions. This utilizes parmBytes field of iCode
3969         structure to hold the offset of the variable in stack. (might be
3970         able to use the stack field too?)
3971         * applied patch from Raphael Neider # ### , # ###
3972         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3973         variable initial values in idata section,
3974         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3975         for static variables with initial value
3976         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3977         applied fix in while loop from Raphael Neider.
3978
3979 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3980
3981         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3982         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3983         * src/ds390/ralloc.c (serialRegAssign): spill bits
3984         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3985         * support/Util/SDCCerr.c,
3986         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3987         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3988         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3989
3990 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3991
3992         * device/include/sdcc-lib.h: inserted LGPL, added includes
3993           asm/ds390/features.h and asm/mcs51/features.h
3994         * device/include/asm/default/features.h,
3995         * device/include/asm/gbz80/features.h,
3996         * device/include/asm/z80/features.h: added empty _AUTOMEM
3997           and _STATMEM
3998         * device/include/asm/ds390/features.h,
3999         * device/include/asm/mcs51/features.h: added files with defines for
4000           _AUTOMEM and _STATMEM indicating automatic and static storage class
4001         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4002         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4003         * src/SDCCicode.c (geniCodeCast),
4004         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4005         * src/SDCCloop.c (loopInduction): removed unused variable lr
4006         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4007           to convertToFcall to include char modulo (RFE 1065037), added check
4008           if left operand is unsigned and use abs of literal value
4009         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4010           as it doesn't work after conversion from peephole.def to peephole.rul
4011         * src/mcs51/gen.c (toBoolean): added check for size,
4012           (genModOneByte): optimized code for signed char modulo a literal
4013           power of 2 (thanks to Hubert Sack),
4014           (genRRC): removed unnecessary "clr c",
4015           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4016         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4017           jump optimization,
4018           swapped rules 256.c and 256.d,
4019           extended 256.d by using new multiple checks (thanks Erik),
4020           added rules 256.e and 256.f,
4021           updated rule 261.a and 261.b to new generated code
4022         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4023
4024 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4025
4026         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4027           induction related bugs, including first part of bug #1074377
4028
4029 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4030
4031         * applied patch from bug-report #1076292,
4032         * applied patches for genAnd and Goto-optimizations for Raphael
4033         Neider,
4034         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4035         dump a less iCode information,
4036         * src/pic16/device.h (pic16_options_t): added field debgen,
4037         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4038         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4039         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4040         puclic,
4041         * (various functions): added macros FENTRY and FENTRY2 to functions,
4042         to emit function prologue,
4043         * (various functions): fixed indentation,
4044         * (genNearPointerGet): fixed loading of FSR0,
4045         * (genPackBits): applied patch from Raphael Neider to fix updating
4046         of FSR0 and touching only the modified bits,
4047         * src/pic16/genarith.c (various functions): added macros FENTRY to
4048         emit function prologue in comments,
4049         * src/pic16/pcode.h: added functions debugf2, debugf3,
4050         * src/pic16/ralloc.c: partial fix for packForPush caused
4051         segmentation fault,
4052
4053 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4054
4055         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4056           <stsp AT users.sourceforge.net> with reversed byte order
4057         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4058
4059 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4060
4061         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4062           bug #1074377
4063         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4064         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4065
4066 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4067
4068         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4069
4070 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4071
4072         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4073           conditions,
4074           (setFromConditionArgs): friendly operand parser for peephole rules,
4075           (operandBaseName, operandsNotRelated): new peephole condition
4076           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4077           architecture specific register naming into account, handles n-way
4078           comparisons, and supports quoted literals
4079         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4080
4081 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4082
4083         * src/mcs51/peeph.def: fixed bug #1076940
4084
4085 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4086
4087         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4088
4089 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4090
4091         Adding support for replacing ljmps with sjmps in jumptables
4092         generated for switch statements. For now you need to set the
4093         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4094         Now 4 algorithms for mcs51 jumptable generation are used:
4095         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4096         addresses loaded pc-relative for up to 112 cases and stack-pushing
4097         target addresses loaded with offset from dptr for up to 256 cases.
4098
4099         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4100         * src/mcs51/main.c: adapted constants for switch table generation
4101         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4102
4103 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4104
4105         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4106         * support/regression/tests/bug1057979.c: added test for bug 1073386
4107
4108 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4109
4110         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4111         compilers
4112
4113 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4114
4115         * src/pic16/device.h,
4116         * src/pic16/genarith.c,
4117         * src/pic16/glue.c,
4118         * src/pic16/main.c,
4119         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4120
4121 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4122
4123         Large cummulative patch for pic16 port.
4124         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4125         to call when a stack overflow occurs,
4126         * (malloc.h): added CVS Id tag,
4127         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4128         variable,
4129         * added libc directory. The current version of LibC contains string
4130         functions, ctype functions and macros and some functions of the
4131         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4132         be extensively tested in the future. Standard disclaimer here.
4133         Library is not automatically build yet. But one can build it by
4134         invoking 'make' inside the libc directory.
4135         * added ADC library under libio. Preliminary version yet.
4136
4137         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4138         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4139         aopForRemat() now and not by pic16_aopOp(),
4140         * (pic16_popGetTempReg): removed warning messgae when allocating
4141         temporary registers, its a buggy feature and will be removed,
4142         * (pic16_popGet): set register instance field in AOP_CRY,
4143         * (pic16_outBitC): fixed for results in size greater than 1,
4144         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4145         * (pic16_storeForReturn): optimized return of 0,
4146         * (genCmp): experimental code for new genCmp which uses PIC18's
4147         special compare&skip instructions. Initial tests fail some times
4148         with variables grater than 1 byte in size, so new code is disabled,
4149         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4150         a single bit,
4151         * (genCast): began a fix to optimize the casting of a bit to another
4152         bit, now assigning a bitfield to another bitfield will fail, sorry,
4153         * src/pic16/main.c: disabled the use of lr-support feature,
4154         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4155         * added some function prototypes, added function _debugf prototype,
4156         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4157         bits with offset (case PO_GPR_BIT),
4158         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4159         command line,
4160         * (isBankInstruction): modified to return 0 for no banking instruction,
4161         and 1 for banking instruction,
4162         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4163         caused stop processing pCodes after a inline assembly block,
4164         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4165         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4166         registers when it shouldn't,
4167         * src/pic16/ralloc.c (allocReg): add preliminary support for
4168         supporting a limited set of temporary registers,
4169
4170 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4171
4172         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4173           genDataPointerSet): ensure assignments always copy in MSB to LSB
4174           order,
4175           (loadRegFromAop): recognize CLRH optimization,
4176           (genFunction): optimize RECEIVE iCodes in reentrant functions
4177
4178 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4179
4180         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4181           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4182           selected.
4183         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4184         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4185           contiguous with data
4186
4187 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4188
4189         * device/lib/_gptrget.c (_gptrget),
4190         * device/lib/_gptrgetc.c (_gptrgetc),
4191         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4192           instead of sjmp to ret
4193         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4194           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4195
4196 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4197
4198         * .version: bumped version to 2.4.7
4199         * device/lib/_gptrget.c (_gptrget): is now _naked
4200         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4201         * device/lib/_gptrput.c (_gptrput): is now _naked
4202         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4203           (createFunction): fixed xstack
4204         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4205         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4206           or bit either,
4207           (geniCodeCritical): store original interrupt state in an iTemp bit
4208           var unless stack-auto
4209         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4210         * src/SDCCmain.c (setIncludePath): added include/target to search path
4211         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4212         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4213           prototype,
4214           (processFuncArgs): put bit vars in bit area
4215         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4216           unsaveRBank): fixed xstack,
4217           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4218           (genFunction, genEndFunction): fixed xstack,
4219           (genAssign): optimization don't walk backwards through mem
4220         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4221         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4222         * support/regression/Makefile: also make library (for stack-auto) when
4223           making "all" and added "test-mcs51-xstack-auto"
4224         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4225         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4226         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4227         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4228         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4229           make-library by MAKE_LIBRARY
4230         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4231           regression tests for xstack
4232         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4233         * support/regression/tests/critical.c: test for critical on mcs51
4234
4235 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4236
4237         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4238           built version of sdcc instead of installed version
4239
4240 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4241
4242         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4243         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4244           vprintf.c now
4245         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4246         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4247           WARNING: remove device/lib/build/z80/printf.o by hand when
4248           updating from previous build!
4249         * device/lib/z80/printf.c: updated comment
4250         * support/regression/tests/bug1057979.c: test all ports now
4251         * support/regression/tests/bug1065458.c: file added
4252
4253 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4254
4255         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4256           *_start and *_end symbols for static functions
4257
4258 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4259
4260         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4261           and search crt0.o in all library paths,
4262           (setIncludePath): proper handling of --nostdinc,
4263           (setLibPath): proper handling of --nostdlib
4264         * support/regression/Makefile,
4265         * support/regression/ports/ds390/spec.mk,
4266         * support/regression/ports/gbz80/spec.mk,
4267         * support/regression/ports/hc08/spec.mk,
4268         * support/regression/ports/mcs51/spec.mk,
4269         * support/regression/ports/mcs51-large/spec.mk,
4270         * support/regression/ports/mcs51-stack-auto/spec.mk,
4271         * support/regression/ports/z80/spec.mk: use include and lib files from
4272           built version of sdcc instead of installed version
4273         * doc/sdccman.lyx: fixed typo in --nostdinc
4274
4275 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4276
4277         * src/pic/pcode.c,
4278         * src/pic/device.c,
4279         * src/pic/ralloc.c,
4280         * src/pic/gen.c : added support to generate code for struct bit fields.
4281
4282 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4283
4284         * as/xa51/xa_version.h,
4285         * device/include/errno.h,
4286         * device/include/regc515c.h,
4287         * device/lib/_itoa.c,
4288         * device/lib/_ltoa.c,
4289         * device/lib/ser_ir_cts_rts.c,
4290         * sim/ucsim/xa.src/glob.cc,
4291         * sim/ucsim/xa.src/inst_gen.cc,
4292         * sim/ucsim/xa.src/xa_bit.cc,
4293         * sim/ucsim/xa.src/xa_sfr.cc,
4294         * sim/ucsim/z80.src/inst_dd.cc,
4295         * sim/ucsim/z80.src/inst_fdcb.cc,
4296         * support/scripts/keil2sdcc.pl,
4297         * src/pic16/pic16.dsp,
4298         * src/pic16/pic16a.dsp: corrected cvs line endings
4299         * device/lib/printf_large.c: fixed bug 1057979
4300         * src/pic16/gen.c: fixed non-C standard code
4301         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4302         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4303         * support/regression/ports/mcs51/support.c: reload T1 asap
4304         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4305           pdata use and clear idata startup behaviour
4306         * support/regression/tests/bug1057979.c: added
4307
4308 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4309
4310         * device/examples/ds390/ow390/ad26.h,
4311         * device/examples/ds390/ow390/cnt1d.h,
4312         * device/examples/ds390/ow390/crcutil.c,
4313         * device/examples/ds390/ow390/ownet.h,
4314         * device/examples/ds390/ow390/owsesu.c,
4315         * device/examples/ds390/ow390/swt12.h,
4316         * device/examples/ds390/ow390/swtoper.c,
4317         * device/examples/ds390/ow390/temp10.h,
4318         * device/examples/ds390/ow390/thermodl.c,
4319         * device/examples/ds390/tinitalk/tinitalk.dsp,
4320         * device/examples/ds390/tinitalk/tinitalk.dsw,
4321         * device/examples/mcs51/clock/hw.h,
4322         * device/examples/mcs51/simple2/go.bat,
4323         * device/examples/serialcomm/windows/serial.h,
4324         * device/examples/xa51/dummy.c,
4325         * device/examples/xa51/hello.c,
4326         * device/include/80c51xa.h,
4327         * device/include/at89x051.h: corrected cvs line endings
4328
4329 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4330
4331         * src/pic16/main.c (options): added command line --gstack, to trace
4332         stack over/under flows,
4333         * added pragma 'wparam' to allow passing first byte of function
4334         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4335         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4336         call to __gstack_test function and sets up the symbol as extern,
4337         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4338         * popaop): added call to pic16_testStackOverflow,
4339         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4340         wparamList list,
4341         * (genCall, genPcall): now all parameters are passed via stack
4342         except in functions that are pass to wparam pragma in which WREG is
4343         used too,
4344         * (genPcall): REENTRANT flag is checked to see if variable prototype
4345         contains reentrant keyword, don't call a non-reentrant function, via
4346         a reentrant function pointer or vice versa, functions are never
4347         passed via WREG,
4348         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4349         D.Winkler,
4350         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4351         SIGSEGV when accessing a NULL register stucture,
4352         * (pic16_printGPointerType): modified to handle UPPER modifier for
4353         function initializers, changed prototype of function to simpler one,
4354         * (pic16_printIvalFuncPtr): check to see if function is already
4355         added in externs list,
4356         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4357         optimized a move from W to SFR with a move to the same register
4358         later after a CALL,
4359         * device/lib/pic16/debug: NEW directory, contains debug features
4360         which are enabled when linking with libdebug.lib, currently command
4361         line option --gstack enables stack pointer tracing for over/under
4362         flow, corresponding sources are in debug/gstack
4363
4364 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4365
4366         * doc/sdccman.lyx: updated SDCC version,
4367         * (PIC16 port): update list of command line options,
4368         * src/pic16/device.h (structure pic16_options_t): added field gstack
4369         to enable stack overflow tracing on push/pops,
4370         * src/pic16/device.c (statistics structure): added statistics
4371         structure,
4372         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4373         pic16_dump_int_registers): increase statistics counters for each
4374         * variable which is encountered
4375         * (pic16_dump_usection): emit each .udata variable to its own udata
4376         section,
4377         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4378         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4379         parameters via stack, otherwise use old scheme,
4380         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4381         assembler output file,
4382         * src/pic16/main.c: added command line options --gstack to enable
4383         push/pop tracing for stack overflow,
4384         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4385         instructions): added size of each instruction,
4386         * (pic16_countInstruction): estimate size of instructions in
4387         the_pFile list, inline assembly blocks are not counted,
4388         * (pic16_FixRegisterBanking): trace previous register usage, when
4389         banksel optimizations is greater than 0, don't emit a redudant
4390         banksel directive,
4391
4392 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4393
4394         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4395         * src/pic16/ralloc.c : applied same fix for pic16.
4396         * src/pic/gen.c : tidied it up a little.
4397
4398 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4399
4400         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4401         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4402
4403 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4404
4405         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4406
4407 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4408
4409         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4410         non-reentrant function __modsint in the interrupt function (thus
4411         corrupting math operations during serial I/O)
4412         * device/lib/ser_ir.c: as above, changed buffersize
4413         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4414         256.c,d for zeroing
4415         * doc/Makefile: added option -t for rsync
4416
4417 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4418
4419         * src/SDCCast.h (struct ast),
4420         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4421
4422 2004-10-20 Borut Razem <borut.razem AT siol.net>
4423
4424         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4425         package
4426
4427 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4428
4429         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4430         makefile targets,
4431         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4432         support functions to replace long sequences of MOVFF's from access
4433         bank registers to stack and vice versa,
4434         * src/pic16/device.h: added new field opt_flags, where optimization
4435         flags can be set to enable certain features,
4436         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4437         * pBlock, (genFunction, genEndFunction): surroung loop for
4438         saving/loading used registers in stack with PC_INFO pCodes,
4439         INF_LREGS. Code in between can then be optimized by pCode optimizer
4440         to support function calls,
4441         * (genDataPointerSet): fixed bug which loaded float fields in
4442         structures with corrupt data,
4443         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4444         in a standard way debug info on stderr. Feature used for developing
4445         and debugging only,
4446         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4447         obsolete chunks of code,
4448         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4449         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4450         * pic16/src/pcode.c (pic16_newpCodeInfo,
4451         * (pic16_newpCodeOpLocalRegs),
4452         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4453         feature,
4454         * (pic16_pCodeConstString): printing of the initial value of a
4455         symbol as a comment is inhibited since parsing was already done by
4456         copyStr and output is corrupt,
4457         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4458
4459 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4460
4461         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4462
4463 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4464
4465         * as/mcs51/lkarea.c: removed old K&R style,
4466           (lnksect): changed check on boundary error,
4467           (lnksect2): changed check on boundary error,
4468           (lnksect2): extend XSTK to end of page if size = 1
4469         * as/mcs51/lkmain.c: removed old K&R style,
4470           (Areas51): create l_IRAM symbol
4471         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4472         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4473           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4474         * device/lib/_mullong.c: added version to be compiled with xstack
4475         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4476         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4477         * device/lib/mcs51/crtxstack.asm: fixed comment
4478         * src/SDCCglue.c: maxInterrupts defaults to 0,
4479           (emitMaps): added pdata,
4480           (createInterruptVect): (re)moved default,
4481           (glue): added pdata,
4482           (glue): moved __start__xstack to XSTK with default size 1
4483         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4484           and options.float_rent when options.stackAuto is set,
4485           (linkEdit): only write XDATA_NAME if provided on command line
4486         * src/SDCCmem.h,
4487         * src/SDCCmem.c: added pdata
4488         * src/port.h: added pdata_name to PORT
4489         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4490           (saveRegisters, unsaveRegisters): removed usage of B,
4491           (genMinus): fixed accumulator clash,
4492           (genJumpTab): added comment, this needs another look
4493         * src/mcs51/gen.c: added check for "B in use" paranoia,
4494           added pushB() and popB()
4495         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4496           chance
4497         * src/avr/main.c,
4498         * src/ds390/main.c,
4499         * src/hc08/main.c,
4500         * src/mcs51/main.c,
4501         * src/pic/main.c,
4502         * src/pic16/main.c,
4503         * src/xa51/main.c,
4504         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4505           added PSEG (PAG,XDATA) or NULL to port specifier
4506         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4507         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4508           (_mcs51_genInitStartup): removed __start__xstack equ,
4509           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4510         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4511         * src/z80/gen.c (_rleAppend): fixed warnings
4512         * support/regression/tests/zeropad.c: added pdata test
4513         * .version: bumped to 2.4.6
4514
4515 2004-10-17 Borut Razem <borut.razem AT siol.net>
4516
4517         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4518         as a part of nightly build
4519
4520 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4521
4522         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4523         WREG holds the first byte function parameters,
4524         * (aopForSym): take special case for symbols which are in FARSPACE
4525         but in CODESPACE too,
4526         * (assignResultValue): modified to take into account _G.useWreg,
4527         * (genCall): don't use wreg for parameter passing when function is
4528         declared as reentrant, too, added optimization INCF to stack
4529         pointer when stack parameter count is 1,
4530         * (genFunction, genEndFunction): refurnished and fixed to not using
4531         wreg for passing parameters when function has varargs or is
4532         reentrant, fixed bug with symbol name compare for generating
4533         functions in absolute address,
4534         * (pic16_storeForReturn): refurnished,
4535         * (genCmp): began writing a new version of the function, not ready
4536         yet, therefore it is disabled,
4537         * (genAssign): do not read code memory when assigning a function to
4538         a pointer function,
4539         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4540         array of characters, not pointer,
4541         * (pic16initialComments): in debug mode emit an .ident directive for
4542         the assembler,
4543         * (_process_pragma): emit a new warning type (internal to pic16)
4544         when setting stack to default length, emit a similar warning when
4545         placing a function at absolute address and address is not word aligned
4546         * (_pic16_parseOptions): added 'return TRUE' statement,
4547         * (_pic16_linkEdit): if compiling a source, then add the source's
4548         file object, first in the list of objects to link,
4549
4550 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4551
4552         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4553         * src/pic/main.c : removed VC warning.
4554         * src/pic/gen.c : changed comment.
4555
4556 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4557
4558         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4559         reference to a deprecated symbol _GPTRREG was causing failure to
4560         link. Thanks G. M. Gallant for the info.
4561
4562 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4563
4564         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4565         comments for Bugs item #954788.
4566
4567 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4568
4569         * src/pic16/device.c (pic16_dump_gsection,
4570         * pic16_groupRegistersInSection): handle symbols declared to be in
4571         access bank differently,
4572         * src/pic16/gen.c (struct _G): added field resDirect,
4573         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4574         send values read from stack directly to result and don't allocate
4575         temporary values,
4576         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4577         same registers,
4578         * (pic16_sameRegsOfs): NEW,
4579         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4580         free because they were not allocated from temporary pool,
4581         * pic16_popRegFromString): workaround to fix a problem with
4582         allocating variables twice or never,
4583         * (genGenPointerGet): using PRODL instead of FSR0H,
4584         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4585         instead of FSR0H,
4586         * (genAssign): take advantage of the _G.resDirect flag,
4587         * (genCast): around line 11844, use mov2f instead of directly
4588         MOVFF'ing between operands to account for literal values,
4589         * src/pic16/genutils.c: some new debug functions for gpsim have been
4590         added,
4591         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4592         float with integer part only,
4593         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4594         place variables in access bank
4595         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4596         updated sources to reflect recent changes in gen.c
4597
4598 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4599
4600         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4601         sources that searched for headers in installation path, now the
4602         device/include/pic16 is used,
4603         * src/pic16/glue.c (pic16glue),
4604         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4605         .line directives if not in debug mode, this suppresses assembler's
4606         warnings for ignored directives
4607
4608 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4609
4610         * src/port.h: made reset_regparms prototype void parameter explicit.
4611         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4612         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4613         * doc/sdccman.lyx: documented warning disabling and how to use
4614           printf_large to make it print floats.
4615         * device/include/stdbool.h: NEW
4616         * device/lib/_atof.c,
4617         * device/lib/_divuint.c,
4618         * device/lib/_divulong.c,
4619         * device/lib/expf.c,
4620         * device/lib/printf_large.c,
4621         * device/lib/sincosf.c,
4622         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4623         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4624           a completely reentrant lib.
4625
4626 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4627
4628         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4629         * device/include/pic16/stdio.h: fixed bug with colon
4630
4631 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4632
4633         * device/include/pic16/stdio.h,
4634         * device/include/pic16/stdlib.h,
4635         * device/include/pic16/math.h: NEW
4636         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4637         declared as _naked to reduce overhead
4638         * device/lib/Makefile.in (target port-specific-objects-pic16):
4639         changed * to *.* so to ignore the CVS directory,
4640         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4641         stacked variables back in stack,
4642         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4643         corruption
4644
4645 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4646
4647         * .version: bumped version number to 2.4.5
4648         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4649         * support/Util/SDCCerr.c (messages structure): added entry for
4650         W_POSSBUG2
4651
4652         Large cumulative patch for pic16 port and libraries.
4653         * device/include/pic16/sdcc-lib.h,
4654         * device/include/pic16/stdarg.h,
4655         * device/include/asm/pic16/features.h,
4656         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4657         * device/include/pic16/float.h: changes reentrant keyword with
4658         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4659         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4660         updated target build-libraries to include objects from gptr,
4661         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4662         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4663         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4664         all function headings,
4665         * src/SDCCmain.c: added global parameter userIncDirsSet,
4666         * (parseCmdLine): when option -I is encountered add directory to
4667         userIncDirsSet too,
4668         * src/version.awk: added space between control and long,
4669         * src/pic16/NOTES: added some notes for the port,
4670         * src/pic16/gen.c: added prototype for mov2fp function,
4671         * (fReturnpic16[]): properly named return value registers,
4672         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4673         * (aopForSym): added code to handle symbols with onStack flag set,
4674         symbols onStack are allocated PTRSIZE bytes,
4675         * (aopFreeAsmop): handles special case where asmops are stack objects,
4676         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4677         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4678         added argument lock to trace flaws in allocating temporary registers
4679         when developing port,
4680         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4681         * (pic16_popRegFromString): reenabled allocating a direct register
4682         from string,
4683         * (assignResultValue): various beautifications,
4684         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4685         referenced function argument,
4686         * (genIpush): reenabled to allow stacked arguments, handles only
4687         ic->parmPush iCodes,
4688         * (genCall, genPcall): major changes to allow for variable argument
4689         functions, fixed a bug with falsely restoring stack pointer after
4690         returning from call,
4691         * (genFunction): pending code for critical function,
4692         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4693         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4694         * (genNearPointerGet): fixed bug with indirect reading, was always
4695         reading from INDF0
4696         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4697         pointers,
4698         * (genAddrOf): rewrote code to take address of a stacked function parameter
4699         * (genCast): fixed casting to generic pointer type,
4700         * src/pic16/gen.h: added AOP_STA,
4701         * (struct asmop): added field stk,
4702         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4703         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4704         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4705         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4706         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4707         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4708         generic pointers,
4709         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4710         and library paths,
4711         * (pic16_port structure): generic pointer size is set to 3,
4712         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4713         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4714         compiler warning,
4715         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4716         operand is an iTemp,
4717
4718 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4719
4720         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4721         * debugger/mcs51/simi.c: addapt new syntax of s51
4722
4723 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4724
4725         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4726         * src/pic16/pcode.c: commented out some calls to free() in order to
4727         fix bug #989576,
4728
4729 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4730
4731         * src/SDCCicode.h,
4732         * src/SDCCicode.c (isiCodeInFunctionCall),
4733         * src/avr/ralloc.c (selectSpil),
4734         * src/pic/ralloc.c (selectSpil),
4735         * src/pic16/ralloc.c (selectSpil),
4736         * src/ds390/ralloc.c (selectSpil),
4737         * src/hc08/ralloc.c (selectSpil),
4738         * src/xa51/ralloc.c (selectSpil),
4739         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4740         stack in the middle of a function call sequence (fixes bug #1020268)
4741         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4742         costs associated with the minimum switch case.
4743
4744 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4745
4746         * src/SDCC.lex: fixed bug #1030549
4747
4748 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4749
4750         * src/SDCCcse.h (struct cseDef),
4751         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4752         over a function call if the CSE is derived from a symbol whose
4753         address has been taken (fixes bug #1029883)
4754         * support/regression/tests/bug-1029883: a new regression test for
4755         this bug
4756
4757 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4758
4759         * src/hc08/gen.c (emitinline): fixed bug #1029778
4760         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4761         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4762         and starts toward RFE #905167)
4763
4764 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4765
4766         * src/pic16/gen.c (mov2f): New function to move an operand to
4767         another without considering if it is a literal or a register,
4768         * (pic16_sameRegs): don't check if they are both AOP_REG,
4769         * (AccRsh): removed andmask=0 lines,
4770         * (genLeftShift): duplicated to be improved in future versions,
4771         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4772         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4773         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4774         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4775         * (insertBankSwitch): fixed inserting banksel directives algorithm
4776         for instructions that follow a skip instruction, this fixes a report
4777         for broken subtraction code generation,
4778         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4779         iCode is a left op, just in case result and right share the same
4780         registers
4781
4782 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4783
4784         * src/hc08/main.c,
4785         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4786         preservation of HX
4787         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4788         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4789         on 2004-09-12; it was buggy
4790
4791 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4792
4793         * src/SDCCsymt.h: removed RESULT_CHECK
4794         * src/SDCCast.c,
4795         * src/SDCCglue.c,
4796         * src/SDCCval.c,
4797         * src/pic/glue.c,
4798         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4799
4800 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4801
4802         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4803         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4804         configuration values no more rejected by compiler, they are assigned
4805         to configuration registers with a warning message instead,
4806         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4807         the for-loop so last conf register is emitted too,
4808         * (_pic16_initPaths): link library libsdcc.lib by default,
4809         * (_hasNativeMulFor): modified test for multiplication according to
4810         Raphael Neider's remarks. Integer multiplication is also done with
4811         support functions,
4812         * device/include/pic16/pic18fregs.h: corrected type error in while
4813         testing and including 18f6720 header file
4814
4815 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4816
4817         * src/pic16/device.h (pic16_options): removed field use_crt,
4818         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4819         until an optimization to handle single bits is added,
4820         * (pic16_loadFSR0): moved before genUnpackBits,
4821         * (genAnd): some white lines removed,
4822         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4823         leave_reset flags in pic16_options when using crt modules,
4824
4825 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4826
4827         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4828           for bugs 898889 & 979599. Also used some safer print instructions.
4829
4830 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4831
4832         * src/pic16/device.h (pic16_options_t): added field use_crt,
4833         crt_name, no_crt,
4834         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4835         catch a probable future bug,
4836         * src/pic16/gen.c: aopIdx function commented out,
4837         * (genAssign): commented out old code which used aopIdx,
4838         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4839         code, added if conditionals to take into account the --use-crt
4840         command line options,
4841         * src/pic16/main.c (pic16_optionsTable): added new command line
4842         options, --use-crt= and --no-crt,
4843         * (_pic16_linkEdit): now the proper crt object is added in the
4844         linker command line except than when --no-crt is specified,
4845         * src/pic16/pcode.c,
4846         * src/pic16/pcode.h: added some structures and functions for a new
4847         optimization scheme to compansate for instruction overhead between
4848         same iCodes, this scheme is currently under development and is not
4849         working in any way,
4850         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4851         to && operator,
4852         * device/lib/pic16/startup/crt0i.c,
4853         * device/lib/pic16/startup/crt0iz.c: added global char variable
4854         __uflags to force the generation of an idata section
4855
4856 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4857
4858         * doc/Makefile,
4859         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4860         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4861
4862 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4863
4864         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4865         Frieder) and clarified the default code optimization mode
4866
4867 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4868
4869         * src/SDCC.lex (doPragma, process_pragma),
4870         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4871         "opt_code_size", and "opt_code_balanced"
4872         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4873         regrouped options by category, added support for category headers
4874         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4875         and "--opt-code-size"
4876         * doc/sdccman.lyx: documented these new options and pragmas
4877         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4878         preference into account
4879
4880 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4881
4882         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4883           geniCodePreDec): Fixed bug 904237 by generating a warning
4884         * src/SDCCerr.h,
4885         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4886
4887 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4888
4889         * src/pic/device.c : When no max ram set validate full memory range.
4890         * src/pic/pcode.c,
4891         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4892
4893 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4894
4895         * device/lib/_gptrget.c,
4896         * device/lib/_gptrput.c: updated comment
4897         * device/lib/calloc.c,
4898         * device/lib/free.c,
4899         * device/lib/malloc.c,
4900         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4901         * src/SDCCcse.c (cseBBlock),
4902         * src/SDCCicode.c (printOperand, geniCodeArray),
4903         * src/SDCCicode.h (struct operand): fixed bug 868103
4904         * support/regression/tests/bug-868103.c: added
4905         * src/SDCCast.c (searchLitOp),
4906         * src/SDCCcse.h (struct cseDef),
4907         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4908         * src/SDCCicode.h (struct operand),
4909         * src/SDCCsymt.h (struct sym_link),
4910         * src/avr/gen.c (hasInc),
4911         * src/ds390/gen.c (hasInc),
4912         * src/hc08/gen.c (genPlusIncr, hasInc),
4913         * src/mcs51/gen.c (hasInc),
4914         * src/pic16/glue.c (pic16_printIvalChar),
4915         * src/pic16/ralloc.c (regWithIdx),
4916         * src/xa51/gen.c (hasInc) : removed warnings
4917         * src/SDCCast.c (createBlock): added comment ???
4918         * src/hc08/ralloc.c: updated comments
4919
4920 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4921
4922         * doc/sdccman.lyx: updated section on switch statements, added
4923         section about semaphore locking
4924         * doc/Makefile: added option -info for latex2html
4925         * device/lib/_gptrget.c,
4926         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4927
4928 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4929
4930         * src/pic/device.h,
4931         * src/pic/device.c,
4932         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4933          maxram is less than 0x100.
4934
4935 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4936
4937         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4938
4939 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4940
4941         * src/port.h,
4942         * src/mcs51/main.c,
4943         * src/ds390/main.c,
4944         * src/z80/main.c,
4945         * src/hc08/main.c,
4946         * src/pic/main.c,
4947         * src/pic16/main.c,
4948         * src/avr/main.c,
4949         * src/xa51/main.c
4950         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4951         a jump table is the best form for a switch statement, including
4952         automatic insertion of missing cases to make the case range
4953         continuous. Developed in collaboration with Frieder Ferlemann.
4954
4955 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4956
4957         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4958         accumulator result if it needs sign extension
4959
4960 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4961
4962         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4963
4964 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4965
4966         * device/lib/gbz80/printf.c,
4967         * device/lib/z80/printf.c: removed define for NULL
4968
4969 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4970
4971         * as/xa51/xa_link.c,
4972         * device/examples/ds390/ow390/ad26.c,
4973         * device/examples/ds390/ow390/cnt1d.c,
4974         * device/examples/ds390/ow390/counter.c,
4975         * device/examples/ds390/ow390/ds2480.h,
4976         * device/examples/ds390/ow390/ds2480ut.c,
4977         * device/examples/ds390/ow390/findtype.c,
4978         * device/examples/ds390/ow390/gethumd.c,
4979         * device/examples/ds390/ow390/owllu.c,
4980         * device/examples/ds390/ow390/ownetu.c,
4981         * device/examples/ds390/ow390/swt12.c,
4982         * device/examples/ds390/ow390/swtloop.c,
4983         * device/examples/ds390/ow390/temp.c,
4984         * device/examples/ds390/ow390/temp10.c,
4985         * device/examples/ds390/ow390/thermo21.c,
4986         * device/examples/ds390/ow390/tinilnk.c,
4987         * device/examples/ds390/ow390/tstfind.c,
4988         * device/examples/serialcomm/windows/serial.cpp,
4989         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4990         * device/include/reg51.h: fixed line endings for cvs
4991
4992 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4993
4994         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4995         packRegsForAccUse, packRegisters): new accumulator register
4996         packing algorithm
4997         * support/regression/ports/hc08/support.c (_putchar): suppress
4998         warning of unused variable
4999         * src/SDCCicode.c: added SWAP entry to codeTable
5000
5001 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5002
5003         * device/lib/sprintf.c: forgot to add this file before previous commit
5004
5005 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5006
5007         * src/pic16/gen.c (genPackBits): added operand right in function
5008         parameters, load result directly if p_type is POINTER (that is
5009         called by genNearPointerSet)
5010         * (genUnPackBits): added operand left in function parameters,
5011         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5012         FSR0 if accessing bitfields,
5013
5014 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5015
5016         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5017           _print_format; updated printf, sprintf, vsprintf
5018         * device/include/asm/default/features.h: corrected comment/define
5019         * device/lib/Makefile.in: added sprintf.c
5020         * device/lib/libsdcc.lib: added sprintf module
5021         * device/lib/printf_large.c,
5022         * device/lib/vprintf.c,
5023         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5024           into these 3 files
5025         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5026         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5027         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5028           hc08 test
5029         * support/regression/tests/zeropad.c: define idata as data for hc08
5030
5031 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5032
5033         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5034         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5035         labels are referenced at least once (even if a reference is not found)
5036         * src/hc08/gen.c (emitcode): set isComment flag for comments
5037         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5038         loads), rules 6a..6b (optimize jumps to return)
5039
5040 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5041
5042         * device/lib/acosf.c (acosf),
5043         * device/lib/asinf.c (asinf),
5044         * device/lib/atanf.c (atanf),
5045         * device/lib/ceilf.c (ceilf),
5046         * device/lib/cosf.c (cosf),
5047         * device/lib/coshf.c (coshf),
5048         * device/lib/cotf.c (cotf),
5049         * device/lib/fabsf.c (fabsf),
5050         * device/lib/floorf.c (floorf),
5051         * device/lib/log10f.c (log10f),
5052         * device/lib/logf.c (logf),
5053         * device/lib/sinf.c (sinf),
5054         * device/lib/sinhf.c (sinhf),
5055         * device/lib/sqrtf.c (sqrtf),
5056         * device/lib/tanf.c (tanf),
5057         * device/lib/tanhf.c (tanhf),
5058         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5059         replaced all instances of "reentrant" in the library functions
5060         defined in math.h with this macro.
5061         * support/regression/tests/float_trans.c: reenabled test for hc08
5062
5063 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5064
5065         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5066         erroneously deleted
5067
5068 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5069
5070         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5071         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5072         multi-byte volatile operands are used
5073         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5074         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5075         initialization to area GSINIT0 so that it would always precede
5076         any static initializers in GSINIT
5077         * support/regression/tests/zeropad.c: fixed idata define for hc08
5078         * support/regression/tests/bug-927659.c,
5079         * support/regression/tests/float_trans.c: disabled tests for hc08
5080         pending missing library routines
5081         * .version: increased version number to 2.4.4 - hc08 port now passes
5082         regression tests
5083
5084
5085 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5086
5087         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5088         * Makefile.common.in,
5089         * as/Makefile,
5090         * as/hc08/Makefile.in,
5091         * as/mcs51/Makefile.in,
5092         * as/z80/Makefile.in,
5093         * debugger/mcs51/Makefile.in,
5094         * device/include/Makefile.in,
5095         * device/lib/Makefile.in,
5096         * doc/Makefile,
5097         * link/Makefile,
5098         * link/z80/Makefile.in,
5099         * packihx/Makefile.in,
5100         * sim/ucsim/main_in.mk,
5101         * sim/ucsim/avr.src/Makefile.in,
5102         * sim/ucsim/doc/Makefile.in,
5103         * sim/ucsim/gui.src/serio.src/Makefile.in,
5104         * sim/ucsim/hc08.src/Makefile.in,
5105         * sim/ucsim/s51.src/Makefile.in,
5106         * sim/ucsim/xa.src/Makefile.in,
5107         * sim/ucsim/z80.src/Makefile.in,
5108         * src/Makefile.in,
5109         * support/cpp2/Makefile.in,
5110         * support/librarian/Makefile,
5111         * support/makebin/Makefile: added DESTDIR to the install path proposed
5112         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5113         * doc/sdccman.lyx: added DESTDIR documentation
5114
5115 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5116
5117         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5118         instruction for interrupt handlers, use fast returns when returning
5119         from high priority interrupts
5120
5121 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5122
5123         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5124         code generation
5125         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5126         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5127         bugs, ported much of Bernhard's code from mcs51
5128         * src/mcs51/gen.c (genSend),
5129         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5130         than one when calling a reentrant function
5131         * device/lib/_mullong.c: defined an alternate struct layout for big
5132         endian ports (hc08)
5133
5134 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5135
5136         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5137         test
5138
5139 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5140
5141         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5142         are sane and complete before asking the port its prefered parameter
5143         passing method (fixes bug #1017633)
5144         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5145         and _ret3
5146
5147 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5148
5149         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5150         problem in bitfields >= 8 bits.
5151
5152 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5153
5154         * src/SDCCsymt.c: undid changes that were not meant to be committed
5155
5156 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5157
5158         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5159
5160 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5161
5162         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5163           copied and wrong bit got inverted
5164
5165 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5166
5167         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5168         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5169         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5170         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5171         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5172         assignments to bitfields at known addresses
5173         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5174         reads from bitfields at known addresses
5175         * src/hc08/ralloc.c (packRegisters),
5176         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5177         genhc08Code): optimize pointer get values used as conditionals
5178         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5179         and branch
5180
5181 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5182
5183         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5184         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5185         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5186         as conditionals
5187
5188 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5189
5190         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5191
5192 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5193
5194         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5195         related problems
5196
5197 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5198
5199         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5200
5201 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5202
5203         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5204         mcs51 port
5205
5206 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5207
5208         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5209
5210 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5211
5212         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5213         cases use more compact code.
5214
5215 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5216
5217         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5218
5219 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5220
5221         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5222
5223 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5224
5225         * src/SDCCsymt.h,
5226         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5227         parameter of changePointer() from symbol* to sym_link*
5228         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5229         * src/SDCCsymt.c (compareType): void* type is castable to other
5230         pointers, but not necesarily an exact match.
5231         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5232         is no longer blindly treated as an exact match.
5233         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5234
5235 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5236
5237         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5238
5239 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5240
5241         * src/pic/gen.c,
5242         * src/pic/pcode.c,
5243         * src/pic/ralloc.h,
5244         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5245
5246 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5247
5248         * src/pic/device.c,
5249         * src/pic/device.h,
5250         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5251
5252 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5253
5254         * src/mcs51/gen.c (emitcode): fixed bug #992819
5255
5256 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5257
5258         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5259           there's no need to make it worse
5260
5261 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5262
5263         * src/mcs51/ralloc.c (deassignLR),
5264         * src/ds390/ralloc.c (deassignLR),
5265         * src/hc08/ralloc.c (deassignLR),
5266         * src/z80/ralloc.c (deassignLR),
5267         * src/pic/ralloc.c (deassignLR),
5268         * src/pic16/ralloc.c (deassignLR),
5269         * src/avr/ralloc.c (deassignLR),
5270         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5271         rlivePoint): fixed another part of bug #971834
5272
5273 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5274
5275         * src/z80/main.c: enabled "critical" keyword
5276         * src/z80/mappings.i,
5277         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5278         functions (fixes bug #979646)
5279         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5280
5281 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5282
5283         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5284           such as c:\mydir.
5285
5286 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5287
5288         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5289           doesn't disable too much optimizations
5290
5291 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5292
5293         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5294
5295 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5296
5297         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5298
5299 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5300
5301         * src/pic/gen.c tidied up tabs
5302         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5303         * src/pic/main.c tidied up tabs
5304         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5305         * src/pic/pcoderegs.c tidied up tabs
5306         * src/pic/ralloc.c tidied up tabs
5307
5308 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5309
5310         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5311         to S_FIXED for pic16 port and when symbol is not in level 0,
5312         allocate for S_REGISTER storage class and pic16 port, too,
5313         * src/pic16/device.h: prototype for checkSym,
5314         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5315         * (pic16_assignConfigWordValue): test the value and the mask to
5316         validate that the value is suitable for the configuration word,
5317         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5318         collect extern declared symbols, don't emit symbol twice, check
5319         first if symbol is in publics set first,
5320         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5321         * added command line '--fstack' which enables an experimental
5322         feature for stack access, too buggy to be used yet...
5323         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5324         * (pic16_allocDirReg): when register has storage class S_REGISTER
5325         allocate in pic16_dynAccessRegs,
5326         * device/include/pic16/pic18f????.h: modified configuration word
5327         naming convention, words started as CONFIG0H but should be CONFIG1H
5328
5329 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5330
5331         * device/include/mcs51reg.h: fixed bug 970993
5332
5333 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5334
5335         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5336         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5337         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5338         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5339         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5340         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5341           error/warning numbers,
5342           added function setWarningDisabled()
5343         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5344         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5345           _memcmp.c _memmove.c calloc.c realloc.c free.c
5346         * support/regression/tests/malloc.c: added tests for new functionality
5347         * support/regression/tests/zeropad.c: added tests for truncated initializers
5348           and initialized char arrays starting with '\x0'
5349         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5350
5351 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5352
5353         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5354
5355 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5356
5357         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5358         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5359         peephole 177.e. Thanks to anonymous
5360
5361 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5362
5363         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5364         function isn't used in the source but referenced as a
5365         variable initializer then declare it as extern in .asm file
5366
5367 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5368
5369         * .version: increased version number to 2.4.3
5370
5371         Adding version extension according to ChangeLog CVS revision
5372         * src/Makefile.in (target all): added dependency 'version.h'
5373         * (rule version.h): added rule to create version.h from ChangeLog,
5374         * (rule dep): added dependency version.h,
5375         * src/version.awk: AWK script to create version.h
5376         * src/SDCCdwarf2.c (dwWriteModule),
5377         * src/SDCCglue.c (initialComments),
5378         * src/SDCCmain.c (printVersionInfo): modified to write after
5379         version string the version extension number,
5380         * src/SDCCutil.c: included "version.h"
5381         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5382         number,
5383         * src/SDCCutil.h: added prototype for getBuildNumber
5384
5385         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5386         includeDirsSet, too,
5387         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5388         const char [] is found in function prototype...
5389
5390         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5391         moving to WREG with source is already in WREG,
5392         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5393         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5394         * (aopForSym): stack'ed symbols are partially supported, added
5395         if-clause to support symbols in FARSPACE,
5396         * (sameRegs): added test for AOP_ACC to see if registers are same,
5397         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5398         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5399         * (pic16_popRegFromString): will not allocate a new register if it
5400         doesn't find one by name, bug may have introduced...
5401         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5402         * (genIpush): revived to use pic16 port's stack,
5403         * (genAddrOf): added incomplete case for stack'ed operand,
5404         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5405         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5406         can handle multibyte operands,
5407         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5408         * (pic16initialComments): added message for MPLAB compatibility
5409         mode enabled,
5410         * src/pic16/main.h: prototype for pic16_mplab_comp,
5411         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5412         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5413         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5414         because of increased complexity of procedure,
5415         * (_process_pragma): stack pragma changed to format 'stack pos len',
5416         emit symbol '_stack_end' to conform with gplink,
5417         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5418         to search for register,
5419         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5420         PO_GPR_REGISTER,
5421         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5422         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5423         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5424         case for PO_GPR_REGISTER,
5425         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5426         dies, the new era is ahead !...
5427         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5428         pic16_dynInternalRegs,
5429         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5430         * (pic16_allocDirReg): minor optimizations and bug fixes,
5431         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5432
5433         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5434         load stack and frame pointer with address of 'stack_end' symbol
5435
5436 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5437
5438         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5439         without source code but only variable initializers
5440
5441 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5442
5443         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5444         external are not declared as extern to reduce overhead while linking
5445
5446 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5447
5448         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5449
5450 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5451
5452         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5453           Yee Keat for the patch
5454         * src/SDCCast.c (decorateType): fixed bug #979599
5455         * src/ds390/gen.h: removed local fReturnSizeDS390
5456         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5457         * src/ds390/gen.c (genAnd, genOr, genXor),
5458         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5459
5460 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5461
5462         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5463         add relFilesSet to $3, manipulate $2 to handle linking of object
5464         files without source files in command line,
5465         * device/include/pic16 (all headers): added ID location macros,
5466         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5467         entries for ID location bytes,
5468         * (pic16_assignIdByteValue): NEW,
5469         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5470         added field dumpcalltree to pic16_options_t,
5471         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5472         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5473         emitting rFalseIfx label after check_carry label,
5474         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5475         pic16_emitDIRegs), NEW
5476         * (pic16glue): dump .calltree file when option --calltree found,
5477         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5478         * (_pic16_genAssemblerPreamble): emit ID locations after
5479         configuration registers,
5480         * (pic16_linkCmd): modifications of the link command,
5481         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5482         * (pic16_pCodeInitRegisters): don't init stack registers,
5483         * (pic16_findPrevInstruction): fixed bug,
5484         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5485         bug with immediate registers,
5486         * (buildCallTree): traces stack push and pop,
5487         * (pct2): dump also stack usage for each function,
5488         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5489         * (pic16_allocDirReg): various modifications,
5490         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5491         fixed to 1,
5492
5493 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5494
5495         * src/pic16/pcode.c: removed buggy double colon
5496
5497 2004-07-01 Borut Razem <borut.razem AT siol.net>
5498
5499         * support/scripts/sdcc.nsi: added include/pic16 to setup
5500
5501 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5502
5503         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5504         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5505         target 'clean',
5506         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5507         specific command line arguments. Also added sample lkr script
5508         for placing a variable at a specific memory bank.
5509         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5510         at a specific memory bank,
5511         * (pic16_dump_isection): fixed bug which caused string literals to
5512         be omitted when dumping idata section,
5513         * (pic16_groupRegistersInSection): added code to handle registers
5514         in specific memory banks,
5515         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5516         public, all references are renamed too,
5517         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5518         AOP_DPTR2,
5519         * (pic16_storeForReturn): added case to handle when dest is WREG,
5520         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5521         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5522         pic16_rel_udata, check to see if that register is marked as being
5523         a member of a specific memory bank,
5524         * (pic16_printIvalCharPtr): added code to add string literals either
5525         to code or the idata sections,
5526         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5527         also accept the 'udata' pragma,
5528         * src/pic16/main.h: new structure types sectName and sectSym
5529         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5530         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5531         * (pic16_findPrevInstruction): fixed, it returned nothing,
5532         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5533         instruction combinations,
5534         * (pic16_FixRegisterBanking): heavily reorganised,
5535         * (pic16_AnalyzeBanking): if generating banksel directives is
5536         disabled, then don't call FixRegisterBanking at all,
5537         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5538         completely removed,
5539         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5540
5541 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5542
5543         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5544         Phuah Yee Keat <yk.phuah AT nestac.com>
5545
5546 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5547
5548         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5549         correctly the IVT even if it is relocated to some other location
5550
5551 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5552
5553         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5554         * device/include/pic16/pic18f2220.h: NEW,
5555         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5556         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5557         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5558         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5559         nodefaultlibs, ivt_loc is the location of the interrupt vector
5560         table, and nodefaultlibs signs that default libraries should not be
5561         linked in link stage,
5562         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5563         according to --ivt-loc argument,
5564         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5565         when pragma stack is found,
5566
5567 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5568
5569         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5570         256 (range check), 257 (do while), 258.a-f (bit banging
5571         f.e. on 3-wire SPI bus)
5572
5573 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5574
5575         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5576         variables used exclusively within a loop
5577
5578 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5579
5580         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5581
5582 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5583
5584         * src/SDCClrange.c (computeClash): fixed bug #971834
5585
5586 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5587
5588         * src/mcs51/gen.c (genCmp): fixed bug #975903
5589         * src/hc08/gen.c (operandsEqu),
5590         * src/ds390/gen.c (operandsEqu),
5591         * src/z80/gen.c (operandsEqu),
5592         * src/pic/gen.c (operandsEqu),
5593         * src/pic16/gen.c (operandsEqu),
5594         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5595         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5596
5597 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5598
5599         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5600
5601 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5602
5603         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5604         default case in switch statement,
5605         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5606         to eliminate problem with initialisation of pointers, but problem
5607         still exists,
5608         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5609         * (emitStaticSegment): removed various lines emitting debug info,
5610         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5611         added processor registers for utilizing EEPROM,
5612         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5613         configurable and set 8
5614
5615 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5616
5617         * .version: increased version number to 2.4.2,
5618
5619         Cumulative patch for pic16 port
5620         * src/pic16/device.c: changed scheme to dump initial values for
5621         variables in idata segment, all print_idata* functions were removed,
5622         now the pic16_printIval* will be called,
5623         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5624         * _pic16_printPointerType, pic16_printPointerType,
5625         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5626         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5627         NEW, similar to the respective functions in SDCCglue.c,
5628         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5629         way, emitting hex bytes,
5630         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5631
5632 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5633
5634         * src/avr/ralloc.c (serialRegAssign),
5635         * src/xa51/ralloc.c (serialRegAssign),
5636         * src/pic/ralloc.c (serialRegAssign),
5637         * src/pic16/ralloc.c (serialRegAssign),
5638         * src/hc08/ralloc.c (serialRegAssign),
5639         * src/z80/ralloc.c (serialRegAssign),
5640         * src/ds390/ralloc.c (serialRegAssign),
5641         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5642
5643 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5644
5645         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5646         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5647
5648 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5649
5650         Cumulative patch for pic16 port:
5651         * src/pic16/device.h (typedef PIC16_device) modified fields for
5652         defining microcontrollers,
5653         * src/pic16/device.c: added new info for all devices in Pics16 array,
5654         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5655         to be optimised out by the pCode optimiser,
5656         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5657         specially, bug reported by G.M. Gallant,
5658         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5659         as force'd so that cannot be optimised out by pCode optimiser,
5660         * src/pic16/pcode.c,
5661         * src/pic16/pcodepeeph.c,
5662         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5663         they are disabled by default, but can be enabled explicit with
5664         command argument --denable-peeps, for testing,
5665         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5666         --pomit-ivt in COMPILE_FLAGS
5667
5668 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5669
5670         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5671           compilation on MSVC
5672
5673 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5674
5675         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5676
5677 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5678
5679         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5680         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5681
5682 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5683
5684         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5685         would only assign 0x300001 register.
5686
5687 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5688
5689         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5690         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5691
5692 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5693
5694         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5695         for ds80c400
5696         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5697         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5698         added peephole 254 (left shift), 255 (jump table)
5699
5700 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5701
5702         * device/lib/Makefile.in: removed comment line with model-pic16,
5703         * (target port-specific-objects-pic16): the libraries and objects
5704         are copied to the build directory form the device/lib/pic16/bin
5705         directory
5706
5707         Cumulative patch concerning pic16 port:
5708         * library directory has been re-organized,
5709         * added support for PIC18F1220,
5710         * added headers and library sources for chips 18f1220,18f6520,
5711         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5712
5713         * configuration registers setting has changed, now each supported
5714         device has a complete description of the registers it uses,
5715         * all initialisations are moved to idata sections, these section
5716         can be absolute or relocatable,
5717         * fixed initialisation of codespace variables,
5718         * fixed warning about PCLATU and gpsim,
5719         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5720         * (genAssign): use table reads when assigning from variables in codespace,
5721         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5722         char/int variables placed in codespace,
5723         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5724         registers set in .asm file, no need for --pomit-config-words anymore,
5725         * (pic16glue): some 8051 legacy segments are commented out
5726         (to be removed completely),
5727         * added support for alternative assembler and linker with --asm=
5728         and --link= command line arguments,
5729         * peepholes are disabled automatically in the port, no need to
5730         specify on command line,
5731         * port supports natively char/int/long multiplication, but converts
5732         all divisions to support functions,
5733         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5734         to the file set in variable $2,
5735         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5736         strings in ASCII format and not in hex,
5737         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5738         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5739         allocate proper register if iCodes aren't temporary,
5740
5741 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5742
5743         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5744
5745 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5746
5747         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5748         is commented out
5749
5750 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5751
5752         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5753         computed address is reused
5754         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5755         multi-byte bitfields
5756
5757 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5758
5759         * src/z80/gen.c: (genArrayInit): must check for pointers too
5760
5761 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5762
5763         * support/regression/tests/zeropad.c: never meant to commit the
5764           nestedstruct test: removed, added check for GCC version
5765
5766 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5767
5768         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5769         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5770         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5771           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5772           bugs 928906 and 954082 half-empty initializers
5773         * src/SDCCsymt.h,
5774         * src/SDCCsymt.c (getAllocSize): added for above fix
5775         * src/z80/gen.c (genArrayInit): fixed bug 741044
5776         * support/regression/tests/zeropad.c: added tests
5777
5778 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5779
5780         * src/pic16/device.c (pic16_dump_section): corrected bug which
5781         caused some symbols of the libraries to be misplaced
5782
5783 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5784
5785         * src/pic16/glue.c,
5786         * src/pic16/ralloc.h,
5787         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5788         to fix conflict with pic port
5789
5790 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5791
5792         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5793         externs configuration variables,
5794         * src/pic16/ralloc.h,
5795         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5796         prototype in header, commented out some debug messages
5797
5798 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5799
5800         * src/pic16/glue.c,
5801         * src/pic16/main.c,
5802         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5803         for gpasm COFF object generation. Thanks to D. Hawkins for
5804         his patch info
5805
5806 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5807
5808         * src/ds390/main.c,
5809         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5810         Brock for spotting this)
5811         * src/ds390/gen.c (genEndFunction),
5812         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5813         interrupt handler and critical. Disable push/pop optimizations when
5814         peephole optimizations disabled.
5815
5816 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5817
5818         Updated pic16 library sources and headers.
5819         * device/lib/pic16/pic18f*/ ,
5820         * device/include/pic16/*.h: modified to handle structured SFR
5821         definitions
5822
5823 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5824
5825         * src/port.h (PORT structure): added hook initPaths, now each
5826         port can declare its own default search paths,
5827         which can been seen with the --print-search-dirs option,
5828         see pic16 port for example,
5829         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5830         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5831         * (doPrintSearchDirs): NEW, replaces in a central manner the
5832         printing of search dirs which was split in set*Paths functions,
5833         * (main): added call to port->initPaths and doPrintSearchDirs,
5834         * src/avr/main.c,
5835         * src/ds390/main.c,
5836         * src/hc08/main.c,
5837         * src/izt/i186.c,
5838         * src/izt/tlcs900h.c,
5839         * src/mcs51/main.c,
5840         * src/pic/main.c,
5841         * src/pic16/main.c: modified port structures to reflect addition of
5842         initPaths hook,
5843
5844         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5845         * (pic16_dump_section): for registers in same address reserve memory once,
5846         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5847         to no_banksel,
5848         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5849         result is greater in size than right or left,
5850         * (pic16_genUMult8X8_8): there are some cases where the result can
5851         be 16 bits size, so handle these,
5852         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5853         * (pic16_outBitC): modified to emit pcodes,
5854         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5855         or not,
5856         * (genDivOneByte): implemented algorithm to divide 8-bits,
5857         * (genCmp): uncommented goto, but issues still exist,
5858         * (genAnd): fixed a bug with variables >8bits,
5859         * (genPackBits): optimization added that uses BCF/BSF to change a
5860         single bit,
5861         * (genAssign): fixed bug when assigning floating point literals,
5862         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5863         __sdcc_gsinit_startup label,
5864         * src/pic16/main.c (_pic16_init): removed search directory
5865         initialisations,
5866         * (_pic16_initPaths): NEW, used to initialise search directories,
5867         * (_hasNativeMulFor): support functions for all except char/int
5868         multiplication, and char division,
5869         * (PIC16_port struct): modified entry for native mul support,
5870         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5871         no_banksel option,
5872         * (buildCallTree): call to register_usage is ifdef'ed out,
5873
5874 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5875
5876         * device/include/string.h: applied Stas Sergeev's patch to make this
5877         header file compatible with the preprocessor -Wundef option
5878         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5879         failure (fixes bug #941458)
5880
5881 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5882
5883         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5884         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5885         that the variable, not the function, should be static
5886         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5887         to be consistent with non-literal case
5888
5889 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5890
5891         * src/SDCCast.c (isConformingBody): fixed bug #949967
5892         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5893         convilong): fixed bug #952086
5894
5895 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5896
5897         * src/SDCCmem.c (allocVariables): fixed bug #955321
5898
5899 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5900
5901         * src/hc08/main.c (_hc08_genAssemblerEnd),
5902         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5903         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5904         completely eliminated the use of a temporary file
5905         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5906         when more than one file linked
5907         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5908
5909 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5910
5911         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5912         which fixes bug #543481
5913         * support/regression/tests/bug-751703.c: fixed comments left from a
5914         cut and paste error
5915         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5916         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5917         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5918         scopes
5919         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5920         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5921         are now changed to underscores in moduleName
5922
5923 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5924
5925         * as/mcs51/lkmem.c: better fix for bug #954173
5926
5927 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5928         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5929
5930         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5931         * device/include/c8051f000.h,
5932         * device/include/c8051f120.h,
5933         * device/include/c8051f300.h,
5934         * device/include/c8051f310.h,
5935         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5936         PWM16) and detab'ed
5937
5938 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5939
5940         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5941         and mailing lists, doc'ed --no-peep-comments, removed reference
5942         to knoppix (newest version has no LyX/LaTeX), other minor changes
5943         * src/SDCCglue.c (glue): save 2 bytes stack space with
5944         option --main-return. The ljmp could probably be avoided too
5945
5946 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5947
5948         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5949
5950 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5951
5952         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5953         * src/SDCCopt.c (isLocalWithoutDef),
5954         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5955         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5956         (credit to Maarten Brock for patch #949363, on which this is based)
5957         * support/regression/tests/bug-751703.c: some test cases of extern used
5958         within inner scopes.
5959
5960 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5961
5962         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5963         SPEC_STRUCT
5964         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5965         struct definitions
5966         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5967         dwWriteLabel): fix to create valid debugger symbols even when
5968         the module name has non-alphanumeric symbols in it
5969         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5970         when a variable's allocation has been optimized away
5971
5972
5973 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5974
5975         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5976         * src/hc08/main.c,
5977         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5978         * src/mcs51/main.c,
5979         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5980         * src/ds390/main.c,
5981         * src/z80/gen.c (z80_emitDebuggerSymbol),
5982         * src/z80/main.c,
5983         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5984         * src/pic/main.c,
5985         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5986         * src/pic16/main.c,
5987         * src/avr/gen.c (avr_emitDebuggerSymbol),
5988         * src/avr/main.c,
5989         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5990         * src/xa51/main.c,
5991         * src/SDCCdebug.c (emitDebuggerSymbol),
5992         * src/SDCCdebug.h,
5993         * src/port.h: added a debugger struct to the port struct. Added a
5994         callback for defining debugger symbols
5995
5996         * src/SDCCast.c (createLabel),
5997         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5998         with isitmp = 1
5999         * src/SDCCicode.h,
6000         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6001         iCode back to the ast for the function
6002
6003         * src/hc08/ralloc.c (hc08_assignRegisters),
6004         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6005         unneeded fields from the regs struct.
6006         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6007         pushReg() & pullReg() functions instead of emitcode()
6008
6009         * src/hc08/gen.c (genLabel, genhc08Code),
6010         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6011
6012         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6013         debugger hooks
6014
6015         * src/hc08/gen.c (genEndFunction, genhc08Code),
6016         * src/hc08/gen.h,
6017         * src/mcs51/gen.c (genEndFunction, gen51Code),
6018         * src/mcs51/gen.h,
6019         * src/ds390/gen.c (genEndFunction, gen390Code),
6020         * src/ds390/gen.h,
6021         * src/z80/gen.c (genEndFunction, genZ80Code),
6022         * src/z80/gen.h,
6023         * src/z80/z80.h,
6024         * src/pic/gen.c (genEndFunction, genpic14Code),
6025         * src/pic/gen.h,
6026         * src/pic16/gen.c (genEndFunction, genpic16Code),
6027         * src/pic16/gen.h,
6028         * src/avr/gen.c (genEndFunction, genAVRCode),
6029         * src/avr/gen.h,
6030         * src/xa51/gen.c (genEndFunction, genXA51Code),
6031         * src/xa51/gen.h,
6032         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6033         specific code to cdbFile.c and out of the backend code generators
6034
6035         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6036         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6037         starting address is now 0
6038
6039         * as/hc08/asm.h,
6040         * as/hc08/m08pst.c,
6041         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6042         assembler directive for DWARF support
6043         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6044
6045         * src/src.dsp,
6046         * src/Makefile.in,
6047         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6048
6049 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6050
6051         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6052         and inappropriate peephole optimization in jump tables
6053
6054 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6055
6056         * as/hc08/m08pst.c,
6057         * src/SDCCglue.c: sdccopt works for the hc08 port now
6058
6059 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6060
6061         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6062
6063 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6064
6065         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6066
6067 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6068
6069         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6070         rules
6071         * src/SDCCmain.c,
6072         * src/SDCCglobl.h,
6073         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6074         comments from the peephole optimizer replacement rules
6075         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6076         symbols
6077         * src/SDCCcse.c (updateSpillLocation),
6078         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6079         equivalents
6080         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6081         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6082         objects far pointers
6083
6084 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6085
6086         * src/SDCCsymt.h: a missing part of my last change
6087         * src/pic/ralloc.c (regTypeNum),
6088         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6089
6090 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6091
6092         * src/SDCCicode.h,
6093         * src/SDCCicode.c (aggrToPtrDclType),
6094         * src/SDCCptropt.h,
6095         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6096         ptrPseudoSymConvert),
6097         * src/pic/ralloc.c (regTypeNum),
6098         * src/pic16/ralloc.c (regTypeNum),
6099         * src/hc08/ralloc.c (regTypeNum),
6100         * src/ds390/ralloc.c (regTypeNum),
6101         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6102         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6103
6104 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6105
6106         * link/z80/lkmain.c (afile),
6107         * as/hc08/lkmain.c (afile),
6108         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6109         prevent a pointer problem when a filename has no directory and
6110         no extension specified.
6111
6112 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6113
6114         * link/z80/lkmain.c (afile): allow periods in directory names
6115         * link/z80/lkmain.c (afile),
6116         * as/mcs51/lkmain.c (afile),
6117         * as/hc08/lkmain.c (afile): allow linker script file to have an
6118         extension other than ".lnk"
6119         * link/z80/lklex.c (getfid),
6120         * link/z80/lkmain.c (parse),
6121         * as/mcs51/lklex.c (getfid),
6122         * as/mcs51/lkmain.c (parse),
6123         * as/hc08/lklex.c (getfid),
6124         * as/hc08/lkmain.c (parse): Support comments in the linker script
6125         file on lines by themselves and after filenames
6126
6127 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6128
6129         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6130
6131 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6132
6133         * src/z80/peeph-z80.def: removed some peephole rules that don't
6134         work with multibyte arithmetic (fixed bug #937126)
6135         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6136         to registers and not global variables
6137         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6138         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6139         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6140         checking for assignments not internally generated (fixed bug #931895)
6141         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6142         structure member (fixed bug #930072)
6143
6144 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6145
6146         * src/SDCCmain.c (linkEdit),
6147         * src/hc08/main.c (_hc08_parseOptions),
6148         * as/hc08/Makefile.in,
6149         * as/hc08/aslink.h,
6150         * as/hc08/asm.h,
6151         * as/hc08/m08pst.c,
6152         * as/hc08/lkrloc.c (relr, rele),
6153         * as/hc08/lkarea.c (lnkarea)
6154         * as/hc08/lkmain.c (afile, parse),
6155         * as/hc08/lkelf.c: support for ELF output
6156         * as/hc08/lks19.c (s19),
6157         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6158
6159 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6160
6161         * as/mcs51/lkihx.c: Fixed bug #899105.
6162
6163 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6164
6165         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6166         .dsp files from Unix to DOS.
6167
6168 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6169
6170         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6171         function pointers; we have been compliant for several months now.
6172         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6173         change that was accidently commented out
6174         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6175         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6176         bug #922319
6177
6178 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/hc08/gen.c: output of all of the internal debugging information
6181         is now controlled by the D() macro; it is disabled by default
6182
6183 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6184
6185         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6186         harder to keep the same registers during a CAST iCode
6187         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6188         long via int can be done in a single cast, if the signedness is
6189         correct.
6190         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6191         putchar() in tinibios.c in ds390's library
6192
6193 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6194
6195         * src/SDCCast.c (decorateType): fixed bug #898889,
6196         cast result of a literal complement too
6197         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6198         fixed check for bitfields
6199
6200 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6201
6202         * src/SDCCicode.c (geniCodeLogic): made it static,
6203         (geniCodeLogicAndOr): added in order to fix bug #905492,
6204         (ast2iCode): fixed bug #905492
6205         * support/regression/tests/bug-905492.c: added
6206         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6207         (processParms): fixed bug #927659: don't copy parms, this will clear
6208         decorated flag
6209         * support/regression/tests/bug-927659.c: added
6210
6211 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6212
6213         * src/SDCCast.c (addCast): don't cast float to char
6214         * device/lib/libsdcc.lib: added _memmove
6215
6216 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6217
6218         * device/lib/large/Makefile: fixed parallel execution by
6219         replacing `make` by `$(MAKE)`
6220
6221 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6222
6223         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6224         offsets (fixes bug #923936)
6225
6226 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6227
6228         * device/lib/small/Makefile: fixed parallel execution by
6229         replacing `make` by `$(MAKE)`
6230
6231 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6232
6233         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6234
6235 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6236
6237         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6238         * src/regression/Makefile: Regression test was not running.
6239
6240 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6241
6242         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6243         complement if possible
6244         * src/SDCCval.c (valComplement),
6245         * src/SDCCicode.c (operandOperation): fixed complement of literal
6246         * support/regression/tests/onebyte.c (testComplement): added
6247
6248 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6249
6250         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6251         return an optimized tree; actually replace actParm with the new tree
6252         * src/SDCCast.h: added some parantheses to remove side effects
6253         * support/regression/tests/bug-920866.c
6254
6255 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6256         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6257         Bit operands were not being handled properly in the pic14 port.
6258         (now src/regression/add.c passes again).
6259
6260 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6261
6262         * src/SDCC.y (labeled_statement): case and default no longer require
6263         a following statement (RFE #893037)
6264
6265 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6268         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6269         disabled (fixes bug #916294)
6270         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6271         "mov a,acc"; patch provided by Lenny Story
6272         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6273
6274 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6275
6276         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6277         functions
6278         * src/ds390/gen.c (genFunction, genEndFunction),
6279         * src/ds390/ralloc.c (ds390_assignRegisters),
6280         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6281         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6282         pushed if there are parameters passed on the stack. Also, a cleaner
6283         way to decide if r0/r1 should be pushed/popped. (Together they fix
6284         bug #918693)
6285
6286 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6287
6288         * doc/sdccman.lyx,
6289         * device/lib/mcs51/crtpagesfr.asm,
6290         * device/lib/mcs51/crtxinit.asm,
6291         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6292         to avoid confusion with Si Lab's SFRPAGE register.
6293
6294 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6295
6296         * src/SDCCglue.c (emitMaps): allow public sfr variables
6297         * src/SDCCglue.c (initialComments): include compiler build date
6298         with compiler version and put the timestamp of the generated
6299         assembly file on a serperate line to be less confusing.
6300         * src/port.h: added genInitStartup hook
6301         * src/avr/main.c,
6302         * src/ds390/main.c,
6303         * src/hc08/main.c,
6304         * src/pic/main.c,
6305         * src/pic16/main.c,
6306         * src/xa51/main.c,
6307         * src/z80/main.c: genInitStartup initialize as NULL (default to
6308         historical behaviour)
6309         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6310         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6311         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6312         library instead of hard coding it into the compiler.
6313         * support/regression/ports/mcs51-stack-auto/spec.mk,
6314         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6315         * device/lib/mcs51/Makefile,
6316         * device/lib/small/Makefile,
6317         * device/lib/large/Makefile,
6318         * device/lib/mcs51/crtpagesfr.asm,
6319         * device/lib/mcs51/crtstart.asm,
6320         * device/lib/mcs51/crtxclear.asm,
6321         * device/lib/mcs51/crtxinit.asm,
6322         * device/lib/mcs51/crtclear.asm,
6323         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6324         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6325         and into user configurable files.
6326         * device/lib/clean.mk: clean mcs51 directory too
6327         * support/regression/tests/longlit.c: added static to T1 declaration
6328         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6329         accesses in the initialization code
6330
6331 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6334         OSCTRIMVAL as noted in bug #916008
6335
6336 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6337
6338         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6339         in loops with multiple exits (reported as incorrect registers
6340         used by Martin Helmling in Sdcc-user list)
6341
6342 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6343
6344         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6345         made ds390 register extensions look less like error messages
6346
6347 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6348
6349         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6350         reported by Adam Wozniak in Sdcc-user list
6351
6352 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6353
6354         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6355         arithmetic optimizations, added debug output
6356
6357 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6358
6359         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6360         * sdcc.spec: updated and split sdcc into 3 rpms
6361         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6362         needed for literals of LEFT_OP and '+'
6363         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6364         introduced RESULT_TYPE_NOPROM
6365         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6366         left shift
6367         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6368         limited promotion to int only for '*'
6369         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6370
6371 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6372
6373         * src/pic16/gen.c (genSkip),
6374         (genc16bit2lit), (gencjneshort): commented out
6375         (is_LitOp): new helper function, checks operand type
6376         (genCmpEq): rewritten
6377
6378 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6379
6380         * support/regression/tests/bug-908454.c: added
6381
6382 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6383
6384         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6385         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6386         (geniCodeCast): cosmetic, don't preserve bit storage class
6387         (geniCodeLeftShift): added promotion
6388         (geniCodeLogic): fixed regression
6389         * src/SDCCsymt.c (computeTypeOr): accept bits too
6390         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6391
6392 2004-03-07  Borut Razem <borut.razem AT siol.net>
6393
6394         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6395
6396 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6397
6398         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6399         version of pic16_genPackRegisters which does not check if ic is a
6400         CAST operator,
6401         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6402         function cause string1.c regression test fails
6403
6404 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6405
6406         * sim/ucsim/configure.in,
6407         * sim/ucsim/configure,
6408         * sim/ucsim/doc/Makefile.in: use docdir
6409         * src/SDCC.y: fixed sbit atrributes
6410         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6411         * src/SDCCast.c (decorateType): |^& need special promotion handling
6412         * src/SDCCast.h,
6413         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6414         * src/SDCCsymt.h (computeType),
6415         * src/SDCCicode.c: computeType() needs op
6416         * src/SDCCsymt.c (checkTypeSanity),
6417         * doc/sddman.lyx: "plain" bitfields are unsigned
6418         * src/SDCCsymt.c (computeTypeOr): added
6419         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6420         |^& ops
6421         * src/SDCCval.c (val*): computeType() needs op
6422         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6423         * support/regression/tests/onebyte.c: added tests for |^&
6424
6425 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6426
6427         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6428         for writing icode into asm output.
6429
6430 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6431
6432         * src/pic16/device.c: added some debug lines enabled
6433         with macro DEBUG_CHECK,
6434         * src/pic16/genarith.c: more debug in genPlus,
6435         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6436         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6437         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6438         * (aopForSym): onStack symbols are re-placed in data memspace,
6439         and onStack flag is cleared,
6440         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6441         copy temporary pcodeop,
6442         * (genPcall): added warning for not updating PCLATU,
6443         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6444         always true for pic16 port,
6445         * (genMultOneWord): NEW, supports integer multiplication,
6446         * (genMult): modified to call genMultOneWord,
6447         * (ifxForOp): added warning when return NULL,
6448         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6449         flag is set before call to operandFromSymbol for implicit
6450         added structures,
6451         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6452         options.intlong_rent are set by default,
6453         * (_hasNativeMulFor): modified to allow port generation of integer
6454         multiplication,
6455         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6456         set regtype to REG_SFR for all registers, restricting seting the
6457         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6458
6459 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6460
6461         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6462         more than 500 times in the regression tests
6463
6464 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6465
6466         * support/Util/SDCCerr.h,
6467         * support/Util/SDCCerr.c,
6468         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6469         enumerator_list),
6470         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6471         for symbol conflicts.
6472         * support/valdiags/tests/enum.c,
6473         * support/valdiags/tests/tentdecl.c,
6474         * support/valdiags/tests/struct.c: expect possible error messages
6475         referring to original symbol definitions.
6476         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6477         * src/SDCCsymt.h,
6478         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6479
6480 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6481
6482         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6483
6484 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6485
6486         * src/pic16/ralloc.c (newReg): fixed bug #908929
6487
6488 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6489
6490         * src/ds390/gen.c: added missing #include "main.h"
6491
6492 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6493
6494         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6495         checking if symbol is already in set,
6496         * src/pic16/device.h: prototype for checkAddSym,
6497         * src/pic16/gen.c: (_G): added entry interruptvector,
6498         * (assignResultValue): removed some commented out lines,
6499         * (genFunction): check for ISR via sym->type, absolute section for
6500         interrupt code is created via a new pBlock, the goto instruction is
6501         placed now correctly at the interrupt vector position, changed all
6502         references from ivec to _G.interruptvector,
6503         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6504         is the interrupt is a high priority one, same for return from ISR,
6505         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6506         externs to calls of checkAddSym,
6507         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6508         pic16_pcode_verbose flag is set,
6509         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6510         * src/pic16/pcoderegs.c: message about how many registers are saved
6511         will only be emitted if pic16_pcode_verbose flag is set,
6512
6513 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6514
6515         * src/ds390/ralloc.h,
6516         * src/ds390/ralloc.c (ds390_regWithIdx),
6517         * src/ds390/gen.c (emitcode),
6518         * src/ds390/main.h,
6519         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6520         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6521         ds390operandCompare, getRegsRead, getRegsWritten,
6522         initializeAsmLineNode): customized instruction size calculation for
6523         ds390, started basis for some register optimizations
6524         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6525         corresponding assembly output
6526         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6527         missing push/pop of r0/r1. Optimized push/pops
6528
6529 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6530
6531         * src/mcs51/main.c (instructionSize): fixed ACALL size
6532         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6533
6534 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6535
6536         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6537         the sorting of rlist with NULL elements
6538         * (print_idataType, print_idata): NEW to create idata sections
6539         * src/pic16/device.h: idataSymSet new variable
6540         * src/pic16/gen.c (genFunction): fixed some bugs in string
6541         comparing, improved the absolute section creation for ISRs,
6542         added FSR0L/FSR0H in registers that are saved in an ISR,
6543         * (genInline): fixed the processing of inline snippets,
6544         now they undergo no process by the peephole optimizer
6545         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6546         are placed in idataSymSet,
6547         * (pic16emitStaticSeg): extern symbols are added in externs,
6548         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6549         switching when aboslute variables are placed in access bank memory
6550         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6551         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6552         commented out with #if,
6553         * (pic16_packRegisters): reintroduce the check for CAST because some
6554         symbols are not correctly handled,
6555         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6556         pCodeInstruction instead of pCode,
6557         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6558         pCodeAsmDir definition,
6559         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6560         directive, then the argument directive is emitted without the leading
6561         tab, hack for inline labels which must be in the first column,
6562         * (compareLabel,pic16_findNextInstruction),
6563         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6564         * (insertBankSwitch): modified for the new pCodeAsmDir,
6565
6566 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6567         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6568
6569         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6570         instance,
6571         * (pushSide): commented out with #if,
6572         * (assignResultValue): fixed some typos in saving
6573         registers,
6574         * (genPcall): FIXED and sync'ed with genCall,
6575         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6576         * (genNearPointerGet): fixed to handle some more cases,
6577         implementation scheme via table reads,
6578         * (genConstPointerGet): modified to access code memory correct,
6579         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6580         and improved to handle some cases
6581         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6582         instead of "RETLW" for init data
6583         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6584         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6585         variables are placed in access bank memory (<0x80 and >=0xf80),
6586         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6587         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6588         TBLWT_POSTDEC,TBLWT_PREINC
6589         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6590         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6591         directives
6592         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6593         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6594         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6595         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6596
6597 2004-02-29  Borut Razem <borut.razem AT siol.net>
6598
6599         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6600         support/Util/findme.h, support/Util/system.h: enhance binary relative
6601         search for lib and include by using findProgramPath()
6602
6603 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6604
6605         * src/SDCCpeeph.h,
6606         * src/SDCCpeeph.c (pcDistance),
6607         * src/port.h,
6608         * src/mcs51/ralloc.h,
6609         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6610         * src/mcs51/main.h,
6611         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6612         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6613         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6614         size calculation port specific, started basis for some register
6615         optimizations
6616         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6617         missing push/pop of r0/r1. Optimized push/pops
6618         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6619         * device/lib/_modsint.c (_modsint),
6620         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6621         and stack version so regression tests pass
6622
6623 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6624
6625         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6626         * src/SDCCast.c (decorateType): catch another small optimization
6627         with '?' operator
6628         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6629         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6630         modified to finally use computeType() all over SDCC,
6631         see Feature Request #877103
6632         * src/SDCCval.h: cosmetic
6633         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6634         valCompare(); regression tested in muldiv.c
6635         * support/regression/tests/muldiv.c (testMod): mod sign follows
6636         dividend only
6637
6638 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6639
6640         * src/SDCCast.c (decorateType): fixed bug #902362
6641         * doc/INSTALL.txt: fixed install instructions for win32
6642
6643 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6644
6645         * device/include/Makefile.in (install): fixed by replacing spaces
6646         by tabs
6647         * doc/README.txt,
6648         * doc/INSTALL.txt: updated for release
6649         * doc/sdccman.lyx: added warning for --xstack being buggy
6650
6651 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6652
6653         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6654         to eliminate build warnings.
6655         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6656
6657 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6658            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6659
6660         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6661         removed -penable-stack, added comment for stack pragma, added
6662         warning for not initializing the stack/frame registers, removed
6663         comment at interrupts section
6664
6665         Stack is made permanent, there is no ability to disable stack usage.
6666         * src/pic16/device.h,
6667         * src/pic16/device.c: removed all references to USE_STACK macro,
6668         * src/pic16/device.c (pic16_dump_section): when no elements in
6669         rlist, free rlist before return,
6670         * (pic16_dump_int_registers): NEW, internal registers are a new set
6671         of general purpose registers reused by each function,
6672         * (checkAddReg): returns 1 if registers is added to set,
6673         * (pic16_groupRegistersInSection): when a registers is of type
6674         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6675         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6676         SRCASECMP macro is moved here from device.c
6677         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6678         PO_PCLATU, PO_PRODL, PO_PRODH,
6679         * (pic16_pCodeOpType, genMinus,
6680         changed compares to "a" register, with AOP_ACC,
6681         * (pic16_genPlus): fixed some bugs and indented properly,
6682         * (pic16_addSign): changed size to size+offset in the MOVWF
6683         instruction,
6684         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6685         multiply 8-bit operand by literal, result is 8-bit,
6686         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6687         multiply 2 8-bit operand, result is 8-bit,
6688         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6689         genUMult8X*_16,
6690         * src/pic16/gen.c: changed accUse to contain WREG only,
6691         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6692         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6693         true, do not use immediate addressing any more unless sym is a
6694         pointer in codespace,
6695         * (aopForRemat): do not use immediate addressing when symbol not in
6696         codespace and when symbol's address is requested,
6697         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6698         accUse size (= 1),
6699         * (aopGet): added case for AOP_ACC and don't return "accumulator
6700         bug" but WREG instead,
6701         * (popGetTempReg): pushes contents of temporary register in stack,
6702         * (popReleaseTempReg): pops contents of temporary register from
6703         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6704         * (pic16_popGet): separated case AOP_ACC to return register WREG
6705         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6706         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6707         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6708         the use of immediate pointers to certain cases only.
6709
6710         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6711         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6712         * (assignResultValue, genCall, genRet): modified to use the new
6713         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6714         genPcall is still broken,
6715         * (genFunction): added code to create 'A' type pBlocks when
6716         interrupt functions are generated, code not extensively tested yet,
6717         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6718         * (genEndFunction): modified so ISRs pop stored registers from stack,
6719         * (genMultOneByte): cleanup,
6720         * (AccRsh): added flag andmask, to and result with appropriate mask,
6721         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6722         * (genDataPointerGet): fixed and reenabled its use,
6723         * (genNearDataPointerGet): bugs fixed,
6724         * (genDataPointerSet): bugs fixed,
6725         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6726         pic16_DumpSymbol, pic16_DumpOp,
6727         * src/pic16/genutils.h: function prototypes for the above functions,
6728         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6729         pointers,
6730         * (pic16emitRegularMap): many many many improvements, but needs a
6731         major cleanup,
6732         * src/pic16/main.c: enable_stack in pic16_options is removed,
6733         * (_pic16_parseOptions): removed command line options -penable-stack,
6734         * (_process_pragma): emit stack symbol only when stack pragma is
6735         processed,
6736         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6737         redirected to FSR0L/FSR0H pair,
6738         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6739         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6740         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6741         for immediates,
6742         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6743         * (dumpPicOptype): NEW,
6744         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6745         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6746         with movff instruction,
6747         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6748         added pic16_int_regs, some packRegsFor* functions are commented out,
6749         because produce errors,
6750         * src/pic16/NOTES: minor modifications
6751
6752 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6753
6754         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6755         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6756         --pack-iram.
6757         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6758         * as/mcs51/lkaomf51.c: fixed bug #895763
6759
6760 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6761
6762         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6763
6764 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6765
6766         * doc/sdccman.lyx: added details about the HC08 storage classes and
6767         interrupts, fixed the register usage info for z80 & gbz80
6768
6769 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6770
6771         * doc/sdccman.lyx: added more pic16 port documentation
6772         * device/include/pic16/: added header pic18fregs.h
6773
6774 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6775
6776         * doc/sdccman.lyx: added Vangelis' contribution
6777
6778 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6779
6780         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6781         extend to the next CALL or PCALL, not just to the next CALL.
6782
6783 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6784
6785         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6786
6787 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6788
6789         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6790         bug #895752 and a better fix for bug #716790
6791
6792 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6793
6794         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6795
6796 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6797
6798         * doc/sdccman.lyx: minor changes, minor changed
6799
6800 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6801
6802         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6803         which can't handle SDCC_NEWONEBYTEOPS,
6804         (geniCodeMultiply): removed conversion from mult to shift for pic14
6805         and pic16
6806
6807 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6808
6809         * src/hc08/gen.h,
6810         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6811         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6812         thus fixing bug #895406
6813
6814 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6815
6816         * device/lib/_modsint.c,
6817         * device/lib/_modslong.c: sign follows divisor only
6818         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6819         signs or signedness can be ignored
6820         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6821         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6822         added optimization for IFX,
6823         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6824         arguments;
6825         reenabled optimization for IFX, which was removed on 2004-01-11
6826         * src/SDCCast.h: added return type IFX
6827         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6828         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6829         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6830         SDCC_OLDONEBYTEOPS selects the old behaviour
6831         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6832         changed again and commented promotion rule
6833         * src/SDCCval.c (valDiv): promotion no longer necessary
6834         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6835         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6836         rewritten
6837         * support/regression/tests/onebyte.c: added
6838
6839 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6840
6841         * gen.c (genInline): reverted to old code for assemnling inline
6842         code because of bug reported James Chadd
6843
6844 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6845
6846         * ralloc.h: missing declarations from previous patch,
6847         seems that patch for ralloc.h was never applied, fixed
6848
6849 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6850            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6851
6852         * pcode.c,
6853         * pcode.h,
6854         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6855         indirect addressing. Marked FSR0 as deprecated
6856         * gen.c (pointerCode): commented out, not needed now
6857         (pic16_popGet2p): new MOVFF helper function
6858         (genGenPointerGet),
6859         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6860         (shiftRLong): removed duplicate debugging info
6861
6862 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6863
6864         * src/ds390/gen.c (genNearPointerGet),
6865         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6866         optimization with bits, but not bitfields.
6867         * src/ds390/ralloc.c (packRegisters),
6868         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6869
6870 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6871
6872         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6873
6874 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         * src/SDCCsymt.h,
6877         * src/SDCCicode.c (operandFromSymbol),
6878         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6879         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6880         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6881         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6882         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6883         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6884         bug #892038
6885         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6886         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6887         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6888         * src/SDCCsymt.c (newSymbol),
6889         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6890         enumerator_list),
6891         * src/SDCCval.h,
6892         * src/SDCCval.c (newiList): fixed bug #885705
6893
6894 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6895
6896         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6897         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6898
6899 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6900
6901         * device/include/c8051f120.h,
6902         * device/include/c8051f300.h,
6903         * device/include/c8051f310.h: added/updated header files for Silicon
6904         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6905         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6906         in new section Submitting patches
6907
6908 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6909
6910         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6911         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6912         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6913         genGenPointerSet),
6914         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6915         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6916         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6917         genGenPointerSet),
6918         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6919         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6920         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6921         genGenPointerSet),
6922         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6923         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6924         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6925         genGenPointerSet): fixed bug #892400
6926         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6927         to eliminate build warnings.
6928         * src/SDCCast.c (processParms),
6929         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6930         fixed bug 751859
6931         * support/valdiag/valdiag.py: added GCC to the list of defines active
6932         when compiling with gcc
6933
6934 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6935
6936         * support/Util/SDCCerr.h,
6937         * support/Util/SDCCerr.c,
6938         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6939         with an incomplete type (fixed bug #883734)
6940         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6941
6942 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6943
6944         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6945
6946 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6947
6948         * src/SDCCast.c (decorateType),
6949         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6950         function pointer implementation
6951         * support/regression/tests/funptrs.c: added tests to verify both forms
6952         of function pointers work correctly. Added tests to verify parameters
6953         are passed in the correct order.
6954
6955 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6956
6957         * device.c (regCompare): registers are sorted by ascending
6958         address and increasing size,
6959         * main.c (_pic16_finaliseOptions): removed the declaration
6960         of compiler macro MCU. Now a macro of the format pic18fxxxx
6961         will be defined from the command line
6962
6963 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6964             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6965
6966         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6967         PCOP_RLCF was overwritten!
6968         * gen.c (genSkip): commented out calls to pic16_emitcode,
6969         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6970         * (genlshTwo),
6971         * (genRRC): added debugging info,
6972         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6973         overwritten while shifting,
6974         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6975         overwritten while shifting,
6976         * (AccLsh),
6977         * (AccRsh),
6978         * (shiftLLeftOrResult),
6979         * (shiftRLeftOrResult),
6980         * (shiftRLong),
6981         * (shiftLLong): Implemented with pic16_emitpcode
6982         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6983         * (genLeftShift): Fixed bug, operand for shift by variable always
6984         was "and"ed with 0x0f,
6985         * (genLeftShiftLiteral),
6986         * (genrshTwo),
6987         * (genRightShiftLiteral): added debugging info,
6988         * (genrshFour): added comment,
6989         * (genRightShift): determined signedness from operand "left"
6990         instead of "result"
6991
6992 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6993
6994         * src/SDCCicode.c (geniCodeParms),
6995         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6996         function pointers, fixed function pointer bugs #861242 and #861896
6997
6998 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6999
7000         * device/include/c8051f000.h,
7001         * device/include/c8051f120.h,
7002         * device/include/c8051f300.h: added header files for Silicon
7003         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7004
7005 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7006
7007         * src/SDCCast.c (processParams): added new type flow and restructured
7008         (gatherAutoInit): added new type flow
7009         (addCast): cosmetic changes
7010         (getLeftResultType): added new type flow for array indices, patch
7011         provided by Stas, see FR #877103
7012         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7013         array index patch by Stas
7014         * src/SDCCast.h: added prototype getResultTypeFromType()
7015         * src/SDCCval.h,
7016         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7017         * src/pic/glue.c (pic14emitStaticSeg),
7018         * src/pic16/glue.c (pic16emitStaticSeg),
7019         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7020         for initialization of symbols
7021         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7022         * support/Util/SDCCerr.h:
7023         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7024         * .version: bumped version number to 2.3.8
7025         * device/include/Makefile.in (install),
7026         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7027         avoid warnings
7028
7029 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7030
7031         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7032         Slade Rich fixed an optimization bug
7033         * src/pic/pcodepeep.c,
7034         * src/pic/pcoderegs.c
7035         * doc/Makefile (install): added test for directory
7036
7037 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7038
7039         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7040         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7041         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7042         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7043         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7044         * as/mcs51/asexpr.c (term),
7045         * as/hc08/asexpr.c (term): fixed bug #887146
7046
7047 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7048
7049         * src/z80/gen.c (genMult): handle single byte result product
7050         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7051         DUMMY_READ_VOLATILE (fixed bug #886367)
7052
7053 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7054
7055         * support/regression/tests/libmullong.c: fixed logic, on little endian
7056         hosts we ended without a mullong_wrapper()
7057
7058 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7059
7060         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7061         virus/worm forged address usage.
7062
7063 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7064
7065         Fixed promotion, it should be done on AST level:
7066         * src/SDCCast.c (addCast): added promotion to int
7067         (decorateType): updated call to upCast()
7068         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7069         usualUnaryConversions()
7070
7071 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7072
7073         * support/regression/tests/literalop.c (mulWrapper): Added a
7074         wrapper to remove integer overflow warnings.
7075
7076         * support/regression/tests/float_trans.c: Made work on host.
7077
7078         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7079         location of sz80.
7080
7081         * support/regression/generate-cases.py (main): Changed from inline
7082         to a main method.
7083
7084         * doc/Makefile (install): Changed to depth first to get rid of
7085         missing directory install warning.
7086
7087         * as/Makefile (install-doc): Made work on Mac.
7088
7089 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7090
7091         * src/SDCCast.c: added an additional type flow in decorateType() of
7092         opposite direction, see feature request #860006; it's enabled at runtime
7093         by setting the environment variable SDCC_NEWTYPEFLOW
7094         * src/SDCCast.h: changed prototype of decorateType()
7095         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7096         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7097         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7098         see feature request #877103
7099         * src/SDCCval.c: updated call of decorateType()
7100         (valBitwise): fixed bug #882876
7101         (valMinus): added promotion
7102         (valLogicAndOr): result is unsigned
7103         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7104         * src/SDCCsymt.c (computeType),
7105         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7106         must not cause an unsigned operation
7107         * src/pic/glue (pic14emitRegularMap),
7108         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7109
7110 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7111
7112         * src/pic/pcode.c (PCodeID): commented out left over debug code
7113
7114 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7115
7116         * support/valdiag/tests/overflow.c: added shift tests
7117         * src/pic/device.c,
7118         * src/pic/gen.c,
7119         * src/pic/gen.h,
7120         * src/pic/glue.c,
7121         * src/pic/main.c,
7122         * src/pic/pcode.c,
7123         * src/pic/pcode.h,
7124         * src/pic/pcodepeep.c,
7125         * src/pic/pcoderegs.c,
7126         * src/pic/ralloc.c,
7127         * src/pic/ralloc.h: applied patch from Slade Rich;
7128         added support for multiple code pages and multiple RAM banks on the
7129         PIC 14 port. The ASM files now no longer simply assume all the
7130         code / RAM are in the same page / bank. This means the linker can
7131         safely allocate code/RAM of separate ASM files to different pages/banks.
7132         * doc/sdccman.lyx: added Slade's tips
7133         * src/mcs51/peeph.def: fixed bug #880768
7134
7135 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7136
7137         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7138         * src/SDCCast.c (decorateType): fixed bug #880197
7139
7140 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7141
7142         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7143         getopt.h.
7144
7145         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7146         strtof is not part of C89 and isn't included with Mac OS X.
7147
7148 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7149
7150         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7151         shiftL2Left2Result): fixed bug #879326
7152         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7153         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7154         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7155         address fetch for clr instruction
7156         * device/lib/hc08/_mulint.c: created optimized assembly version
7157         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7158
7159 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7160
7161         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7162         proposed in FR #877103
7163
7164 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7165
7166         * src/SDCCval.c (cheapestVal): added missing checks
7167         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7168         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7169
7170 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7171
7172         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7173         equal operands
7174
7175 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7176
7177         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7178         loaded with the linker search paths (-L arguments) and the libraries
7179         to be linked with the current source (-l arguments). Changes
7180         currently will affect only the pic16 port.
7181         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7182         include path the port specific paths and port specific libraries,
7183         * gplink command now contains the $3 argument,
7184         * src/pic16/device.h,
7185         * src/pic16/device.c,: structure PIC_device is made public and
7186         renamed to PIC16_device, the same for variable Pics which is renamed
7187         to Pics16. Updated all references to them.
7188         * src/pic16/glue.c (pic16glue): corrected bug with code
7189         initialization which bypassed the variable initializations block.
7190
7191         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7192         COMPILE_FLAGS and added the --nostdinc option
7193
7194 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7195
7196         * device/include/mc68hc908jb8.h: Register defs for another member
7197         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7198
7199 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7200
7201         Documenting changes from previous commits.
7202         * configure.in (version 1.56),
7203         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7204         when generating output files to configure the pic16 library,
7205         but now I've commented it out, since gputils aren't installed in the
7206         SF compile farm, so library won't compile
7207
7208         * device/lib/Makefile.in (version 1.56): initially I've added in
7209         target 'all' the prerequestive 'model-pic16' so it compiled the
7210         pic16 library, but now I've commented it out for the same reasons
7211         above,
7212         * added targets 'model-pic16' and 'objects-pic16' to compile the
7213         library
7214         * added target 'port-specific-objects-pic16' to handle the
7215         generated libraries and copy them into the build/ directory
7216         * added target 'clean-intermediate-pic16' to clean intermediate
7217         files into pic16 directory
7218         * in target 'installdirs' added line to create directory pic16 in
7219         the installation path
7220
7221         * device/include/Makefile.in (version 1.11): in target 'install'
7222         added lines to copy all header files to installation path,
7223         * in target 'installdirs' added line create directory for pic16
7224         headers in the installation path
7225
7226 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7227
7228         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7229          a function call
7230
7231 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7232
7233         * configure,
7234         * device/lib/configure.in,
7235         * device/lib/configure: fixed for autoconf 2.57
7236
7237 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7238
7239         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7240         option so that it actually works. Made it specific to the z80, since
7241         the gbz80 doesn't have these kinds of I/O ports.
7242
7243 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7244
7245         * device/include/z180.h,
7246         * device/lib/_memcpy.c,
7247         * device/lib/_memmove.c,
7248         * device/lib/_mulint.c,
7249         * device/lib/ser_ir.c,
7250         * device/lib/ser_ir_cts_rts.c,
7251         * device/lib/_strcmp.c,
7252         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7253         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7254         portmode; added deprecation warning for bank= and protmode= forms.
7255         Also, guard against buffer overflow.
7256         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7257
7258 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7259
7260         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7261         changed interrupt vector table generation to only emit declared vectors.
7262         * device/include/Makefile.in: added missing backslash
7263         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7264
7265 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7266
7267         Mainly changes to support compilation of the device libraries
7268         * src/pic16/device.c: stack is allocated via symbol and not
7269         via literal number. The symbol is placed in the corresponding
7270         position of the data ram
7271         * (pic16_dump_section): relocatable and absolute uninitialized
7272         data are now emitted in sorted order to reduce section naming,
7273         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7274         weren't marked as being in the access bank,
7275
7276 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7277
7278         Added portion of GNU PIC Library under the directory
7279         device/include/pic16 and device/lib/pic16. These files
7280         contain the declarations of SFRs for the PIC18Fxx2 devices.
7281         The directory is initialized via configure from toplevel.
7282
7283 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7284
7285         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7286         the spilllocations to be compared correctly
7287
7288 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7289
7290         * src/SDCCast.c (decorateType): fixed bug introduced today
7291
7292 2004-01-12  Borut Razem <borut.razem AT siol.net>
7293
7294         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7295         doc/sdccman.lyx: upper case pragmas are deprecated
7296
7297 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7298
7299         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7300         in simpler and even better code
7301
7302 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7303
7304         * src/SDCCicode.c (operandOperation): fixed bug #874819
7305         * src/SDCCast.c (decorateType): fixed
7306         char foo (unsigned long ul) { return ul > 0; }
7307
7308 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7309
7310         * doc/sdccman.lyx: Moved and added some sections, small changes
7311         all over. Telling LaTeX to be less strict with word spacing
7312         to better keep the right margin. Changed some notes about
7313         maintainance of the ports in section 3.2.1 - is it OK like this?
7314
7315 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7316
7317         SDCC source changes:
7318         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7319         convilong): modified to inform the pic16 port that builtin functions
7320         are external
7321
7322         PIC16 PORT specific changes:
7323         * src/pic16/device.c pic16_dump_equates() added,
7324         processor registers declared internally by the port are emitted in
7325         the translation as equates,
7326         * src/pic16/gen.c: inline code is passed unprocessed to the
7327         translation,
7328         * (pic16_popGetLit2): fnuction modified to take second operand as
7329         pCodeOp pointer and not as literal,
7330         * (popRegFromIdx): prefixed with pic16_,
7331         * (pic16_popCombine2): modified to receive already allocated pCode
7332         operands,
7333         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7334         * (genFunction): initializes local stack frame and pushes on stack
7335         all the registers used by this function,
7336         * (genEndFunction): restores all registers from stack and restores
7337         stack frame,
7338         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7339         improvements,
7340         * (pic16glue): changed the program startup sequence,
7341         * added new dbName code 'A' for functions placed in absolute section
7342         * src/pic16/main.c: added function attribute _naked,
7343         * added pragma 'code' to place a fnuction at an absolute address,
7344         * added command line arguments --debug-ralloc and --pcode-verbose,
7345         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7346         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7347         * (pic16_newpCodeOpLit2): modified to take the second operand as
7348         pCodeOp pointer,
7349         * (pic16_printpBlock): modified to emit each function in a separate
7350         section,
7351         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7352         UPPER for immediate operands,
7353         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7354         instruction,
7355         * src/pic16/peeph.def: all peepholes with movff are commented out,
7356         because there is a problem in the pcode peep optimizer,
7357         * src/pic16/ralloc.c: the register allocator can now reuse local
7358         function symbols for another function. This saves register usage.
7359         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7360
7361         Added file src/pic16/NOTES with information about program writing on
7362         the current port version.
7363
7364 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7365
7366         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7367         and peephole 252 (array access)
7368
7369 2004-01-09  Borut Razem <borut.razem AT siol.net>
7370
7371         * src/SDCCmain.c : fixed #872250: -l command line defined library
7372           files are scanned before standard library files
7373
7374 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7375
7376         * src/SDCCast.c (decorateType): fixed bug #874046
7377
7378 2004-01-09  Borut Razem <borut.razem AT siol.net>
7379
7380         * support/scripts/sdcc.nsi: remove previous installation
7381
7382 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7383
7384         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7385         bytes for last interrupt vector (mcs51)
7386         * sdcc.spec: fixed typo
7387
7388 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7389
7390         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7391         gen51Code): more efficient parameter receive for --model-large
7392         ("bug" #845294)
7393
7394 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7395
7396         * src/ds390/main.c,
7397         * src/z80/main.c: added missed needLinkerScript flags (more than
7398         one port structure defined in these file)
7399         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7400         bug #795325
7401
7402 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7403
7404         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7405         * src/port.h: added flag needLinkerScript in port->linker
7406         structure to inform whether to create a .lnk file or not,
7407         * src/avr/main.c,
7408         * src/ds390/main.c,
7409         * src/hc08/main.c,
7410         * src/mcs51/main.c,
7411         * src/pic/main.c,
7412         * src/pic16/main.c,
7413         * src/xa51/main.c,
7414         * src/z80/main.c: changed appropriately to configure
7415         needLinkerScript flag
7416         * src/pic/gen.c,
7417         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7418         * src/pic/glue.c: added variable udata_section_name to
7419         override default uninitialized data segment definition for
7420         devices only with SHAREBANK memory (reported from Erik Epetrich)
7421         * (pic14emitOverlay): modified to emit a commented overlay segment
7422         directive when no overlay data exist
7423         * (picglue): modified to emit uninitialized data segment
7424         according to udata_section_name
7425         * src/pic/main.c (_pic14_parseOptions): added command line
7426         options --udata-section-name=[name] to override default
7427         udata definition name
7428         * modified _linkCmd and _asmCmd to include compiler passed
7429         arguments via -W option
7430         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7431         object file from '.rel' to '.o' in port->linker structure,
7432         changed size of fptr from 2 to 3 in port structure
7433
7434 2004-01-07  Borut Razem <borut.razem AT siol.net>
7435
7436         * support/scripts/sdcc.nsi: update PATH
7437         * support/scripts/sdcc.ico: craeted
7438
7439 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7440
7441         * device/include/Makefile.in: fix install
7442         * doc/Makefile: fix install
7443
7444 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7445
7446         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7447         in bug #860505
7448         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7449         how the function variable allocation summary is displayed; also
7450         include information about variables allocated to the overlay
7451         segment
7452
7453 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7454
7455         * as/mcs51/lkmain.c: Help about -Y option
7456         * as/mcs51/lkarea.c: Fixed gcc warnings
7457
7458 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7459
7460         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7461         fixed warning
7462         * support/valdiag/tests/overflow.c: added
7463         * src/SDCCast.c (decorateType),
7464         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7465         LEFT_OP (left shift)
7466
7467 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7468
7469         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7470         (default behaviour).
7471
7472 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7473
7474         A python script to validate compiler diagnostic messages. It can be
7475         used to verify that sdcc complains about bad c source code and
7476         gives a good location of the error.
7477         * support/valdiag/Makefile,
7478         * support/valdiag/valdiag.py,
7479         * support/valdiag/tests/*
7480
7481 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7482
7483         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7484         * src/SDCCsymt.c (newEnumType),
7485         * src/SDCCsymt.h
7486         * support/Util/SDCCerr.c,
7487         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7488         enum related bugs.
7489         * support/regression/tests/enum.c: added test for enum values that
7490         require at least 2 bytes of storage.
7491
7492 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7493
7494         * src/common.h: added ifndef/define/endif macros
7495         around the header file.
7496         Bug reported from Jesus Calvino-Fraga
7497
7498 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7499
7500         * sdcc.spec: updated
7501         * device/include/Makefile.in: don't install CVS directories
7502         * device/lib/Makefile.in: added removal of CVS directories after install
7503         * doc/Makefile: fixed install, added local_icons
7504         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7505         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7506         * src/ds390/gen.c (genRightShift): fixed bug #870788
7507         * src/SDCCast.c (decorateType): fixed bug #870781
7508
7509 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7510
7511         PIC16 port related changes:
7512         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7513         added variable stackPos,
7514
7515         * gen.c: genCall, assignResultValue: added support for
7516         pushing/retrieving function parameters to/from stack,
7517         genFunction,genEndFunction: setup stack frame for the
7518         generated function,
7519         genAddrOf: will be changed according to bug 863624
7520
7521         * added files genutils.c and genutils.h which contain gen*
7522         debugged and optimised functions extracted from gen.c
7523
7524         * glue.c: added variable 'externs' which holds extern symbols,
7525         pic16emitRegularMap: is modified to properly handle relocatable
7526          symbols under the new scheme,
7527         pic16createInterruptVect: is modified
7528         pic16printPublics: is modified to emit 'global' assembler directives,
7529         added pic16_printExterns to print extern symbols,
7530         pic16glue: initializes stack/frame pointer in the beginning of
7531         the assembly output. Temporary hack, will be corrected later,
7532         because gplink yet does not support stack and SDCC does not
7533         yet support a type of crt0.o object to create the final binary.
7534
7535         * Removed many lines that contain 8051 legacy code.
7536         * The code is finally placed under a 'code' directive.
7537         * Added port specific options.
7538
7539         * _process_pragma: simplified since now we do not need *special*
7540         include file to define SFR registers. But a separate header
7541         will be needed. This will be developed later.
7542         * _pic16_parseOptions: added, parses port specific options:
7543         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7544         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7545         --preplace-udata-with=
7546
7547         * _pic16_setDefaultOptions: modified to initialize section names,
7548         but hack is temporarly out of order since it needs improvement.
7549         * _pic16_genAssemblerPreamble: configuration words are emitted by
7550         their address instead of their name. This part is incomplete and
7551         supports only the 18Fxx2 devices. Other devices will emit an error
7552         during assembly since they do not contain the same set of config
7553         registers
7554         * _pic16_genIVT: is modified,
7555
7556         * pcode.c: added definitions for some hardware registers that are needed
7557         for stack support
7558         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7559         All PCI entries are updated. Now LFSR is supported.
7560         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7561         * added pic16_newpCodeOpLit2 to support instructions with
7562         two literal arguments
7563         * pic16_pCode2str: corrected code that emits assembler instructions
7564         with two literal operands and those that have an access bit modifier
7565         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7566         this fixes a bug which caused some labels to be lost, when an
7567         assembler directive was added, i.e. banksel,
7568         * pic16_FixRegisterBanking: improved logic that causes the insertion
7569         of bank switching,
7570         * InlineFunction: functions that are called once, are not any more
7571         inlined. This can be a port option in the future,
7572
7573         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7574
7575         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7576         hold the corresponding uninitialized symbols,
7577         * pic16_allocProcessorRegister: registers have explicit marked the
7578         accessBank field,
7579         * pic16_allocInternalRegister: registers are explicit marked as
7580         not used,
7581         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7582         processing list, so bit registers were lost,
7583         *
7584
7585         * ralloc.h: added field 'accessBank' and original symbol operand
7586         in register definition,
7587         * removed the field isMapped from register definition,
7588
7589         ** Several functions have been removed from various sources:
7590         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7591         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7592         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7593         pic16_assignRelocatableRegisters
7594
7595         ** others have been introduced:
7596         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7597         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7598
7599 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7600
7601         * support/scripts/inc2h.pl: changed definition of BIT_AT
7602         to emit 'sbit at' instead of 'bit at'. This was a request.
7603
7604         PIC16 port related preliminary changes:
7605         * gen.c: prefixed function popRegFromString with
7606         pic16_ and all references to it corrected
7607         * pcode.c: all pic16_pc_* hardware registers prefixed
7608         with underscore (_),
7609         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7610         * ralloc.c: newReg(): when register is REG_SFR then
7611         set address to rIdx,
7612         pic16_allocProcessorRegister(): marks register wasUsed=0
7613         pic16_writeUsedRegs(): added a call to assign processor
7614         registers via pic16_assignFixedRegisters
7615
7616 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7617
7618         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7619         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7620         variables in unused register banks.  Also the SSEG is placed
7621         wherever there is enough space for it, and IDATA can be anywhere
7622         in internal RAM.  For now compile using -Wl-Y[stack_size].
7623         The mem file is different for this option as well, since it
7624         makes no sense of talking about DSEG lenght.
7625
7626 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7627
7628         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7629         in certain cases, e.g. when ROM assignment, patch provided
7630         from Albert den Haan.
7631
7632 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7633
7634         Many signedness and type propagation fixes:
7635         * src/SDCCicode.c: made geniCodeCast() static
7636         replaced SPEC_ by IS_ (cosmetic)
7637         (operandOperation): fixed div and mod operation
7638         (usualBinaryConversions): added support for promotion of char
7639         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7640         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7641         (geniCodeAdd): an array index will stay unsigned, even if promoted
7642         from char to int
7643         (geniCodeArray): ditto
7644         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7645         * src/SDCCsymt.c (computeType): added more support for char;
7646         promotion of char is selectable by promoteCharToInt, fixed signedness
7647         for all cases
7648         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7649         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7650         * src/SDCCval (val*): replaced signedness calculation by
7651         computeType()
7652         rearranged if-branches (cosmetic)
7653         (valShift): added warning W_SHIFT_CHANGED
7654         (valCompare): fixed problem with different types
7655         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7656         * support/regression/tests/literalop.c: added many cases
7657         * support/regression/tests/ast_constant_folding.c: changed finally to
7658         'unsigned int'
7659         * .version: new year, new version: 2.3.7
7660         * src/SDCCmain.c (main): applied patch #866468
7661         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7662         provided by Scott Bronson
7663         * doc/sdccman.lyx: updated documentation for sdcdb
7664         updated and added chapter tips
7665
7666 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7667
7668         * src/SDCCsymt.h: missing from yesterday's commits
7669
7670 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7671
7672         * src/SDCC.y (struct_or_union_specifier),
7673         * support/Util/SDCCerr.c,
7674         * support/Util/SDCCerr.h: verify that struct & union tags are used
7675         as declared.
7676
7677 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7678
7679         * src/SDCCglobl.h: missing from yesterday's commits
7680
7681 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7682
7683         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7684         sft_attributes, struct_declaration, parameter_declaration,
7685         type_name, start_block, declaration_list),
7686         * src/SDCC.lex (check_type): support redefinition of typedef names
7687
7688 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7689
7690         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7691         aligned xdata arrays. Erik helped me with the if clause.
7692
7693 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7694
7695         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7696         warning
7697
7698 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7699
7700         * src/SDCCast.h,
7701         * src/SDCCast.c (newAst_),
7702         * src/SDCCicode.h,
7703         * src/SDCCicode.c (ast2iCode, newiCode),
7704         * src/SDCCglobl.h,
7705         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7706         expr, statement, expression_statement, selection_statement,
7707         iteration_statement, expr_opt, jump_statement): foundation for tracking
7708         sequence points
7709         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7710         point code too)
7711
7712 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7713
7714         * support/Util/SDCCerr.c,
7715         * src/SDCCast.h,
7716         * src/SDCCast.c (createCase, createDefault, decorateType),
7717         * src/SDCClabel.c (labelUnreach),
7718         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7719         to error messages.
7720         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7721         (with thanks to Stas Sergeev)
7722         * device/include/time.h,
7723         * device/lib/time.c (CheckTime): suppress unreachable code warning
7724
7725 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7726
7727         * src/SDCCast.c (createIvalCharPtr),
7728         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7729         bug #753752)
7730         * support/regression/tests/nullstring.c: tests for these two bugs
7731
7732 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7733
7734         * support/Util/SDCCerr.h,
7735         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7736         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7737         about storage class and 'at' used inside struct or union
7738         * src/SDCCBBlock.c (iCodeFromeBBlock),
7739         * src/SDCCcse.c (ifxOptimize),
7740         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7741         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7742         printIval, emitStaticSeg, emitOverlay),
7743         * src/SDCClabel.c (deleteIfx),
7744         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7745         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7746         gatherAutoInit, processParms),
7747         * support/Util/SDCCerr.h,
7748         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7749         reporting for post-parse errors.
7750
7751 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7752
7753         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7754         implicit casts via union; they don't work on big endian systems
7755         (possible fix for bug #861138)
7756
7757 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7758
7759         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7760         * src/mcs51/main.c: fixed the fix for bug #737001
7761
7762 2003-12-15  Borut Razem <borut.razem AT siol.net>
7763
7764         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7765
7766 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7767
7768         * support/makebin/makebin.c: put output in binary mode
7769
7770 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7771
7772         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7773         xdata and data memory on startup. Set the environment variable
7774         SDCC_NOGENRAMCLEAR to disable this.
7775         * src/mcs51/peephole.def,
7776         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7777         (allows non-interrupt and interrupt code to safely compete for a resource
7778         without the non-interrupt code having to disable interrupts)
7779
7780 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7781
7782         * src/SDCCicode.c (geniCodeAdd),
7783         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7784         with valFromType if type might be a pointer and host is big endian).
7785         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7786         types, not just integer types.
7787         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7788         multiply defined with mismatching "at" address.
7789
7790 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7791
7792         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7793         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7794         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7795         with embedded nulls (fixed bug #753752)
7796
7797 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7798
7799         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7800         Apparently this did not see much testing (endless loop)
7801
7802 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7803
7804         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7805
7806 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7807
7808         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7809         gracefully handle NULL memmap pointers
7810
7811 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7812
7813         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7814         instead of deleting the iCode when an operand is volatile
7815         * src/z80/gen.c (genDummyRead),
7816         * src/mcs51/gen.c (genDummyRead),
7817         * src/ds390/gen.c (genDummyRead),
7818         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7819         not just IC_RIGHT
7820         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7821         * src/SDCC.y: fixed bug #850420
7822
7823 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7824
7825         Applied z80 i/o port patch from Peter Townson and fixed some operators
7826         to better handle operands in A register.
7827         * device/include/z180.h
7828         * src/SDCC.y
7829         * src/SDCCglue.c
7830         * src/z80/gen.c
7831         * src/z80/gen.h
7832         * src/z80/main.c
7833         * src/z80/peeph-z80.def
7834         * src/z80/peeph.def
7835         * src/z80/z80.h
7836
7837 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7838
7839         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7840
7841 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7842
7843         * device/lib/hc08/_mullong.c: Removed extra #endif
7844
7845 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7846
7847         * sim/ucsim/hc08.src/inst.cc,
7848         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7849         carries from x to h
7850         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7851         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7852         * device/include/stdarg.h: fixed varargs for hc08
7853         * device/lib/Makefile.in,
7854         * device/lib/hc08/Makefile,
7855         * device/lib/hc08/_mulint.c,
7856         * device/lib/hc08/_mullong.c: fixed some endian problems
7857
7858 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7859
7860         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7861         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7862         * device/lib/_gptrget.c,
7863         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7864
7865 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7866
7867         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7868         * src/SDCCast.c (astErrors): fixed bug #846007
7869         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7870
7871 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7872
7873         * src/SDCCast.c (decorateType): disabled a transformation I added in
7874         revision 1.188 (access to fields of a structure at an absolute address);
7875         it breaks with bitfields, extern declarations, and gcse analysis.
7876         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7877         could be assigned through a pointer, so don't complain.
7878         * src/SDCCast.c (astErrors),
7879         * src/SDCCast.h,
7880         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7881
7882 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7883
7884         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7885         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7886         output of __config directives, since gpasm now supports them
7887         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7888         pre-processor macro, i.e. -DMCU=p18f452
7889         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7890         and modified to handle 'cast' icode similarly to '=' icode
7891         * src/pic16/device.h (typedef struct PIC_device): added field
7892         'extMIface' to indicate that chip has external memory interface
7893         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7894         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7895         18F8720
7896
7897 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7898
7899         * src/SDCC.y (pointer): fixed bug #846006
7900         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7901         * src/SDCCast.c (decorateType): fixed bug #846009
7902         * src/ds390/peeph.def,
7903         * src/ds390/gen.c (genAnd, genOr),
7904         * src/mcs51/peeph.def,
7905         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7906
7907 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7908
7909         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7910         * src/SDCCdflow.c
7911         * src/SDCCcse.c
7912         * src/SDCCcse.h
7913         * src/SDCCBBlock.h
7914         * src/SDCCBBlock.c
7915
7916 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7917
7918         fixed bug #845089
7919         * src/SDCCbitv.h,
7920         * src/SDCCbitv.c: added function to free a bitvector
7921         * src/SDCClrange.h,
7922         * src/SDCClrange.c: added function to recompute the liveranges
7923         * src/avr/ralloc.c,
7924         * src/ds390/ralloc.c,
7925         * src/hc08/ralloc.c,
7926         * src/mcs51/ralloc.c,
7927         * src/pic/ralloc.c,
7928         * src/pic16/ralloc.c,
7929         * src/xa51/ralloc.c,
7930         * src/z80/ralloc.c: recompute the liveranges after register packing
7931
7932 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7933
7934         * src/SDCCloop.c (newInduction): fixed bug #845630
7935
7936 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7937
7938         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7939         inadvertantly left behind from my 2003-11-12 change
7940
7941 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7942
7943         Updated headers I neglected to commit yesterday.
7944         * src/SDCClrange.h,
7945         * src/SDCCicode.h
7946
7947 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7948
7949         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7950         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7951         * src/SDCCopt.c (eBBlockFromiCode),
7952         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7953         the creation of the key hash table from the sequencing so it can be used
7954         earlier (for some GCSE bug fixes still pending)
7955
7956 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7957
7958         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7959         * support/regression/tests/addsub.c: testing genPlus shortcut
7960
7961 2003-11-15  Borut Razem <borut.razem AT siol.net>
7962
7963         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7964
7965 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7966
7967         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7968         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7969         ordering is immaterial.
7970         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7971
7972 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7973
7974         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7975         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7976         (SIGSEV) of bug #840381
7977         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7978         unlink new file before rename if new and old filenames are the same)
7979
7980 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7981
7982         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7983         uninitialized variables) for the mcs51. Set environment variable
7984         SDCC_GENRAMCLEAR to test.
7985         xdata initialization slightly shorter
7986
7987 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7988
7989         * src/SDCCsymt.h,
7990         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7991         #838241 & 780691 (basicly the same bug)
7992         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7993         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7994
7995 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7996
7997         * src/SDCCmain.c (linkEdit): "fix" #834252
7998
7999 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8000
8001         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8002         * src/SDCCast.h,
8003         * src/SDCC.y: fixed bug #819403
8004
8005 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8006
8007         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8008         the reentrant attribute.
8009         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8010         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8011         simulation
8012         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8013         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8014         erroneously reduced to a literal.
8015         * src/hc08/ralloc.c (packRegisters, rematStr),
8016         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8017         some cases
8018
8019 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8020
8021         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8022         * doc/sdccman.lyx: changed from 'article' to 'book'
8023         * doc/Makefile: readded test_suite_spec and cdbfileformat
8024
8025 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8026
8027         * device/include/stdlib.h: include malloc.h to comply with ANSI
8028         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8029
8030 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8031
8032         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8033         * doc/clean.mk: also remove *.out files
8034         * doc/sdccman.lyx: some additions, larger top/bottom margins
8035
8036 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8037
8038         * src/SDCC.y: fixed bug #837365
8039         * support/regression/tests/bitopcse.c
8040         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8041         a symbol (might be valop instead)
8042         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8043         * device/lib/clean.mk: added hc08 to the cleaning list
8044
8045 2003-11-04  Borut Razem <borut.razem AT siol.net>
8046
8047         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8048           made 2003-11-04
8049         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8050           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8051           malloc is declared in standard stdlib.h
8052
8053 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8054
8055         * device/lib/hc08/Makefile: need to clean .rel not .o files
8056         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8057
8058 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8059
8060         * src/port.h,
8061         * src/hc08/main.c,
8062         * src/mcs51/main.c,
8063         * src/ds390/main.c,
8064         * src/z80/main.c,
8065         * src/avr/main.c,
8066         * src/pic/main.c,
8067         * src/pic16/main.c,
8068         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8069         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8070         tests (which uses the port's oclsExpense function)
8071         * src/SDCC.y,
8072         * src/SDCCast.c,
8073         * src/SDCCicode.c,
8074         * src/hc08/gen.c,
8075         * src/ds390/gen.c,
8076         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8077
8078 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8079
8080         * src/SDCCcse.c (ifxOptimize),
8081         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8082         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8083         deleting the IFX iCode.
8084         * src/hc08/ralloc.c: reduced unneeded slocs
8085         * src/hc08/gen.c: fixed bug in asmopToBoolean
8086
8087 2003-11-04  Borut Razem <borut.razem AT siol.net>
8088
8089         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8090           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8091           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8092           transferred to configure
8093
8094 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8095
8096         Use headers defined in the C[++] standards:
8097         * sim/ucsim/gui.src/serio.src/fileio.cc
8098         * sim/ucsim/gui.src/serio.src/frontend.cc
8099         * sim/ucsim/gui.src/serio.src/main.cc
8100         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8101         * support/Util/NewAlloc.c
8102         * as/hc08/lklibr.c
8103         * as/mcs51/lklibr.c
8104         * as/z80/aslist.c
8105         * as/z80/assym.c
8106
8107 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8108
8109         * Added MSVC projects for hc08 assembler and linker:
8110         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8111         /as/hc08/link_hc08.dsp
8112
8113 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8114
8115         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8116
8117 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8118
8119         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8120
8121 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8122
8123         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8124
8125 2003-10-31  Borut Razem <borut.razem AT siol.net>
8126
8127         * support/cpp2/cpplib.h,
8128           support/cpp2/cpplib.c,
8129           support/cpp2/cpplex.c,
8130           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8131           to switch _asm block preprocessing on / off. Default is
8132           #pragma preproc_asm +
8133
8134 2003-10-31  Borut Razem <borut.razem AT siol.net>
8135
8136         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8137           when outputting comment blocks (when executed with -C option) and
8138           _asm (SDCPP specific) blocks
8139
8140 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8141
8142         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8143
8144 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8145
8146         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8147
8148 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8149
8150         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8151         * src/SDCCast.c (decorateType): fixed bug #832664
8152
8153 2003-10-31  Borut Razem <borut.razem AT siol.net>
8154
8155         * support\cpp2\cpplex.c: fixed for SDCPP:
8156           comments(when executed with -C option) and _asm blocks
8157           were included even if they where in skipped #if block.
8158           Applied solution from GCC cpp 3.3.2
8159
8160 2003-10-31  Borut Razem <borut.razem AT siol.net>
8161
8162         * src/SDCC.lex: sdcc now understands both formats:
8163           '# <line_number> <file_name>' and
8164           '#line <line_number> <file_name>'
8165         * support/cpp2/cppmain.c: sdcpp now generates the standard
8166           '# <line_number> <file_name>' instead of former
8167           '#line <line_number> <file_name>'
8168
8169 2003-10-30  Borut Razem <borut.razem AT siol.net>
8170
8171         * support/cpp2/cpphash.h,
8172         * support/cpp2/cpplib.h
8173         * support/cpp2/cpplex.c,
8174         * support/cpp2/cppmain.c,
8175         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8176
8177 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8178
8179         Fixed a number of problems revealed by bug #827883.
8180         * src/SDCCloop.c (loopInvariants): Spill location of the
8181         result operand should be recomputed if extracted from
8182         a loop. Also, don't extract assignments of an iTemp
8183         from a literal.
8184         * src/SDCCast.c (isConformingBody): loop reversal should
8185         not occur if the control variable is involved with a
8186         relational operator.
8187
8188 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8189
8190         * .version: bumped to 2.3.6 to reflect the big improvements
8191         made by Erik and Klaus. Thanks!
8192
8193 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8194
8195         Replaced the livrange code.
8196         * src/SDCClrange.c: added new LR code
8197         * src/SDCCloop.c,
8198         * src/SDCCBBlock.h: removed remainig parts from old LR code
8199         * src/ds390/ralloc.c,
8200         * src/ds390/gen.c: minor fixes to make it work with new code
8201
8202 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8203
8204         * as/hc08/asm.h,
8205         * as/hc08/lkrloc.c,
8206         * src/hc08/gen.c,
8207         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8208         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8209         (tweaked fix for bug #818696)
8210
8211 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8212
8213         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8214
8215 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8216
8217         * src/SDCCmain.c,
8218         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8219         * src/mcs51/gen.c (gencjneshort),
8220         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8221         more efficient (per Scott Bronson's suggestion)
8222
8223 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8224
8225         Extended the semantics of the critical keyword to include
8226         individual statements. See RFE #827755 and #799831
8227         * src/SDCC.y
8228         * src/SDCCicode.c
8229         * src/SDCCopt.c
8230         * src/SDCCast.c
8231         * support/Util/SDCCerr.c
8232         * support/Util/SDCCerr.h
8233         * src/mcs51/gen.c
8234         * src/ds390/gen.c
8235         * src/hc08/gen.c
8236
8237 2003-10-19  Borut Razem <borut.razem AT siol.net>
8238
8239         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8240
8241 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8242
8243         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8244         Fixed bug #818696
8245         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8246         and predecrement operand is displayed
8247
8248 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8249
8250         * src/SDCCval.c (valMinus): fixed bug #826041
8251
8252 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8253
8254         Some hc08 related updates that I missed earlier
8255         * sim/ucsim/stypes.h
8256         * support/regression/ports/hc08/spec.mk
8257
8258 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8259
8260         New target "hc08" for the Motorola 68hc08 family of micros
8261
8262         * configure
8263         * configure.in
8264         * Makefile
8265         * src/hc08/*
8266         * src/SDCCmain.c
8267         * src/port.h
8268         * sim/ucsim/hc08.src/*
8269         * sim/ucsim/configure.in
8270         * src/ucsim/configure
8271         * sim/ucsim/packages_in.mk
8272         * as/hc08/*
8273         * as/Makefile
8274         * device/include/mc68hc908qy.h
8275         * device/lib/hc08/*
8276         * device/lib/Makefile.in
8277         * support/regression/ports/hc08/*
8278         * support/regression/Makefile
8279
8280 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8281
8282         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8283         regression test
8284         * src/ds390/gen.c (genCast): fixed bug #821957
8285
8286 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8287
8288         * device/lib/logf.c: "fixed" overlay bug
8289         * support/regression/ports/host/spec.mk: added m library
8290         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8291         * support/regression/tests/float_trans: added (for Eric)
8292
8293 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8294
8295         * src/mcs51/gen.c (genCpl): fixed bug
8296         http://sf.net/mailarchive/message.php?msg_id=6263915
8297
8298 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8299
8300         * src/SDCCast.c (decorateType): added extended constant folding
8301         * src/SDCCsymt.c (computeType): cleanup
8302         * src/SDCCval.c (valShift): minor optimization
8303         * support/regression/tests/ast_constant_folding.c: added
8304
8305 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8306
8307         * src/SDCCmain.c: removed some unintended changes
8308
8309 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8310
8311         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8312         * src/z80/gen.c: fixed part of bug #817589
8313         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8314
8315 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8316
8317         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8318         * src/SDCCcflow.c
8319         * src/SDCCcse.c
8320         * src/SDCCdflow.c
8321         * src/SDCClabel.c
8322         * src/SDCClrange.c
8323         * src/SDCCmem.c
8324         * src/SDCCopt.c
8325         * src/SDCCpeeph.c
8326         * src/SDCCset.c
8327         * src/avr/ralloc.c
8328         * src/ds390/ralloc.c
8329         * src/izt/ralloc.c
8330         * src/mcs51/ralloc.c
8331         * src/pic/ralloc.c
8332         * src/pic16/ralloc.c
8333         * src/xa51/ralloc.c
8334         * src/z80/ralloc.c
8335         * src/z80/gen.c: removed unused label "release:"
8336
8337 2003-10-06  Borut Razem <borut.razem AT siol.net>
8338
8339         * src/SDCC.lex: removed definition of unused variables
8340           save_optimize and save_options
8341
8342 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8343
8344         * clean.mk: removed '=' in "-maxdepth=1"
8345         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8346         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8347
8348 2003-10-06  Borut Razem <borut.razem AT siol.net>
8349
8350         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8351           my_unput() replaced by unput()
8352
8353 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8354
8355         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8356         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8357         type-punned pointer will break strict-aliasing rules"
8358         Old LR behaviour is again default; Klaus' LR can be choosen by
8359         defining the environment variable LRKLAUS
8360         * src/SDCCBBlock.h
8361         * src/SDCCloop.c
8362         * src/SDCClrange.c
8363         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8364         * clean.mk: fixed removal of files in bin/CVS/
8365         * device/lib/clean.mk: fixed removal of directories small and large
8366         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8367         * src/SDCCicode.c,
8368         * src/SDCCval.c: removed superflous test for pedantic
8369
8370 2003-10-05  Borut Razem <borut.razem AT siol.net>
8371
8372         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8373           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8374           message "unmatched #pragma SAVE and #pragma RESTORE"
8375
8376 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8377
8378         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8379           assembly, critical functions, atomic, nojtbound)
8380
8381 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8382
8383         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8384         * src/SDCCBBlock.h
8385         * src/SDCCloop.c
8386         * src/SDCCloop.h
8387         * src/SDCClrange.c
8388
8389 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8390
8391         * src/z80/gen.h,
8392         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8393         * src/mcs51/gen.h
8394         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8395         * src/ds390/gen.h
8396         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8397         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8398         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8399
8400 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8401
8402         * src/z80/gen.c (genRet): fixed bug #524753
8403         * src/z80/gen.c (genCast): fixed internal error on cast from
8404         pointer to long
8405         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8406         fix for bug #477835 to the z80
8407         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8408         for tracking iCodes in the peephole optimizer for z80
8409
8410 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8411
8412         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8413         the other part of bug #814548
8414         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8415
8416 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8417
8418         * src/SDCCcse.c: fixed part of bug #814548
8419
8420 2003-09-28  Borut Razem <borut.razem AT siol.net>
8421
8422         * src/asm.c: rewrite of printILine() to use temporary file instead
8423           a pipe
8424         * src/xa51/main.c: commented out declaration of int rewinds
8425
8426 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8427
8428         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8429
8430 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8431
8432         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8433         * src/asm.c (printILine): Fixed bug #811015
8434
8435 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8436
8437         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8438         freeing.
8439
8440 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8441
8442         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8443         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8444         to correctly handle general case of AOP_PAIRPTR
8445         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8446
8447 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8448
8449         * src/mcs51/ralloc.c (fillGaps),
8450         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8451         register positioning bug)
8452
8453 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8454
8455         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8456
8457 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8458
8459         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8460         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8461         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8462         (ralloc doesn't intentionally do this now, but perhaps later)
8463         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8464         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8465         register positioning bugs (Fixed bug #762602 and #795325)
8466         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8467         (Fixed bug #808779)
8468         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8469         lines that --i-code-in-asm generates
8470
8471 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8472
8473         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8474         trying to fclose a FILE* that was already closed.
8475
8476 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8477
8478         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8479         of const struct should be treated as if const themselves)
8480
8481 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8482
8483         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8484
8485 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8486
8487         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8488         Unix (/n) and DOS (/r/n) line terminations.
8489
8490 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8491
8492         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8493         bug #613775
8494
8495 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8496
8497         * src/mcs51/gen.c (genFunction, genEndFunction),
8498         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8499         and restore of EA so that stack offsets to parameters are
8500         correct when using both critical and reentrant/stack-auto.
8501         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8502         size (can be triggered in error if sloc is shared between
8503         different sized objects)
8504         * device/include/float.h: fixed macros to explicitly use
8505         unsigned long where needed
8506
8507 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8508
8509         Feature req. 799831: added code to allow nesting of critical functions
8510         * src/mcs51/gen.c (genFunction, genEndFunction)
8511         * src/ds390/gen.c (genFunction, genEndFunction)
8512
8513 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8514
8515         * src/SDCCsymt.c (sclsFromPtr),
8516         * src/SDCCsymt.h,
8517         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8518         support for standard C idiom of memory mapped variables; for
8519         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8520         to xdata int at 0x1234 tempvar = 1.
8521         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8522         provided by Akiya ISHIDA
8523
8524 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8525
8526         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8527         * src/SDCCval.c (constVal): added reduction from int to char
8528         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8529         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8530         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8531         to ignore the sign
8532         * support/regression/tests/shifts.c: fixed
8533
8534 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8535
8536         * src/z80/gen.c (genXor): Fixed bug #805445
8537
8538 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8539
8540         Fixed bug #621531 (const & volatile confusion in the type chain).
8541         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8542         refer to the const or volatile state of the pointer itself.
8543
8544         * src/SDCCast.c
8545         * src/SDCCglue.c
8546         * src/SDCCicode.c
8547         * src/SDCCsymt.c
8548         * src/SDCCval.c
8549         * src/SDCC.y
8550         * src/SDCCsymt.h
8551         * src/pic/gen.c
8552         * src/pic/ralloc.c
8553         * src/pic16/gen.c
8554         * src/pic16/ralloc.c
8555         * support/regression/tests/const.c
8556
8557 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8558
8559         When checking for duplicated modules, use absolute paths
8560         instead of relative paths.  Files changed:
8561
8562         * as/mcs51/lklib.c
8563         * link/z80/lklib.c
8564
8565 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8566
8567         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8568
8569 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8570
8571         * device/include/string.h: added size_t typedef, changed
8572         prototypes to use size_t, eliminated separate reentrant and
8573         non-reentrant declarations, added _memmove declaration
8574         * device/lib/_memcpy.c: changed to use size_t instead of int,
8575         changed /4 to >>2 to avoid division library call
8576         * device/lib/_memcmp.c,
8577         * device/lib/_memset.c,
8578         * device/lib/_strncat.c,
8579         * device/lib/_strncpy.c,
8580         * device/lib/_strncmp.c: changed to use size_t instead of int
8581         * device/lib/_memmove.c: new file (fixed bug #772294)
8582         * device/lib/Makefile.in: added _memmove.c
8583         * device/lib/z80/asm_strings.s: fixed bug #772290
8584         * support/regression/tests/bitfields.c: attempt to fix host assertion
8585         failure on amd64-unknown-linux2.2
8586
8587 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8588
8589         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8590         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8591         * as/z80/asmain.c (main): fixed bug #801766
8592
8593 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8594
8595         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8596         compilers
8597
8598 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8599
8600         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8601         reported in bug #800609
8602
8603 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8604
8605         * Top header beautifications in src/pic16 directory:
8606           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8607           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8608           pcoderegs.h, ralloc.c, ralloc.h
8609         * main.c: added top header and GPL license notice
8610         * pcode.c: fixed the if-conditional warning
8611
8612 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8613
8614         * device/lib/_mullong.c: replaced int by short for gcc
8615
8616 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8617
8618         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8619         and JUMPTABLE iCodes properly now (worked by accident before)
8620         * src/mcs51/gen.c (leftRightUseAcc),
8621         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8622         iCode properly now. Use getSize instead of nRegs since a & b
8623         aren't part of the nRegs tally.
8624
8625 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8626
8627         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8628         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8629           before instructions that use the _STATUS register
8630
8631 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8632
8633         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8634         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8635         fetching of the pointer
8636         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8637         copied from genNearPointerSet()
8638         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8639         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8640         If they pop r0/r1 they must be called in the opposite order than aopOp().
8641         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8642         (resp. --stack-auto), prepared for --xstack
8643
8644 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8645
8646         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8647
8648 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8649
8650         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8651         these ports have their own __sdcc_external_start()
8652
8653 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8654
8655         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8656         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8657         type for bits was changed. It resulted in bit variables becoming
8658         global, which is not permitted in PIC 14 assembly output.
8659
8660 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8661
8662         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8663
8664 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8665
8666         Z80 and MCS51 linkers complaint if a public symbol is defined
8667         in more than one library module:
8668
8669         * as/mcs51/lklib.c
8670         * link/z80/lklib.c
8671         * as/mcs51/Makefile.in
8672
8673 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8674
8675         A few small changes that speed up the peephole optimizer.
8676
8677         * src/SDCCpeeph.c
8678
8679 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8680
8681         Try to make the peephole optimizer smarter by maintaining
8682         an association between the assembly source code and the
8683         iCodes that originated them. Put this information to use
8684         with a new peephole rule condition "notVolatile" so that
8685         the rules can be aggressive yet still safe.
8686
8687         * src/SDCCpeeph.c
8688         * src/SDCCpeeph.h
8689         * src/mcs51/gen.c
8690         * src/mcs51/peeph.def
8691
8692 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8693
8694         Fixed bug #741761
8695
8696         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8697         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8698         if the left or right operand symbols have the accuse flag set.
8699
8700 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8701
8702         Changed the type of the result of the ! (NOT) operator to char;
8703         previously it returned the same type as the source. This allows
8704         us to eliminate all the genFloatNot functions (all of its target
8705         implementations were very buggy) since !float can use the same
8706         code as !long now.
8707
8708         * src/SDCCicode.c (ast2iCode): ! returns char
8709         * src/mcs51/gen.c (genNot, genNotFloat),
8710         * src/ds390/gen.c (genNot, genNotFloat),
8711         * src/z80/gen.c (genNot, genNotFloat),
8712         * src/pic/gen.c (genNot, genNotFloat),
8713         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8714
8715 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8716
8717         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8718         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8719            during interrupts. Ensure WSAVE is located at a shared bank address.
8720         2. Fixed page selection in some places
8721         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8722            the registers name strings.
8723         4. Fixed "signed / unsigned compare" compiler warnings.
8724         5. The PIC port manages its own allocation of the general purpose
8725            registers, but makes no attempt to reuse them. As a result when
8726            compiling it soon runs out of general purpose registers. Some
8727            additional code was added to the files pcode.c and device.c to walk
8728            through the function call tree and rename the registers so that they
8729            get reused.
8730
8731         * src/pic/device.c
8732         * src/pic/gen.c
8733         * src/pic/glue.c
8734         * src/pic/pcode.c
8735         * src/pic/pcode.h
8736         * src/pic/ralloc.c
8737         * src/pic/ralloc.h
8738         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8739         genPlus() & genMinus() when the result is the same as left or right
8740
8741 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8742
8743         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8744
8745 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8746
8747         Made bitfield a distinct type from bit so that bitfields
8748         convert as per ANSI C and bits retain their traditional
8749         boolean style behaviour. Implemented bitfield support in
8750         the z80 port.
8751
8752         * src/SDCCsymt.h,
8753         * src/SDCCsymt.c,
8754         * src/SDCCast.c,
8755         * src/cdbFile.c,
8756         * src/mcs51/gen.c,
8757         * src/ds390/gen.c: bit v bitfield split
8758         * src/z80/gen.c: New support for bitfields
8759         * support/regression/tests/bitfields.c: reenabled z80,
8760         added more tests
8761
8762 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8763
8764         Rules 246.x, 247.x relate to bitfields, the others speed up
8765         access to xdata mapped I/O devices.
8766
8767         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8768
8769 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8770
8771         Cleaned up genPackBits and genUnpackBits and added two helper
8772         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8773         for literal assignments in genPackBits (thanks to Frieder for
8774         reminding me).
8775
8776         * src/mcs51/gen.c
8777         * src/ds390/gen.c
8778
8779 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8780
8781         Fixed bug #748310 (pointer to function type mishandled when the
8782         function name is omitted). Also fixed a SIGSEGV when a function
8783         attribute (reentrant, etc) is used on a non-function or on a
8784         function but misplaced before the parameter list.
8785
8786         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8787         bug #748310
8788         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8789         * support/Util/SDCCerr.h,
8790         * support/Util/SDCCerr.c: Added func attr misuse error msg
8791
8792 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8793
8794         Fixed bug #787649 by anonymous
8795         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8796         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8797
8798 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8799
8800         Fixed numerous bitfield problems.
8801
8802         * src/SDCC.y: More bitfield related error checking
8803         * src/SDCCsymt.h,
8804         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8805         * support/Util/SDCCerr.h,
8806         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8807         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8808         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8809         * support/regression/tests/bitfields.c: tests added
8810
8811 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8812
8813         Made the constant following the "interrupt" keyword optional. If
8814         omitted, the function will not automatically be given an entry
8815         in the interrupt vector table (similar to #pragma NOIV, but
8816         less syntacticly kludgy). The interrupt number is also now
8817         range checked. Also fixed a bug in the high order bit example
8818         in the manual.
8819
8820         * src/SDCC.y
8821         * src/SDCCmem.c
8822         * src/SDCCglue.c
8823         * src/SDCCsymt.h
8824         * support/Util/SDCCerr.c
8825         * support/Util/SDCCerr.h
8826         * doc/sdccman.lyx
8827
8828 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8829
8830         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8831         * src/SDCCicode.c (operandOperation): rewritten some ops
8832         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8833         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8834         other type
8835         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8836         be re-activated by defining REDUCE_LITERALS)
8837         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8838         unsigned, but are signed by default
8839         * src/SDCCval.c (constVal): rearranged
8840         * src/SDCCval.c (valMod): preliminary fix
8841         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8842         * support/regression/literalop.c: added, work in progress
8843
8844 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8845
8846         Generate warnings for useless declarations like "char data;"
8847         that don't do what new users expect.
8848
8849         * src/SDCC.y
8850         * support/Util/SDCCerr.h
8851         * support/Util/SDCCerr.c
8852
8853 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8854
8855         * src/SDCCval.c (valMult): fix overflow detection of negative int
8856
8857 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8858
8859         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8860
8861         Changes to support big endian targets:
8862
8863         * src/ports.h
8864         * src/SDCCglue.c
8865         * src/avr/main.c
8866         * src/ds390/main.c
8867         * src/izt/i186.c
8868         * src/mcs51/main.c
8869         * src/pic/main.c
8870         * src/pic16/main.c
8871         * src/xa51/main.c
8872         * src/z80/main.c
8873
8874 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8875
8876         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8877         * device/lib/time.c: fixed warning "integer overflow in expression"
8878
8879 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8880
8881         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8882         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8883         constants are unsigned; added recognition of "u" flag for unsigned
8884         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8885         * src/SDCCval.c (valDiv, valMod): fixed signdness
8886         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8887         signedness of modulo, left and right shift
8888         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8889         * support/Util/SDCCerr.h: added warning W_INT_OVL
8890         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8891         * src/SDCCast.c (ast_print): improved output of constants
8892
8893 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8894
8895         Fixed some warnings when building with MSVC:
8896
8897         * as\mcs51\asdata.c
8898         * as\z80\asdata.c
8899         * as\mcs51\asm.h
8900         * as\z80\asm.h
8901         * link\z80\aslink.h
8902         * link\z80\lkdata.c
8903         * link\z80\lkeval.c
8904         * link\z80\lkgb.c
8905         * link\z80\lkihx.c
8906         * link\z80\lks19.c
8907         * link\z80\lksym.c
8908         * support\cpp2\cpplib.c
8909         * src\ds390\gen.c
8910         * src\mcs51\gen.c
8911
8912 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8913
8914         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8915
8916 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8917
8918         * support\librarian\clean.mk: Do not remove Makefile.
8919         * support\librarian\Makefile: added.
8920
8921 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8922
8923         Added librarian to MSVC build:
8924         * all.dsp
8925         * sdcc.dsw
8926         * support\librarian\librarian.dsp
8927
8928         'configure' not needed for librarian, removed:
8929         * support\librarian\configure
8930         * support\librarian\configure.in
8931         * support\librarian\config_in.h
8932         * support\librarian\Makefile.in
8933
8934         Hopefully these ones built the librarian and the rest of sdcc properly:
8935         * Makefile
8936         * Makefile.common.in
8937
8938         Messed up 'configure', so revert to previous version:
8939         * configure
8940         * configure.in
8941
8942 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8943
8944         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8945         there, while the mantissa of a double is "only" 53 bits wide.
8946
8947 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8948
8949         Adding sdcclib to the build.  MSVC project coming soon.
8950         Files added/changed:
8951
8952         * support\librarian\clean.mk
8953         * support\librarian\configure
8954         * support\librarian\configure.in
8955         * support\librarian\config_in.h
8956         * support\librarian\Makefile.bcc
8957         * support\librarian\Makefile.in
8958         * support\librarian\sdcclib.c
8959         * Makefile.bcc
8960         * Makefile
8961         * Makefile.common.in
8962         * configure
8963         * configure.in
8964
8965 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8966
8967         Linker now complaints if linked modules have conflicting options, for
8968         example, one compiled using --model-large and another one compiled with
8969         --model-small.  The following files were modified:
8970
8971         * as\mcs51\asdata.c
8972         * as\mcs51\aslink.h
8973         * as\mcs51\asm.h
8974         * as\mcs51\asmain.c
8975         * as\mcs51\asout.c
8976         * as\mcs51\i51pst.c
8977         * as\mcs51\lkdata.c
8978         * as\mcs51\lklibr.c
8979         * as\mcs51\lkmain.c
8980         * as\z80\asdata.c
8981         * as\z80\asm.h
8982         * as\z80\asmain.c
8983         * as\z80\asout.c
8984         * as\z80\z80pst.c
8985         * link\z80\aslink.h
8986         * link\z80\lkdata.c
8987         * link\z80\lklibr.c
8988         * link\z80\lkmain.c
8989         * src\SDCCglue.c
8990
8991 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8992
8993         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8994         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8995
8996 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8997
8998         * src/z80/mappings.i: fix _mul[us][int,long] entries
8999
9000 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9001
9002         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9003
9004 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9005
9006         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9007         * support/regression/tests/bitopcse.c: added
9008         fixed warning:
9009         * src/avr/gen.c:
9010         * src/pic/gen.c:
9011         * src/pic16/gen.c:
9012         * src/z80/gen.c:
9013         * src/xa51/gen.c:
9014
9015 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9016
9017         added support for new library format to z80, gbz80 linkers:
9018         *link/z80/aslink.h
9019         *link/z80/lklex.c
9020         *link/z80/lklib.c
9021         *link/z80/lklist.c
9022
9023 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9024
9025         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9026         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9027
9028 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9029
9030         added DUMMY_READ_VOLATILE:
9031         * src/SDCC.y:
9032         * src/avr/gen.c:
9033         * src/xa51/gen.c:
9034         * src/z80/gen.c:
9035         * src/pic/gen.c:
9036         * src/pic16/gen.c:
9037         * src/mcs51/gen.c:
9038         * src/ds390/gen.c:
9039         * src/SDCCcse.c (algebraicOpts): many improvements
9040         * src/SDCCcse.h: removed algebraicOpts()
9041         * src/SDCCicode.c (picDummyRead): added
9042
9043 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9044
9045         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9046         "Insufficient space in data memory".
9047
9048 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9049
9050         * src/mcs51/gen.c: fixed bug #771358
9051         * src/z80/gen.c: fixed bug #759087
9052
9053 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9054
9055         * src/pic16/glue.c: minor cleanup by Vangelis
9056
9057 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9058
9059         * device/include/regc515c.h: fixed #758477
9060         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9061         * device/lib/_gptrput.c: saved a few bytes
9062         * my tab spacing is 8, yours too?)
9063         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9064         * device/lib/serial.c: process RX bytes earlier than TX bytes
9065         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9066
9067 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9068
9069         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9070
9071 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9072
9073     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9074
9075 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9076
9077         * device/lib/Makefile.in: bad fix, reverted to 1.43
9078
9079 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9080
9081         * device/lib/Makefile.in: added missing z80 object files
9082
9083 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9084
9085         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9086         pic16 progress by Vangelis:
9087         * src/SDCCglobl.h:
9088         * src/SDCCmain.c:
9089         * src/pic/Makefile:
9090         * src/pic:
9091         * pic/Makefile:
9092         * pic16/device.c:
9093         * pic16/device.h:
9094         * pic16/gen.c:
9095         * pic16/gen.h:
9096         * pic16/genarith.c:
9097         * pic16/glue.c:
9098         * pic16/main.c:
9099         * pic16/pcode.c:
9100         * pic16/pcode.h:
9101         * pic16/pcodepeep.c:
9102         * pic16/peeph.def:
9103
9104 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9105
9106     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9107
9108 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9109
9110     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9111     added gbz80 build to MSVC project.
9112     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9113     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9114     from 8051 stuff and setup so it links using a .lnk file.
9115
9116 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9117
9118     * support/librarian/sdcclib.c: sdcc librarian.
9119     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9120     with sdcclib.
9121
9122 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9123
9124     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9125
9126 2003-07-02  Borut Razem <borut.razem AT siol.net>
9127
9128         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9129         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9130         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9131         src/xa51/main.c, src/z80/main.c:
9132         virtualization of glue() function: each port has it's own glue function,
9133         which is accessed by do_glue function pointer in PORT.general structure
9134
9135 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9136
9137         * DS800C400 fun, improved ROM interface and tinibios.
9138
9139 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9140
9141         * More support for DS80C400. Now includes beginning of interface to ROM.
9142
9143 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9144
9145         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9146
9147 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9148
9149         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9150
9151 2003-06-19  Borut Razem <borut.razem AT siol.net>
9152
9153         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9154
9155 2003-06-19  Borut Razem <borut.razem AT siol.net>
9156
9157         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9158         fixed Z80 port - crt0.o: cannot open.
9159
9160 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9161
9162         * support/Util/MySystem.c (merge_command): revert bad fix
9163
9164 2003-06-18  Borut Razem <borut.razem AT siol.net>
9165
9166         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9167
9168 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9169
9170         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9171         option --use-stdout sends errors to stdout instead of stderr.
9172
9173 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9174
9175         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9176
9177 2003-06-15  Borut Razem <borut.razem AT siol.net>
9178
9179         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9180         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9181         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9182         fixed width array of pointers replaced with sets;
9183         multiple include and lib paths ared transferred to preprocessor and linker
9184         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9185         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9186         fixed width array of pointers
9187         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9188         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9189         fixupPath(), getPathDifference()
9190         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9191         fixed width array of pointers
9192
9193 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9194
9195         * src/pic16/ralloc.c: fix warnings
9196         * src/pic16/pcode.c: fix warning
9197
9198 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9199
9200          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9201         know all the details, but essentially this set of changes enable
9202         the pic16 port to generate movff instructions and generate assembler
9203         directives,
9204         * src/SDCCmain.c:
9205         * src/pic16/gen.c:
9206         * src/pic16/glue.c:
9207         * src/pic16/pcode.c:
9208         * src/pic16/device.c:
9209         * src/pic16/main.c:
9210         * src/pic16/pcode.h:
9211         * src/pic16/pcoderegs.c:
9212         * src/pic16/ralloc.c:
9213         * src/pic16/ralloc.h:
9214
9215 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9216
9217         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9218         added option --vc, so sdcc errors and warnings are compatible with
9219         Microsoft Visual Studio.
9220
9221 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9222
9223         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9224           device/lib/libfloat.lib: added atof function.
9225
9226 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9227
9228         * doc/sdccman.lyx: updated to Lyx 1.3
9229         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9230         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9231         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9232
9233 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9234
9235         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9236
9237 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9238
9239         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9240           additions to the "related tools/documentation" section
9241
9242 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9243
9244         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9245
9246 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9247
9248         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9249         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9250
9251 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9252
9253         * doc/sdccman.lyx: fix double dash and other minor things
9254         * doc/Makefile: fix double dash
9255
9256 2003-05-28  Karl Bongers(patches from Martin Helmling)
9257         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9258           condition and ignore commands.
9259
9260 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9261
9262         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9263           is in parts still quite out of date, I did changes as far as I felt makes sense
9264           for a non-native english speaker.
9265           Please feel free to add to the manual or to correct my changes.
9266         * doc/Makefile: undid touching the date of intermediate tex files.
9267
9268 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9269
9270         * doc/sdccman.lyx: Manual has an index now
9271
9272 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9273
9274         Finalize muluint/mulsint and mululong/mulslong merging:
9275         * device/lib/_mulint.c
9276         * device/lib/_mullong.c
9277         * device/lib/gbz80/mul.s
9278         * device/lib/gbz80/stubs.s
9279         * device/lib/z80/mul.s
9280         * device/lib/z80/stubs.s
9281         * src/SDCCsymt.c (initCSupport)
9282
9283 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9284
9285         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9286         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9287           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9288           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9289           instead of /Zm500.
9290
9291 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9292
9293         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9294           the regression tests I'm not brave enough to enable 245.b, 245.c
9295         * doc/sdccman.lyx: added latex preamble for hyperref package.
9296           Using pdflatex this will give you a hyperlinked pdf file with
9297           bookmarks. (prepend '%' before /usepackage if this breaks something)
9298
9299 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9300
9301          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9302
9303 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9304
9305         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9306
9307 2003-05-21    <johan AT balder>
9308
9309         * src/SDCCglue.c (printIval): fixed bug #739934
9310
9311 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9312
9313         Applied patch from bug 737905 (renamed yylineo to mylineno):
9314         * src/altlex.c
9315         * src/SDCCast.c
9316         * src/SDCglobl.h
9317         * src/SDCC.lex
9318         * src/SDCCsymt.c
9319         * src/SDCCval.c
9320         * src/pic16/pcode.c: Cleaned warnings
9321         * src/pic16/pcodeflow.c: Cleaned warnings
9322         * src/pic16/pcoderegs.c: Cleaned warnings
9323
9324 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9325
9326         * src/pic16/pcode.c: Cleaned warnings
9327         * src/pic16/pcodepeep.c: Cleaned warnings
9328         * src/pic16/ralloc.c: Cleaned warnings
9329
9330 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9331
9332         * doc/sdccman.lyx: fixed bug 739745
9333         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9334
9335 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9336
9337         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9338         it can be defined with CFLAGS when running configure
9339         * src/SDCCmain.c: fixed compiling + linking with object files
9340
9341 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9342
9343         * configure.in: configure for pic16 port,
9344             added --disable-pic16-port
9345         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9346         * src/SDCCmain.c: linkOptions is changed to set *,
9347             added if/endif conditional macros to remove options help
9348             messages from optionsTable when a port is not configured, added
9349             support for the PIc16 port in the ports table, when executing
9350             the compiler with no port specified on command line, a default
9351             port is selected with the new macro DEFAULT_PORT which is
9352             defined in port.h, in setDefaultOptions() linkOptions is removed
9353             from initialization assignment, since now it is a set,
9354             parseCmdLine uses setParseWithComma for linkOptions, in
9355             linkEdit() linkOptions are accessed with new function indexSet()
9356             which returns the i'th item of a set variable. See SDCCset.c, in
9357             linkEdit() when calling buildCmdLine(), added linkOptions as
9358             last argument. Now users can pass arguments to gplink via the
9359             -Wl option, main() uses pic16glue() to glue up pic16 programs
9360         * src/SDCCpeeph.c: various changes to support pic16
9361         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9362             return the i'th item of the set
9363         * src/SDCCset.h: added function prototype for indexSet()
9364         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9365         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9366         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9367             added macro DEFAULT_PORT
9368         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9369         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9370             generated
9371         * src/pic16/glue.c: commented out some error producing lines
9372         * src/pic16/main.c: __config directives are commented out to stop
9373             gpasm complaining and test the linkage with gplink, _linkCmd and
9374             _asmCmd changed to be more gplink and gpasm friendly
9375         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9376             produced an error when parsed, peep rule 12 is added to utilize
9377             movff, but it is commented out since the pCode does not support
9378             yet a command with 2 address arguments
9379
9380 2003-05-18    <johan AT balder>
9381
9382         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9383         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9384 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9385
9386         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9387   Added feature to script commands from file.
9388
9389 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9390
9391         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9392         * src/SDCCutil.c: include ctype.h for win32
9393
9394 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9395
9396         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9397
9398 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9399
9400         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9401   Fixed so you can set breakpoints prior to run, run does not stop
9402   on entry now.  Add tbreak.  Other enhancements and fixes for use
9403   with ddd.
9404
9405 2003-05-12  Borut Razem <borut.razem AT siol.net>
9406
9407         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9408
9409 2003-05-11  Borut Razem <borut.razem AT siol.net>
9410
9411         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9412         the path of bin directory, so that PATH is the only env. variable, which has to be set
9413         in case of standard installation.
9414         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9415         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9416         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9417
9418 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9419
9420         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9421         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9422         temp files are in the port dir; clean the gen/test directory when
9423         generating new test.c
9424         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9425         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9426         * support/regression/tests/zeropad.c: added
9427
9428 2003-05-09    <johan AT balder>
9429
9430         * src/SDCCglue.c: fixed bug #597940
9431
9432 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9433
9434         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9435   cache sfr, optimize next,step, fix off by one sourceline,
9436   support ddd list function.
9437         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9438
9439 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9440
9441         * support/regression/HTMLgen.py: added compare_s2f()
9442         * support/regression/Makefile: redo 1.27
9443         * support/regression/generate-cases.py: redo 1.5
9444
9445 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9446
9447         * support/regression/tests/float.c: workaround 33 bit hex constant
9448         * support/regression/tests/simplefloat.c: fix division for host
9449
9450 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9451
9452         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9453         that tame's the PIC's over-aggressive optimizer.
9454
9455 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9456
9457          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9458          support for MSVC.
9459
9460 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9461
9462         Initial support for DS80C400. "Hello world" runs on TINIm400
9463         (with polled I/O).
9464
9465 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9466
9467          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9468          * Some notes on ddd usage added in debugger/README
9469          Martin Helmling adding more features and fixes for ddd GUI debugger.
9470          Code added for nexti, stepi, up, down, and other adjustments.
9471
9472 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9473
9474         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9475         * src/pic/peeph.def Added two rules to optimize carry manipulation
9476         * src/pic/* removed debug printfs
9477
9478 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9479
9480         * debugger/mcs51/cmd.c: added header newalloc.h
9481
9482 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9483
9484         * as/Makefile: new EXEEXT
9485         * as/z80/Makefile: remove trailing slash of BUILDIR
9486         * as/z80/clean.mk: new EXEEXT
9487         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9488         * support/cpp2/Makefile.in: new EXEEXT
9489         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9490
9491 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9492
9493         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9494         EXEEXT was introduced to fix all related problems with targets
9495         "clean", "install" and "uninstall"; a couple of further flaws
9496         especially with "clean" have been fixed too
9497         * as/mcs51/Makefile.in
9498         * as/mcs51/clean.mk
9499         * as/z80/Makefile
9500         * Makefile
9501         * clean.mk
9502         * debugger/mcs51/Makefile.in
9503         * debugger/mcs51/clean.mk
9504         * link/z80/Makefile
9505         * link/z80/Makefile.in
9506         * link/z80/clean.mk
9507         * link/Makefile
9508         * packihx/Makefile.in
9509         * packihx/clean.mk
9510         * sim/ucsim/Makefile
9511         * sim/ucsim/clean.mk
9512         * sim/ucsim/avr.src/Makefile.in
9513         * sim/ucsim/avr.src/clean.mk
9514         * sim/ucsim/s51.src/Makefile.in
9515         * sim/ucsim/s51.src/clean.mk
9516         * sim/ucsim/xa.src/Makefile.in
9517         * sim/ucsim/xa.src/clean.mk
9518         * sim/ucsim/z80.src/Makefile.in
9519         * sim/ucsim/z80.src/clean.mk
9520         * sim/ucsim/main_in.mk
9521         * sim/ucsim/packages_in.mk
9522         * sim/ucsim/gui.src/Makefile.in
9523         * sim/ucsim/gui.src/serio.src/Makefile.in
9524         * sim/ucsim/gui.src/serio.src/clean.mk
9525         * src/Makefile.in
9526         * src/clean.mk
9527         * support/cpp2/Makefile.in
9528         * support/cpp2/clean.mk
9529         * support/makebin/Makefile
9530         * support/makebin/clean.mk
9531         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9532         * doc/sdccman.lyx: --program-suffix no longer needed
9533
9534 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9535
9536          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9537          Martin Helmling added support for ddd GUI debugger.
9538          Code added to display assembly, set variables, and other commands
9539          to interface to ddd.
9540
9541 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9542
9543         * as/Makefile: fix target clean
9544         * as/clean.mk: fix target clean
9545         * as/z80/clean.mk: fix target clean
9546
9547 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9548
9549         * Makefile.common.in: added  AT EXEEXT AT
9550         * configure.in: removed all mingw32 stuff
9551         * configure: rebuilt from configure.in
9552         * doc/sdccman.lyx: updated section "installation"
9553         * support/scripts/sdcc_mingw32: adapted to configure
9554         * support/scripts/sdcc_cygwin_mingw32: added
9555
9556 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9557
9558         * src/pic Added object file support for the PIC port
9559         * src/pic Applied patch from Craig Franklin (this started the object file support)
9560         * src/regression Updated the PIC regression tests for object files
9561
9562 2003-04-20  Borut Razem <borut.razem AT siol.net>
9563
9564         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9565           lklex.c: In function `getfid':
9566           lklex.c:203: warning: array subscript has type `char'
9567         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9568           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9569         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9570           stack handling macros
9571
9572 2003-04-19  Borut Razem <borut.razem AT siol.net>
9573
9574         * "handling space characters in file path" task:
9575         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9576         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9577         * support/Util/MySystem.h: make it self-sufficient
9578         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9579           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9580           handling space characters in file path
9581         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9582           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9583         * support/Util/MySystem.c: handling space characters in executable's path
9584
9585 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9586
9587         * as/z80/Makefile: fix permanent rebuild of z80
9588         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9589         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9590
9591 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9592
9593         * src/SDCCopt.c: add special case optimization to replace modulo by
9594           a power of two with a bitwise AND.
9595
9596 2003-04-18    <johan AT balder>
9597
9598         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9599
9600 2003-04-17    <johan AT balder>
9601
9602         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9603         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9604
9605 2003-04-13  Borut Razem <borut.razem AT siol.net>
9606
9607         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9608         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9609           fixed mingw problem in adl_NORMALIZE_PATH
9610
9611 2003-04-12  Borut Razem <borut.razem AT siol.net>
9612
9613         * fixed "#pragma SAVE/RESTORE can not be nested":
9614         * src/SDCC.lex: reworked pragma handling functions
9615         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9616         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9617
9618 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9619
9620         * src/SDCCutil.c (pathEquivalent): defined but not used
9621         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9622         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9623         * configure: rebuilt from configure.in
9624         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9625         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9626         * device/include/Makefile.in: replace sdcc_datadir
9627         * device/lib/Makefile.in: replace sdcc_datadir
9628         * Makefile.common.in: add LDFLAGS from configure
9629         * packihx/Makefile.in: use LDFLAGS
9630         * src/Makefile.in: use LDFLAGS
9631         * support/cpp2/Makefile.in: add LDFLAGS from configure
9632         * support/makebin/Makefile: use LDFLAGS
9633         * .version: bumped version number to 2.3.5
9634
9635 2003-04-12  Borut Razem <borut.razem AT siol.net>
9636
9637         * completed "different paths" task:
9638         * src/SDCCmacro.c: fixed bug in handling quotes
9639         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9640         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9641
9642 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9643
9644         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9645
9646 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9647
9648         * ds390/gen.c ds390/peeph.def: fix bug 706781
9649
9650 2003-04-11  Borut Razem <borut.razem AT siol.net>
9651
9652         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9653
9654 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9655
9656         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9657         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9658          set - this bit used to not be set...).
9659         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9660           bad code in PIC Port
9661         * src/regression/and2.c added to test bug 609268
9662         * src/regression/Makefile added and2.c to regression test
9663
9664
9665 2003-04-08    <johan AT CP255758-A>
9666
9667         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9668         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9669         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9670
9671 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9672
9673         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9674         fix bug #487815
9675         * support/cpp2/Makefile.in: fix bug #487815
9676         * configure: rebuilt from configure.in
9677         * Makefile.common.in: docdir changed, new path suffixes
9678         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9679         * sdcc_vc_in.h: reflect changes from sdccconf.h
9680         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9681         * src/SDCCutil.h: remove BINDIR hack
9682         * doc/sdccman.lyx: update new path hierarchy
9683
9684 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9685
9686         * src/SDCCpeeph.c: added okToRemoveSLOC test
9687
9688 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9689
9690         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9691
9692 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9693
9694         * src/SDCCpeeph.c: added labelIsReturnOnly test
9695         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9696
9697 2003-04-05    <johan AT balder>
9698
9699         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9700         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9701         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9702         * src/SDCCast.c: fixed a warning
9703         * src/SDCCast.h: fixed a warning
9704         * src/SDCCicode.c (operandFromAst): fixed a warning
9705
9706 2003-04-04    <johan AT balder>
9707
9708         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9709         * src/SDCCast.c (decorateType): fixed bug #715076
9710         * src/SDCC.y: fixed bug #702907
9711
9712 2003-04-03    <johan AT balder>
9713
9714         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9715         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9716         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9717         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9718         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9719
9720 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9721
9722         * _decdptr.c: fix return values
9723         * _gptrget.c: fix return values
9724         * _gptrgetc.c: fix return values
9725         * _gptrput.c: fix return values
9726         * _mulint.c: fix return values
9727         * as/z80/Makefile: fix 'make -j' problem
9728
9729 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9730
9731         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9732         * configure.in: big cleanup, updated to autoconf 2.5x
9733         * configure: rebuilt from configure.in
9734         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9735         * sdcc_vc_in.h: reflect changes from sdccconf.h
9736         * doc/Makefile: fixed a flaw in "make install"
9737
9738 2003-04-02    <johan AT balder>
9739
9740         * src/ds390/gen.c (genCmp): no comments
9741         * src/mcs51/gen.c (genCmp): no comments
9742         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9743         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9744
9745 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9746
9747         * support/regression/generate-cases.py: place generated file in given sub directory
9748         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9749         * support/regression/Makefile: improvements for 'make -j';
9750         side effect: it's simpler and faster now
9751
9752 2003-03-31  Borut Razem <borut.razem AT siol.net>
9753
9754         * src/z80/main.c: link-{port} and as-{port} defined without path
9755         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9756
9757 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9758
9759         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9760
9761 2003-03-30  Borut Razem <borut.razem AT siol.net>
9762
9763         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9764           changed type of list parameter to set
9765         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9766         * src/port.h: changed type of do_assemble() parameter to set
9767         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9768           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9769           definition of "cppoutfilename" macro with NULL value in preProcess()
9770         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9771         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9772         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9773           replaced with set *binPathSet
9774         * shash_add() deallocates the item, if allready exsists, before adding the new one
9775         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9776
9777 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9778
9779         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9780           a nested for loop bug in the PIC port
9781         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9782           for loops
9783
9784 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9785
9786         * support/Util/dbuf.h: remove C++ stuff to make it portable
9787
9788 2003-03-28  Borut Razem <borut.razem AT siol.net>
9789
9790         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9791           literal strings in stringLiteral()
9792         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9793         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9794           to the project
9795
9796 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9797
9798         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9799
9800 2003-03-26    <johan AT balder>
9801
9802         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9803         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9804         * src/SDCCast.c (decorateType): fixed " -v < 3"
9805
9806 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9807
9808         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9809         Added Lenny Story's debug infrastructure changes:
9810         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9811         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9812         * src/cdbFile.c: added
9813         * src/SDCCdebug.c: added
9814         * src/SDCCdebug.h: added
9815         * src/SDCCast.c (createFunction)
9816         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9817         * src/SDCCmain.c (parseCmdLine, main)
9818         * src/SDCCmem.c (redoStackOffsets)
9819         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9820         * src/SDCCsymt.h
9821         * src/common.h
9822         * src/avr/gen.c (genAVRCode)
9823         * src/ds390/gen.c (gen390Code)
9824         * src/mcs51/gen.c (gen51Code)
9825         * src/pic/gen.c (genpic14Code)
9826         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9827         * src/xa51/gen.c (genXA51Code)
9828         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9829
9830 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9831
9832         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9833         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9834
9835 2003-03-22    <johan AT balder>
9836
9837         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9838
9839 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9840
9841         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9842         * doc/cdbfileformat.lyx: added, written by Lenny Story
9843         * doc/Makefile: added cdbfileformat.lyx
9844         * doc/clean.mk: added cdbfileformat.lyx
9845
9846 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9847
9848         * src/mcs51/peeph.def: fix bug #705773
9849
9850 2003-03-20    <johan AT balder>
9851
9852         An sfr/sbit can have an "at #" AND an initializer
9853         * src/SDCCsymt.c (checkSClass):
9854         * src/SDCCmem.c (allocGlobal):
9855         * src/SDCCmem.c (allocLocal):
9856         * src/SDCCast.c (createBlock):
9857
9858 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9859
9860         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9861
9862 2003-03-16    <johan AT balder>
9863
9864         Undid the hackup of const and volatile, the problem is much bigger
9865         * src/SDCC.y:1.65
9866         * src/SDCCast.c:1.171
9867         * src/SDCCglue.c:1.138
9868         * src/SDCCicode.c:1.146
9869         * src/SDCCsymt.c:1.150
9870         * src/SDCCval.c:1.65
9871
9872 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9873
9874         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9875         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9876
9877 2003-03-13    <johan AT balder>
9878
9879         Hackup const and volatile modifiers in type chains a bit:
9880         * src/SDCC.y:1.63
9881         * src/SDCCast.c:1.169
9882         * src/SDCCglue.c:1.136
9883         * src/SDCCicode.c:1.143
9884         * src/SDCCsymt.c1.146
9885         * src/SDCCsymt.h1.59
9886         * src/SDCCval.c:1.63
9887
9888 2003-03-12    <johan AT balder>
9889
9890         * src/SDCCBBlock.h: more LRH debugging junk
9891         * src/SDCCcflow.h: more LRH debugging junk
9892         * src/SDCCloop.c: more LRH debugging junk
9893         * src/SDCC.y (struct_declaration): fixed bug #697590
9894         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9895         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9896         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9897
9898 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9899         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9900         test function names must now match exactly).
9901         * src/SDCCcse.c: added special case in findCheaperOp to allow
9902         extending a short integer. Makes less awful code for bug 700121 test case.
9903
9904 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9905
9906         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9907         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9908
9909 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9910
9911         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9912         actually called (operandsNotEqual() was called for all
9913         operandsNotEqualX tests).
9914
9915 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9916
9917         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9918         with shorter literals. Fixes bug 700121.
9919
9920 2003-03-11    <johan AT balder>
9921
9922         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9923
9924 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9925
9926         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9927         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9928
9929 2003-03-10  Borut Razem <borut.razem AT siol.net>
9930
9931         * src/SDCCmain.c: pipe preprocessor's output
9932         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9933         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9934         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9935         which closes all pipes in pipeSet set
9936         * src/SDCCset.c: free deleted item in function deleteSetItem()
9937         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9938         moved from z80 to src subproject
9939         * .version: increased version number to 2.3.4
9940
9941 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9942
9943         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9944         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9945         * support/regression/ports/xa51/spec.mk: fix typo
9946
9947 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9948
9949         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9950
9951 2003-03-09  Borut Razem <borut.razem AT siol.net>
9952
9953         * src/SDCCmain.c: pipe preprocessor's output
9954         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9955         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9956         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9957         which closes all pipes in pipeSet set
9958         * src/SDCCset.c: free deleted item in function deleteSetItem()
9959         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9960         moved from z80 to src subproject
9961
9962 2003-03-09  Borut Razem <borut.razem AT siol.net>
9963
9964         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9965         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9966         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9967         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9968         * src/SDCCglobl.h: unification of WIN32 native definitions
9969
9970 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9971
9972         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9973
9974 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9975
9976         * src/configure.in:   check for endianess (even while cross-compiling)
9977         * src/configure:      check for endianess (even while cross-compiling)
9978         * src/configure_in.h: check for endianess (even while cross-compiling)
9979         * src/avr/gen.c:        remove old endianess stuff
9980         * src/mcs51/gen.c:      remove old endianess stuff
9981         * src/ds390/gen.c:      remove old endianess stuff
9982         * src/pic/gen.c:        remove old endianess stuff
9983         * src/pic/genarith.c:   remove old endianess stuff
9984         * src/pic/glue.c:       fix endianess check
9985         * src/pic16/gen.c:      remove old endianess stuff
9986         * src/pic16/genarith.c: remove old endianess stuff
9987         * src/pic16/glue.c:     fix endianess check
9988         * src/xa51/gen.c:       remove old endianess stuff
9989         * src/z80/gen.c:        fix endianess check
9990         * src/SDCCglue.c:       fix endianess check
9991         * src/ds390/peeph.def: fix bug 700036
9992
9993 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9994
9995         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9996         * src/configure: find appropriate data-types on host for SDCC's int and long
9997         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9998         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9999         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10000
10001 2003-03-07    <johan AT balder>
10002
10003         Just a big NOOP:
10004                 some minor cleanups before the big shot
10005                 OP_DEFS and OP_USES now use Kevin's protection
10006                 new option --nolabelopt
10007
10008         * src/SDCCBBlock.c:
10009         * src/SDCCast.c,:
10010         * src/SDCCcflow.c:
10011         * src/SDCCcse.c:
10012         * src/SDCCicode.c:
10013         * src/SDCCicode.h:
10014         * src/SDCClabel.c:
10015         * src/SDCCloop.c:
10016         * src/SDCCmain.c:
10017         * src/ds390/ralloc.c:
10018         * src/mcs51/ralloc.c:
10019         * src/pic/ralloc.c:
10020         * src/xa51/ralloc.c:
10021         * src/z80/ralloc.c:
10022
10023 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10024
10025         * src/pic/pcode.c (get_op): fix 64 bit warnings
10026         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10027         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10028         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10029         * support/regression/tests/malloc.c: fix 64 bit warnings
10030
10031 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10032
10033         * src/mcs51/gen.c (genMinus): fixed bug 696436
10034
10035 2003-03-02  Borut Razem <borut.razem AT siol.net>
10036
10037         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10038
10039 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10040
10041         * configure.in: test for mkstemp
10042         * sdccconf_in.h: add HAVE_MKSTEMP
10043
10044 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10045
10046         * device/include/ctype.h: removed warning while using --stack-auto
10047         * device/include/malloc.h: removed warning while using --stack-auto
10048         * device/include/string.h: removed warning while using --stack-auto
10049
10050 2003-02-23  Borut Razem <borut.razem AT siol.net>
10051
10052         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10053         because NDEBUG is defined (see man assert)
10054         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10055
10056 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10057
10058         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10059         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10060
10061 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10062
10063         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10064         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10065
10066 2003-02-18    <johan AT balder>
10067
10068         * as/mcs51/asmain.c (asmbl): module can start with a digit
10069         * as/z80/asmain.c (asmbl): module can start with a digit
10070
10071 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10072
10073         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10074         * src/asm.c: fix pipe() for Mingw32
10075
10076 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10077
10078         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10079         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10080         make -V work again; --c1mode reads now from stdin
10081         * doc/sdccman.lyx: added --c1mode
10082         * support/Util/SDCCerr.c: new messages for c1 mode
10083         * support/Util/SDCCerr.h: new messages for c1 mode
10084         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10085
10086 2003-02-15    <johan AT balder>
10087
10088         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10089
10090 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10091
10092         * doc/sdccman.lyx: Environment variables, -o and other minor things
10093
10094 2003-02-14    <johan AT balder>
10095
10096         * src/xa51/main.c: before anyone really tries to use it :)
10097
10098         * Install doc's in share/sdcc/doc
10099         * removed some obsolete files
10100         * Do a proper make distclean and uninstall
10101         M Makefile.common.in
10102         R sdccbuild.sh
10103         M as/Makefile
10104         M device/include/Makefile.in
10105         M device/lib/Makefile.in
10106         M doc/sdccman.lyx
10107         M link/Makefile
10108         M sim/ucsim/doc/Makefile.in
10109         M src/clean.mk
10110         R src/avr/peeph.rul
10111         R src/xa51/peeph.rul
10112         M support/cpp2/Makefile.in
10113         M support/makebin/Makefile
10114
10115
10116 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10117
10118         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10119
10120 2003-02-10  Borut Razem <borut.razem AT siol.net>
10121
10122         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10123         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10124         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10125         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10126         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10127         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10128         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10129         src/z80/Makefile.bcc: Borland Makefile cleanup
10130         * as/z80/Makefile.bcc: Added Borland Makefile
10131         * support/cpp2/borland.h: Removed
10132
10133 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10134
10135         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10136         * src/SDCC.lex: new pragma NOIV
10137         * src/SDCCglobl.h: new pragma NOIV
10138         * src/SDCCmem.c: new pragma NOIV
10139
10140 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10141
10142         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10143
10144 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10145
10146         * src/SDCCmain.c: signal handling is switched off by --debug
10147         * doc/Makefile: small fix for install; use clean.mk again
10148         * doc/clean.mk: clean *.pdf and *.html too
10149
10150 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10151
10152         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10153         * device/lib/printfl.c: fix a ds390 bug by making it portable
10154         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10155         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10156         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10157         * debugger/mcs51/cmd.c: converted multi-line string literals
10158         * sim/ucsim/globals.cc: converted multi-line string literals
10159         * src/SDCCmain.c: introduced signal handler to remove temp files
10160         * doc/Makefile: small tweaks, implement clean
10161         * doc: removed generated files
10162
10163 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10164
10165         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10166         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10167         Address Record is not correctly generated for DS390."
10168
10169 2003-02-02  Borut Razem <borut.razem AT siol.net>
10170
10171         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10172         * as/mcs51/asm.h: fixed compilation with Borland C
10173         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10174         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10175         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10176         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10177         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10178         src/z80/Makefile.bcc: delete $(LIB) only if exist
10179         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10180
10181 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10182
10183         * device/include/malloc.h: introduced NULL
10184         * device/include/string.h: introduced NULL
10185         * device/include/stdlib.h: introduced NULL
10186         * device/lib/_memcpy.c: removed NULL
10187         * device/lib/_strcat.c: removed NULL
10188         * device/lib/_strchr.c: removed NULL
10189         * device/lib/_strcmp.c: removed NULL
10190         * device/lib/_strcpy.c: removed NULL
10191         * device/lib/_strcspn.c: removed NULL
10192         * device/lib/_strlen.c: removed NULL
10193         * device/lib/_strncat.c: removed NULL
10194         * device/lib/_strncmp.c: removed NULL
10195         * device/lib/_strncpy.c: removed NULL
10196         * device/lib/_strpbrk.c: removed NULL
10197         * device/lib/_strrchr.c: removed NULL
10198         * device/lib/_strspn.c: removed NULL
10199         * device/lib/_strstr.c: removed NULL
10200         * device/lib/_strtok.c: removed NULL
10201         * device/lib/malloc.c: removed NULL, include own header
10202
10203 2003-02-02    <johan AT balder>
10204
10205         * 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
10206         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10207         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10208         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10209         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10210         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10211
10212 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10213
10214         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10215         area 'DATA'"
10216
10217 2003-02-01    <johan AT balder>
10218
10219         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10220
10221 2003-01-31    <johan AT CP255758-A>
10222
10223         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10224
10225 2003-01-30    <johan AT balder>
10226
10227         * src/SDCCBBlock.c: automatic bug detection
10228         * src/SDCCicode.c: automatic bug detection
10229
10230 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10231
10232         * src/SDCCglobl.h:   now --xram-size 0 works
10233         * src/SDCCmain.c:    now --xram-size 0 works
10234
10235 2003-01-29    <johan AT balder>
10236
10237         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10238
10239 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10240
10241         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10242         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10243         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10244         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10245         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10246         * src/SDCCmain.c:    Added options --xram-size and --code-size
10247
10248 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10249
10250         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10251         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10252
10253 2003-01-27    <johan AT balder>
10254
10255         * src/SDCC.y: fixed bug #613764
10256
10257 2003-01-26    <johan AT balder>
10258
10259         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10260         * src/SDCCsymt.h: fixed bug #673374
10261         * src/SDCCglue.c: fixed bug #661910
10262         * src/SDCCast.c: fixed bug #458099 and 673374
10263
10264 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10265
10266         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10267         * as/mcs51/strcmpi.h: added
10268         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10269         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10270         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10271         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10272         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10273         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10274         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10275         * as/mcs51/Makefile.aslink: new module strcmpi
10276         * as/mcs51/Makefile.asx8051: new module strcmpi
10277         * as/mcs51/Makefil.bcc: new module strcmpi
10278         * as/mcs51/Makefile.in: new module strcmpi
10279         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10280
10281 2003-01-26    <johan AT balder>
10282
10283         * src/SDCCglue.c: reverted back to 1.124
10284         * src/SDCCast.c: reverted back to 1.156
10285         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10286
10287 2003-01-25    <johan AT balder>
10288
10289         * src/SDCCglue.c: A better fix for bug #661910
10290         * src/SDCCast.c: A better fix for bug #661910
10291         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10292
10293 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10294
10295         * src/Makefile.in: remove spawn.o
10296         * src/SDCCmain.c: remove spawn.h
10297         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10298         * src/spawn.c: removed
10299         * src/spawn.h: removed
10300         * support/regression/ports/ds390/spec.mk: link with -r
10301
10302 2003-01-24    <johan AT CP255758-A>
10303
10304         * src/ds390/gen.c (aopOp): fixed bug #667458
10305         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10306         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10307         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10308
10309 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10310
10311         * src/mcs51/peeph.def: better assembler identation by Frieder
10312         * src/mcs51/gen.c: better assembler identation by Frieder
10313
10314 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10315
10316         * as/z80/string.h: removed for gcc 3.2
10317         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10318         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10319
10320 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10321
10322         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10323         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10324         * support/regression/Makefile: separate temp files for ports
10325         * support/regression/generate-cases.py: separate temp files for ports
10326         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10327         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10328
10329 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10330
10331         * moved tinitalk to device/examples/ds390
10332
10333 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10334
10335         * as/mcs51/lkmem.c: rflag is for DS390
10336         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10337         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10338                          (linkEdit): move mem- and map-files the same way as ihx-files
10339         * src/z80/main.c (_setDefaultOptions): removed --generic
10340         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10341         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10342         * src/pic/glue.c (picglue): --c1mode works again
10343         * src/pic16/glue.c (pic16glue): --c1mode works again
10344         * src/asm.c (printCLine): fix #660034
10345
10346 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10347
10348         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10349         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10350         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10351         * as/mcs51/lkmem (summary): better fix for sp problem
10352         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10353         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10354         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10355                                               remove --stack-after-data
10356
10357 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10358
10359         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10360         * src/SDCCutil.c (join): ugly bug: missing '\0'
10361         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10362
10363 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10364
10365         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10366         * src/port.h: typo
10367         * src/pic/main.c (_asmCmd): gpasm supports -o
10368         * src/z80/main.c: more general macros
10369         * device/lib/Makefile.in: remove intermediate files
10370
10371 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10372
10373         * .version: Bumped version number to 2.3.3
10374         * src/SDCCBBlock.c: new option -o
10375         * src/SDCCglobl.h: new option -o
10376         * src/SDCCglue.c: new option -o
10377         * src/SDCCmain.c: new option -o
10378         * src/asm.c: new option -o
10379         * src/ds390/main.c: new option -o
10380         * src/pic/glue.c: new option -o
10381         * src/pic/pcode.c: new option -o
10382         * src/pic/ralloc.c: new option -o
10383         * src/pic16/glue.c: new option -o
10384         * src/pic16/pcode.c: new option -o
10385         * src/pic16/ralloc.c: new option -o
10386         * src/z80/main.c: new option -o
10387         * device/lib/Makefile.in: use -o
10388         * support/regression/ports/ds390/spec.mk: use -o
10389         * support/regression/ports/gbz80/spec.mk: use -o
10390         * support/regression/ports/mcs51/spec.mk: use -o
10391         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10392         * support/regression/ports/z80/spec.mk: use -o
10393         * support/regression/ports/ucz80/spec.mk: use -o
10394         * support/regression/ports/xa51/spec.mk: use -o
10395         * support/regression/fwk/lib/timeout.c: fix usage string
10396
10397 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10398         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10399
10400 2003-01-07    <johan AT balder>
10401
10402         * src/SDCCast.c (decorateType): fixed bug #600035
10403
10404 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10405         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10406         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10407         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10408         * src/pic/pcode.c: outcommented unused variable to remove warnings
10409         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10410
10411 2003-01-06    <karl AT turbobit.com>
10412         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10413    regression tests.
10414
10415 2003-01-06    <johan AT balder>
10416
10417         * src/SDCCicode.c: fixed array add
10418
10419 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10420         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10421         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10422
10423 2003-01-04    <johan AT balder>
10424
10425         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10426
10427 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10428         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10429
10430 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10431         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10432         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10433
10434 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10435         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10436
10437 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10438         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10439
10440 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10441         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10442
10443 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10444
10445     * in \sdcc\as\mcs51\ changed these files in order to create an
10446     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10447     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10448     following files to include the previous two files: aslink.dsp,
10449     Makefile.aslink, Makefile.bcc, and Makefile.in.
10450
10451     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10452     .adb instead of .cdb
10453
10454 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10455
10456         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10457         value from option --iram-size.
10458
10459 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10460
10461         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10462         dram[] array.
10463
10464 2002-09-18    <wiml AT hhhh.org>
10465
10466         * SDCClrange.h: exposed setFromRange() and setToRange()
10467         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10468           packRegsForAccUse() (bug 542397)
10469         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10470           multiple times and emitting the fetch operations more than once
10471           added aopGetUsesAcc() function to allow binary operators to
10472           fetch their operands in the correct order; made genMinus() emit
10473           compact code for X = LITERAL - Y
10474
10475 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10476         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10477         sprintf() in line 1267.
10478
10479 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10480         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10481         like ports.
10482
10483 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10484         Changes to aslink (All the changes are marked with 'JCF'):
10485
10486         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10487         summary().
10488
10489         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10490         area BSEG.  Also moves, if possible, the DATA area down into the internal
10491         ram so more space is available.
10492
10493         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10494         sflag.
10495
10496         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10497         not bytes.  Function summary() which creates a memory usage summary
10498         file with extension .mem.  Reports of overlaping stack and small stack
10499         size.  If the space for the stack is less than 16 bytes aslink trows a
10500         warning.
10501
10502         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10503         the 8051.  Option 'y' for memory summary output file.
10504
10505         Changes to sdcc (All the changes are marked with 'JCF'):
10506
10507         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10508
10509         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10510         overlaying area for it (uses RegBankUsed[4]).
10511
10512         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10513         bank zero as used by default.  By default aslink locates the stack
10514         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10515         the creation of the .mem file.  Delegates the allocation of data area
10516         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10517         the begining of the stack area to aslink.
10518
10519         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10520         glue() in SDCCglue.c creates an area for it.
10521
10522 2002-09-03  Borut Razem <borut.razem AT siol.net>
10523         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10524         sdcc/src/pic/glue.c:
10525         introduced atexit() handler for teporay files removal in case of
10526         errors, assertions, ...
10527
10528 2002-08-29  Borut Razem <borut.razem AT siol.net>
10529         * sdcc/support/cpp2/auto-host_vc_in.h:
10530         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10531         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10532         Maybe there is a similar problem with BORLANDC? It should be checked!
10533
10534         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10535         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10536         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10537         was not executed, and the compiler (cl) launched a warning:
10538         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10539
10540 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10541         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10542
10543 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10544         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10545
10546         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10547           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10548           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10549           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10550           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10551           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10552           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10553         - added Release configuration in VS projects
10554         - review of compiler an linker options
10555         - VC .exe files are generated in bin_vc directory, not to interfere
10556           with binaries generated from other projects (cygwin, mingw, bcc ...)
10557
10558         * sdcc/src/yacc.dsp: added
10559
10560         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10561         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10562         and insert the version number definitions from .version
10563
10564         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10565
10566         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10567         added - genarate auto-host.h using auto-host_vc_in.h as template
10568
10569         * sdcc/sdcc_vc.h,
10570         removed from CVS, generated automatically
10571
10572 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10573         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10574
10575 2002-08-11  Borut Razem <borut.razem AT siol.net>
10576         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10577
10578 2002-08-10  Borut Razem <borut.razem AT siol.net>
10579         * src/SDCCmain.c (main):
10580         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10581         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10582         The consequence was that some temporary files were not removed.
10583
10584         * src/SDCCglue.c:
10585         unification of code in functions tempfilename() and tempfile():
10586         function tempnam() is defined in Visual Studio 6.0 and .NET
10587
10588         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10589
10590         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10591           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10592         - removed compiler command line option /WX: Treats all warnings as errors
10593         - update a list of source files, included into the project
10594
10595         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10596           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10597         changed project type to Generic Project so that can be correcly converted to VS.NET project
10598
10599         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10600
10601         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10602
10603         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10604
10605         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10606         added return 0 statements after assert() to make compiler happy
10607
10608         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10609         added newline in the def file to keep MSC compiler satisfied
10610
10611         * sdcc/src/z80/gen.c:
10612         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10613           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10614         - solved MSC error in function aopDump()
10615
10616         * sdcc_vc.h: define PREFIX as "\\sdcc"
10617
10618 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10619         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10620
10621 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10622         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10623         - Rewrote the register banking algorithm.
10624         - Added pCode live-range analysis to registers (for now, only non-used and
10625         singly-used registers optimized away)
10626
10627         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10628
10629         * 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.
10630
10631 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10632         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10633
10634 2002-04-22  Michael Hope  <michaelh AT vroom>
10635
10636         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10637
10638         * configure.in (DD_COPT): Added include support required for gbdk.
10639
10640         * .version: Bumped version number just to increase it.
10641
10642         * src/SDCCmain.c: Added -nostdinc to the default options.
10643
10644 2002-04-15  Michael Hope  <michaelh AT vroom>
10645
10646         * device/lib/z80/printf.c (sprintf): Added.
10647
10648         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10649
10650         * src/z80/peeph.def: Added transpose redundent load rule.
10651
10652         * src/z80/main.c: Added force callee saves for jaune.
10653
10654         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10655
10656         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10657
10658 2002-03-28  Johan Knol  <johan AT balder>
10659
10660         * src/SDCCval.c: fixed bug #532436
10661
10662 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10663         * /src/port.h:
10664         Added "char *Processor" field to the port structure.
10665
10666         * /src/SDCCmain.c:
10667         Added -p option. Allows port dependent processor to be specified.
10668
10669         * all ports:
10670         Initialized the new field char *Processor field to NULL in all ports
10671
10672         * /src/pic/*:
10673         Compiler generated registers for interrupt context saving
10674         were not getting allocated.
10675
10676 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10677
10678         * /src/SDCCast.c:
10679         Fixed left shift. Will promote the left side of a left shift
10680         if a) left shifting more than size of operand or b) when assigned
10681         to something size > size of left side
10682
10683 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10684         * src/pic/*
10685         tons of changes. Register allocation has been
10686         rewritten. Added customization for the various PICs. Flow
10687         analysis is restructured. ...
10688
10689         * src/pic/device.h:
10690         Added
10691
10692         * src/pic/device.c:
10693         Added. device.c is a PIC port hack to accomodate variations
10694         in PIC devices.
10695
10696 2002-03-13  Michael Hope  <michaelh AT vroom>
10697
10698         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10699
10700 2002-03-04  johanknol  <johanknol AT manik>
10701
10702         * /src/SDCCval.c: fixed
10703
10704         const unsigned char arr[][2] = { { 0, 1 } };
10705         t18.c:1: error: Initializer element is not constant
10706
10707 2002-03-04  bela  <bela AT manik>
10708
10709         * /device/include/mcs51reg.h:
10710         ds89c420 register definition update
10711
10712 2002-03-03    <johan AT FRIJA>
10713
10714         * support/Util/SDCCerr.c: did something, but don't no why anymore
10715
10716         * support/regression/tests/bug-524691.c: made it a little less shy
10717
10718         * src/SDCCast.c (decorateType): fixed bug #524697
10719
10720         * src/SDCCast.c: made some lineno improvements
10721
10722         * src/SDCCval.c (getNelements): changed warning to error
10723
10724         * src/SDCCglue.c (printIvalArray): changed warning to error
10725
10726         * src/SDCCicode.c: fixed a warning for mingw
10727
10728         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10729
10730         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10731
10732 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10733
10734         * src/ds390/peeph.def:
10735         Added some more peephole rules
10736
10737         * src/ds390/gen.c: Various fixes & enhancements
10738
10739         * src/SDCClrange.c, src/SDCClrange.h:
10740         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10741
10742         * src/ds390/ralloc.c:
10743         various fixes & enhancements (ds390) specific
10744
10745         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10746         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10747         from rallocs.
10748
10749         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10750
10751 2002-03-02    <johan AT FRIJA>
10752
10753         * src/SDCCast.c (decorateType): fixed bug #524708
10754
10755         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10756
10757         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10758
10759 2002-03-01  Michael Hope  <michaelh AT vroom>
10760
10761         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10762
10763         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10764
10765 2002-03-01    <johan AT FRIJA>
10766
10767         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10768
10769         * src/SDCCast.c (decorateType): fixed bug #524209
10770
10771         * src/SDCCval.c (valNot): fixed bug #524195
10772
10773 2002-02-26    <johan AT balder>
10774
10775         * src/xa51/gen.c: fixed a warning
10776
10777         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10778
10779         * src/SDCCast.c (decorateType): fixed bug #522534
10780
10781 2002-02-23    <johan AT balder>
10782
10783         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10784
10785 2002-02-22    <johan AT balder>
10786
10787         * src/SDCCast.c: fixed bug #514865
10788
10789         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10790
10791 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10792
10793         * sdcc/src/SDCCloop.c:
10794         Previous fix was not good. basic blocks that have "break" or "return" are
10795         not really partof a loop , but live ranges used in these blocks should
10796         be live thru the entire loop, so set partOfLoop but don't add them to
10797         loop region
10798
10799 2002-02-21    <johan AT FRIJA>
10800
10801         * src/SDCCcse.c: fixed bug #514308
10802
10803 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10804
10805         * src/SDCCloop.c:
10806         Fixed BUG #519583. If a conditional block ended in a return/break
10807         statement inside a loop, it was not being considered part of the loop.
10808
10809         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10810
10811 2002-02-10  Karl Bongers <karl AT turbobit.com>
10812
10813         * debugger/*:
10814         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10815         with lots of comments and notes.
10816
10817         * device/examples/test2.c:
10818         Fix bug, "red" variable not being initialized(compiler complained).
10819
10820         * device/examples/Makefile, examples/test3.c:
10821         Add Makefile in device/examples folder, compiles test3.c
10822         for use as a multiple module SDCDB test case.
10823
10824         * sim/ucsim/cmd.src/cmdset.cc:
10825         Took out debug printfs in ucsim "next" command.
10826
10827         * sim/ucsim/xa.src:
10828         Karl and Johan start ucsim XA support.  Most dissassembly working,
10829         about 75% emulation done(plenty of work remaining).
10830
10831         * sim/ucsim/z80.src:
10832         Add Z80 support to ucsim, add test-ucz80 regression test,
10833         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10834         Notice z80 compiler fails on examples/test3.c/crc code.
10835
10836 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10837
10838         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10839         Added support for --parms-in-bank1
10840
10841         * src/ds390/peeph.def:
10842         added a few more peephole optimzations
10843
10844         * src/ds390/main.c:
10845         1) added __builtin_inp & __builtin_outp used to read in data of given length
10846            from a memory mapped port
10847         2) added __builtin_memcmp
10848         3) added __builtin_swapw swap bytes of a short
10849
10850         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10851         1) handle multiple send & receives from register bank1
10852         2) ralloc can now allocate DPTR1 to some liveRanges
10853
10854         * src/SDCCsymt.c, src/SDCCsymt.h:
10855         changes to handle multiple sends & receives
10856
10857         * src/SDCCptropt.h:
10858         added some pointer arithmetic optimization
10859
10860         * src/SDCCptropt.c:
10861         added some pointer arithmetic optimizations but not stable yet so not
10862         called from anywhere (will get this working shortly)
10863
10864         * src/SDCCopt.c: fixed for multiple sends & receives
10865
10866         * src/SDCCmain.c:
10867         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10868         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10869            set preprocessor defines (depending on options)
10870
10871         * src/SDCCicode.c, src/SDCCicode.h:
10872         changes made to handle multiple sends & receives
10873
10874         * src/SDCCglobl.h:
10875         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10876
10877         * src/SDCCcse.c, src/SDCCcse.h:
10878         added function findbackward def (to be used in upcoming optimization)
10879
10880         * src/SDCCcflow.c, src/SDCCcflow.h:
10881         added function returnAtEnd - to determine if a basic block terminates with
10882         a RETURN iCode
10883
10884         * src/SDCCast.c, src/SDCCast.h:
10885         added option parms-in-bank1
10886
10887         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10888         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10889         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10890         adjusted for --parms-in-bank1 option
10891
10892         * device/include/string.h:
10893         donot redefine "reentrant" keyword
10894
10895         * device/include/ds80c390.h: Added some more SFRs
10896
10897 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10898
10899         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10900
10901 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10902
10903         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10904
10905 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10906
10907         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10908
10909 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10910
10911         * Added --xram-movc option
10912
10913 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10914
10915         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10916
10917 2002-01-11  Johan Knol
10918
10919         * Added math lib of Jesus Calvino-Fraga
10920
10921 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10922
10923         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10924         * support/regression/Makefile: new target test-mcs51-stack-auto
10925         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10926
10927 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10928
10929         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10930
10931 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10932
10933         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10934
10935 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10936
10937         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10938
10939         * src/SDCCglue.h: add definition for printIvalChar()
10940
10941 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10942
10943         * src/SDCCast.c: fix #498138 by Johan
10944
10945         * src/SDCCglue.c: fix #498138 by Johan
10946
10947 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10948
10949         * support/regression/Makefile: fix clean
10950
10951         * support/regression/ports/ds390/support.c: fix transmission of last character
10952
10953 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10954
10955         * /sdcc/src/ds390/gen.c:
10956         a) improved computing address of stack variable
10957         b) took out some #if 0 code
10958         c) improved parmBytes adjustment
10959         d) improved genPlusIncr & genMinusIncr
10960         e) genCmp could generate bad code (when left assigned to DPTR)
10961         f) Fixed bug in hasInc
10962
10963         * /sdcc/src/ds390/ralloc.c:
10964         a) packRegsForSupport could mess up live information (Fixed)
10965         b) packRegsDPTRuse could be incorrect for left & right shift
10966
10967         * /sdcc/src/mcs51/ralloc.c:
10968         packRegsForSupport could mess up the live information (Fixed)
10969
10970         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10971
10972         * /sdcc/src/SDCCast.c:
10973         can reverse a loop even if function call is present as long
10974         as the loop control variable is local & is not passed as parameter
10975
10976 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10977
10978         * /sdcc/ChangeLog: *** empty log message ***
10979
10980         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10981         More builtin function additions for TININative
10982
10983         * /sdcc/src/ds390/ralloc.c:
10984         Had broken the regression testsuite
10985
10986         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10987
10988         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10989         Added funcattr hasStackParms will be set for reentrant functions when there
10990         are paramteres on the stack, this helps in minimizing frame pointer generation
10991         typeFromStr can handle function pointers now
10992
10993         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10994         *** empty log message ***
10995
10996 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10997
10998         * /src/ds390/gen.c, /src/ds390/main.c:
10999         More builtin function additions for TININative
11000
11001         * /src/ds390/ralloc.c:
11002         Had broken the regression testsuite
11003
11004         * /src/SDCCast.c: Fixed a bug in dumptree
11005
11006         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11007         Added funcattr hasStackParms will be set for reentrant functions when there
11008         are paramteres on the stack, this helps in minimizing frame pointer generation
11009         typeFromStr can handle function pointers now
11010
11011         * /doc/builtins.txt, /doc/TININative.txt:
11012         *** empty log message ***
11013
11014
11015 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11016
11017         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11018         ALPHA version for -mTININative
11019
11020         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11021         updated to reflect changes in the port structure
11022
11023         * /src/port.h:
11024         added function do_assemble (similar to do_link) if non-null this function
11025         will be called to do assembly (-mTININative) requires a multi command
11026         assembly
11027         added function genAssemblerEnd will be called to generate assembler Epilogue
11028
11029         * /src/SDCCsymt.c:
11030         added _JavaNative to debug info printing
11031
11032         * /src/SDCCmain.c: added option --tini-libid
11033         added port->do_assemble function (-mTININative) has a multi command assemble
11034
11035         * /src/SDCCglue.c: Disabled "constExpr" check
11036         added port->genAssemblerEnd function
11037
11038         * /src/SDCCglobl.h: Added option --tini-libid value
11039
11040         * /src/SDCCast.h:
11041         tookout optimizeCompare from the header (has no external references)
11042
11043         * /src/SDCCast.c: made one more function "static"
11044
11045 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11046
11047         * src/z80/mappings.i: Added z80asm support.
11048
11049         * src/z80/main.c: Added z80asm support on --asm=z80asm
11050
11051         * src/z80/gen.c: Fixed asm portability issues.
11052
11053         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11054
11055         * src/SDCCglue.c (printExterns): Added global/extern split.
11056
11057 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11058
11059         * support/regression/Makefile: added test for mcs51 model large
11060
11061         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11062
11063         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11064
11065 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11066
11067         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11068
11069 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11070
11071         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11072
11073         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11074
11075 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11076
11077         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11078
11079         * support/regression/tests/simplefloat.c: Port to mcs51.
11080
11081 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11082         * support/regression/tests/bug-485362.c: Added.
11083
11084         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11085
11086         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11087
11088         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11089
11090         * src/z80/gen.c (aopDump): Added a dump function.
11091
11092 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11093         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11094
11095         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11096
11097         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11098
11099         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11100
11101         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11102
11103         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11104
11105         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11106
11107         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11108
11109         * support/regression/ports/ds390/support.c: Use tinibios.
11110
11111         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11112
11113 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11114
11115         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11116         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11117
11118         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11119
11120         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11121
11122 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11123
11124         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11125
11126         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11127         (packRegsForIYUse): Created and optimised.
11128
11129 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11130
11131         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11132 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11133
11134         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11135
11136         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11137
11138         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11139
11140 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11141
11142         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11143
11144         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11145
11146 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11147
11148         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11149
11150         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11151
11152         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11153
11154 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11155
11156         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11157         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11158         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11159
11160         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11161
11162         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11163         (genNotFloat): Added.
11164         (genUminusFloat): Added.
11165
11166         * device/lib/z80/Makefile: Added floating pt stubs.
11167
11168         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11169
11170         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11171
11172         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11173
11174 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11175
11176         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11177
11178         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11179
11180         * sdcc/support/regression/Makefile: Add port ds390.
11181
11182         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11183
11184         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11185
11186         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11187
11188         * sdcc/support/regression/ports/ds390/support.c: Added.
11189
11190         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11191
11192         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11193
11194         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11195
11196 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11197
11198         * device/include/malloc.h: Added z80 and gbz80 support.
11199
11200         * device/lib/gbz80/heap.s: Added.
11201
11202         * device/lib/z80/heap.s: Added.
11203
11204         * device/lib/malloc.c: Added z80 and gbz80 support.
11205
11206         * support/regression/tests/malloc.c (testMalloc): Added.
11207
11208         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11209
11210         * support/regression/tests/bug-478094.c: Added.
11211
11212         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11213
11214 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11215
11216         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11217
11218         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11219
11220         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11221
11222         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11223
11224         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11225
11226 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11227
11228         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11229
11230 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11231
11232         * support/regression/tests/bug-477927.c: Added.
11233
11234         * src/z80/peeph.def: Added minor rules.
11235
11236         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11237
11238         * src/z80/peeph.def: Added jump optimisation modification.
11239
11240 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11241
11242         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11243
11244 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11245
11246         * support/regression/tests/funptrs.c: Added.
11247
11248 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11249
11250         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11251
11252 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11253
11254         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11255
11256         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11257
11258         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11259         (movLeft2ResultLong): Created.
11260
11261         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11262         (joinPushes): Added.  Joins two char pushes into a word push.
11263
11264 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11265
11266         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11267
11268         * support/makebin/Makefile (install): Added creation of dest dir.
11269
11270 2001-10-24 Karl Bongers <karl AT turbobit.com>
11271
11272         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11273
11274 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11275
11276         * src/z80/ralloc.c: Turned off faulty pack for one use.
11277
11278         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11279
11280         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11281
11282 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11283
11284         * support/regression/Makefile: Improved clean
11285
11286         * support/regression/ports/gbz80/spec.mk: Added clean
11287
11288         * support/regression/ports/host/spec.mk: Added clean
11289
11290         * support/regression/ports/z80/spec.mk: Added clean
11291
11292         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11293
11294         * support/regression/ports/mcs51/timeout.c: little improvements
11295
11296 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11297
11298         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11299
11300         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11301
11302         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11303
11304 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11305
11306         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11307
11308         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11309
11310 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11311         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11312
11313         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11314
11315         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11316
11317         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11318
11319         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11320
11321         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11322
11323         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11324
11325         * support/regression/tests/longor.c: Added.
11326
11327 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11328
11329         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11330
11331         * as/mcs51/aslink.h: define PATH_MAX
11332
11333         * as/mcs51/asm.h: define PATH_MAX
11334
11335         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11336
11337         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11338
11339         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11340
11341         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11342
11343         * src/SDCCglobl.h: define PATH_MAX
11344
11345         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11346
11347         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11348
11349 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11350
11351         * src/z80/gen.c (gencjneshort): Fixed
11352
11353         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11354
11355 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11356
11357         * support/regression/tests/bug-469671.c: Added.
11358
11359         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11360
11361 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11362
11363         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11364
11365         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11366
11367 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11368
11369         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11370
11371         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11372
11373         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11374
11375         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11376
11377         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11378
11379         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11380
11381         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11382
11383 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11384
11385         * 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.
11386
11387         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11388
11389         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11390
11391 2001-10-07    <johan AT FRIJA>
11392
11393         * device/lib/gets.c (gets): fixed the return value.
11394
11395 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11396         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11397
11398         * 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.
11399
11400         * 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.
11401
11402         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11403
11404         * src/pic/gen.c: Removed Safe_strdup.
11405
11406         * configure.in: Added option to enable libgc support.
11407
11408         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11409         (bitVectUnion): Optimised.
11410         (bitVectIntersect): Optimised.
11411         (bitVectBitsInCommon): Optimised.
11412         (bitVectCplAnd): Optimised.
11413
11414         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11415
11416 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11417
11418         * src/SDCCmain.c: distinguish between assembler debug and plain options
11419
11420         * src/avr/main.c:   remove standard assembler options
11421
11422         * src/ds390/main.c: remove standard assembler options
11423
11424         * src/mcs51/main.c: remove standard assembler options
11425
11426         * src/port.h: removed "PENDING" comment
11427
11428 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11429
11430         * src/device/lib/_mulint.c  : new, with assember functions
11431
11432         * src/device/lib/_mullong.c : new, with assember functions
11433
11434         * src/device/lib/_divuint.c : with assember functions
11435
11436         * src/device/lib/_divsint.c : with assember functions
11437
11438         * src/device/lib/_divulong.c: with assember functions
11439
11440         * src/device/lib/_divslong.c: with assember functions
11441
11442         * src/device/lib/_moduint.c : with assember functions
11443
11444         * src/device/lib/_modsint.c : with assember functions
11445
11446         * src/device/lib/_modulong.c: with assember functions
11447
11448         * src/device/lib/_modslong.c: with assember functions
11449
11450         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11451
11452         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11453
11454         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11455                                       replaced _mululong.c and _mulslong.c by _mullong.c
11456
11457 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11458
11459         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11460
11461 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11462
11463         * src/SDCCglue.c: test, if win32api is available for MINGW
11464
11465 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11466
11467         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11468         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11469         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11470         * support/regression/ports/host/spec.mk: removed GENERIC
11471         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11472         * support/regression/ports/z80/spec.mk: removed GENERIC
11473
11474 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11475
11476         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11477
11478         * support/regression/tests/bug-467035.c: Created.
11479
11480 2001-10-01    <johan AT FRIJA>
11481
11482         * src/SDCC.y: fixed bug #466586 part 1
11483
11484 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11485
11486         * SDCCicode.c: z80 has no generic pointers
11487         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11488
11489 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11490
11491         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11492
11493 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11494
11495         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11496
11497         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11498
11499 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11500
11501         * configure.in: Fixed up so that ucsim is only configured once.
11502
11503         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11504
11505         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11506         (getPathDifference): As above.
11507
11508         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11509
11510         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11511
11512 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11513         * .version: Updated to 2.3.1
11514
11515         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11516         Added copyright header.
11517
11518         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11519         (assemble): Added support for macro based assembler commands.
11520         (linkEdit): Added support for macro based linker commands.
11521         (preProcess): Changed the pre-processor to use macros.
11522         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11523         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11524
11525         * device/lib/z80/crt0.s: Added module name for debugging.
11526
11527 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11528
11529         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11530
11531         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11532
11533         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11534
11535         * src/Makefile.in: Added SDCCmacro and SDCCutil
11536
11537 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11538
11539         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11540
11541 2001-09-16    <johan AT FRIJA>
11542
11543         * 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.
11544
11545 2001-09-15    <johan AT FRIJA>
11546
11547         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11548         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11549
11550 2001-09-11    <johan AT FRIJA>
11551
11552         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11553
11554 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11555
11556         * support/regression/tests/bug-460444.c: Added test case.
11557
11558         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11559         (genCast): Added justification for all of the asserts.
11560
11561 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11562
11563         * support/regression/support.c: _xdata replaced by xdata
11564
11565         * support/regression/spec.mk: removed _generic
11566
11567 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11568
11569         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11570
11571         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11572         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11573
11574         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11575
11576         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11577
11578         * support/regression/tests/bug-460010.c: Added test case.
11579
11580         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11581
11582 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11583
11584         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11585
11586         * support/regression/testfwk.c: removed workaround for bug #436344
11587
11588         * support/regression/tests/bp.c: use less memory with mcs51
11589
11590         * support/regression/tests/bug-441448.c: use less memory
11591
11592         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11593
11594         * support/regression/collate-results.py: typo
11595
11596 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11597
11598         * support/regression/tests/fetchoverlap.c: Added new test case.
11599
11600         * support/regression/tests/bp.c: Added new test case.
11601
11602         * support/regression/tests/bug-448984.c: Added new test case.
11603
11604         * support/regression/tests/pow2shifts.c: Added new test case.
11605
11606         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11607         (genlshTwo): Fixed right shift for count > 8.
11608
11609         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11610
11611 2001-09-08    <johan AT FRIJA>
11612
11613         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11614
11615 2001-09-07    <johan AT FRIJA>
11616
11617         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11618
11619         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11620
11621 2001-09-06    <johan AT FRIJA>
11622
11623         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11624         * bernhard noted me at this: "() equals to (void)" (1.38)
11625
11626 2001-09-05    <johan AT FRIJA>
11627
11628         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11629
11630 2001-09-04    <johan AT FRIJA>
11631
11632         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11633
11634
11635 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11636
11637         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11638
11639 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11640
11641         * link/z80/aslink.h: Fixed path for PATH_MAX
11642
11643 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11644
11645         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11646
11647         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11648
11649         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11650
11651         * 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.
11652
11653 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11654
11655         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11656         (genCmp): Fixed up genCmp for the GB with longs.
11657
11658         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11659
11660         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11661
11662         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11663
11664         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11665
11666 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11667
11668         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11669
11670 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11671
11672         * 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.
11673
11674         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11675
11676 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11677
11678         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11679
11680         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11681
11682 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11683
11684   * sim/ucsim/configure:    little improvement of Cygwin-detection
11685   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11686   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11687   * support/regression/tests/bug-221100.c: small changes for mcs51
11688   * support/regression/tests/bug-221168.c: small changes for mcs51
11689   * support/regression/tests/bug-227710.c: small changes for mcs51
11690   * support/regression/tests/staticinit.c: small changes for mcs51
11691   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11692   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11693   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11694
11695 $Revision$