git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4216 4a8a32a2...
[fw/sdcc] / ChangeLog
1 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
2
3         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
4         to a char variable. Fixed bug #1504211
5
6 2006-06-10 Borut Razem <borut.razem AT siol.net>
7
8         * CVSROOT: removed the CVS left-over
9
10 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
11
12         * as/hc08/asmain.c (asexit),
13         * as/hc08/lkmain.c (lkexit),
14         * as/mcs51/asmain.c (asexit),
15         * as/mcs51/lkmain.c (lkexit),
16         * src/SDCCglue.c (DEFSETFUNC),
17         * src/SDCCmain.c (linkEdit, assemble),
18         * support/librarian/sdcclib.c (AddRel),
19           replaced unlink() by standard C remove()
20         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
21         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
22           gatherImplicitVariables): new, added to fix bug 608752,
23           (createFunction): added gatherImplicitVariables()
24         * src/SDCCast.h: added createRMW prototype
25         * src/SDCCsymt.h (struct symbol): added infertype
26         * support/regression/tests/bug608752.c: new, added
27
28 2006-06-10 Raphael Neider <rneider AT web.de>
29
30         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
31           multibyte dummy reads (fixes #1503234)
32
33 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
34
35         * device/include/mcs51/compiler.h: new, added header file to enable
36           creating common sfr definition header files for different compilers
37
38 2006-06-05 Raphael Neider <rneider AT web.de>
39
40         * src/pic16/{pcode.h,genarith.c}:
41           introduced pCodeOp combining any two pCodeOps (previously only
42           two register operands could be combined), removed pcop2 from
43           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
44         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
45         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
46           rewritten to use new PO_TWO_OPS
47         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
48         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
49           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
50           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
51           (pic16_get_op): embraced return arg to allow #define return(x),
52             added new case for combined opcodes
53           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
54           (pic16_pCode2str,pic16_getRegFrompCodeOp,
55            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
56
57 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
58
59         * src/SDCCval.c (checkConstantRange): added
60         * src/SDCCval.h: added checkConstantRange
61         * support/Util/SDCCerr.c,
62         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
63         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
64         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
65         * src/SDCCast.c (decorateType): added checkConstantRange,
66         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
67         can be emitted with the correct always true/false warning,
68         added optimization for double '!';
69         result of decorateType() must be assigned back to the tree, because
70         decorateType() can change the tree
71         * src/SDCCicode.c (geniCodeLogic),
72         (geniCodeAssign): replaced new checkConstantRange, added warnings,
73         (checkConstantRange): removed, it was only a fragment which never
74         emitted a warning
75         * src/SDCCsymt.c (computeType): fixed promotion for
76         "-1 < (unsigned bit) b"
77         * src/pic/ralloc.c (packRegsForAssign),
78         * src/pic16/ralloc.c (packRegsForAssign),
79         * src/hc08/ralloc.c (packRegsForAssign),
80         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
81         from mcs51
82         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
83         * support/regression/tests/constantRange.c: added
84         * support/valdiag/tests/constantRange.c: added
85         * support/valdiag/valdiag.py: added -DPORT_HOST=1
86
87 2006-06-02 Borut Razem <borut.razem AT siol.net>
88
89         * support/regression/ports/pic16/support.c: increase stack size
90           to 255 bytes
91         * support/regression/Makefile.in: sort tests by name so that the
92           resutlts can be compared on different machines / platforms
93
94 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
95
96         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
97         * src/ds390/gen.c (emitLabel): new, added,
98           (genDjnz): fixed stack overflow bug,
99           (throughout): cosmetic changes to sync with mcs51/gen.c,
100           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
101         * src/mcs51/gen.c (genEndFunction): small optimization,
102           (throughout): cosmetic changes to sync with ds390/gen.c
103
104 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
105
106         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
107           (_print_format): fixed printing pointers
108         * src/mcs51/gen.c (emitLabel, movb): new, added,
109           (genAssign): small optimization,
110           (genDjnz): fixed stack overflow bug,
111           (throughout): replaced sprintf with SNPRINTF,
112           replaced mcs51_regWithIdx with REG_WITH_INDEX,
113           replaced emitcode("mov", "b,...") with MOVB(...),
114           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
115           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
116         * src/mcs51/peeph.def: added rules 140 and 264
117         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
118           so they may get optimized into registers
119
120 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
121
122         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
123           immediately when encountered,
124           (printUsage): always use stderr even on windows
125
126 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
127
128         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
129         (processParms): fixed bug #1247551
130         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
131         parseCmdLine, main): print '--version' to stdout,
132         print 'help' to stdout if --help is given,
133         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
134         arguments are given; fixed --help
135
136 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
137
138         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
139         * support/regression/tests/bug-1493710.c: added
140
141 2006-05-27 Borut Razem <borut.razem AT siol.net>
142
143         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
144           static instead auto
145         * support/regression/ports/pic16/support.c: increase stack size
146           from default 64 bytes to 128 bytes
147         * support/regression/tests/staticinit.c,
148           support/regression/tests/float.c: regression tests fully enabled
149           for pic16 port by putting the initialized data arrays into the code
150           section
151         * support/regression/ports/pic16/spec.mk: don't link default libraries.
152           This was changed by mistake in the previous version.
153
154 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
155
156         * src/pic16/gen.c (genFunction, genEndFunction): some
157         beautifications, fixed bug with falsely restoring FSR2 in large
158         stack model, thanks to Beau E. Cox for reporting the bug
159
160 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
161
162         * debugger/mcs51/break.c,
163         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
164           use %p to print pointers, made address variables unsigned
165         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
166         * debugger/mcs51/symtab.c (parseSymbol): must return something
167         * src/mcs51/gen.c (aopForSym): small optimization,
168            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
169           (freeAsmop): added missing break,
170           (aopPut): removed parameter bvolatile, determine it inside the function,
171           (saveRegisters, unsaveRegisters): small optimization,
172           (genIpush): removed pointless check,
173           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
174           replaced sprintf with SNPRINTF,
175           replaced strcpy with strncpyz,
176           updated aopPut calls,
177           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
178         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
179
180 2006-05-24 Borut Razem <borut.razem AT siol.net>
181
182         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
183           modification of test for the pic16 port, put the array to the code
184           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
185
186 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
187
188         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
189         * support/Util/pstdint.h: added
190
191 2006-05-22 Borut Razem <borut.razem AT siol.net>
192
193         * src/regression/Makefile: removed bool2.c test, added -q linker option
194         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
195           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
196           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
197           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
198           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
199           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
200           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
201           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
202           define SUPPORT_BIT_TYPES 0, removed unused bit variables
203
204 2006-05-22 Raphael Neider <rneider AT web.de>
205
206         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
207           bug #1492360 (problematic due to generic pointers, see code)
208
209 2006-05-22 Borut Razem <borut.razem AT siol.net>
210
211         * support/regression/ports/pic16/specs.mk: removed stack size linker
212           directive
213         * support/regression/tests/array.c,
214           support/regression/tests/bitopcse.c,
215           support/regression/tests/bug-908454.c,
216           support/regression/tests/malloc.c: modified for pic16 regression test
217         * support/regression/tests/bitfields.c:
218           pic16 - excluded bitfileds of size > 8
219         * support/regression/tests/bp.c: pic16 - reduced data size
220         * support/regression/tests/bug-221100.c: pic16 - reduced data size
221         * support/regression/tests/bug-460010.c:
222           pic16 - used the absolute address the fits in memory
223         * support/regression/tests/bug-716242.c:
224           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
225         * support/regression/tests/float.c:
226           pic16 - excluded - data size too big
227         * support/regression/tests/onebyte.c:
228           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
229         * support/regression/tests/shifts.c:
230           pic16 - function names probably have to differ in first X characters
231           (gpasm limitation?)
232         * support/regression/tests/staticinit.c:
233           pic16 - excluded some tests due error: no target memory available for
234           section ".idata"
235
236 2006-05-22 Borut Razem <borut.razem AT siol.net>
237
238         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
239           second try. Thanks Stas Sergeev once more.
240
241 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
242
243         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
244           (genLeftShift, genRightShift): fixed bug 1491627
245         * src/hc08/peeph.def (rules 7, 8.x): added
246         * support/regression/tests/shifts.c (ShiftLeftByParam,
247           ShiftRightByParam, testShiftByParam): added to test variable shifting
248
249 2006-05-20 Raphael Neider <rneider AT web.de>
250
251         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
252         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
253           (allocReg): add only new registers to dynAllocRegs,
254           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
255             #1489055, #1445850, and probably #1483693
256
257 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
258
259         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
260         bug in for-loop that didn't emit the last of CONFIG and ID registers
261
262 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
263
264         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
265           with offset
266         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
267           1489016, 1434401 and 1490124
268         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
269           1489016, 1434401 and 1490124
270
271 2006-05-17 Borut Razem <borut.razem AT siol.net>
272
273         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
274           thanks Stas Sergeev
275
276 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
277
278         * device/include/mcs51/P89c51RD2.h,
279         * device/include/mcs51/P89LPC901.h,
280         * device/include/mcs51/P89LPC922.h,
281         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
282
283 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
284
285         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
286         to fix missing stack pragma in compiled binary object file,
287
288 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
289
290         * support/packihx/configure.in,
291         * support/packihx/configure: removed warning, autoconf >= 2.5x can
292         determine sizeof basic types even while cross compiling
293
294 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
295
296         * src/avr/gen.c (aopop),
297         * src/ds390/gen.c (aopOp),
298         * src/hc08/gen.c (aopOp),
299         * src/mcs51/gen.c (aopop),
300         * src/pic16/gen.c (pic16_aopOp),
301         * src/pic/gen.c (aopOp),
302         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
303         if size of operand is smaller than spill location
304
305 2006-05-12 Borut Razem <borut.razem AT siol.net>
306
307         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
308           have to have CR/LF line endings even if they are checked out on *nix
309           or on WIN32 in cygwin binmode
310
311 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
312
313         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
314         * device/include/ds80c390.h: added sfr16 definitions
315         * src/ds390/gen.c,
316         * src/ds390/gen.h,
317         * src/ds390/main.c,
318         * src/ds390/ralloc.c,
319         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
320           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
321           bit returning functions
322         * support/regression/tests/sfr16.c: enabled test on ds390
323
324 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
325
326         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
327         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
328
329 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
330
331         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
332         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
333           (cl_address_space constructor): removed expensive initialization,
334           (cl_address_space::get_cell): extended for late initialization,
335           (cl_address_space::*): use late initialization,
336           (cl_address_decoder::activate): removed expensive initialization,
337           This reduced regression test running time by 25%
338
339 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
340
341         * packihx/,
342         * configure.in,
343         * configure,
344         * sdcc.dsw,
345         * Makefile.bcc,
346         * Makefile.in,
347         * support/packihx/Makefile.in,
348         * support/packihx/clean.mk,
349         * support/packihx/Makefile.bcc,
350         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
351
352 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
353
354         * src/SDCCval.c (valNot): fix for regression test failure
355           of not.c on big endian hosts
356
357 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
358
359         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
360
361 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
362
363         * device/lib/mcs51/Makefile.in: changed string comparison operator
364           to = for POSIX compliance; == is bash extension
365
366 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
367
368         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
369           kosmonaut_pirx
370
371 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
372
373         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
374         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
375         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
376         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
377         bug report #1478657,
378
379 2006-05-05 Borut Razem <borut.razem AT siol.net>
380
381         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
382           making the html
383
384 2006-05-02 Borut Razem <borut.razem AT siol.net>
385
386         * doc/Makefile.in: removed *.ind dependency since there is no rule to
387           create *.ind, which made make to fail if invoked with -j 2
388
389 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
390
391         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
392           Hubert Sack for patch 1479782
393
394 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
395
396         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
397
398 2006-05-01 Raphael Neider <rneider AT web.de>
399
400         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
401           (create_pic): store only prefix-free device name,
402           (init_pic): check for device names with "16" prefix,
403           (list_valid_pics),
404         * src/pic/device.h (struct PIC_device),
405         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
406             stored device name,
407         * device/include/pic/pic12f{635,675,629,683}.h,
408         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
409         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
410         * device/include/pic/pic16f505.h,
411         * device/lib/pic/libdev/pic16f505.c: removed
412         * device/include/pic/pic14devices.txt: added support for pic12f
413             devices, removed unsupported non 16-bit devices
414             [above changes provided by patch from Zik Saleeba]
415         * src/pic/*, src/pic16/*, device/include/pic16/*,
416           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
417
418 2006-05-01 Borut Razem <borut.razem AT siol.net>
419
420         * configure.in, configure, doc/Makefile.in:
421           sync with nightly build makefile - latex, dvipdf and dvips
422           not needed any more
423
424 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
425
426         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
427         in the library source
428
429 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
430
431         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
432
433 2006-04-28 Raphael Neider <rneider AT web.de>
434
435         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
436         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
437           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
438         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
439
440 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
441
442         * device/lib/pic/libdev/Makefile.in,
443         * device/lib/hc08/Makefile.in,
444         * device/lib/gbz80/Makefile.in,
445         * device/lib/z80/Makefile.in,
446         * device/lib/ds390/Makefile.in,
447         * device/lib/ds400/Makefile.in: added srcdir to include search path,
448         thanks to Borut for the bug report
449         * configure.in,
450         * configure: always create doc/Makefile independent from --enable-doc
451         * Makefile.in: always install from directory doc independent from
452         --enable-doc
453         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
454         removed
455         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
456         * doc/Makefile.in: install *.txt if present
457         * device/include/Makefile.in (install): added installation of pic/*.inc
458         and pic/*.txt files again, they were erroneously removed
459
460 2006-04-28 Raphael Neider <rneider AT web.de>
461
462         * src/pic/{gen.c,main.h,pcode.c},
463         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
464             concerning signedness with casts
465
466 2006-04-28 Raphael Neider <rneider AT web.de>
467
468         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
469             definition of an interrupt handler,
470         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
471             interrupt handler stuff from picglue() to separate routine,
472           (picglue): enabled definition of intr handlers in files w/o main()
473
474 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
475
476         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
477           compilation with MSVC 2005 Express Edition (VC8)
478
479 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
480
481         * device/lib/Makefile: fixed build of gbz80 lib
482
483 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
484
485         * support/regression/tests/bug-460010.c,
486         * support/regression/tests/bug-524691.c,
487         * support/regression/tests/bug-716242.c: removed conditional defines
488           that are already in testfwk.h
489
490 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
491
492         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
493           (AccAXRsh1): added, shift right by 1,
494           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
495            AccAXLrl1
496         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
497
498 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
499
500         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
501         remove cast to same type
502         * src/SDCCast.c (decorateType): fix for RFE 1475742,
503         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
504         * as/z80/Makefile,
505         * link/z80/Makefile: removed, they have moved to
506         Makefile.in files
507         * configure,
508         * configure.in: replaced duplicate message about ucsim by missing sdcpp
509         * install-sh: fix bug #1204398 by setting umask 0022
510         * device/lib/Makefile: separate build of z80 and gbz80 lib
511
512 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
513
514         Enabled VPATH feature: changed nearly all Makefiles (149 files).
515         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
516
517         One basic decision: e.g. src/clean.mk includes further files. In order
518         to make this work there are two solutions:
519         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
520           run configure on them. This way they can use
521           'include $(srcdir)/port-clean.mk'
522         - always include clean.mk by the Makefile at the same level. To avoid
523           that `make clean` tries to include and build Makefile.dep the
524           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
525           implemented, because now even `make uninstall` doesn't create
526           Makefile.in. clean.mk could be eliminated by pasting it in
527           Makefile.in.
528
529         * debugger/mcs51/Makefile.in: build own objects from library sources
530         (SLIB, SDCC) in current directory
531
532         * configure, configure.in: renamed --disable-device-lib-build in
533         --disable-device-lib; added --enable-doc, the required tools are
534         searched by configure; added result message; the toolchain for the
535         belonging ports are now only built, if the port is enabled.
536
537         * support/regression/*: all output is written in directory gen, because
538         the fwk and ports directories don't livet in the build tree using vpath
539
540         * doc/sdccman.lyx: renamed --disable-device-lib-build to
541         --disable-device-lib, added --enable-doc, added section VPATH
542
543         * sim/ucsim/configure.in,
544         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
545         z80 are enabled by default
546
547 2006-04-24 Raphael Neider <rneider AT web.de>
548
549         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
550             to config word, "pic14_"-prefixed some extern functions
551           (pic14_emitConfigWord): emit __config directive(s) if assignment to
552             config word has been found
553         * src/pic/device.h: added prototypes
554         * src/pic/pcode.c: added "pic14_"-prefix where needed
555         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
556             fixup
557         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
558             words,
559           (pic14emitRegularMap): ignore config words,
560           (pic14createInterruptVect): moved generating __config directives away
561           (picglue): have __config directives emitted
562
563 2006-04-24 Borut Razem <borut.razem AT siol.net>
564
565         * doc/Makefile: sync with nightly build makefile
566
567 2006-04-24 Raphael Neider <rneider AT web.de>
568
569         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
570             registers that have not been assigned proper liveranges,
571             fixes #1469504 and #1474602,
572           (pCodeRegOptimizeRegUsage): fixed typo in comment
573
574 2006-04-24 Borut Razem <borut.razem AT siol.net>
575
576         * device/examples/main8051.c: deleted - it was removed from CVS
577           24.mar.2000 and after that modified 18.feb.2001, so it reappered
578           after the transition to Subversion
579         * src/SDCCalloc.h: deleted - it was removed  from CVS
580           3.feb.2001 and after that modified 18.feb.2001, so it reappered
581           after the transition to Subversion
582         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
583           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
584           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
585           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
586
587 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
588
589         * as/asx8051.dsp: added mcs51/strcmpi.h
590         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
591         * as/hc08/aslink.h: updated lnksect prototype
592         * as/hc08/asm.h,
593         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
594         * as/hc08/asmain.c,
595         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
596           (newdot): handle A_ABS
597         * as/hc08/asout.c,
598         * as/mcs51/asout.c (outarea): output address
599         * as/hc08/lkaomf51.c,
600         * as/mcs51/lkaomf51.c: disabled unused array UsageType
601         * as/hc08/m08pst.c,
602         * as/mcs51/i51pst.c,
603         * as/z80/z80pst.c: "ABS" is not A_OVR
604         * as/hc08/lkarea.c (newarea): read a_addr,
605           (lnkarea): added codemap array, sort absolute areas to the front,
606            combine all GSINITx/GSFINAL,
607           (find_empty_space, allocate_space): new functions,
608           (lnksect): return next address, handle absolute sections
609         * as/mcs51/lkarea.c (newarea): read a_addr,
610           lnksect2 prototype changed,
611           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
612           (find_empty_space, allocate_space): new, factored out of lnksect2,
613           (lnksect2): return next address, handle absolute sections
614         * as/hc08/lkhead.c,
615         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
616         * as/hc08/lklibr.c (addfile, fndsym),
617         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
618           index out of range and detect both '\' and '/'
619         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
620         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
621           regression tests (ds390 cannot return bool yet)
622         * doc/sdccman.lyx: changed version number, document changed --no-peep,
623           document critical interrupts on z80, document changed SDCC define
624         * src/asm.c (_asxxxx_mapping): fixed .org directive,
625           (_a390_mapping): added .org directive
626         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
627           (genMultOneByte): fixed warnings
628         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
629           ones
630         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
631         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
632           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
633         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
634         * src/pic16/main.c: removed newReg prototype
635         * src/pic16/pcode.c,
636         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
637           warnings
638         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
639           ones
640         * src/pic16/ralloc.c
641         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
642           to fix warnings
643         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
644           from short to PIC_OPTYPE
645         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
646         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
647           optype from short to PIC_OPTYPE
648         * src/port.h: made int_size unsigned to fix warnings
649         * src/SDCC.y: fixed warning on MSVC
650         * src/SDCCicode.c (getArraySizePtr): return unsigned int
651         * src/SDCCopt.c (convertToFcall): fixed warnings
652         * src/SDCCsymt.h: removed double prototype for genSymName
653         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
654           offset int to fix warnings
655
656 2006-04-22 Borut Razem <borut.razem AT siol.net>
657
658         * doc/sdccman.lyx, */Makefile, */Makefile.in:
659           references to CVS replaced with Subversion
660
661 2006-04-21 Borut Razem <borut.razem AT siol.net>
662
663         * doc/sdccman.lyx, */Makefile, */Makefile.in:
664           references to CVS replaced with Subversion
665
666 2006-04-19 Borut Razem <borut.razem AT siol.net>
667
668         * src/version.awk: adapted for svn
669         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
670           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
671           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
672           /binutils-avr/etc/*.vi, *.jin: removed all properties
673           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
674
675 2006-04-19 Borut Razem <borut.razem AT siol.net>
676
677         * CVS to Subversion migration completed
678
679 2006-04-18 Borut Razem <borut.razem AT siol.net>
680
681         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
682           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
683
684 2006-04-17 Borut Razem <borut.razem AT siol.net>
685
686         * device/include/Makefile.in: added pic/*.inc to the installation
687
688 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
689
690         * support/regression/collate-results.py: fixed output in case of
691         a valdiag error
692         * support/regression/generate-cases.py: fixed splitting of pathnames
693         with dots
694         * as/hc08/lklibr.c (addfile),
695         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
696
697 2006-04-11 Raphael Neider <rneider AT web.de>
698
699         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
700         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
701         * src/pic16/pcode.c (assignValnums): fixed #1460578
702
703 2006-04-11 Raphael Neider <rneider AT web.de>
704
705         * device/lib/pic/libdev/*.c,
706         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
707           fixes #1468739, enables compilation in --std-c99 mode
708         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
709
710 2006-04-11 Raphael Neider <rneider AT web.de>
711
712         * src/pic/device.c (find_device): removed debug output
713           (list_valid_pics): enabled verbose listing of supported devices
714         * device/include/stdbool.h: define bool as char for pic14/16 as well
715
716 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
717
718         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
719
720 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
721
722         * .version: bumped version to 2.5.6
723         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
724
725 2006-04-06 Raphael Neider <rneider AT web.de>
726
727         * .version: bumped version to 2.5.6 (pic14 ABI changed)
728         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
729         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
730           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
731             pic14_constructAbsMap
732           (pic14printPublics): declare absolute global symbols as global
733           (pic14createInterruptVect),
734         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
735           (newReg): assume new registers unused, use correct name in
736             hashtable (reg->name instead of name), more debugLog output
737         * src/pic/device.h (PIC_device): added fields for verbose output
738         * src/pic/device.c: moved device definition to pic14devices.txt,
739             added routines for runtime parsing of pic14devices.txt,
740             added support for second config word
741         * src/pic/main.c (_process_pragma): removed #pragma maxram,
742           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
743           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
744           (_pic14_parseOptions): moved pCodeInitRegisters here
745           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
746         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
747           (pCodeInitRegisters): rewrapped comments, perpared new approach to
748             handling the pseudo stack
749         * device/lib/Makefile.in: ignore failures in objects-pic16,
750         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
751         * device/lib/pic/NEWS: document new dependency on picXXX.lib
752         * device/lib/pic/Makefile.subdir,
753         * device/lib/pic16/Makefile.subdir: improved clean rules
754         * device/lib/pic/libdev/: NEW, pic14 device libraries
755         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
756         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
757         * device/include/Makefile.in: create subdir and install pic14 headers
758         * device/include/pic/p16f_common.inc: removed unused declarations
759         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
760             PICs from inc2h.pl v1.6,
761             replaced BIT_AT macros with struct declarations
762         * device/include/pic/pic14devices.txt: definition of supported devices,
763             all above improvements contributed by Zik Saleeba, thanks
764         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
765         * support/scripts/sdcc.nsi: also install pic14 device libraries and
766             headers
767
768 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
769
770         * device/include/mcs51/c8051f410.h: added interrupt numbers,
771         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
772           thanks to Charles Olds
773
774 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
775
776         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
777
778 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
779
780         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
781         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
782         * support/regression/bug1464657.c: added, new test
783
784 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
785
786         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
787           version number
788
789 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
790
791         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
792           --no-peep and --peep-file <file> are used don't use default rules but
793           do use the <file>
794
795 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
796
797         * src/mcs51/gen.c (genCall): fixed bug 1457608
798
799 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
800
801         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
802         changes seem to cause (trigger?) problems with the build system.
803
804 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
805
806         * src/SDCCpeeph.c (operandsLiteral): new, added,
807           (callFuncByName): inserted operandsLiteral
808         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
809
810 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
811
812         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
813         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
814
815 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
816
817         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
818           implemented patch 1120823 Thanks to Willy De la Court (normal
819           interrupts need an interrupt number now if they are made critical),
820           and enabled nesting of critical functions though not for gbz80
821           (genCritical, genEndCritical): added functions
822           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
823         * src/z80/mappings.i: added "ei" to all mappings
824
825 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
826
827         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
828         submitted by the Debian SDCC maintainer Aurelien Jarno:
829         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
830         archive with gcc 4.1 on mips and wrote the patch"
831
832 2006-03-16 Raphael Neider <rneider AT web.de>
833
834         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
835           the left operand is shorter than the result (c* = lit-c* + int),
836           fixes bug #1450796
837         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
838           OP_SYMBOL
839
840 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
841
842         * src/.version: increased version number to 2.5.5
843         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
844         linking is done manually in pic16 port's _linkEdit,
845         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
846         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
847         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
848         allocate asmop as AOP_ACC,
849         (aopForRemat): added parameter 'bool result' in function declaration,
850         (pic16_aopGet): return AOP_ACC when accessing WREG,
851         (pic16_popGetTempReg): minor modification,
852         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
853         'pic16_allocWithIdx',
854         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
855         calling function in absolute addresses,
856         (genAssign): take into account AOP_ACC asmop,
857         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
858         * src/pic16/pcoderegs.c: some debug functions and lines added,
859         * src/pic16/ralloc.c (decodeRegType): added but commented out,
860         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
861         register too,
862         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
863         call to allocReg, not by manually allocating a new one,
864         (pic16_assignRegisters): now before going through the register
865         allocating functions mark all registers as free. This eliminates some
866         side effects resulting from peephole parser done earlier in the backbone
867
868 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
869
870         * src/SDCCicode.c (geniCodeLogic),
871         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
872
873 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
874
875         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
876           (genSend): bugfix, do not allocate and free twice,
877           (shiftRLong): handle partially overlapping aops
878         * support/regression/tests/bitopcse.c: fixed warning redefined idata
879
880 2006-03-08 Borut Razem <borut.razem AT siol.net>
881
882         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
883           for pic16
884
885 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
886
887         * support/regression/tests/bug1409955.c: new, added
888         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
889         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
890           (aopForSym, aopOp): increment asmop.allocated if reused,
891           (freeAsmop): decrement asmop.allocated and check for zero instead of
892           using asmop.freed,
893           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
894           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
895            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
896            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
897            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
898            genSignedRightShift, genRightShift, genDataPointerGet,
899            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
900            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
901             in reverse order from allocation,
902           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
903             added swappedLR to keep track
904         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
905           pdata & code for GCC, z80, gbz80 & hc08
906         * support/regression/tests/zeropad.c: moved defines to testfwk.h
907
908 2006-03-08 Raphael Neider <rneider AT web.de>
909
910         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
911
912 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
913
914         * device/include/mcs51/c8051f410.h: new SiLabs mcu
915         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
916         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
917
918 2006-03-06 Borut Razem <borut.razem AT siol.net>
919
920         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
921           made the linker quiet
922
923 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
924
925         * src/pic16/gen.c (genPcall): fixed bug #1443644
926         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
927         which dumps before the function entry point a data byte which represents
928         the number of the local variables used by the specified function, added
929         'xinst' for initial support for Extended Instruction Support,
930         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
931         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
932         port->fun_prefix anymore (may change later),
933         (genFunction, genEndFunction): do not store/restore local registers for
934         _main (this should take care the --main-return command line option in
935         the future),
936         (genOr): removed some legacy pic-port instructions,
937         * src/pic16/genarith.c (genAddLit): re-enabled old code because
938         performing operations with SFR's causes data to be written more than
939         once to each SFR. Perhaps SFRs should be handled in special cases...
940         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
941         pcode.h
942         * src/pic16/main.c (_process_pragma): stack bound checking did not take
943         into account for stack starting position,
944         (struct OPTIONS pic16_optionsTable): added command line argument
945         --extended or -y for Extended Instruction Support,
946         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
947         (deassignLRs): *** perhaps the most important change, old 'for' code
948         (commented out for reference), didn't account for some registers which
949         were left marked 'not free' after a pointer operation. The change
950         reduces register usage a lot in some cases
951
952 2006-03-04 Borut Razem <borut.razem AT siol.net>
953
954         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
955           _clean
956         * support/regression/tests/bug-524697.c: decreased array size for
957           mcs51 to fit into the internal RAM
958         * support/regression/Makefile.in: a little bit more verbose
959
960 2006-03-03 Borut Razem <borut.razem AT siol.net>
961
962         * support/regression/fwk/lib/testfwk.c,
963           support/regression/fwk/include/testfwk.h: introduced function
964           _prints(), nonrecursive _printn(), call _initEmu() from main()
965         * support/regression/ports/gbz80/support.asm,
966           support/regression/ports/ucz80/support.asm,
967           support/regression/ports/z80/support.asm,
968           support/regression/ports/ds390/support.c,
969           support/regression/ports/hc08/support.c,
970           support/regression/ports/host/support.c,
971           support/regression/ports/mcs51/support.c,
972           support/regression/ports/xa51/support.c: added empty _initEmu()
973           function
974         * support/regression/ports/pic16/gpsim.cmd,
975           support/regression/ports/pic16/spec.mk,
976           support/regression/ports/pic16/support.c,
977           support/regression/Makefile.in: added pic16 regression test
978
979 2006-03-01 Raphael Neider <rneider AT web.de>
980
981         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
982           genConstPointerGet): use safe way of generating MOVFF to cover
983             literals as well as registers, fixes bug #1440527
984         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
985             dereference
986           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
987             more correctly, fixes bug #1232186
988           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
989         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
990             gplink guess the correct processor in more cases, applied patch
991             from Till Riedel attached to and fixing bug #1436552
992
993 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
994
995         * support/regression/tests/array.c: added, contains check for #1434401
996         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
997
998 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
999
1000         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1001         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1002         * device/include/mcs51/c8051f326.h,
1003         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1004         * device/include/mcs51/c8051f000.h,
1005         * device/include/mcs51/c8051f018.h,
1006         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1007           PCON_IDLE,PCON_STOP and added sfr16 definitions
1008
1009 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1010
1011         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1012           genGetWord): fixed bug 1409955
1013
1014 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1015
1016         * device/include/hc08/mc68hc908gp32.h,
1017         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1018
1019 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1020
1021         * src/SDCCast.c (constExprValue): return NULL if not a value
1022         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1023         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1024         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1025
1026 2006-02-13 Borut Razem <borut.razem AT siol.net>
1027
1028         * src/regression/ptrarg.c: added, fails due to bug #1430967
1029         * src/regression/Makefile: ptrarg.c added, ...
1030
1031 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1032
1033         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1034         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1035
1036 2006-02-11 Borut Razem <borut.razem AT siol.net>
1037
1038         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1039           print "Processor: xxx" message to stdout only if --verbose
1040
1041 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1042
1043         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1044         * support/regression/tests/bug1426356.c: added
1045         * support/regression/tests/bitfields.c: removed 2 tests
1046
1047 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1048
1049         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1050         * device/include/mcs51/c8051f330.h,
1051         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1052           PCON_IDLE,PCON_STOP and added sfr16 definitions
1053         * device/lib/_divsint.c,
1054         * device/lib/_divuint.c,
1055         * device/lib/_divulong.c,
1056         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1057           register bank bug for small stackauto
1058
1059 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1060
1061         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1062
1063 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1064
1065         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1066         * all.dsp: corrected several bin paths
1067         * device/include/mcs51/c8051f120.h,
1068         * device/include/mcs51/c8051f300.h,
1069         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1070           to PCON_IDLE,PCON_STOP
1071         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1072         * device/lib/printf_large.c (output_float): fixed bug 1388703
1073         * support/regression/tests/bug1057979.c: added test for bug 1388703
1074
1075 2006-02-08 Raphael Neider <rneider AT web.de>
1076
1077         * src/pic/pcode.c (pciTRIS): fixed typo,
1078           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1079           (LinkFlow): fixed handling of flows that end in a call,
1080           (ReuseReg): perform safety check earlier
1081         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1082             to work with flows at the beginning of a pBlock,
1083             fixes #1426557 (Symbol not previously defined),
1084           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1085             usage information
1086           (RemoveUnusedRegisters): update register usage info
1087         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1088             created, reuse existing ones instead
1089         * src/pic/gen.c (genPcall): fixed #1424719
1090
1091 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1092
1093         * link/z80/lkmain.c,
1094         * link/z80/lklex.c,
1095         * link/z80/lkdata.c,
1096         * link/z80/aslink.h: fixed build on current cygwin:
1097         replaced getline() by lk_getline()
1098
1099 2006-02-01 Borut Razem <borut.razem AT siol.net>
1100
1101         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1102           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1103           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1104           src/regression/bool1.c, src/regression/bool2.c,
1105           src/regression/bool3.c, src/regression/call1.c,
1106           src/regression/compare.c, src/regression/compare10.c,
1107           src/regression/compare2.c, src/regression/compare3.c,
1108           src/regression/compare4.c, src/regression/compare5.c,
1109           src/regression/compare6.c, src/regression/compare7.c,
1110           src/regression/compare8.c, src/regression/compare9.c,
1111           src/regression/configword.c, src/regression/for.c,
1112           src/regression/inline.c, src/regression/mult1.c,
1113           src/regression/nestfor.c, src/regression/or1.c,
1114           src/regression/pointer1.c, src/regression/ptrfunc.c,
1115           src/regression/rotate1.c, src/regression/rotate2.c,
1116           src/regression/rotate3.c, src/regression/rotate4.c,
1117           src/regression/rotate5.c, src/regression/rotate6.c,
1118           src/regression/rotate7.c, src/regression/string1.c,
1119           src/regression/struct1.c, src/regression/sub.c,
1120           src/regression/sub2.c, src/regression/switch1.c,
1121           src/regression/while.c, src/regression/xor.c,
1122           src/regression/create_stc, src/regression/simulate,
1123           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1124           regression tests
1125         * src/regression/gpsim_assert.h: added
1126
1127 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1128
1129         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1130         ((void (code *) (void)) 0) ();
1131         * as/hc08/aslex.c,
1132         * as/hc08/aslink.h,
1133         * as/hc08/asm.h,
1134         * as/hc08/asmain.c,
1135         * as/hc08/lkdata.c,
1136         * as/hc08/lklex.c,
1137         * as/hc08/lkmain.c,
1138         * as/mcs51/aslex.c,
1139         * as/mcs51/aslink.h,
1140         * as/mcs51/asm.h,
1141         * as/mcs51/asmain.c,
1142         * as/mcs51/lkdata.c,
1143         * as/mcs51/lklex.c,
1144         * as/mcs51/lkmain.c,
1145         * as/z80/aslex.c,
1146         * as/z80/asm.h,
1147         * as/z80/asmain.c: fixed build on current cygwin:
1148         replaced getline() by as_getline()
1149
1150 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1151
1152         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1153         declarator in the symbol chain
1154         * src/SDCCsymt.h,
1155         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1156         parameter list for function pointers
1157         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1158         * support/regression/tests/bug-716242.c: added
1159
1160 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1161
1162         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1163         offset if possible
1164         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1165
1166 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1167
1168         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1169         inifinitely recurseable, added static
1170         * support/regression/tests/bug-1408066.c: added
1171
1172 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1173
1174         * src/SDCCicode.h,
1175         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1176         renamed, added possibility to create "postLoopLbl"-labels
1177         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1178         newiTempLoopHeaderLabel
1179         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1180         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1181         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1182         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1183         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1184         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1185         (basicInduction): fixed bug #136564, made static,
1186         (loopInduction): changed parameter of basicInduction, made static,
1187         (addPostLoopBlock): added
1188         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1189         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1190         findLoopEndSeq
1191         * support/regression/tests/bug-136564.c: added
1192         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1193         --std-sdcc99 to LIBSDCCFLAGS
1194
1195 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1196
1197         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1198         while loop
1199         * support/regression/tests/bug-1406131.c: added
1200
1201 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1202
1203         * src/SDCCast.c (decorateType): fix promotion of unary minus
1204         * src/SDCCsymt.c (computeType): beautified
1205         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1206         (valUnaryPM, valComplement): fix sign and promotion,
1207         (valNot): ANSI: result type is int (SDCC: unsigned char)
1208         * support/regression/tests/uminus.c: speedup by removing superflous
1209         test case 'int'
1210         * support/regression/tests/onebyte.c: added promotion and signedness
1211         tests for unary minus
1212         * support/regressions/tests/bug-477927.c: disable warning about
1213         uninitialized variables
1214         * support/regression/tests/not.c: added
1215
1216 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1217
1218         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1219         * src/mcs51/gen.c (gen51Code): show final register usage after
1220         fillGaps in asm with --i-code-in-asm
1221         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1222         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1223         incUsed, rliveClear, adjustIChain): made static,
1224         (setFromRange): excluded because it's unused,
1225         (findPrevUseSym, markWholeLoop): added,
1226         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1227         through all branches of predecessors enables sdcc to emit the warning
1228         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1229         (rlivePoint): made static, added parameter emitWarnings which is only
1230         true during the first run out of two,
1231         (findRecursiveSucc, findRecursivePred): removed,
1232         (computeLiveRanges): made static, added parameter emitWarnings,
1233         (dumpIcRlive): added for debugging only
1234         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1235         removed prototype of setFromRange()
1236         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1237         in call of computeLiveRanges()
1238         * support/regression/tests/bug-895992.c: added
1239         * support/regression/tests/bug-971834.c: added
1240         * support/valdiag/tests/bug-895992.c: added
1241         * support/valdiag/tests/bug-971834.c: added
1242
1243 2005-12-18 Raphael Neider <rneider AT web.de>
1244
1245         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1246           (genUnpackBits): improved code for direct operands,
1247           (genPackBits): improved code for literal assignment to bitfields
1248             and for direct destination operands (no FSR indirection),
1249             prevented redundant AND, fixes #1362800,
1250           (AccLsh): added parameter to disable masking of the result
1251         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1252           skip instructions with side-effects (like incfsz),
1253           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1254         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1255         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1256           fixes #1375263
1257
1258 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1259
1260         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1261         volatile variables as spill location
1262
1263 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1264
1265         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1266         replacing literals
1267         * support/regression/tests/bug-1376320.c: added
1268
1269 2005-12-08 Raphael Neider <rneider AT web.de>
1270
1271         * src/pic/device.c: renamed is_shared to pic14_is_shared
1272         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1273         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1274           (is_valid_identifier): added for above workaround
1275
1276 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1277
1278         * device/lib/Makefile.in: fixed to enable port-specific-objects
1279         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1280           char, thanks Hubert Sack
1281         * doc/sdccman.lyx: documented --xstack-loc,
1282           elaborated a bit more on interrupts and pitfalls,
1283           removed "setjmp/longjmp unsupported",
1284           documented some unsupported C99 features
1285         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1286         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1287           if, thanks Hubert Sack
1288         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1289         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1290           make make_library
1291         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1292           regression tests can report resource usage (rfe 700441)
1293         * support/regression/collate-results.py: report resource usage
1294         * support/regression/ports/ds390/spec.mk,
1295         * support/regression/ports/hc08/spec.mk,
1296         * support/regression/ports/mcs51/spec.mk,
1297         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1298         * support/regression/ports/ds390/uCsim.cmd,
1299         * support/regression/ports/hc08/uCsim.cmd,
1300         * support/regression/ports/mcs51/uCsim.cmd,
1301         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1302         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1303           library, use the default one
1304         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1305           building the library
1306
1307 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1308
1309         * config.dsp: added dependency on .version and configure_vc.awk
1310         * device/include/setjmp.h: updated for --stack-auto and --xstack
1311         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1312         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1313         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1314         * device/lib/libsdcc.lib: added _setjmp
1315         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1316           (decorateType): fixed bug 1372851,
1317           (optimizeGetHbit): fixed warning
1318         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1319           array initialisation
1320         * support/regression/tests/bug1057979.c: added test for bug 1358192
1321         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1322
1323 2005-12-03 Borut Razem <borut.razem AT siol.net>
1324
1325         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1326           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1327
1328 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1329
1330         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1331         createIval): implement symbol independant "flexible array member",
1332         (createIvalCharPtr): implemented flexible array initialisation with a
1333         string
1334         * src/SDCCsymt.c (copyStruct): removed,
1335         (getSize): fixed misleading comment,
1336         (getAllocSize): removed, the additional allocation size is now in
1337         sym->flexArrayLength,
1338         (checkStructFlexArray): new, syntax checks for flexible array members,
1339         (compStructSize): added syntax checks for "flexible array members"
1340         (copyStruct): removed,
1341         (copyLinkChain): removed inefficient fix for bug 770487
1342         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1343         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1344         symbol->flexArrayLength
1345         * src/SDCCerr.c,
1346         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1347         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1348         * support/regression/tests/structflexarray.c: added
1349         * support/valdiag/tests/structflexiblearray.c: added
1350
1351 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1352
1353         * src/SDCCast.c (decorateType): fixed bug 1368489
1354         * support/Util/SDCCerr.c,
1355         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1356
1357 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1358
1359         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1360           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1361
1362 2005-11-27 Borut Razem <borut.razem AT siol.net>
1363
1364         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1365           support/cpp2/mkdeps.h: added command line option
1366           -obj-ext=<extension> to SDCPP to define object file externion, used
1367           for generation of make dependencies (-M)
1368         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1369
1370 2005-11-26 Borut Razem <borut.razem AT siol.net>
1371
1372         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1373           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1374           added pic and pic16 libraries
1375
1376 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1377
1378         * device/include/float.h: Corrected typo in prototype of __fsgt
1379
1380 2005-11-25 Borut Razem <borut.razem AT siol.net>
1381
1382         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1383           added creation of model-mcs51-stack-auto libraries
1384
1385 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1386
1387         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1388         and fields-list too
1389         * src/SDCCast.c (createIvalArray): removed obsolete comment
1390
1391 2005-11-24 Borut Razem <borut.razem AT siol.net>
1392
1393         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1394           added missing device/lib/mcs51/crt*.asm sources
1395
1396 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1397
1398         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1399
1400 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1401
1402         * device/lib/_fs2schar.c,
1403         * device/lib/_fs2sint.c,
1404         * device/lib/_fs2slong.c: optimized inline asm
1405
1406 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1407
1408         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1409           Better handling of floats between -1.0 and 0.0.
1410
1411 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1412
1413         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1414           (the missing "if"s prohibited removal of redundant labels)
1415
1416 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1417
1418         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1419           Properly convert floats between -1.0 and 0.0 to long, int, and char
1420           types (max integer value of negative floats tends to zero).
1421         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1422           Removed changes made so to work properly with floats between
1423           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1424           and _fs2char.c
1425
1426 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1427
1428         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1429         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1430         (genCast) cosmetic change
1431         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1432         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1433         from mcs51
1434         * support/regression/tests/bitfields (testSignedBitfields): added
1435
1436 2005-11-18 Borut Razem <borut.razem AT siol.net>
1437
1438         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1439         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1440           introduced SILENT option to make building of pic16 libraries less
1441
1442 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1443
1444         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1445           Now they work properly with floats between -1.0 and 0.0
1446         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1447
1448 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1449
1450         * src/SDCCicode.c (printOperand): added missing else
1451
1452 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1453
1454         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1455         reformatted for better readability
1456         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1457         signed bitfields
1458
1459 2005-11-17 Borut Razem <borut.razem AT siol.net>
1460
1461         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1462           introduced SILENT option to make building of pic16 libraries less
1463           verbose - used for nightly snapshot build
1464         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1465           available on Win32 platforms.
1466         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1467           medium, large, pic and pic16
1468
1469 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1470
1471         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1472           printf("%f"...) sets fraction to zero.
1473
1474 2005-11-16 Raphael Neider <rneider AT web.de>
1475
1476         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1477           fixes #1357221
1478         * src/pic/gen.c (genIfx): implemented for CARRY bit
1479         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1480           to generic pointers, fixes #1357332,
1481           (pic16_movLit2f): NEW,
1482           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1483
1484 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1485
1486         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1487
1488 2005-11-11 Raphael Neider <rneider AT web.de>
1489
1490         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1491         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1492           compute pointer's type from operand,
1493           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1494           improved single bit reads, fixes bug #1353379
1495
1496 2005-11-09 Borut Razem <borut.razem AT siol.net>
1497
1498         * support/scripts/sdcc.nsi: added lib/pic to the package
1499
1500 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1501
1502         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1503
1504 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1505
1506         * support/regression/tests/bug1348008.c: added
1507         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1508         * support/regression/tests/bug1337835.c: updated comment
1509
1510 2005-11-06 Borut Razem <borut.razem AT siol.net>
1511
1512         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1513           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1514           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1515           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1516           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1517           dynamic construction of cl_error_class and derivates - 2.nd try
1518
1519 2005-11-05 Borut Razem <borut.razem AT siol.net>
1520
1521         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1522           bug, which caused Bus Errors on sparc solaris
1523
1524 2005-11-04 Borut Razem <borut.razem AT siol.net>
1525
1526         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1527           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1528           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1529           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1530           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1531           and derivates to resolve the initialization problem on OSX
1532
1533 2005-11-02 Borut Razem <borut.razem AT siol.net>
1534
1535         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1536           corrected typo - #include <winsock2.h>
1537
1538 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1539
1540         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1541           (_asxxxx_mapping): added org directive for future enhancements
1542
1543 2005-11-01 Borut Razem <borut.razem AT siol.net>
1544
1545         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1546           enabled sockets on WIN32
1547         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1548
1549 2005-10-31 Borut Razem <borut.razem AT siol.net>
1550
1551         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1552           WIN32 backslash path delimiters should be escaped when used in C strings
1553         * support/regression/tests/bitfields.c: exclude failing assertions for
1554           __CYGWIN32__ and __MINGW32__ hosts
1555
1556 2005-10-30 Borut Razem <borut.razem AT siol.net>
1557
1558         * src/SDCCutil.c: corrected double comparison typo
1559
1560 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1561
1562         * device/lib/medium/Makefile: added for new memory model medium
1563         * device/include/asm/mcs51/features.h: updated for medium/pdata
1564         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1565           added Multiply & Accumulate sbit's and MAC0_PAGE define
1566         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1567         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1568         * device/lib/_mullong.c: update for medium model
1569         * device/lib/incl.mk: added medium model
1570         * doc/sdccman.lyx: documented medium model
1571         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1572         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1573         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1574         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1575           (allocParms): set SCLS and OCLS to pdata for medium model
1576         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1577           for pdata,
1578           (powof2): return <0 if not power of 2
1579         * src/avr/gen.c (genBitWise): use updated powof2
1580         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1581           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1582           (shiftLLeftOrResult): use B if necessary
1583         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1584         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1585         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1586         * support/regression/Makefile.in: added test-mcs51-medium
1587         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1588
1589 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1590
1591         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1592         specifier unsigned
1593         * device/lib/time.c (mktime): fixed bug 1334315
1594
1595 2005-10-28 Raphael Neider <rneider AT web.de>
1596
1597         * device/include/pic/p16f_common.inc: added common declarations
1598         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1599
1600 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1601
1602         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1603           (aopPutUsesAcc): added to predict accumulator use,
1604           (assignResultValue): save acc if necessary,
1605           (genMinusDec): store result if indirectly addressed,
1606           (genDivOneByte):  save acc if necessary,
1607           (movLeft2Result): bugfix if left already in acc,
1608           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1609             attention to accumulator use (esp. pdata),
1610           (genReceive): receive pdata correctly
1611         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1612         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1613
1614 2005-10-27 Raphael Neider <rneider AT web.de>
1615
1616         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1617
1618 2005-10-27 Raphael Neider <rneider AT web.de>
1619
1620         * .version: changed version to 2.5.4
1621         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1622         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1623           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1624             arithmetics support routines
1625         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1626         * device/lib/Makefile.in: also create installdir for pic
1627
1628         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1629           pic14 port as well
1630         * src/pic/device.c (dump_sfr): rewritten to delegate register
1631           placement to the linker (use `extern sym' rather than sym EQU addr),
1632           (validAddress): fixed to check last specified address
1633         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1634           (popGetLit): truncate literal value to 8 bit,
1635           (popGet): moved assert to more appropriate place
1636           (popGetExternal): create pCode operand from and mark the according
1637             symbol as being `extern'
1638           (popGetAddr): added sanity check on immediate's offset, provide
1639             GPOINTER tag on demand
1640           (aopPut): fixed for immediates,
1641           (mov2w_op): move operand's address or contents to WREG (depending on
1642             operand type), safer variant of mov2w,
1643           (movwf,call_libraryfunc): NEW, handy abbreviations,
1644           (get_argument_pcop,get_return_val_pcop,pass_argument,
1645           get_returnvalue): interface for accessing function parameters and
1646             return values,
1647           (assignResultValuei,genRet): use new parameter/return value interface
1648           (pic14_getDataSize): back to old version handling generic pointers,
1649           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1650             provided implementation and/or fixed old one,
1651           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1652             calls, removed legacy 8051 reference code
1653           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1654           (loadSignToC): NEW, move the operands sign bit to CARRY,
1655           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1656             genRightShiftSigned, accepts negative shift counts,
1657           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1658           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1659             generic pointers, __data pointers and __code pointers,
1660           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1661             and signed bitfields, limit bitfields to 8 bit,
1662           (genDataPointerGet): fixed number of bytes read,
1663           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1664           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1665             pointers to constant data are no longer assumed to point to __code
1666             space, removed invalid pointer types,
1667           (bitpatternFromVal): retrieve the PICs representation of an integer
1668             or float literal,
1669           (genDataPointerSet): fixed assigning to po_immediate operands,
1670           (genGenPointerSet): implemented as library call,
1671           (genIfx): fixed incorrect condition,
1672           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1673             provide GPOINTER tag according to destination's storage class,
1674           (genCast): added code to handle casting to generic pointers, added
1675             sign-/zero extension of the result
1676           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1677         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1678         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1679           extend the result
1680         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1681           address/register resides in the shared banks
1682           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1683             put all variables into separate sections (have the linker arrange
1684             them)
1685           (picglue): put init code and interrupt handlers in separate sections
1686         * src/pic/main.c: added port specific options table, modified to PORT
1687           structure to make GPOINTERs 3 byte, added pic14_options
1688           (_pic14_do_link): private linking routine (update paths to libraries,
1689             add libsdcc.lib by default)
1690         * src/pic/main.h: declare pic14_options
1691         * src/pic/pcode.c: fixed instructions i/o relations,
1692           (RegCond): reverted to correct version,
1693           (newpCodeOpLit): truncate literals to 8 bit,
1694           (genericPrint): added debug output,
1695           (getRegFromInstruction): fixed for various operand types, simplified
1696           (BuildFlow): fixed broken handling of isntructions with labels
1697           (LinkFlow): start at last instruction in flow (skip trailing comments),
1698             pass the flow on to the next instruction after CALL
1699           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1700           (insertPCodeInstruction): fixed inserting after a skip instruction,
1701           (DoBankSelect): fixed for labeled instructions
1702           (OptimizepBlock): honor --nopeep switch
1703           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1704         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1705         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1706           (pCodeOptime2pCodes): allow disabling this optimization via
1707             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1708             but is still buggy), started implementation of a dataflow based
1709             pCode optimization (CSE + dead code elimination)
1710           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1711         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1712           names are independant of the stack location and therefore portable across
1713           devices
1714
1715 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1716
1717         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1718           (selectSpil): fixed bug 1337835 by not spilling bit variables
1719         * support/regression/tests/bug1337835.c: added test for this bug
1720         * src/mcs51/peeph.def: restart after rule 3.c,
1721           addded rules 263.x to optimize loading constants
1722
1723 2005-10-26 Raphael Neider <rneider AT web.de>
1724
1725         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1726         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1727           (genAssign): emit warning when casting literals to generic pointer
1728             type, also applies when taking the address of a fixed variable,
1729           (genCast): improved casting to generic pointers
1730         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1731           extern variables, added verbose error message
1732         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1733
1734 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1735
1736         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1737         carry must be complemented too
1738         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1739         could be emitted by genMinus
1740         * src/SDCCval.c (constVal): fixed bug 1305065
1741
1742 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1743
1744         * src/SDCCast.c (addCast): added promotion for bit variables
1745         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1746         promotion casts + optimisation
1747         (optimizeGetWord): fix warning 'i' might be used uninitialized
1748         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1749         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1750
1751 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1752
1753         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1754         all chars are promoted to int; promotion should be handled in SDCCast.c
1755
1756 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1757
1758         * device/lib/_strcmp.c: Fixed bug 1326457
1759
1760 2005-10-11 Raphael Neider <rneider AT web.de>
1761
1762         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1763         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1764
1765 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1766
1767         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1768         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1769
1770 2005-10-04 Raphael Neider <rneider AT web.de>
1771
1772         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1773           device/lib/pic16/pics.all: added pic18f1320
1774         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1775
1776 2005-09-30 Raphael Neider <rneider AT web.de>
1777
1778         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1779         * src/pic16/devices.inc: NEW, provides device descriptions
1780         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1781
1782 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1783
1784         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1785           GETHBIT
1786
1787 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1788
1789         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1790           documented Any Order Bit, Higher Order Byte and Higher Order Word
1791         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1792         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1793           (optimizeGetAbit): new, to get any bit, not only the high bit,
1794           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1795           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1796           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1797           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1798             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1799             GETABIT, GETBYTE, GETWORD: decorate them,
1800           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1801           (ast_print): added GETABIT, GETBYTE, GETWORD
1802         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1803         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1804           (geniCodeBinary): new generic binary icode,
1805           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1806         * src/port.h: updated comment for PORT.hasExtBitOp
1807         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1808           (genGetByte): new, to get a single byte,
1809           (genGetWord): new, to get a word from a long,
1810           (gen51Code): added GETABIT, GETBYTE, GETWORD
1811         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1812
1813 2005-09-23 Raphael Neider <rneider AT web.de>
1814
1815         * configure.in, configure: have device/lib/pic configured
1816         * device/lib/Makefile.in: added model-pic14
1817         * device/lib/clean.mk: added pic/ to clean rule
1818         * device/lib/pic: added rudimentary pic14 library providing support
1819           functions for multiplication/division/generic pointer access
1820         * src/SDCCopt.c (convilong): mark support functions as extern
1821           for pic14 port as well
1822         * src/pic/gen.c (genMult): added assertions,
1823           (genpic14Code): emit warning on unhandled iCodes
1824         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1825         * src/pic/pcode.c (pCodeOpCopy),
1826         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1827           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1828           SFR_REGISTER}), made safe for future extensions
1829         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1830           instructions even if preceeded by SKIP instructions (also remove
1831           them); removed unused code
1832         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1833           prevents leaving parts of the structure uninitialized after copying
1834
1835 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1836
1837         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1838           ago by me
1839         * support/regression/tests/addsub.c: added test for the bug
1840
1841 2005-09-21 Raphael Neider <rneider AT web.de>
1842
1843         * device/include/pic16/pic18f1220.h,
1844           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1845         * device/lib/pic16/Makefile.rules: added missing opening paren
1846         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1847           are provided in genutils.c,
1848           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1849           operand/result sizes,
1850           (genCmp): assert on NULL pointers first, then check deref'ed values
1851         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1852           result size
1853
1854 2005-09-18 Raphael Neider <rneider AT web.de>
1855
1856         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1857           as these are now unused,
1858           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1859         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1860           local, avoids uninitialized pointer dereference on r->name
1861         * src/pic16/ralloc.c (newReg): fixed indentation
1862
1863 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1864
1865         * src/SDCCval.c (constVal): fixed bug 730366
1866         * support/Util/SDCCerr.c,
1867         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1868
1869 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1870
1871         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1872
1873 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1874
1875         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1876
1877 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1878
1879         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1880           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1881         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1882           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1883         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1884         * packihx/packihx.c (hexDigit): made c unsigned char
1885         * as/mcs51/lklibr.c (fndsym),
1886         * link/z80/lkgb.c (gb),
1887         * link/z80/lklibr.c (fndsym),
1888         * link/z80/lkrloc.c (relr),
1889         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1890         * src/SDCC.lex (checkCurrFile, process_pragma),
1891         * src/SDCCglue.c (spacesToUnderscores),
1892         * src/SDCCmain.c (setParseWithComma, processFile),
1893         * src/asm.c (tvsprintf, printCLine),
1894         * src/avr/gen.c (emitcode, aopPut),
1895         * src/ds390/gen.c (emitcode),
1896         * src/hc08/gen.c (emitcode, emitinline),
1897         * src/mcs51/gen.c (emitcode, genInline),
1898         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1899           tokenizeLineNode),
1900         * src/pic/ralloc.c (debugLog),
1901         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1902           tokenizeLineNode),
1903         * src/pic16/ralloc.c (debugLog),
1904         * src/z80/main.c (_process_pragma):
1905            made all ctype.h function calls safe
1906         * src/SDCCopt.c: include math.h for fabs
1907         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1908           and used them throughout the code to make ctype.h function calls safe
1909         * src/ds390/main.c (asmLineNodeFromLineNode),
1910         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1911         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1912            unsigned char*
1913         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1914           (newpCodeAsmDir): made ctype.h function calls safe
1915         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1916           pic16_emitcode):  made lbp unsigned char*
1917         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1918           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1919         * src/xa51/gen.c (emitcode),
1920         * src/z80/gen.c (_emit2): made lbp unsigned char*
1921         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1922            char*
1923
1924 2005-09-05 Raphael Neider <rneider AT web.de>
1925
1926         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1927           access bank splitpoint
1928
1929 2005-09-05 Raphael Neider <rneider AT web.de>
1930
1931         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1932
1933 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1934
1935         * .version: changed to version 2.5.3
1936         * doc/sdccman.lyx: changed version to 2.5.3,
1937           documented --codeseg and --constseg and pragma codeseg and constseg,
1938           documented bit parameters (reentrant) and bit returning
1939         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1940            currFunc->recvSize, but is this ok for all ports?
1941           (ast2iCode): result of ~ on unsigned char must be cast to int for
1942            bool to work
1943         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1944           function pointers in bit space
1945         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1946           (processFuncArgs): call port.reg_parm() with reentrancy info
1947         * src/port.h,
1948         * src/avr/main.c,
1949         * src/ds390/main.c,
1950         * src/hc08/main.c,
1951         * src/pic/main.c,
1952         * src/pic16/main.c,
1953         * src/xa51/main.c,
1954         * src/z80/main.c: port.reg_parm prototype extended with
1955           "bool reentrant" parameter
1956         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1957           options.stackAuto for allocating bit register parameters
1958         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1959           (genSend): set BitBankUsed if it is,
1960           (selectRegBank): factored out of genCall for use in genPcall,
1961           (genCall): removed redundant dtype assignmen, use selectRegBank,
1962           (genPcall): handle returning in Carry properly, save in F0 if needed,
1963           (genReceive): handle bit register parameters
1964         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1965           (mcs51_assignRegisters): enable bit registers for all reentrant
1966            functions and don't set BitBankUsed unconditionally
1967         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1968         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1969         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1970
1971 2005-08-27 Borut Razem <borut.razem AT siol.net>
1972
1973         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1974         ppc-osx (Darwin) does not support -u option. It seems that it is
1975         supported only on Linux - GNU cp
1976
1977 2005-08-25 Borut Razem <borut.razem AT siol.net>
1978
1979         * sim/ucsim/gui.src/serio.src/Makefile.in,
1980           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1981           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1982           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1983           install and strip, since the strip at /usr/ccs/bin should be used
1984           on solaris
1985
1986 2005-08-24 Borut Razem <borut.razem AT siol.net>
1987
1988         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1989
1990 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1991
1992         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1993         ffffffffu
1994
1995 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1996
1997         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1998         * as/mcs51/lkmain.c (link_main): fixed warning
1999         * device/include/stdbool.h: ds390 has no advanced bit support yet
2000         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2001         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2002         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2003           and updated their macros
2004         * src/SDCCval.c (constVal): updated comment for renamed b_long
2005
2006 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2007
2008         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2009         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2010           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2011           (oprio): set priority for '['
2012         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2013            and adb_24_bit
2014         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2015         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2016         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2017         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2018           added overlayable BIT_BANK area
2019         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2020           (summary2): explain 'T' in legenda
2021         * as/mcs51/lkrloc.c: replaced old K&R style,
2022           (relr): added R_BIT processing,
2023           (errmsg): added "Bit-addressable relocation error",
2024           (adb_bit): added for converting from byte- to bit-addressable space,
2025           (adb_24_bit): added for converting from byte- to bit-addressable space
2026         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2027            used in reentrant functions now even as return value
2028         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2029         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2030           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2031         * src/SDCCglobl.h: added indicator BitBankUsed
2032         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2033            the bit registers b0-b7
2034         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2035           (geniCodeCast): fixed bug 1263853,
2036           (geniCodeLogicAndOr): put result in bool or char,
2037           (geniCodeReceive): added parameter func for accessing the return type,
2038           (geniCodeFunctionBody): pass func to geniCodeReceive
2039         * src/SDCCmain.c: added indicator BitBankUsed
2040         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2041         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2042           (checkSClass): don't put automatic bool/bit on stack,
2043           (checkFunction): removed check on function cannot return bit
2044         * src/SDCCsymt.h: added newBoolLink prototype
2045         * src/mcs51/gen.c (rb1regs): added bit registers,
2046           (movc): created for assigning to carry,
2047           (pushReg, popReg): created for pushing registers,
2048           (sameRegs): check both AOP_REG and AOP_CRY types,
2049           (aopOp): handle bit registers,
2050           (aopPut): optimization no self-assign,
2051           (saveRegisters): push reg->base (bits) only once for bit registers,
2052            and use pushReg,
2053           (unsaveRegisters): pop reg->base only once and use popReg,
2054           (assignResultValue): added parameter func and return in carry for bits,
2055           (genIpush): optimization no reload in A if not changed,
2056           (genSend): bit parameters in reentrant functions are passed in bit
2057            registers by first assigning to bits in B, then save registers and
2058            copy B to bits,
2059           (genCall): handle returning in Carry properly, save it in F0 if needed,
2060           (genPcall): updated assignResultValue call, this is not safe yet for bit
2061            returning function !!!
2062           (genFunction): don't generate equ's for bit registers and use pushReg,
2063           (genEndFunction): take care of bit returning functions and use popReg,
2064           (genRet): return bit in Carry,
2065           (genIfx): optimize bit registers and other directly addressable bits,
2066           (genReceive): updated assignResultValue call
2067         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2068           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2069            registers when using stack-auto
2070         * src/mcs51/ralloc.c (_G): added allBitregs,
2071           (regs8051): added the bit registers,
2072           (createStackSpil): use macro IS_BIT,
2073           (getRegBit): added to allocate a bit register, else spill,
2074           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2075           (updateRegUsage): factored out to ease stepping while debugging,
2076           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2077            also allocate bit registers,
2078           (fillGaps): handle bit registers,
2079           (findAllBitregs): added to create bit vector with all bit registers,
2080           (mcs51_allBitregs): returns this bit vector,
2081           (mcs51_assignRegisters): when using stack-auto use bit registers for
2082            passing parameters and creating local variables
2083         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2084
2085 2005-08-22 Borut Razem <borut.razem AT siol.net>
2086
2087         * device/lib/Makefile.in: replaced find option -or with -o
2088           to make it run on solaris
2089
2090 2005-08-22 Raphael Neider <rneider AT web.de>
2091
2092         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2093           fixes #1265442 (crash on Solaris)
2094
2095 2005-08-20 Borut Razem <borut.razem AT siol.net>
2096
2097         * configure, configure.in: added tests for libsocket and libnsl libraries,
2098           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2099           from support/regression/Makefile.in
2100         * support/regression/Makefile.in: added
2101         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2102         * sim/ucsim/libtool: regenerated on sparc-solaris
2103         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2104           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2105           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2106           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2107           sparc-solaris, which doesn't use GNU ld linker
2108         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2109         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2110
2111 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2112
2113         * src/mcs51/peeph.def: updated comments
2114
2115 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2116
2117         * device/lib/_gptrget.c,
2118         * device/lib/_gptrput.c: slightly shorter
2119         * doc/sdccman.lyx: incremented version
2120         * src/mcs51/peeph.def: moved peephole comments to the line of first
2121           change to better keep line correlation, reanimated 186.e
2122         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2123
2124 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2125
2126         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2127           David Saxton with quotes around file name.
2128
2129 2005-08-15 Borut Razem <borut.razem AT siol.net>
2130
2131         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2132           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2133           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2134           make tests run on x86_64 platform
2135
2136 2005-08-13 Raphael Neider <rneider AT web.de>
2137
2138         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2139           as it might be executed DURING a build (parallel make is wonderful)
2140
2141 2005-08-13 Raphael Neider <rneider AT web.de>
2142
2143         * device/lib/Makefile.in (port-specific-objects-pic16):
2144           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2145         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2146           dependency
2147         * device/lib/pic16/Makefile.rules: build subdirs before creating
2148           the library, removed builddir rule, create $(builddir) early in
2149           recurse rule, use empty recurse rule for leaf directories
2150         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2151           mkdir errors (race condition), removed duplicate suffix "hex"
2152           from clean rules
2153         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2154         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2155           prevents mkdir -p from aborting on Alpha
2156
2157 2005-08-12 Raphael Neider <rneider AT web.de>
2158
2159         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2160           db-statements in order to allow for arrays of pointers in code
2161           sections to be placed without interspersed 0-padding, fixes
2162           bug #1256215
2163         * (emitStatistics): fixed division by zero for pic18f1220
2164         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2165           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2166         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2167         * (pic16_pCodeConstString): keep track of already emitted string
2168           literals to prevent "duplicate definitions of symbol _str_NR"
2169         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2170           debug message
2171         * device/lib/Makefile.in: ignore failing PIC16 library builds
2172         * device/lib/pic16/Makefile: do not build if gputils are missing
2173         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2174
2175 2005-08-10 Raphael Neider <rneider AT web.de>
2176
2177         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2178           my last commit)
2179
2180 2005-08-10 Raphael Neider <rneider AT web.de>
2181
2182         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2183           Rokas' patch to add the new fixed point type "__fixed16x16"
2184         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2185           functions for __fixed16x16 arithmetics
2186         * device/lib/pic16: reimplemented the build system to support
2187           a separate build directory, better handling of libio (create
2188           the library in a separate subdir for each architecture) and
2189           easier configuration (centralized in Makefile.common)
2190
2191 2005-08-07 Raphael Neider <rneider AT web.de>
2192
2193         * src/pic16/gen.c (genrshTwo): fixed sign extension
2194         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2195         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2196           added T0CONbits
2197         * device/include/pic16/pic18f4220.h: NEW, header for
2198           pic18f4220 and pic18f4320
2199         * device/include/pic16/pic18fregs.h: added new devices,
2200           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2201         * device/include/pic16/signal.h: resolved name clashes
2202           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2203           to also allow testing for interrupt enable bits, added
2204           comments on how to use the macros
2205         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2206         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2207           register definitions for the devices
2208         * device/lib/pic16/pics.all: added new devices
2209         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2210           allocated memory
2211         * device/lib/pic16/libc/stdlib/memfree: do not count
2212           the block header as free memory
2213         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2214           simplified and added missing end-of-blocklist-marker
2215           (reported by Peter Onion, fixes #1252814)
2216         * (_mergeHeapBlock): fixed loop condition
2217         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2218           len==0, restructured code
2219         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2220           up a bit, reduced bitfield accesses, prevent endless loops
2221           in case of heap corruption
2222         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2223           "unreferenced arguments/must return a value" warnings
2224         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2225           replaced BAUDREG with SPBRG
2226         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2227           device/lib/pic16/debug/gstack/gstack.c: replaced
2228           _naked, _asm, _endasm with __naked, __asm, __endasm
2229
2230 2005-08-05 Raphael Neider <rneider AT web.de>
2231
2232         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2233           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2234
2235 2005-08-05 Borut Razem <borut.razem AT siol.net>
2236
2237         * device/lib/Makefile.in: added missing ';'
2238         * configure: removed ^M characters
2239
2240 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2241
2242         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2243           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2244           License
2245
2246 2005-08-04 Borut Razem <borut.razem AT siol.net>
2247
2248         * configure.in: pic16 libraries build 2nd try - enable running
2249           configure in device/lib/pic16
2250         * configure: regenerated from configure.in
2251         * device/lib/Makefile.in: create $(PORT)/bin directory
2252
2253 2005-08-03 Raphael Neider <rneider AT web.de>
2254
2255         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2256           to get/set values via pointers
2257         * (genUnpackBits,genPackBits): changed detection of
2258           ptr->bitfield vs. sym.bitfield, fixed access via generic
2259           pointers, removed dead (wrong) code for multibyte bitfields
2260         * (genNearPointerGet, genGenPointerGet): removed useless code,
2261           fixed bitfield detection, fixes #1250594
2262         * (genNearPointerSet): removed useless code
2263         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2264           and introduced macro pic16_emitpcode that conditionally emits
2265           the origin of the following pCode (useful for debugging SDCC)
2266         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2267         * (createDefmap): fixed handling of LFSR for --optimize-df
2268
2269 2005-08-02 Borut Razem <borut.razem AT siol.net>
2270
2271         * device/lib/Makefile.in: pic16 libraries build enabled since
2272           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2273
2274 2005-08-02 Raphael Neider <rneider AT web.de>
2275
2276         * src/pic16/gen.c (genPackBits): removed deprecated warning
2277         * (genGenPointerSet): fixed bitfield detection
2278
2279 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2280
2281         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2282
2283 2005-07-31 Raphael Neider <rneider AT web.de>
2284
2285         * device/lib/pic16/libdev/pic18f458.c,
2286           device/include/pic16/pic18f458.h: added missing T0CONbits
2287
2288 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2289
2290         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2291
2292 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2293
2294         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2295
2296 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2297
2298         * device/include/mcs51/at89c51ed2.h: added.
2299
2300 2005-07-23 Raphael Neider <rneider AT web.de>
2301
2302         * src/pic/gen.h: added emitpcode macro for debugging
2303         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2304           and replace by macro adding debug information on demand
2305         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2306         * (gencjne): tried to fix; replaced with correct (slower) code
2307         * (gen{Unp,P}ackBits): fixed single bit access
2308         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2309         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2310           previous instruction
2311         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2312           register has to be handled with care (forbidding movement
2313           of assignments/uses, removing assignments completely, ...)
2314         * (pCodeOptime2pCodes): make use of regIsSpecial
2315         * added lots of debugging output (commented out)
2316         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2317           from being reused as result UNLESS it is known to work
2318
2319 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2320
2321         * support/Util/dbuf.h: include <stddef.h> for size_t
2322         * .version: changed to version 2.5.2
2323
2324 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2325
2326         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2327
2328 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2329
2330         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2331           (genModOneByte): removed needless psha/pula
2332
2333 2005-07-22 Raphael Neider <rneider AT web.de>
2334
2335         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2336           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2337         * src/pic/gen.c (resolveIfx): do not "invent" labels
2338         * (genSkipc): changed to positive logic
2339         * (genSkipCond): removed as no longer needed
2340         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2341           backport from PIC16
2342         * (genLeftShift): check operands are in different registers
2343         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2344           INCF does not update CARRY...
2345         * src/pic/main.c: fixed _linkCmd
2346         * src/pic/pcode.c (unlinkpCode): added inactive code
2347         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2348           alive (do not assign result and operand overlapping registers)
2349
2350 2005-07-22 Raphael Neider <rneider AT web.de>
2351
2352         * src/pic/device.c (dump_sfr): replaced register declaration with
2353           call to emitSymbolToFile() to avoid duplicate symbols
2354         * (assignRelocatableRegisters): do not declare external symbols
2355         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2356           right (take size of type, not etype)
2357         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2358         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2359         * (packRegsForAccUse): disabled assignment of WREG as
2360           the result reg to prevent occurence of just fixed #1235003,
2361           fixes #1242954
2362         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2363           symbols (avoids duplicate symbols in .asm file)
2364         * (pic14emitRegularMap): use emitSymbolToFile()
2365         * src/pic/gen.c (aopOp): fixed spillLocation handling
2366         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2367         * (genDataPointerSet): removed unneccessary variables/output
2368
2369 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2370
2371         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2372         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2373
2374 2005-07-21 Raphael Neider <rneider AT web.de>
2375
2376         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2377           architecture cannot handle them efficiently, fixes bug #1235003
2378         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2379           check for empty sets before using them (fixes bug #1232190)
2380
2381 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2382
2383         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2384           (lnksect2): generate warnings for memory overlap
2385         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2386           constseg to set the name of these segments so you can instruct the linker
2387           to place them in banks
2388         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2389         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2390           added code_seg and const_seg to options
2391         * src/SDCCglue.c (emitMaps): use options.const_seg,
2392           (createInterruptVect): put interrupt vectors in segment HOME,
2393           (glue): put HOME before static segment and put the main glue in HOME,
2394           (glue): use options.code_seg
2395         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2396         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2397           these segments so you can instruct the linker to place them in banks
2398           (linkEdit): use code_loc for HOME segment which should be the first
2399           segment in code memory now
2400         * src/SDCCmem.c: fixed more stuff like bug 1238386
2401         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2402           (changePointer): don't change function pointers to code pointers for
2403           banked functions,
2404           (compareType): added exceptional check for banked function pointers
2405         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2406         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2407           after static in code memory
2408         * src/mcs51/gen.c: added aopLiteralLong prototype,
2409           (aopForSym): use getSize for functions,
2410           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2411           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2412           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2413           the segment,
2414           (genPcall): use call for literal function pointers and generate banked
2415           calls over the one trampoline so there's only one place for the user to
2416           modify according to his/hers hardware,
2417           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2418           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2419         * src/mcs51/main.c: added keyword banked,
2420           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2421         * support/Util/SDCCerr.c,
2422         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2423           needed for passing the bank and address to the trampoline
2424         * device/lib/mcs51/crtbank.asm: added for bankswitching
2425         * device/lib/mcs51/Makefile: added crtbank
2426
2427 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2428
2429         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2430           for fields at offset 0 of a struct or union as reported
2431           on 2005-07-07 in the developer mailing list.
2432
2433 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2434
2435         * src/SDCCmem.c: fixed bug 1238386
2436
2437 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2438
2439         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2440           (patch #1144962), added peephole 300, enabled 259.x
2441         * doc/sdccman.lyx: removed screenshot and provided link instead
2442
2443 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2444
2445         * doc/sdccman.lyx: added section about debugging with ddd
2446         * doc/figures/ddd_example.eps: screenshot of debugging session
2447
2448 2005-07-04 Raphael Neider <rneider AT web.de>
2449
2450         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2451           like CODE pointers, fixes #1115683
2452         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2453           call, fixes bugs #1232211, #1228110,
2454           fixed wrong casts to pCodeFlow from pCodeInstructions
2455
2456 2005-07-04 Raphael Neider <rneider AT web.de>
2457
2458         * src/pic/gen.c (popGet): changed assert to allow for
2459           bit operands
2460         * (popGetAddr): changed signature to provide
2461           an additional index, patched all call sites
2462         * (genCmpEq): handle literal-like operands correctly
2463         * (genAddrOf): added sanity checks on __code/__data pointers
2464         * (genAssign): added handling of symbols from __code section
2465         * (gencjne): do not generate code for comparisons whose result
2466           is neither stored nor used, fixes bug #1171114
2467         * (AccLsh, AccRsh): operate on operand instead of WREG
2468         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2469           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2470           by known count
2471         * rewrote complete shift-by-literal logic, commented unused
2472           functions out
2473         * (genConstPointerGet): get multiple bytes (if result size > 1),
2474           fixed handling of non-immediate addresses
2475         * (genPointerGet): handle CODE pointers like CONST pointers
2476         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2477         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2478           operand is to be treated as a literal or not
2479         * (mov2w,genPcall,genCmpEq),
2480           src/pic/genarith.c: use aop_isLitLike() to decide between
2481           literal/register contents
2482         * (addSign): added missing offset
2483         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2484           only emit comment in debug-mode,
2485           use {aop,op}_isLitLike throughout the file
2486         * src/pic/glue.c: fix initializers for pointers (work in progress)
2487         * src/pic/pcode.c (get_op): honor index on _const symbols
2488         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2489         * (dumppBlock): added pCode size estimation
2490         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2491           check for IS_SYMOP before OP_SYMBOL'ing
2492         * fixed indentation, compacted switch-statements
2493         * (allocReg): find free register and allocate it instead of
2494           allocating new registers all the time
2495         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2496           registers as its operands (necessary only for multibyte GETs)
2497
2498 2005-07-01 Raphael Neider <rneider AT web.de>
2499
2500         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2501           debugging .asm-output macros FENTRY + FEXIT
2502         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2503           way... I wonder...
2504         * (emitpComment): NEW, printf to pCode
2505         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2506           offset handling
2507         * (popGetAddr): NEW, variant of popGet to access an immediates
2508           high(er) bytes instead of the n'th byte of memory they reference,
2509           replaced popGet with popGetAddr where neccessary
2510         * (genDataPointerGet): reactivated and fixed implementation
2511         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2512           accesses
2513         * (genDataPointerSet): fixed multibyte assignments
2514         * (genpic14Code): fixed --i-code-in-asm handling
2515         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2516         * (genPlus): fixed index-out-of-bounds error
2517         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2518         * src/pic/ralloc.c: added debugging output macro FENTRY2
2519         * (spillThis): fixed indentation, enbraced for-body for clarity
2520         * (rematStr): commented out as now unused
2521         * (regTypeNum): commented out special spill case (overwrites
2522           arbitrary values)
2523         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2524
2525 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2526
2527         * doc/sdccman.lyx: documented sfr16/sfr32,
2528           added example for using storage class with function pointers
2529         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2530
2531 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2532
2533         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2534         * device/lib/_itoa.c,
2535         * device/lib/_ltoa.c: optimized codesize
2536         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2537           but don't know how to suppress the double warning.
2538         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2539         * support/Util/SDCCerr.c,
2540         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2541
2542 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2543
2544         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2545           fixed old K&R prototypes
2546         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2547         * device/lib/_gptrget.c,
2548         * device/lib/_gptrgetc.c,
2549         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2550           also new versions for small generic pointers and banked generic pointers
2551         * src/port.h: added const_name
2552         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2553         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2554         * src/SDCCcse.c (findPrevIc): check all associative operators
2555         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2556         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2557         * src/SDCCmem.c: updated comments,
2558           set far-space to 0 for pdata, results in optimized code
2559         * src/SDCCmem.h: added macro CONST_NAME
2560         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2561           moving the info into the highest bits, see also gptrget/gptrput
2562         * src/src.dsp: added sdcc.ico to project files
2563         * src/avr/gen.c (genCast): fixed bug 0x%d
2564         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2565         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2566           relation between ptr_type and DCL_TYPE,
2567           (genCast): fixed bug 0x%d
2568         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2569           (CODE)" for const_name
2570         * src/hc08/gen.c (genCast): fixed bug 0x%d
2571         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2572           (hc08_port): added "CONST (CODE)" for const_name
2573         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2574           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2575           between ptr_type and DCL_TYPE,
2576           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2577           operand* and took AOP() inside function so sfr-ness can be checked,
2578           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2579           new prototype,
2580           (genFunction, genEndFunction): optimized stack setup,
2581           (genMinus): optimized for literals with ending zeroes (in bytes),
2582           (genCast): fixed bug 0x%d
2583         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2584           (mcs51_port): added "CONST (CODE)" for const_name
2585         * src/mcs51/peeph.def: made rule 226 more generic
2586         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2587         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2588         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2589         * src/z80/main.c (z80_port): added NULL for const_name,
2590           (gbz80_port): added NULL for const_name
2591         * support/regression/tests/bug663539.c,
2592         * support/regression/tests/sfr16.c: new tests
2593
2594 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2595
2596         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2597
2598 2005-06-24 Raphael Neider <rneider AT web.de>
2599
2600         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2601           corrected typos...
2602         * device/include/pic16/signal.h: added USBIF
2603           and SIG_USB
2604
2605 2005-06-24 Raphael Neider <rneider AT web.de>
2606
2607         * device/lib/pic16/libdev/pic18f2455.c,
2608           device/include/pic16/pic18f2455.h: NEW
2609         * device/include/pic16/pic18fregs.h,
2610           device/lib/pic16/pics.all,
2611           src/pic16/device.c: added 18f2455
2612         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2613           device/include/pic16/{pic18f[68][567].h,usart.h}:
2614           replaced MULTIPLE_USARTS define with more relaible
2615           compatibility sfrs (for USART access)
2616
2617 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2618
2619         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2620           and the output asm file line is printed on two lines.
2621
2622 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2623
2624         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2625           BGT, BLE, BHI, and BLS instructions
2626         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2627           genCmpEq): removed
2628         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2629           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2630           fixes bug #1216342
2631         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2632
2633 2005-06-15 Raphael Neider <rneider AT web.de>
2634
2635         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2636         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2637         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2638           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2639           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2640
2641 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2642
2643         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2644           Marcel Telka in bug #1215704
2645
2646 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2647
2648         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2649           located in shared memory bank.
2650
2651 2005-05-31 Raphael Neider <rneider AT web.de>
2652
2653         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2654           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2655           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2656
2657 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2658
2659         * device/lib/_strncpy.c: fixed the fix
2660
2661 2005-05-26 Raphael Neider <rneider AT web.de>
2662
2663         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2664           initializers with \0, bug #1208187
2665         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2666           intializers with \0, bug #1208187
2667
2668 2005-05-26 Raphael Neider <rneider AT web.de>
2669
2670         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2671           initializers with \0, bug #1208187
2672         * src/pic16/main.c (_process_pragma): added sanity checks
2673           for stack position and size, emit warnings when appropriate
2674
2675 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2676
2677         * device/lib/_strncpy.c: fixed not filling with \0
2678
2679 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2680
2681         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2682           createFunction),
2683         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2684           compound_statement),
2685         * src/SDCCsymt.h,
2686         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2687
2688 2005-05-24 Raphael Neider <rneider AT web.de>
2689
2690         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2691
2692 2005-05-24 Raphael Neider <rneider AT web.de>
2693
2694         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2695           TRISE definitions, closes bug #1162453
2696
2697 2005-05-22 Raphael Neider <rneider AT web.de>
2698
2699         * src/pic16/main.c (_process_pragma): check for missing
2700           arguments to pragmas code and udata
2701         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2702           consistency fixes to match other headers (thanks to Jim Paris)
2703         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2704
2705 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2706
2707         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2708
2709 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2710
2711         * support/regression/tests/bug1198642.c: new test
2712         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2713         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2714         * support/scripts/resource.h,
2715         * support/scripts/resource.rc,
2716         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2717         * support/scripts/sdcc.ico: added 32x32 icon
2718
2719 2005-05-18 Raphael Neider <rneider AT web.de>
2720
2721         * device/lib/pic16/libdev/pic18f*.c,
2722         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2723           keywords to "__sfr" and "__at (X)"
2724         * device/include/pic16/pic18fregs.h: added pic18f4520
2725         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2726           #1203088 (MPLAB compatibility)
2727
2728 2005-05-17 Raphael Neider <rneider AT web.de>
2729
2730         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2731         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2732         * device/lib/pic16/pics.all: added new devices
2733         * src/pic16/device.c: added support for pic18f4520
2734
2735 2005-05-16 Raphael Neider <rneider AT web.de>
2736         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2737         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2738         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2739           convenience function for bit access
2740
2741 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2742
2743         * device/lib/printf_large.c: fixed bug 1193299
2744         * support/regression/tests/bug1057979.c: added test %3.3s
2745
2746 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2747
2748         * device/include/mcs51/8051.h,
2749         * device/include/mcs51/8052.h: made parseable with lint
2750         * device/include/mcs51/lint.h: added include file for (sp)lint
2751         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2752         * doc/cdbfileformat.lyx,
2753         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2754
2755 2005-05-14 Raphael Neider <rneider AT web.de>
2756
2757         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2758         * device/lib/pic16/libc/stdlib/itoa.c (new)
2759         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2760         * device/lib/pic16/libio/Makefile: exclude subdir according to
2761           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2762         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2763         * src/pic16/gen.c (genFunction): prevent annoying warning
2764         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2765           nameclashes on BeOS
2766         * support/cpp2/cppmain.c (cpp_output_string): new
2767         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2768           fixes bug 1116802
2769
2770 2005-05-13 Borut Razem <borut.razem AT siol.net>
2771
2772         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2773
2774 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2775
2776         * .version: changed to version 2.5.1; back to bleeding edge development
2777
2778 2005-05-11 Borut Razem <borut.razem AT siol.net>
2779
2780         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2781           generate PDF version 1.3 documents
2782
2783 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2784
2785         * .version: changed to version 2.5.0
2786
2787 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2788
2789         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2790
2791 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2792
2793         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2794         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2795         well as many smaller updates.
2796         * .version: changed to version 2.5.0-pre1
2797
2798 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2799
2800         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2801
2802 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2803
2804         * support/regression/tests/bug1185672.c: added
2805         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2806           bug 1185672
2807         * src/mcs51/gen.c (genCall): added comments, made it look safer
2808         * src/mcs51/gen.c (genEndFunction): simplified
2809
2810 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2811
2812         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2813
2814 2005-04-14 Borut Razem <borut.razem AT siol.net>
2815
2816         * fixed bug 1045046 - SIGSEGV with really simple code?:
2817           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2818           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2819
2820 2005-04-14 Borut Razem <borut.razem AT siol.net>
2821
2822         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2823           src/pic16/device.h: temporarily disabled experimental #inline pragma
2824           for 2.5.0 release
2825
2826 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2827
2828         * device/include/z80/stdio.h,
2829         * device/include/z80/string.h: removed these highly incomplete files so
2830           SDCC can use the default ones in device/include/
2831
2832 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2833
2834         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2835         gcc warning.
2836         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2837         fix sdcpp warnings.
2838
2839 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2840
2841         * device/include/malloc.h: removed redundant __reentrant prototypes
2842         * device/lib/_mullong.c: added working xstack variant in asm (C version
2843           doesn't pass regression tests)
2844         * device/lib/bpx.c: used __data and made bpx char for mcs51
2845         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2846           (createFunction): fixed bug with xstackPtr
2847         * src/SDCCcse.c: corrected comments
2848         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2849           (killDeadCode, eBBlockFromiCode): removed unused code
2850         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2851           corrected comments
2852         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2853           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2854           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2855           (genModOneByte): fixed warning in MSVC
2856         * src/mcs51/main.c (): added comments
2857         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2858
2859 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2860
2861         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2862
2863 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2864
2865         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2866
2867 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2868
2869         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2870         characters arrays of larger size than the declared one.
2871
2872 2005-04-10 Borut Razem <borut.razem AT siol.net>
2873
2874         * src/pic/gen.c (genInline),
2875           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2876           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2877           (findNextInstruction), (findPrevInstruction),
2878           (findInstructionUsingLabel),
2879           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2880         * src/pic/pcode.c (findLabel): added missing '\n'
2881         * src/src.dsp: added SDCCdwarf2.c to the project
2882
2883 2005-04-09 Borut Razem <borut.razem AT siol.net>
2884
2885         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2886
2887 2005-04-08 Raphael Neider <rneider AT web.de>
2888
2889         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2890           into the chain after a given one) and mergeDefmapSymbols (combine
2891           defmap entries for each symbol per pcode)
2892         * (createDefmap): have defmap entries merged in the end
2893         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2894           a symbol before replacing one access type's symbol, merge symbols in
2895           the end (replacement symbol might already have an entry)
2896         * (assignValnums): keep reference to written WREG intact
2897
2898 2005-04-08 Raphael Neider <rneider AT web.de>
2899
2900         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2901           Alpha)
2902
2903 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2904
2905         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2906         bytes
2907
2908 2005-04-07 Raphael Neider <rneider AT web.de>
2909
2910         * device/include/pic16/usart.h: added compatibility defines for
2911           devices with more than one USART
2912         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2913
2914 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2915
2916         * device/lib/Makefile.in: updated for port specific include
2917
2918 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2919
2920         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2921
2922 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2923
2924         * device/include/8051.h,
2925         * device/include/8052.h,
2926         * device/include/at89S8252.h,
2927         * device/include/at89c55.h,
2928         * device/include/at89x051.h,
2929         * device/include/at89x51.h,
2930         * device/include/at89x52.h,
2931         * device/include/mcs51reg.h,
2932         * device/include/reg51.h,
2933         * device/include/reg764.h,
2934         * device/include/regc515c.h,
2935         * device/include/sab80515.h: (re)moved these 12 files
2936         * device/include/mcs51/8051.h,
2937         * device/include/mcs51/8052.h,
2938         * device/include/mcs51/at89S8252.h,
2939         * device/include/mcs51/at89c55.h,
2940         * device/include/mcs51/at89x051.h,
2941         * device/include/mcs51/at89x51.h,
2942         * device/include/mcs51/at89x52.h,
2943         * device/include/mcs51/mcs51reg.h,
2944         * device/include/mcs51/reg51.h,
2945         * device/include/mcs51/reg764.h,
2946         * device/include/mcs51/regc515c.h,
2947         * device/include/mcs51/sab80515.h: and added them here
2948
2949 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2950
2951         * device/include/stdarg.h: changed SDCC specific keywords to double
2952           underlined form.
2953         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2954           mcs51 and ds390.
2955         * device/include/hc08/mc68hc908gp32.h,
2956         * device/include/hc08/mc68hc908jb8.h,
2957         * device/include/hc08/mc68hc908jkjl.h,
2958         * device/include/hc08/mc68hc908qy.h: fixed comments
2959         * device/include/mcs51/README: updated
2960         * device/include/mcs51/c8051f120.h: added PINRSF
2961         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2962         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2963           amidst code. Also inline is not supported.
2964
2965 2005-04-06 Raphael Neider <rneider AT web.de>
2966
2967         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2968         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2969           callers stack/frame pointers
2970
2971 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2972
2973         * device/include/pic16/usart.h: added, missing in previous commit,
2974         * device/include/pic16/adc.h: fixed typo,
2975         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2976         commit,
2977         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2978         <p18fxxx.inc>
2979         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2980         uninitialized because a bug appears with gplink
2981         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2982         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2983         complains for unrecognised option
2984
2985 2005-04-05 Raphael Neider <rneider AT web.de>
2986
2987         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2988           structs as well (using memcpy)
2989         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2990           on ISRs (GOTO has no label)
2991         * src/pic16/device.h: added OF_OPTIMIZE_DF
2992         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2993           new data flow analysis/optimization
2994         * src/pic16/pcode.c: added (prototypes for and implementation of)
2995           dataflow analysis functions, fixed pCodeInstructions' inCond and
2996           outCond values, made RCALL a branch instruction
2997         * (pic16_unlinkpCode): keep C line if possible
2998         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2999           C line moved if possible
3000         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3001         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3002           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3003         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3004           new flow)
3005         * (pic16_getJumptabpCode): NEW, needed in...
3006         * (LinkFlow): fixed handling of jumptables, calls and conditional
3007           branches
3008         * (pic16_InsertCommentAfter): NEW
3009         * (pic16_pCodeReplace): made verbose and flow preserving
3010         * (AnalyzeFlow): added call to data flow analysis
3011         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3012         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3013         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3014
3015 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3016
3017         * src/SDCCast.c (decorateType): fixed bug #1105626
3018
3019 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3020
3021         * device/include/asm/pic16/features.h,
3022         * pic18f*.h headers,
3023         * device/include/pic16/adc.h,
3024         * device/include/pic16/delay.h,
3025         * device/include/pic16/i2c.h,
3026         * device/include/pic16/malloc.h,
3027         * device/include/pic16/stdio.h,
3028         * device/include/pic16/stdlib.h,
3029         * device/include/pic16/string.h,
3030         * device/lib/pic16/libc/stdio/printf_tiny.c,
3031         * device/lib/pic16/libc/stdio/printf_small.c,
3032         * device/lib/pic16/libc/stdio/strmgpsim.c,
3033         * device/lib/pic16/libc/stdio/strmmssp.c,
3034         * device/lib/pic16/libc/stdio/strmusart.c,
3035         * device/lib/pic16/libc/stdio/vfprintf.c,
3036         * device/lib/pic16/libc/stdlib/ltoa.c,
3037         * device/lib/pic16/libc/stdlib/putchar.c,
3038         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3039         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3040         * device/lib/pic16/libc/stdlib/memchrram.c,
3041         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3042         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3043         * device/lib/pic16/libio/adc/adcbusy.c,
3044         * device/lib/pic16/libio/adc/adcread.c,
3045         * device/lib/pic16/libio/adc/adcsetch.c,
3046         * device/lib/pic16/libio/usart/ubaud.c,
3047         * device/lib/pic16/libio/usart/ubusy.c,
3048         * device/lib/pic16/libio/usart/udrdy.c,
3049         * device/lib/pic16/libio/usart/uopen.c,
3050         * device/lib/pic16/libio/usart/uputc.c,
3051         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3052         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3053         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3054         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3055         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3056         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3057         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3058         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3059         specific keywords to double underlined form,
3060         * device/lib/pic16/libc/Makefile.rules,
3061         * device/lib/pic16/libsdcc/Makefile.rules,
3062         * device/lib/pic16/libm/Makefile,
3063         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3064         to compile with C standard set in Makefile.common
3065         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3066         rand.c and crc.c in compilation process,
3067         * device/lib/pic16/libsdcc/int/divuint.c,
3068         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3069         `c' from signed to unsigned,
3070         * device/lib/pic16/startup/crt0.c,
3071         * device/lib/pic16/startup/crt0i.c,
3072         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3073         keywords to double underlined form, bug fixes in _do_cinit function
3074         which prevented the correct initialization of the .idata segment,
3075         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3076         core to enter a infinite loop
3077         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3078
3079 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3080
3081         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3082
3083 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3084
3085         * device/include/Makefile.in: add support for hc08 subdirectory
3086         * device/include/hc08/: new subdirectory
3087         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3088         Lucas Loizaga, thanks!
3089         * device/include/hc08/mc68hc908qy.h,
3090         * device/include/hc08/mc68hc908gp32.h,
3091         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3092         their own directory. Changed internal macro names to use the compiler
3093         reserved namespace. Changed SDCC specific keywords to double
3094         underlined form.
3095         * device/include/math.h,
3096         * device/include/malloc.h,
3097         * device/include/stdarg.h,
3098         * device/include/stdbool.h
3099         * device/include/string.h,
3100         * device/include/tinibios.h,
3101         * device/include/ds400rom.h,
3102         * device/include/8051.h,
3103         * device/include/8052.h,
3104         * device/include/80c51xa.h,
3105         * device/include/at89c55.h,
3106         * device/include/at89S8252.h,
3107         * device/include/at89x51.h,
3108         * device/include/at89x52.h,
3109         * device/include/ds80c390.h,
3110         * device/include/reg764.h,
3111         * device/include/regc515c.h,
3112         * device/include/sab80515.h,
3113         * device/include/mcs51/c8051f000.h,
3114         * device/include/mcs51/c8051f018.h,
3115         * device/include/mcs51/c8051f020.h,
3116         * device/include/mcs51/c8051f040.h,
3117         * device/include/mcs51/c8051f060.h,
3118         * device/include/mcs51/c8051f120.h,
3119         * device/include/mcs51/c8051f300.h,
3120         * device/include/mcs51/c8051f310.h,
3121         * device/include/mcs51/c8051f320.h,
3122         * device/include/mcs51/c8051f330.h,
3123         * device/include/mcs51/c8051f350.h,
3124         * device/include/z180.h: Changed SDCC specific keywords to double
3125         underlined form.
3126
3127 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3128
3129         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3130         18F4455,
3131         * (pic16_assignConfigWordValue): disable testing of configuration
3132         register value with config mask,
3133         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3134         function with port->fun_prefix,
3135         * (genFunction): when generating a naked interrupt function never
3136         create an absolute segment placed in interrupt vector address, place
3137         the actual interrupt function at IVA instead, when an interrupt
3138         function is generated with unspecified interrupt then do not create
3139         the absolute section,
3140         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3141         code for generating a call to generic pointer get/put function with
3142         a call to function pic16_callGenericPointer(),
3143         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3144         the call to the generic pointer get/put functions with prefixing the
3145         function name with port->fun_prefix,
3146         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3147         * src/pic16/main.c (_process_pragma): prefix function with
3148         port->fun_prefix,
3149         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3150         calling assembler, old 18Fxxxx macro is deprecated,
3151         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3152         PC_ASMDIR in while condition,
3153         * (findInstruction): add PC_ASMDIR in while condition,
3154         * (buildCallTree): prefix main with port->fun_prefix,
3155         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3156         identifier for variable with banked access in instructions BTFSS,
3157         BTFSC, BCF, BSF, BTG
3158         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3159         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3160         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3161         perform optimization when enviroment variable NO_REG_OPT is set,
3162         * (insideLRBlock): NEW, return 1 if register is inside an
3163         INF_LOCALREGS block,
3164         * (RemoveRegFromLRBlock): remove a register that is completely
3165         eliminated by register optimization, but it is still left in local
3166         register store/restore in/from stack block,
3167         * (Remove2pcodes): after removing register, check to see if it
3168         should be removed from local register store/restore in/from stack
3169         block,
3170         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3171         DUMMY_READ_VOLATILE,
3172
3173         * device/include/pic16/adc.h: minor prototype modifications and
3174         update,
3175         * device/include/pic16/malloc.h: added GPL notice various
3176         modifications,
3177         * device/include/pic16/stdint.h: NEW, standard header for ints
3178         * device/include/pic16/delay.h: NEW, header for delay functions,
3179         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3180         delay1mtcy,
3181         * device/include/pic16/signal.h: NEW, header providing helper macros
3182         for implementing signal handlers,
3183         * device/include/pic16/stdio.h: added prototypes for functions,
3184         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3185         prototypes for stdin and stdout, added macro PUTCHAR to
3186         automatically implement putchar function prototype,
3187         * device/include/pic16/usart.h: modified and updated USART library,
3188         * device/lib/pic16/libio/adc/,
3189         * device/lib/pic16/libio/i2c: some modifications to improve library
3190         performance,
3191         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3192         family of functions,
3193         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3194         family of functions and other sources,
3195         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3196         of the PIC18Fxx[28] devices,
3197         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3198         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3199         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3200         _do_cinit function, because the previous failed when local variables
3201         where not placed in the same memory bank,
3202         * device/lib/pic16/libsdcc/char/: various modifications to improve
3203         library performance,
3204         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3205         information on the new functions of the c library and more...
3206
3207 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3208
3209         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3210
3211 2005-03-26 Raphael Neider <rneider AT web.de>
3212
3213         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3214           if condition == CARRY)
3215         * (genCmp): adapted to new genSkipc semantics
3216         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3217           on rIfx (genCmp was broken)
3218
3219 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3220
3221         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3222         * src/z80/main.c (_keywords[]),
3223         * src/SDCCglobal.h (struct options),
3224         * src/SDCC.y,
3225         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3226         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3227         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3228         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3229         always available in leading double underscore form. The C99 support is
3230         mostly missing, but it's a start.
3231         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3232         reserved identifier "__data".
3233
3234 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3235
3236         * src/mcs51/peeph.def: fixed bug 1170013
3237
3238 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3239
3240         * device/include/mcs51reg.h: fixed bug 842007
3241
3242 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3243
3244         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3245         last time.
3246
3247 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3248
3249         * src/port.h (struct PORT),
3250         * src/avr/ralloc.c (avr_assignRegisters),
3251         * src/avr/main.c,
3252         * src/ds390/ralloc.c (ds390_assignRegisters),
3253         * src/ds390/main.c,
3254         * src/hc08/ralloc.c (hc08_assignRegisters),
3255         * src/hc08/main.c,
3256         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3257         * src/mcs51/main.c,
3258         * src/pic/ralloc.c (pic14_assignRegisters),
3259         * src/pic/main.c,
3260         * src/pic16/ralloc.c (pic16_assignRegisters),
3261         * src/pic16/main.c,
3262         * src/xa51/ralloc.c (xa51_assignRegisters),
3263         * src/xa51/main.c,
3264         * src/z80/ralloc.c (z80_assignRegisters),
3265         * src/z80/ralloc.h,
3266         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3267         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3268         * src/SDCCcse.h,
3269         * src/SDCCdflow.c (computeDataFlow),
3270         * src/SDCCdflow.h,
3271         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3272         * src/SDCCloop.h,
3273         * src/SDCCcflow.c (*),
3274         * src/SDCCcflow.h,
3275         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3276         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3277         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3278         immedDom() returning wrong block; probably fixes bug #1160833)
3279
3280 2005-03-20 Borut Razem <borut.razem AT siol.net>
3281
3282         * support/scripts/inc2h.pl: WIN32 port
3283
3284 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3285
3286         * device/lib/makefile.in: added abs.c and labs.c
3287
3288 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3289
3290         * device/include/stdint.h: added
3291         * device/lib/abs.c: added
3292         * device/lib/labs.c: added
3293         * device/include/stdlib.h: added abs() and labs() prototypes
3294         * device/lib/libsdcc.lib: added abs and labs
3295         * device/include/float.h,
3296         * device/lib/_fsmul.c,
3297         * device/lib/printf_fast.c,
3298         * device/lib/printf_tiny.c: updated comments
3299
3300 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3301
3302         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3303         bug #1164313
3304
3305 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3306
3307         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3308         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3309
3310 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3311
3312         * device/lib/printf_large.c: removed inline assembly for portability and
3313           readability. Use printf_fast if speed or size are more important.
3314         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3315         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3316
3317 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3318
3319         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3320         prevent compiler warning
3321
3322 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3323
3324         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3325         moved to level 0 and declared as static. Also they are explicit
3326         placed in access bank. This was necessery because some times they
3327         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3328         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3329         optimizations. Currently only compare to unsigned char is implemented,
3330         * src/pic16/gen.c: added fReturnIdx array,
3331         * (struct resolvedIfx) is moved to gen.h and made public,
3332         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3333         * (aopForSym): added an optimization to directly store in stack of
3334         the operand of a SEND iCode,
3335         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3336         but as registers instead (AOP_REG) using the fReturnIdx array,
3337         * (pic16_freeAsmop): remove the freed register from the
3338         _G.sregsAlloc field,
3339         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3340         a compare of 'WREG',
3341         * (pic16_popGetTempRegCond): changed function prototype, now
3342         function takes also a bitVector argument v which holds the current
3343         set of registers that are allocated for stack access by aopForSym,
3344         registers allocated in aopForSym for accessing stack symbols are not
3345         any more part of the functions usedRegs field,
3346         * (genCall): some times aopOp is called for a stack variable to be
3347         send, aopForSym might perform the push, if this is true make sure
3348         that genCall doesn't push the variable twice by testing _G.resDirect,
3349         * (genFunction): changed testing for unspecified interrupt number
3350         from 256 to INTNO_UNSPEC,
3351         * modified selection scheme of frame pointer generation. Previously
3352         if function did use local registers a frame pointer was generated,
3353         now a frame pointer is generated only if function has arguments
3354         (that need PLUSW2 register access), or has stack arguments, or the
3355         compiler is not instructed to omit the frame pointer,
3356         * (genEndFunction): before restoring local registers that were saved
3357         in the function preamble, also restore the registers that *might*
3358         have been allocated for stack access,
3359         * (genRet): removed some old comments,
3360         * (genCmp, the active (RN's) version): added a call to the
3361         pic16_genCmp_special function to perform the compare with a more
3362         robust and optimized way,
3363         * (genInline): a feature has been added in inline code generation,
3364         which allows a wildcard variable substitution when writing inline
3365         assembly. Code is incomplete and experimental therefore undocumented,
3366         * (genCast): changed order of aopOp for result and right to allow
3367         aopForSym to directly load the result if possible,
3368         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3369         perform an optimized compare on some selected special occasions,
3370         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3371         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3372         generate an IVT any more,
3373         * src/pic16/main.c (pic16_optionsTable): added command line option
3374         --optimize-cmp,
3375         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3376         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3377         macros,
3378         * src/pic16/NOTES: Raphael Neider added in list of active developers
3379         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3380         jumptable_end to prevent bug #,
3381         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3382         inCond and outCond fields,
3383         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3384         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3385         turn off register spilling,
3386         * (packRegsForOneUse): synced with other ports' versions although it
3387         is not used currently,
3388         * (pic16_packRegisters): added an optimization while reading
3389         structure bitfields, some registers may be saved (malloc code is
3390         decreased by 80 bytes)
3391
3392 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3393
3394         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3395         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3396         this can be optimized more?
3397
3398 2005-03-10 Raphael Neider <rneider AT web.de>
3399
3400         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3401           genNearPointerGet): (hopefully) fixed access to bitfields via
3402           pointers (p->bitN = x; and x = p->bitN; failed)
3403
3404 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3405
3406         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3407
3408 2005-03-09 Raphael Neider <rneider AT web.de>
3409
3410         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3411
3412 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3413
3414         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3415         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3416           (regTypeNum): set REG_BIT type if necessary
3417         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3418         * support/regression/tests/critical.c: check bug 1144613
3419
3420 2005-03-02 Raphael Neider <rneider AT web.de>
3421
3422         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3423
3424 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3425
3426         * src/avr/ralloc.c (serialRegAssign),
3427         * src/ds390/ralloc.c (serialRegAssign),
3428         * src/hc08/ralloc.c (serialRegAssign),
3429         * src/mcs51/ralloc.c (serialRegAssign),
3430         * src/pic/ralloc.c (serialRegAssign),
3431         * src/pic16/ralloc.c (serialRegAssign),
3432         * src/xa51/ralloc.c (serialRegAssign),
3433         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3434
3435 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3436
3437         * src/SDCCast.c (decorateType): fixed bug 1124787
3438
3439 2005-02-20 Hubert Sack <sack AT digiplan.de>
3440         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3441
3442         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3443         patch #1121755
3444
3445 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3446
3447         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3448         to keep the correct label reference count when adding/removing references
3449         to labels. A peephole file using this is appended to patch #1144962.
3450
3451 2005-02-14 Raphael Neider <rneider AT web.de>
3452
3453         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3454         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3455         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3456           retrievals of result operand's value on assignment
3457
3458 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3459
3460         * device/include/pic16/string.h: modified prototype for memccpy()
3461         to memccpy(void *, void *, char, size_t)
3462         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3463         check whether to omit frame pointer or not,
3464         * (genInline): convert all occurences of "\n" to LF in inline
3465         assembler blocks, this helps formatting the inline text,
3466         * (pic16_loadFSR0): modified prototype,
3467         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3468         removed some 8051 legacy code,
3469         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3470         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3471         before allocating temporary registers in functions,
3472
3473 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3474
3475         * support/regression/tests/bitvars.c: corrected the "fix"
3476
3477 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3478
3479         * support/regression/tests/bitvars.c,
3480         * support/regression/tests/bitwise.c,
3481         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3482
3483 2005-02-10 Raphael Neider <rneider AT web.de>
3484
3485         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3486           different size for Alpha
3487         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3488
3489 2005-02-09 Raphael Neider <rneider AT web.de>
3490
3491         * src/SDCC.lex(doPragma) : save and restore warning options as well
3492           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3493         * have #pragma less_pedantic set the errorlevel to WARNING
3494           (fixes #1117001)
3495         * (cloneOptimize) : fixed wrong malloc's size
3496         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3497           facilitate correct handling of #pragma (save|restore)
3498
3499 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3500
3501         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3502
3503 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3504
3505         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3506
3507 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3508
3509         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3510
3511 2005-02-02 Raphael Neider <rneider AT web.de>
3512
3513         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3514         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3515         * (pic16_storeForReturn): fixed to allow returning function pointers
3516         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3517         * device/include/pic16/{stddef.h,stdbool.h}: added
3518
3519 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3520
3521         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3522
3523 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3524
3525         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3526         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3527          appeared to be required
3528
3529 2005-01-31 Borut Razem <borut.razem AT siol.net>
3530
3531         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3532           include/mcs51 and include/z80 directories to the package
3533
3534 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3535
3536         * src/hc08/gen.c (genFunction): fixed bug #1112752
3537
3538 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3539
3540         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3541
3542 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3543
3544         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3545
3546 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3547
3548         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3549
3550 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3551
3552         * device/include/c8051fxxx.h: removed these 6 files
3553         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3554
3555 2005-01-26 Raphael Neider <rneider AT web.de>
3556
3557         * src/pic16/gen.c (genAssign): fixed assignment from longs
3558           in codespace (were cut to three bytes)
3559         * (genDummyRead): implemented (except for CODESPACE...),
3560           fixed bug #1108575
3561         * src/pic16/glue.c (emitStatistics): beautified
3562         * device/lib/pic16/libm/Makefile: added include path
3563
3564 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3565
3566         * src/z80/gen.c (aopPut): fixed bug #1103902
3567
3568 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3569
3570         * device/lib/expf.c: fixed bug #1095792
3571
3572 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3573
3574         * device/lib/pic16/libm: added Math library sources
3575
3576 2005-01-24 Raphael Neider <rneider AT web.de>
3577
3578         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3579           to enable upcast to pCodeOpReg2 (there is no type tag to
3580           differenciate the two and pic16_popGet2p cast into PCOR2)
3581         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3582           (sizeof(sectNames) changed to sizeof(sectName))
3583           Both patches fix segfaults under MinGW.
3584
3585 2005-01-23 Raphael Neider <rneider AT web.de>
3586
3587         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3588           Safe_[mc]?alloc()'ed variables
3589         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3590           of (byte sized) temporaries (assign them to WREG for now)
3591         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3592           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3593           this might fix SIGSEGVs on MinGW...
3594         * src/SDCCopt.c (killDeadCode): restored original behaviour
3595           (volatile operands might get thrown away though)
3596
3597 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3598
3599         * src/pic16/gen.c: fixed bug #1106975,
3600         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3601         pointer update, INTCON is saved, global interrupts are disabled and
3602         restored after updateing TOS.
3603         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3604         * added function attribute 'shadowregs' to take advantage of shadow
3605         registers,
3606         * added function attribute 'wparam' as an alternative to the wparam
3607         pragma,
3608         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3609         user declares a non-ISR function as 'shadowregs',
3610         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3611
3612 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3613
3614         * .version: bumped version number to 2.4.8
3615         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3616         pic16 port,
3617         * device/lib/pic16/libio/i2c/: I2C module support library,
3618         * device/include/pic16/i2c.h: I2C support library header,
3619         * device/lib/pic16/libc/stdio/: standard IO support sources,
3620         * (printf_small.c): printf_small() source, supports float print,
3621         * (printf_tiny.c): printf_tiny() source, does not support floats,
3622         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3623         enable global optimizations for entire library source, other
3624         Makefiles in the source tree are also modified to reflect this,
3625         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3626         function,
3627         * doc/sdccman.lyx: updated to reflect new changes,
3628         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3629         sym->onStack if-case,
3630         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3631         sbit, idata, _idata, xdata, _xdata,
3632         * added pragma library, to link an external library, (see doc),
3633         * removed command line options, --pomit-config-words, --pomit-ivt,
3634         --pleave-reset-vector,
3635         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3636         when calling assembler to reflect memory model used, also define
3637         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3638         reflect stack model used,
3639         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3640         on stack return NULL,
3641
3642 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3643
3644         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3645           of the operands is volatile. Fixes #1020220
3646
3647 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3648
3649         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3650         * (OptimizeRegUsage): make sure that there is really no other flow where
3651           the first pCode is used
3652
3653 2005-01-22 Raphael Neider <rneider AT web.de>
3654
3655         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3656           to fix #1106967 (pCode->seq are not set up correctly)
3657
3658 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3659
3660         * src/SDCCglue.c (glue): make sure code area is declared before the
3661         static initialization area.
3662
3663 2005-01-21 Raphael Neider <rneider AT web.de>
3664
3665         * device/lib/Makefile.in: fixed test for pic16 install dir
3666         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3667           optimizations
3668         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3669           added --optimize-goto compiler switch and pragma wparam documentation
3670         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3671         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3672           and PRODH closing bug #1071770 (peephole optimizer)
3673
3674 2005-01-19 Raphael Neider <rneider AT web.de>
3675
3676         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3677           cmdLine buffers (used when calling sdcpp...) are large enough
3678           (MAX_PATH=256 truncates arguments leading to system halts when
3679           used in MinGW...)
3680         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3681         * (genUminus): rewritten to for efficiency
3682         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3683           used uninitialized in some cases)
3684         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3685           copy the third byte from the int -- now assumes 0x80 (data memory)
3686         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3687           operands (genAddLit expects the iCode's operands to swapped as
3688           well), fixed leftover bytes (crashed for short left operands)
3689         * (pic16_genMinusDec): performance improvements, removed false
3690           PIC14 emitSKPNCs
3691         * (pic16_genMinus): fixed to cope with differently sized operands
3692         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3693           for --obanksel > 1
3694         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3695         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3696           new banksel optimization
3697         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3698           analysis for temporary registers (segfaults...)
3699         * src/pic16/peeph.def: added rule
3700
3701 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3702
3703         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3704         which converts a float number to its ASCII representation
3705         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3706         functions to convert the fractional and integer part of a float to ASCII,
3707         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3708         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3709         ram
3710         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3711         _STATMEM macros,
3712         * device/include/pic16/adc.h: added GPL info,
3713         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3714         a pCodeOp as tested operand,
3715         * (genNearPointerGet): optimized bit testing, does not use
3716         intermediate register for bit value, test directly instead with
3717         BTFSS, BTFSC, works only for single bits,
3718         * (genpic16Code): dump the name of the iCode in the asm,
3719         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3720         renamed to pic16_decodeOp,
3721         * (serialRegAssign): do not allocate a temporary register for iCode
3722         sequences that test a single bit for 1/0
3723
3724 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3725
3726         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3727         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3728         access stack and frame pointers. They are initially assigned to
3729         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3730         accessing SFRs. Updated all occurences of modification of stack or
3731         frame pointer in gen.c and pcode.c,
3732         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3733         assigning of a literal value to pointers,
3734         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3735         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3736         selected
3737
3738 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3739
3740         * doc/sdccman.lyx: update documentation about stack pragma, added
3741         some info for stack memory models
3742
3743 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3744
3745         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3746
3747 2005-01-08 Raphael Neider <rneider AT web.de>
3748
3749         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3750           udata sections to fix bug #1097823
3751
3752 2005-01-05 Raphael Neider <rneider AT web.de>
3753
3754         * src/pic16/gen.c (genGenericShift): added handling of differently
3755           sized left operand and result
3756
3757 2005-01-04 Raphael Neider <rneider AT web.de>
3758
3759         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3760         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3761           to hold the condition bit)
3762         * added new version of genCmp (old code available via #define)
3763         * added new version of genShiftLeft/genShiftRight in a generic
3764           way, now supports shifting by negative values
3765         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3766           shiftCount (expected by genGenericShift)
3767         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3768         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3769           dump
3770         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3771           is an invalid literal too...)
3772
3773 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3774
3775         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3776         from Raphael Neider,
3777         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3778         for 8-bit literals. This fixes some literal operands which are sign
3779         extended to 16-bits ints when instruction needs only 8-bits.
3780
3781 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3782
3783         * device/lib/logf.c: added mcs51 assembly version
3784         * device/lib/expf.c: added mcs51 assembly version
3785         * device/lib/_logexpf.c: new shared asm code for expf and logf
3786         * device/include/math.h: add defines for assembly math library
3787         * device/lib/Makefile.in: build new _logexpf.c
3788         * device/lib/libfloat.lib: use new _logexpf.c
3789
3790 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3791
3792         * src/pic/device.c
3793         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3794           device types which have less than 0x7f registers.
3795
3796 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3797
3798         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3799
3800 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3801
3802         * device/lib/printf_fast.c: only build on supported arch.
3803         * device/lib/printf_tiny.c: only build on supported arch.
3804         * device/lib/printf_fast_f.c: only build if asm float lib
3805         * device/lib/_fsget1arg.c: only build if asm float lib
3806         * device/lib/_fsget2args.c: only build if asm float lib
3807         * device/lib/_fsnormalize.c: only build if asm float lib
3808         * device/lib/_fsreturnval.c: only build if asm float lib
3809         * device/lib/_fsrshift.c: only build if asm float lib
3810         * device/lib/_fsswapargs.c: only build if asm float lib
3811         * device/include/stdio.h: don't provide print_fast,
3812           print_fast_f, print_tiny prototypes if --xstack used
3813
3814 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3815
3816         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3817         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3818           to the SOURCES
3819
3820 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3821
3822         * device/lib/printf_fast_f.c: same as printf_fast, but
3823           with floating point enabled
3824         * device/lib/printf_fast.c: minor tweaks
3825         * device/include/stdio.h: add printf_fast_f
3826
3827 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3828
3829         * src/SDCCmain.c: make --float-reent default for mcs51
3830         * device/lib/_fsadd.c: added mcs51 assembly version
3831         * device/lib/_fssub.c: added mcs51 assembly version
3832         * device/lib/_fsmul.c: added mcs51 assembly version
3833         * device/lib/_fsdiv.c: added mcs51 assembly version
3834         * device/lib/_fseq.c: added mcs51 assembly version
3835         * device/lib/_fsneq.c: added mcs51 assembly version
3836         * device/lib/_fsgt.c: added mcs51 assembly version
3837         * device/lib/_fslt.c: added mcs51 assembly version
3838         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3839         * device/lib/Makefile.in: add _fscmp to build
3840         * device/lib/libfloat.lib: add _fscmp to build
3841
3842 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3843
3844         * device/lib/_fs2slong.c: added mcs51 assembly version
3845         * device/lib/_fs2sint.c: added mcs51 assembly version
3846         * device/lib/_fs2schar.c: added mcs51 assembly version
3847         * device/lib/_fs2ulong.c: added mcs51 assembly version
3848         * device/lib/_fs2uint.c: added mcs51 assembly version
3849         * device/lib/_fs2uchar.c: added mcs51 assembly version
3850         * device/lib/_slong2fs.c: added mcs51 assembly version
3851         * device/lib/_sint2fs.c: added mcs51 assembly version
3852         * device/lib/_schar2fs.c: added mcs51 assembly version
3853         * device/lib/_ulong2fs.c: added mcs51 assembly version
3854         * device/lib/_uint2fs.c: added mcs51 assembly version
3855         * device/lib/_uchar2fs.c: added mcs51 assembly version
3856         * device/include/float.h: added #define to select asm vs c
3857
3858 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3859
3860         * device/lib/printf_fast.c: improvements to float output
3861         * device/include/float.h: add defines for assembly float library
3862         * device/lib/_fsget1arg.c: receive 1 float arg
3863         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3864         * device/lib/_fsnormalize.c: normalize a float
3865         * device/lib/_fsreturnval.c: return float, various helper routines
3866         * device/lib/_fsrshift.c: right shift a float's mantissa
3867         * device/lib/_fsswapargs.c: swap 2 floats
3868         * device/lib/Makefile.in: build these 6 new files for mcs51
3869         * device/lib/libfloat.lib: add these 6 files to the library
3870
3871 2004-12-26 Borut Razem <borut.razem AT siol.net>
3872
3873         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3874           built by gcc 3.4.2
3875
3876 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3877
3878         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3879           and fully reentrant and register bank neutral.
3880         * device/lib/printf_fast.c: added float (not enabled by default),
3881           added compact/slower integer (also not enabled by default),
3882           improved size/speed of fast integer code, other minor changes
3883         * device/include/stdio.h, device/lib/Makefile.in,
3884           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3885
3886 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3887
3888         * src/pic16/pcode.c: declaring variables other than at the start of a
3889           block is not supported in C by VC6.
3890
3891 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3892
3893         * applied a previous patch from Raphael Neider that wasn't included
3894         in the previous commits, which fixes infinite loops within jumptable
3895         improvements,
3896         * made some fixes that previous patches introduced
3897
3898 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3899
3900         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3901         that fixes an issue with AOP_PCODE asmop's offset,
3902         * (pic16_popCopyReg): update instance field too,
3903         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3904         function of pic port,
3905         * (genCmp, genAnd, genAssign),
3906         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3907
3908 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3909
3910         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3911         variables initial values to idata section,
3912         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3913         variables in some functions. This utilizes parmBytes field of iCode
3914         structure to hold the offset of the variable in stack. (might be
3915         able to use the stack field too?)
3916         * applied patch from Raphael Neider # ### , # ###
3917         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3918         variable initial values in idata section,
3919         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3920         for static variables with initial value
3921         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3922         applied fix in while loop from Raphael Neider.
3923
3924 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3925
3926         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3927         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3928         * src/ds390/ralloc.c (serialRegAssign): spill bits
3929         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3930         * support/Util/SDCCerr.c,
3931         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3932         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3933         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3934
3935 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3936
3937         * device/include/sdcc-lib.h: inserted LGPL, added includes
3938           asm/ds390/features.h and asm/mcs51/features.h
3939         * device/include/asm/default/features.h,
3940         * device/include/asm/gbz80/features.h,
3941         * device/include/asm/z80/features.h: added empty _AUTOMEM
3942           and _STATMEM
3943         * device/include/asm/ds390/features.h,
3944         * device/include/asm/mcs51/features.h: added files with defines for
3945           _AUTOMEM and _STATMEM indicating automatic and static storage class
3946         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3947         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3948         * src/SDCCicode.c (geniCodeCast),
3949         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3950         * src/SDCCloop.c (loopInduction): removed unused variable lr
3951         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3952           to convertToFcall to include char modulo (RFE 1065037), added check
3953           if left operand is unsigned and use abs of literal value
3954         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3955           as it doesn't work after conversion from peephole.def to peephole.rul
3956         * src/mcs51/gen.c (toBoolean): added check for size,
3957           (genModOneByte): optimized code for signed char modulo a literal
3958           power of 2 (thanks to Hubert Sack),
3959           (genRRC): removed unnecessary "clr c",
3960           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3961         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3962           jump optimization,
3963           swapped rules 256.c and 256.d,
3964           extended 256.d by using new multiple checks (thanks Erik),
3965           added rules 256.e and 256.f,
3966           updated rule 261.a and 261.b to new generated code
3967         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3968
3969 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3970
3971         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3972           induction related bugs, including first part of bug #1074377
3973
3974 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3975
3976         * applied patch from bug-report #1076292,
3977         * applied patches for genAnd and Goto-optimizations for Raphael
3978         Neider,
3979         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3980         dump a less iCode information,
3981         * src/pic16/device.h (pic16_options_t): added field debgen,
3982         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3983         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3984         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3985         puclic,
3986         * (various functions): added macros FENTRY and FENTRY2 to functions,
3987         to emit function prologue,
3988         * (various functions): fixed indentation,
3989         * (genNearPointerGet): fixed loading of FSR0,
3990         * (genPackBits): applied patch from Raphael Neider to fix updating
3991         of FSR0 and touching only the modified bits,
3992         * src/pic16/genarith.c (various functions): added macros FENTRY to
3993         emit function prologue in comments,
3994         * src/pic16/pcode.h: added functions debugf2, debugf3,
3995         * src/pic16/ralloc.c: partial fix for packForPush caused
3996         segmentation fault,
3997
3998 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3999
4000         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4001           <stsp AT users.sourceforge.net> with reversed byte order
4002         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4003
4004 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4005
4006         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4007           bug #1074377
4008         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4009         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4010
4011 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4012
4013         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4014
4015 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4016
4017         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4018           conditions,
4019           (setFromConditionArgs): friendly operand parser for peephole rules,
4020           (operandBaseName, operandsNotRelated): new peephole condition
4021           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4022           architecture specific register naming into account, handles n-way
4023           comparisons, and supports quoted literals
4024         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4025
4026 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4027
4028         * src/mcs51/peeph.def: fixed bug #1076940
4029
4030 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4031
4032         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4033
4034 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4035
4036         Adding support for replacing ljmps with sjmps in jumptables
4037         generated for switch statements. For now you need to set the
4038         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4039         Now 4 algorithms for mcs51 jumptable generation are used:
4040         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4041         addresses loaded pc-relative for up to 112 cases and stack-pushing
4042         target addresses loaded with offset from dptr for up to 256 cases.
4043
4044         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4045         * src/mcs51/main.c: adapted constants for switch table generation
4046         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4047
4048 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4049
4050         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4051         * support/regression/tests/bug1057979.c: added test for bug 1073386
4052
4053 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4054
4055         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4056         compilers
4057
4058 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4059
4060         * src/pic16/device.h,
4061         * src/pic16/genarith.c,
4062         * src/pic16/glue.c,
4063         * src/pic16/main.c,
4064         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4065
4066 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4067
4068         Large cummulative patch for pic16 port.
4069         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4070         to call when a stack overflow occurs,
4071         * (malloc.h): added CVS Id tag,
4072         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4073         variable,
4074         * added libc directory. The current version of LibC contains string
4075         functions, ctype functions and macros and some functions of the
4076         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4077         be extensively tested in the future. Standard disclaimer here.
4078         Library is not automatically build yet. But one can build it by
4079         invoking 'make' inside the libc directory.
4080         * added ADC library under libio. Preliminary version yet.
4081
4082         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4083         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4084         aopForRemat() now and not by pic16_aopOp(),
4085         * (pic16_popGetTempReg): removed warning messgae when allocating
4086         temporary registers, its a buggy feature and will be removed,
4087         * (pic16_popGet): set register instance field in AOP_CRY,
4088         * (pic16_outBitC): fixed for results in size greater than 1,
4089         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4090         * (pic16_storeForReturn): optimized return of 0,
4091         * (genCmp): experimental code for new genCmp which uses PIC18's
4092         special compare&skip instructions. Initial tests fail some times
4093         with variables grater than 1 byte in size, so new code is disabled,
4094         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4095         a single bit,
4096         * (genCast): began a fix to optimize the casting of a bit to another
4097         bit, now assigning a bitfield to another bitfield will fail, sorry,
4098         * src/pic16/main.c: disabled the use of lr-support feature,
4099         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4100         * added some function prototypes, added function _debugf prototype,
4101         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4102         bits with offset (case PO_GPR_BIT),
4103         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4104         command line,
4105         * (isBankInstruction): modified to return 0 for no banking instruction,
4106         and 1 for banking instruction,
4107         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4108         caused stop processing pCodes after a inline assembly block,
4109         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4110         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4111         registers when it shouldn't,
4112         * src/pic16/ralloc.c (allocReg): add preliminary support for
4113         supporting a limited set of temporary registers,
4114
4115 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4116
4117         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4118           genDataPointerSet): ensure assignments always copy in MSB to LSB
4119           order,
4120           (loadRegFromAop): recognize CLRH optimization,
4121           (genFunction): optimize RECEIVE iCodes in reentrant functions
4122
4123 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4124
4125         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4126           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4127           selected.
4128         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4129         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4130           contiguous with data
4131
4132 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4133
4134         * device/lib/_gptrget.c (_gptrget),
4135         * device/lib/_gptrgetc.c (_gptrgetc),
4136         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4137           instead of sjmp to ret
4138         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4139           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4140
4141 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4142
4143         * .version: bumped version to 2.4.7
4144         * device/lib/_gptrget.c (_gptrget): is now _naked
4145         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4146         * device/lib/_gptrput.c (_gptrput): is now _naked
4147         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4148           (createFunction): fixed xstack
4149         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4150         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4151           or bit either,
4152           (geniCodeCritical): store original interrupt state in an iTemp bit
4153           var unless stack-auto
4154         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4155         * src/SDCCmain.c (setIncludePath): added include/target to search path
4156         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4157         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4158           prototype,
4159           (processFuncArgs): put bit vars in bit area
4160         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4161           unsaveRBank): fixed xstack,
4162           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4163           (genFunction, genEndFunction): fixed xstack,
4164           (genAssign): optimization don't walk backwards through mem
4165         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4166         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4167         * support/regression/Makefile: also make library (for stack-auto) when
4168           making "all" and added "test-mcs51-xstack-auto"
4169         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4170         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4171         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4172         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4173         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4174           make-library by MAKE_LIBRARY
4175         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4176           regression tests for xstack
4177         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4178         * support/regression/tests/critical.c: test for critical on mcs51
4179
4180 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4181
4182         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4183           built version of sdcc instead of installed version
4184
4185 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4186
4187         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4188         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4189           vprintf.c now
4190         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4191         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4192           WARNING: remove device/lib/build/z80/printf.o by hand when
4193           updating from previous build!
4194         * device/lib/z80/printf.c: updated comment
4195         * support/regression/tests/bug1057979.c: test all ports now
4196         * support/regression/tests/bug1065458.c: file added
4197
4198 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4199
4200         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4201           *_start and *_end symbols for static functions
4202
4203 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4204
4205         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4206           and search crt0.o in all library paths,
4207           (setIncludePath): proper handling of --nostdinc,
4208           (setLibPath): proper handling of --nostdlib
4209         * support/regression/Makefile,
4210         * support/regression/ports/ds390/spec.mk,
4211         * support/regression/ports/gbz80/spec.mk,
4212         * support/regression/ports/hc08/spec.mk,
4213         * support/regression/ports/mcs51/spec.mk,
4214         * support/regression/ports/mcs51-large/spec.mk,
4215         * support/regression/ports/mcs51-stack-auto/spec.mk,
4216         * support/regression/ports/z80/spec.mk: use include and lib files from
4217           built version of sdcc instead of installed version
4218         * doc/sdccman.lyx: fixed typo in --nostdinc
4219
4220 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4221
4222         * src/pic/pcode.c,
4223         * src/pic/device.c,
4224         * src/pic/ralloc.c,
4225         * src/pic/gen.c : added support to generate code for struct bit fields.
4226
4227 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4228
4229         * as/xa51/xa_version.h,
4230         * device/include/errno.h,
4231         * device/include/regc515c.h,
4232         * device/lib/_itoa.c,
4233         * device/lib/_ltoa.c,
4234         * device/lib/ser_ir_cts_rts.c,
4235         * sim/ucsim/xa.src/glob.cc,
4236         * sim/ucsim/xa.src/inst_gen.cc,
4237         * sim/ucsim/xa.src/xa_bit.cc,
4238         * sim/ucsim/xa.src/xa_sfr.cc,
4239         * sim/ucsim/z80.src/inst_dd.cc,
4240         * sim/ucsim/z80.src/inst_fdcb.cc,
4241         * support/scripts/keil2sdcc.pl,
4242         * src/pic16/pic16.dsp,
4243         * src/pic16/pic16a.dsp: corrected cvs line endings
4244         * device/lib/printf_large.c: fixed bug 1057979
4245         * src/pic16/gen.c: fixed non-C standard code
4246         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4247         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4248         * support/regression/ports/mcs51/support.c: reload T1 asap
4249         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4250           pdata use and clear idata startup behaviour
4251         * support/regression/tests/bug1057979.c: added
4252
4253 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4254
4255         * device/examples/ds390/ow390/ad26.h,
4256         * device/examples/ds390/ow390/cnt1d.h,
4257         * device/examples/ds390/ow390/crcutil.c,
4258         * device/examples/ds390/ow390/ownet.h,
4259         * device/examples/ds390/ow390/owsesu.c,
4260         * device/examples/ds390/ow390/swt12.h,
4261         * device/examples/ds390/ow390/swtoper.c,
4262         * device/examples/ds390/ow390/temp10.h,
4263         * device/examples/ds390/ow390/thermodl.c,
4264         * device/examples/ds390/tinitalk/tinitalk.dsp,
4265         * device/examples/ds390/tinitalk/tinitalk.dsw,
4266         * device/examples/mcs51/clock/hw.h,
4267         * device/examples/mcs51/simple2/go.bat,
4268         * device/examples/serialcomm/windows/serial.h,
4269         * device/examples/xa51/dummy.c,
4270         * device/examples/xa51/hello.c,
4271         * device/include/80c51xa.h,
4272         * device/include/at89x051.h: corrected cvs line endings
4273
4274 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4275
4276         * src/pic16/main.c (options): added command line --gstack, to trace
4277         stack over/under flows,
4278         * added pragma 'wparam' to allow passing first byte of function
4279         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4280         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4281         call to __gstack_test function and sets up the symbol as extern,
4282         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4283         * popaop): added call to pic16_testStackOverflow,
4284         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4285         wparamList list,
4286         * (genCall, genPcall): now all parameters are passed via stack
4287         except in functions that are pass to wparam pragma in which WREG is
4288         used too,
4289         * (genPcall): REENTRANT flag is checked to see if variable prototype
4290         contains reentrant keyword, don't call a non-reentrant function, via
4291         a reentrant function pointer or vice versa, functions are never
4292         passed via WREG,
4293         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4294         D.Winkler,
4295         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4296         SIGSEGV when accessing a NULL register stucture,
4297         * (pic16_printGPointerType): modified to handle UPPER modifier for
4298         function initializers, changed prototype of function to simpler one,
4299         * (pic16_printIvalFuncPtr): check to see if function is already
4300         added in externs list,
4301         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4302         optimized a move from W to SFR with a move to the same register
4303         later after a CALL,
4304         * device/lib/pic16/debug: NEW directory, contains debug features
4305         which are enabled when linking with libdebug.lib, currently command
4306         line option --gstack enables stack pointer tracing for over/under
4307         flow, corresponding sources are in debug/gstack
4308
4309 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4310
4311         * doc/sdccman.lyx: updated SDCC version,
4312         * (PIC16 port): update list of command line options,
4313         * src/pic16/device.h (structure pic16_options_t): added field gstack
4314         to enable stack overflow tracing on push/pops,
4315         * src/pic16/device.c (statistics structure): added statistics
4316         structure,
4317         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4318         pic16_dump_int_registers): increase statistics counters for each
4319         * variable which is encountered
4320         * (pic16_dump_usection): emit each .udata variable to its own udata
4321         section,
4322         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4323         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4324         parameters via stack, otherwise use old scheme,
4325         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4326         assembler output file,
4327         * src/pic16/main.c: added command line options --gstack to enable
4328         push/pop tracing for stack overflow,
4329         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4330         instructions): added size of each instruction,
4331         * (pic16_countInstruction): estimate size of instructions in
4332         the_pFile list, inline assembly blocks are not counted,
4333         * (pic16_FixRegisterBanking): trace previous register usage, when
4334         banksel optimizations is greater than 0, don't emit a redudant
4335         banksel directive,
4336
4337 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4338
4339         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4340         * src/pic16/ralloc.c : applied same fix for pic16.
4341         * src/pic/gen.c : tidied it up a little.
4342
4343 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4344
4345         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4346         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4347
4348 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4349
4350         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4351
4352 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4353
4354         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4355         non-reentrant function __modsint in the interrupt function (thus
4356         corrupting math operations during serial I/O)
4357         * device/lib/ser_ir.c: as above, changed buffersize
4358         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4359         256.c,d for zeroing
4360         * doc/Makefile: added option -t for rsync
4361
4362 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4363
4364         * src/SDCCast.h (struct ast),
4365         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4366
4367 2004-10-20 Borut Razem <borut.razem AT siol.net>
4368
4369         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4370         package
4371
4372 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4373
4374         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4375         makefile targets,
4376         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4377         support functions to replace long sequences of MOVFF's from access
4378         bank registers to stack and vice versa,
4379         * src/pic16/device.h: added new field opt_flags, where optimization
4380         flags can be set to enable certain features,
4381         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4382         * pBlock, (genFunction, genEndFunction): surroung loop for
4383         saving/loading used registers in stack with PC_INFO pCodes,
4384         INF_LREGS. Code in between can then be optimized by pCode optimizer
4385         to support function calls,
4386         * (genDataPointerSet): fixed bug which loaded float fields in
4387         structures with corrupt data,
4388         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4389         in a standard way debug info on stderr. Feature used for developing
4390         and debugging only,
4391         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4392         obsolete chunks of code,
4393         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4394         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4395         * pic16/src/pcode.c (pic16_newpCodeInfo,
4396         * (pic16_newpCodeOpLocalRegs),
4397         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4398         feature,
4399         * (pic16_pCodeConstString): printing of the initial value of a
4400         symbol as a comment is inhibited since parsing was already done by
4401         copyStr and output is corrupt,
4402         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4403
4404 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4405
4406         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4407
4408 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4409
4410         * as/mcs51/lkarea.c: removed old K&R style,
4411           (lnksect): changed check on boundary error,
4412           (lnksect2): changed check on boundary error,
4413           (lnksect2): extend XSTK to end of page if size = 1
4414         * as/mcs51/lkmain.c: removed old K&R style,
4415           (Areas51): create l_IRAM symbol
4416         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4417         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4418           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4419         * device/lib/_mullong.c: added version to be compiled with xstack
4420         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4421         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4422         * device/lib/mcs51/crtxstack.asm: fixed comment
4423         * src/SDCCglue.c: maxInterrupts defaults to 0,
4424           (emitMaps): added pdata,
4425           (createInterruptVect): (re)moved default,
4426           (glue): added pdata,
4427           (glue): moved __start__xstack to XSTK with default size 1
4428         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4429           and options.float_rent when options.stackAuto is set,
4430           (linkEdit): only write XDATA_NAME if provided on command line
4431         * src/SDCCmem.h,
4432         * src/SDCCmem.c: added pdata
4433         * src/port.h: added pdata_name to PORT
4434         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4435           (saveRegisters, unsaveRegisters): removed usage of B,
4436           (genMinus): fixed accumulator clash,
4437           (genJumpTab): added comment, this needs another look
4438         * src/mcs51/gen.c: added check for "B in use" paranoia,
4439           added pushB() and popB()
4440         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4441           chance
4442         * src/avr/main.c,
4443         * src/ds390/main.c,
4444         * src/hc08/main.c,
4445         * src/mcs51/main.c,
4446         * src/pic/main.c,
4447         * src/pic16/main.c,
4448         * src/xa51/main.c,
4449         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4450           added PSEG (PAG,XDATA) or NULL to port specifier
4451         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4452         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4453           (_mcs51_genInitStartup): removed __start__xstack equ,
4454           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4455         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4456         * src/z80/gen.c (_rleAppend): fixed warnings
4457         * support/regression/tests/zeropad.c: added pdata test
4458         * .version: bumped to 2.4.6
4459
4460 2004-10-17 Borut Razem <borut.razem AT siol.net>
4461
4462         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4463         as a part of nightly build
4464
4465 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4466
4467         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4468         WREG holds the first byte function parameters,
4469         * (aopForSym): take special case for symbols which are in FARSPACE
4470         but in CODESPACE too,
4471         * (assignResultValue): modified to take into account _G.useWreg,
4472         * (genCall): don't use wreg for parameter passing when function is
4473         declared as reentrant, too, added optimization INCF to stack
4474         pointer when stack parameter count is 1,
4475         * (genFunction, genEndFunction): refurnished and fixed to not using
4476         wreg for passing parameters when function has varargs or is
4477         reentrant, fixed bug with symbol name compare for generating
4478         functions in absolute address,
4479         * (pic16_storeForReturn): refurnished,
4480         * (genCmp): began writing a new version of the function, not ready
4481         yet, therefore it is disabled,
4482         * (genAssign): do not read code memory when assigning a function to
4483         a pointer function,
4484         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4485         array of characters, not pointer,
4486         * (pic16initialComments): in debug mode emit an .ident directive for
4487         the assembler,
4488         * (_process_pragma): emit a new warning type (internal to pic16)
4489         when setting stack to default length, emit a similar warning when
4490         placing a function at absolute address and address is not word aligned
4491         * (_pic16_parseOptions): added 'return TRUE' statement,
4492         * (_pic16_linkEdit): if compiling a source, then add the source's
4493         file object, first in the list of objects to link,
4494
4495 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4496
4497         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4498         * src/pic/main.c : removed VC warning.
4499         * src/pic/gen.c : changed comment.
4500
4501 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4502
4503         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4504         reference to a deprecated symbol _GPTRREG was causing failure to
4505         link. Thanks G. M. Gallant for the info.
4506
4507 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4508
4509         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4510         comments for Bugs item #954788.
4511
4512 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4513
4514         * src/pic16/device.c (pic16_dump_gsection,
4515         * pic16_groupRegistersInSection): handle symbols declared to be in
4516         access bank differently,
4517         * src/pic16/gen.c (struct _G): added field resDirect,
4518         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4519         send values read from stack directly to result and don't allocate
4520         temporary values,
4521         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4522         same registers,
4523         * (pic16_sameRegsOfs): NEW,
4524         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4525         free because they were not allocated from temporary pool,
4526         * pic16_popRegFromString): workaround to fix a problem with
4527         allocating variables twice or never,
4528         * (genGenPointerGet): using PRODL instead of FSR0H,
4529         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4530         instead of FSR0H,
4531         * (genAssign): take advantage of the _G.resDirect flag,
4532         * (genCast): around line 11844, use mov2f instead of directly
4533         MOVFF'ing between operands to account for literal values,
4534         * src/pic16/genutils.c: some new debug functions for gpsim have been
4535         added,
4536         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4537         float with integer part only,
4538         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4539         place variables in access bank
4540         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4541         updated sources to reflect recent changes in gen.c
4542
4543 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4544
4545         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4546         sources that searched for headers in installation path, now the
4547         device/include/pic16 is used,
4548         * src/pic16/glue.c (pic16glue),
4549         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4550         .line directives if not in debug mode, this suppresses assembler's
4551         warnings for ignored directives
4552
4553 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4554
4555         * src/port.h: made reset_regparms prototype void parameter explicit.
4556         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4557         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4558         * doc/sdccman.lyx: documented warning disabling and how to use
4559           printf_large to make it print floats.
4560         * device/include/stdbool.h: NEW
4561         * device/lib/_atof.c,
4562         * device/lib/_divuint.c,
4563         * device/lib/_divulong.c,
4564         * device/lib/expf.c,
4565         * device/lib/printf_large.c,
4566         * device/lib/sincosf.c,
4567         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4568         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4569           a completely reentrant lib.
4570
4571 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4572
4573         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4574         * device/include/pic16/stdio.h: fixed bug with colon
4575
4576 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4577
4578         * device/include/pic16/stdio.h,
4579         * device/include/pic16/stdlib.h,
4580         * device/include/pic16/math.h: NEW
4581         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4582         declared as _naked to reduce overhead
4583         * device/lib/Makefile.in (target port-specific-objects-pic16):
4584         changed * to *.* so to ignore the CVS directory,
4585         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4586         stacked variables back in stack,
4587         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4588         corruption
4589
4590 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4591
4592         * .version: bumped version number to 2.4.5
4593         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4594         * support/Util/SDCCerr.c (messages structure): added entry for
4595         W_POSSBUG2
4596
4597         Large cumulative patch for pic16 port and libraries.
4598         * device/include/pic16/sdcc-lib.h,
4599         * device/include/pic16/stdarg.h,
4600         * device/include/asm/pic16/features.h,
4601         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4602         * device/include/pic16/float.h: changes reentrant keyword with
4603         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4604         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4605         updated target build-libraries to include objects from gptr,
4606         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4607         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4608         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4609         all function headings,
4610         * src/SDCCmain.c: added global parameter userIncDirsSet,
4611         * (parseCmdLine): when option -I is encountered add directory to
4612         userIncDirsSet too,
4613         * src/version.awk: added space between control and long,
4614         * src/pic16/NOTES: added some notes for the port,
4615         * src/pic16/gen.c: added prototype for mov2fp function,
4616         * (fReturnpic16[]): properly named return value registers,
4617         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4618         * (aopForSym): added code to handle symbols with onStack flag set,
4619         symbols onStack are allocated PTRSIZE bytes,
4620         * (aopFreeAsmop): handles special case where asmops are stack objects,
4621         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4622         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4623         added argument lock to trace flaws in allocating temporary registers
4624         when developing port,
4625         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4626         * (pic16_popRegFromString): reenabled allocating a direct register
4627         from string,
4628         * (assignResultValue): various beautifications,
4629         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4630         referenced function argument,
4631         * (genIpush): reenabled to allow stacked arguments, handles only
4632         ic->parmPush iCodes,
4633         * (genCall, genPcall): major changes to allow for variable argument
4634         functions, fixed a bug with falsely restoring stack pointer after
4635         returning from call,
4636         * (genFunction): pending code for critical function,
4637         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4638         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4639         * (genNearPointerGet): fixed bug with indirect reading, was always
4640         reading from INDF0
4641         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4642         pointers,
4643         * (genAddrOf): rewrote code to take address of a stacked function parameter
4644         * (genCast): fixed casting to generic pointer type,
4645         * src/pic16/gen.h: added AOP_STA,
4646         * (struct asmop): added field stk,
4647         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4648         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4649         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4650         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4651         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4652         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4653         generic pointers,
4654         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4655         and library paths,
4656         * (pic16_port structure): generic pointer size is set to 3,
4657         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4658         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4659         compiler warning,
4660         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4661         operand is an iTemp,
4662
4663 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4664
4665         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4666         * debugger/mcs51/simi.c: addapt new syntax of s51
4667
4668 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4669
4670         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4671         * src/pic16/pcode.c: commented out some calls to free() in order to
4672         fix bug #989576,
4673
4674 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4675
4676         * src/SDCCicode.h,
4677         * src/SDCCicode.c (isiCodeInFunctionCall),
4678         * src/avr/ralloc.c (selectSpil),
4679         * src/pic/ralloc.c (selectSpil),
4680         * src/pic16/ralloc.c (selectSpil),
4681         * src/ds390/ralloc.c (selectSpil),
4682         * src/hc08/ralloc.c (selectSpil),
4683         * src/xa51/ralloc.c (selectSpil),
4684         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4685         stack in the middle of a function call sequence (fixes bug #1020268)
4686         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4687         costs associated with the minimum switch case.
4688
4689 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4690
4691         * src/SDCC.lex: fixed bug #1030549
4692
4693 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4694
4695         * src/SDCCcse.h (struct cseDef),
4696         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4697         over a function call if the CSE is derived from a symbol whose
4698         address has been taken (fixes bug #1029883)
4699         * support/regression/tests/bug-1029883: a new regression test for
4700         this bug
4701
4702 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4703
4704         * src/hc08/gen.c (emitinline): fixed bug #1029778
4705         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4706         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4707         and starts toward RFE #905167)
4708
4709 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4710
4711         * src/pic16/gen.c (mov2f): New function to move an operand to
4712         another without considering if it is a literal or a register,
4713         * (pic16_sameRegs): don't check if they are both AOP_REG,
4714         * (AccRsh): removed andmask=0 lines,
4715         * (genLeftShift): duplicated to be improved in future versions,
4716         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4717         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4718         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4719         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4720         * (insertBankSwitch): fixed inserting banksel directives algorithm
4721         for instructions that follow a skip instruction, this fixes a report
4722         for broken subtraction code generation,
4723         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4724         iCode is a left op, just in case result and right share the same
4725         registers
4726
4727 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4728
4729         * src/hc08/main.c,
4730         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4731         preservation of HX
4732         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4733         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4734         on 2004-09-12; it was buggy
4735
4736 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4737
4738         * src/SDCCsymt.h: removed RESULT_CHECK
4739         * src/SDCCast.c,
4740         * src/SDCCglue.c,
4741         * src/SDCCval.c,
4742         * src/pic/glue.c,
4743         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4744
4745 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4746
4747         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4748         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4749         configuration values no more rejected by compiler, they are assigned
4750         to configuration registers with a warning message instead,
4751         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4752         the for-loop so last conf register is emitted too,
4753         * (_pic16_initPaths): link library libsdcc.lib by default,
4754         * (_hasNativeMulFor): modified test for multiplication according to
4755         Raphael Neider's remarks. Integer multiplication is also done with
4756         support functions,
4757         * device/include/pic16/pic18fregs.h: corrected type error in while
4758         testing and including 18f6720 header file
4759
4760 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4761
4762         * src/pic16/device.h (pic16_options): removed field use_crt,
4763         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4764         until an optimization to handle single bits is added,
4765         * (pic16_loadFSR0): moved before genUnpackBits,
4766         * (genAnd): some white lines removed,
4767         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4768         leave_reset flags in pic16_options when using crt modules,
4769
4770 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4771
4772         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4773           for bugs 898889 & 979599. Also used some safer print instructions.
4774
4775 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4776
4777         * src/pic16/device.h (pic16_options_t): added field use_crt,
4778         crt_name, no_crt,
4779         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4780         catch a probable future bug,
4781         * src/pic16/gen.c: aopIdx function commented out,
4782         * (genAssign): commented out old code which used aopIdx,
4783         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4784         code, added if conditionals to take into account the --use-crt
4785         command line options,
4786         * src/pic16/main.c (pic16_optionsTable): added new command line
4787         options, --use-crt= and --no-crt,
4788         * (_pic16_linkEdit): now the proper crt object is added in the
4789         linker command line except than when --no-crt is specified,
4790         * src/pic16/pcode.c,
4791         * src/pic16/pcode.h: added some structures and functions for a new
4792         optimization scheme to compansate for instruction overhead between
4793         same iCodes, this scheme is currently under development and is not
4794         working in any way,
4795         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4796         to && operator,
4797         * device/lib/pic16/startup/crt0i.c,
4798         * device/lib/pic16/startup/crt0iz.c: added global char variable
4799         __uflags to force the generation of an idata section
4800
4801 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4802
4803         * doc/Makefile,
4804         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4805         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4806
4807 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4808
4809         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4810         Frieder) and clarified the default code optimization mode
4811
4812 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4813
4814         * src/SDCC.lex (doPragma, process_pragma),
4815         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4816         "opt_code_size", and "opt_code_balanced"
4817         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4818         regrouped options by category, added support for category headers
4819         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4820         and "--opt-code-size"
4821         * doc/sdccman.lyx: documented these new options and pragmas
4822         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4823         preference into account
4824
4825 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4826
4827         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4828           geniCodePreDec): Fixed bug 904237 by generating a warning
4829         * src/SDCCerr.h,
4830         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4831
4832 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4833
4834         * src/pic/device.c : When no max ram set validate full memory range.
4835         * src/pic/pcode.c,
4836         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4837
4838 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4839
4840         * device/lib/_gptrget.c,
4841         * device/lib/_gptrput.c: updated comment
4842         * device/lib/calloc.c,
4843         * device/lib/free.c,
4844         * device/lib/malloc.c,
4845         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4846         * src/SDCCcse.c (cseBBlock),
4847         * src/SDCCicode.c (printOperand, geniCodeArray),
4848         * src/SDCCicode.h (struct operand): fixed bug 868103
4849         * support/regression/tests/bug-868103.c: added
4850         * src/SDCCast.c (searchLitOp),
4851         * src/SDCCcse.h (struct cseDef),
4852         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4853         * src/SDCCicode.h (struct operand),
4854         * src/SDCCsymt.h (struct sym_link),
4855         * src/avr/gen.c (hasInc),
4856         * src/ds390/gen.c (hasInc),
4857         * src/hc08/gen.c (genPlusIncr, hasInc),
4858         * src/mcs51/gen.c (hasInc),
4859         * src/pic16/glue.c (pic16_printIvalChar),
4860         * src/pic16/ralloc.c (regWithIdx),
4861         * src/xa51/gen.c (hasInc) : removed warnings
4862         * src/SDCCast.c (createBlock): added comment ???
4863         * src/hc08/ralloc.c: updated comments
4864
4865 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4866
4867         * doc/sdccman.lyx: updated section on switch statements, added
4868         section about semaphore locking
4869         * doc/Makefile: added option -info for latex2html
4870         * device/lib/_gptrget.c,
4871         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4872
4873 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4874
4875         * src/pic/device.h,
4876         * src/pic/device.c,
4877         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4878          maxram is less than 0x100.
4879
4880 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4881
4882         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4883
4884 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4885
4886         * src/port.h,
4887         * src/mcs51/main.c,
4888         * src/ds390/main.c,
4889         * src/z80/main.c,
4890         * src/hc08/main.c,
4891         * src/pic/main.c,
4892         * src/pic16/main.c,
4893         * src/avr/main.c,
4894         * src/xa51/main.c
4895         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4896         a jump table is the best form for a switch statement, including
4897         automatic insertion of missing cases to make the case range
4898         continuous. Developed in collaboration with Frieder Ferlemann.
4899
4900 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4901
4902         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4903         accumulator result if it needs sign extension
4904
4905 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4906
4907         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4908
4909 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4910
4911         * device/lib/gbz80/printf.c,
4912         * device/lib/z80/printf.c: removed define for NULL
4913
4914 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4915
4916         * as/xa51/xa_link.c,
4917         * device/examples/ds390/ow390/ad26.c,
4918         * device/examples/ds390/ow390/cnt1d.c,
4919         * device/examples/ds390/ow390/counter.c,
4920         * device/examples/ds390/ow390/ds2480.h,
4921         * device/examples/ds390/ow390/ds2480ut.c,
4922         * device/examples/ds390/ow390/findtype.c,
4923         * device/examples/ds390/ow390/gethumd.c,
4924         * device/examples/ds390/ow390/owllu.c,
4925         * device/examples/ds390/ow390/ownetu.c,
4926         * device/examples/ds390/ow390/swt12.c,
4927         * device/examples/ds390/ow390/swtloop.c,
4928         * device/examples/ds390/ow390/temp.c,
4929         * device/examples/ds390/ow390/temp10.c,
4930         * device/examples/ds390/ow390/thermo21.c,
4931         * device/examples/ds390/ow390/tinilnk.c,
4932         * device/examples/ds390/ow390/tstfind.c,
4933         * device/examples/serialcomm/windows/serial.cpp,
4934         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4935         * device/include/reg51.h: fixed line endings for cvs
4936
4937 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4938
4939         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4940         packRegsForAccUse, packRegisters): new accumulator register
4941         packing algorithm
4942         * support/regression/ports/hc08/support.c (_putchar): suppress
4943         warning of unused variable
4944         * src/SDCCicode.c: added SWAP entry to codeTable
4945
4946 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4947
4948         * device/lib/sprintf.c: forgot to add this file before previous commit
4949
4950 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4951
4952         * src/pic16/gen.c (genPackBits): added operand right in function
4953         parameters, load result directly if p_type is POINTER (that is
4954         called by genNearPointerSet)
4955         * (genUnPackBits): added operand left in function parameters,
4956         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4957         FSR0 if accessing bitfields,
4958
4959 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4960
4961         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4962           _print_format; updated printf, sprintf, vsprintf
4963         * device/include/asm/default/features.h: corrected comment/define
4964         * device/lib/Makefile.in: added sprintf.c
4965         * device/lib/libsdcc.lib: added sprintf module
4966         * device/lib/printf_large.c,
4967         * device/lib/vprintf.c,
4968         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4969           into these 3 files
4970         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4971         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4972         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4973           hc08 test
4974         * support/regression/tests/zeropad.c: define idata as data for hc08
4975
4976 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4977
4978         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4979         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4980         labels are referenced at least once (even if a reference is not found)
4981         * src/hc08/gen.c (emitcode): set isComment flag for comments
4982         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4983         loads), rules 6a..6b (optimize jumps to return)
4984
4985 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4986
4987         * device/lib/acosf.c (acosf),
4988         * device/lib/asinf.c (asinf),
4989         * device/lib/atanf.c (atanf),
4990         * device/lib/ceilf.c (ceilf),
4991         * device/lib/cosf.c (cosf),
4992         * device/lib/coshf.c (coshf),
4993         * device/lib/cotf.c (cotf),
4994         * device/lib/fabsf.c (fabsf),
4995         * device/lib/floorf.c (floorf),
4996         * device/lib/log10f.c (log10f),
4997         * device/lib/logf.c (logf),
4998         * device/lib/sinf.c (sinf),
4999         * device/lib/sinhf.c (sinhf),
5000         * device/lib/sqrtf.c (sqrtf),
5001         * device/lib/tanf.c (tanf),
5002         * device/lib/tanhf.c (tanhf),
5003         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5004         replaced all instances of "reentrant" in the library functions
5005         defined in math.h with this macro.
5006         * support/regression/tests/float_trans.c: reenabled test for hc08
5007
5008 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5009
5010         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5011         erroneously deleted
5012
5013 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5014
5015         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5016         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5017         multi-byte volatile operands are used
5018         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5019         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5020         initialization to area GSINIT0 so that it would always precede
5021         any static initializers in GSINIT
5022         * support/regression/tests/zeropad.c: fixed idata define for hc08
5023         * support/regression/tests/bug-927659.c,
5024         * support/regression/tests/float_trans.c: disabled tests for hc08
5025         pending missing library routines
5026         * .version: increased version number to 2.4.4 - hc08 port now passes
5027         regression tests
5028
5029
5030 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5031
5032         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5033         * Makefile.common.in,
5034         * as/Makefile,
5035         * as/hc08/Makefile.in,
5036         * as/mcs51/Makefile.in,
5037         * as/z80/Makefile.in,
5038         * debugger/mcs51/Makefile.in,
5039         * device/include/Makefile.in,
5040         * device/lib/Makefile.in,
5041         * doc/Makefile,
5042         * link/Makefile,
5043         * link/z80/Makefile.in,
5044         * packihx/Makefile.in,
5045         * sim/ucsim/main_in.mk,
5046         * sim/ucsim/avr.src/Makefile.in,
5047         * sim/ucsim/doc/Makefile.in,
5048         * sim/ucsim/gui.src/serio.src/Makefile.in,
5049         * sim/ucsim/hc08.src/Makefile.in,
5050         * sim/ucsim/s51.src/Makefile.in,
5051         * sim/ucsim/xa.src/Makefile.in,
5052         * sim/ucsim/z80.src/Makefile.in,
5053         * src/Makefile.in,
5054         * support/cpp2/Makefile.in,
5055         * support/librarian/Makefile,
5056         * support/makebin/Makefile: added DESTDIR to the install path proposed
5057         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5058         * doc/sdccman.lyx: added DESTDIR documentation
5059
5060 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5061
5062         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5063         instruction for interrupt handlers, use fast returns when returning
5064         from high priority interrupts
5065
5066 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5067
5068         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5069         code generation
5070         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5071         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5072         bugs, ported much of Bernhard's code from mcs51
5073         * src/mcs51/gen.c (genSend),
5074         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5075         than one when calling a reentrant function
5076         * device/lib/_mullong.c: defined an alternate struct layout for big
5077         endian ports (hc08)
5078
5079 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5080
5081         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5082         test
5083
5084 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5085
5086         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5087         are sane and complete before asking the port its prefered parameter
5088         passing method (fixes bug #1017633)
5089         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5090         and _ret3
5091
5092 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5093
5094         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5095         problem in bitfields >= 8 bits.
5096
5097 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5098
5099         * src/SDCCsymt.c: undid changes that were not meant to be committed
5100
5101 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5102
5103         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5104
5105 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5106
5107         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5108           copied and wrong bit got inverted
5109
5110 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5111
5112         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5113         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5114         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5115         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5116         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5117         assignments to bitfields at known addresses
5118         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5119         reads from bitfields at known addresses
5120         * src/hc08/ralloc.c (packRegisters),
5121         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5122         genhc08Code): optimize pointer get values used as conditionals
5123         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5124         and branch
5125
5126 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5127
5128         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5129         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5130         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5131         as conditionals
5132
5133 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5134
5135         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5136
5137 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5138
5139         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5140         related problems
5141
5142 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5143
5144         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5145
5146 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5147
5148         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5149         mcs51 port
5150
5151 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5152
5153         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5154
5155 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5156
5157         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5158         cases use more compact code.
5159
5160 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5161
5162         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5163
5164 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5165
5166         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5167
5168 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5169
5170         * src/SDCCsymt.h,
5171         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5172         parameter of changePointer() from symbol* to sym_link*
5173         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5174         * src/SDCCsymt.c (compareType): void* type is castable to other
5175         pointers, but not necesarily an exact match.
5176         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5177         is no longer blindly treated as an exact match.
5178         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5179
5180 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5181
5182         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5183
5184 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5185
5186         * src/pic/gen.c,
5187         * src/pic/pcode.c,
5188         * src/pic/ralloc.h,
5189         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5190
5191 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5192
5193         * src/pic/device.c,
5194         * src/pic/device.h,
5195         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5196
5197 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5198
5199         * src/mcs51/gen.c (emitcode): fixed bug #992819
5200
5201 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5202
5203         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5204           there's no need to make it worse
5205
5206 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/mcs51/ralloc.c (deassignLR),
5209         * src/ds390/ralloc.c (deassignLR),
5210         * src/hc08/ralloc.c (deassignLR),
5211         * src/z80/ralloc.c (deassignLR),
5212         * src/pic/ralloc.c (deassignLR),
5213         * src/pic16/ralloc.c (deassignLR),
5214         * src/avr/ralloc.c (deassignLR),
5215         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5216         rlivePoint): fixed another part of bug #971834
5217
5218 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5219
5220         * src/z80/main.c: enabled "critical" keyword
5221         * src/z80/mappings.i,
5222         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5223         functions (fixes bug #979646)
5224         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5225
5226 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5227
5228         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5229           such as c:\mydir.
5230
5231 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5232
5233         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5234           doesn't disable too much optimizations
5235
5236 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5237
5238         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5239
5240 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5241
5242         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5243
5244 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5245
5246         * src/pic/gen.c tidied up tabs
5247         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5248         * src/pic/main.c tidied up tabs
5249         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5250         * src/pic/pcoderegs.c tidied up tabs
5251         * src/pic/ralloc.c tidied up tabs
5252
5253 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5254
5255         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5256         to S_FIXED for pic16 port and when symbol is not in level 0,
5257         allocate for S_REGISTER storage class and pic16 port, too,
5258         * src/pic16/device.h: prototype for checkSym,
5259         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5260         * (pic16_assignConfigWordValue): test the value and the mask to
5261         validate that the value is suitable for the configuration word,
5262         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5263         collect extern declared symbols, don't emit symbol twice, check
5264         first if symbol is in publics set first,
5265         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5266         * added command line '--fstack' which enables an experimental
5267         feature for stack access, too buggy to be used yet...
5268         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5269         * (pic16_allocDirReg): when register has storage class S_REGISTER
5270         allocate in pic16_dynAccessRegs,
5271         * device/include/pic16/pic18f????.h: modified configuration word
5272         naming convention, words started as CONFIG0H but should be CONFIG1H
5273
5274 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5275
5276         * device/include/mcs51reg.h: fixed bug 970993
5277
5278 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5279
5280         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5281         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5282         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5283         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5284         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5285         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5286           error/warning numbers,
5287           added function setWarningDisabled()
5288         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5289         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5290           _memcmp.c _memmove.c calloc.c realloc.c free.c
5291         * support/regression/tests/malloc.c: added tests for new functionality
5292         * support/regression/tests/zeropad.c: added tests for truncated initializers
5293           and initialized char arrays starting with '\x0'
5294         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5295
5296 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5297
5298         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5299
5300 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5301
5302         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5303         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5304         peephole 177.e. Thanks to anonymous
5305
5306 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5307
5308         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5309         function isn't used in the source but referenced as a
5310         variable initializer then declare it as extern in .asm file
5311
5312 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5313
5314         * .version: increased version number to 2.4.3
5315
5316         Adding version extension according to ChangeLog CVS revision
5317         * src/Makefile.in (target all): added dependency 'version.h'
5318         * (rule version.h): added rule to create version.h from ChangeLog,
5319         * (rule dep): added dependency version.h,
5320         * src/version.awk: AWK script to create version.h
5321         * src/SDCCdwarf2.c (dwWriteModule),
5322         * src/SDCCglue.c (initialComments),
5323         * src/SDCCmain.c (printVersionInfo): modified to write after
5324         version string the version extension number,
5325         * src/SDCCutil.c: included "version.h"
5326         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5327         number,
5328         * src/SDCCutil.h: added prototype for getBuildNumber
5329
5330         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5331         includeDirsSet, too,
5332         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5333         const char [] is found in function prototype...
5334
5335         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5336         moving to WREG with source is already in WREG,
5337         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5338         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5339         * (aopForSym): stack'ed symbols are partially supported, added
5340         if-clause to support symbols in FARSPACE,
5341         * (sameRegs): added test for AOP_ACC to see if registers are same,
5342         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5343         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5344         * (pic16_popRegFromString): will not allocate a new register if it
5345         doesn't find one by name, bug may have introduced...
5346         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5347         * (genIpush): revived to use pic16 port's stack,
5348         * (genAddrOf): added incomplete case for stack'ed operand,
5349         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5350         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5351         can handle multibyte operands,
5352         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5353         * (pic16initialComments): added message for MPLAB compatibility
5354         mode enabled,
5355         * src/pic16/main.h: prototype for pic16_mplab_comp,
5356         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5357         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5358         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5359         because of increased complexity of procedure,
5360         * (_process_pragma): stack pragma changed to format 'stack pos len',
5361         emit symbol '_stack_end' to conform with gplink,
5362         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5363         to search for register,
5364         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5365         PO_GPR_REGISTER,
5366         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5367         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5368         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5369         case for PO_GPR_REGISTER,
5370         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5371         dies, the new era is ahead !...
5372         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5373         pic16_dynInternalRegs,
5374         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5375         * (pic16_allocDirReg): minor optimizations and bug fixes,
5376         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5377
5378         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5379         load stack and frame pointer with address of 'stack_end' symbol
5380
5381 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5382
5383         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5384         without source code but only variable initializers
5385
5386 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5387
5388         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5389         external are not declared as extern to reduce overhead while linking
5390
5391 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5392
5393         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5394
5395 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5396
5397         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5398           Yee Keat for the patch
5399         * src/SDCCast.c (decorateType): fixed bug #979599
5400         * src/ds390/gen.h: removed local fReturnSizeDS390
5401         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5402         * src/ds390/gen.c (genAnd, genOr, genXor),
5403         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5404
5405 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5406
5407         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5408         add relFilesSet to $3, manipulate $2 to handle linking of object
5409         files without source files in command line,
5410         * device/include/pic16 (all headers): added ID location macros,
5411         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5412         entries for ID location bytes,
5413         * (pic16_assignIdByteValue): NEW,
5414         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5415         added field dumpcalltree to pic16_options_t,
5416         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5417         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5418         emitting rFalseIfx label after check_carry label,
5419         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5420         pic16_emitDIRegs), NEW
5421         * (pic16glue): dump .calltree file when option --calltree found,
5422         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5423         * (_pic16_genAssemblerPreamble): emit ID locations after
5424         configuration registers,
5425         * (pic16_linkCmd): modifications of the link command,
5426         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5427         * (pic16_pCodeInitRegisters): don't init stack registers,
5428         * (pic16_findPrevInstruction): fixed bug,
5429         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5430         bug with immediate registers,
5431         * (buildCallTree): traces stack push and pop,
5432         * (pct2): dump also stack usage for each function,
5433         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5434         * (pic16_allocDirReg): various modifications,
5435         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5436         fixed to 1,
5437
5438 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5439
5440         * src/pic16/pcode.c: removed buggy double colon
5441
5442 2004-07-01 Borut Razem <borut.razem AT siol.net>
5443
5444         * support/scripts/sdcc.nsi: added include/pic16 to setup
5445
5446 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5447
5448         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5449         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5450         target 'clean',
5451         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5452         specific command line arguments. Also added sample lkr script
5453         for placing a variable at a specific memory bank.
5454         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5455         at a specific memory bank,
5456         * (pic16_dump_isection): fixed bug which caused string literals to
5457         be omitted when dumping idata section,
5458         * (pic16_groupRegistersInSection): added code to handle registers
5459         in specific memory banks,
5460         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5461         public, all references are renamed too,
5462         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5463         AOP_DPTR2,
5464         * (pic16_storeForReturn): added case to handle when dest is WREG,
5465         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5466         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5467         pic16_rel_udata, check to see if that register is marked as being
5468         a member of a specific memory bank,
5469         * (pic16_printIvalCharPtr): added code to add string literals either
5470         to code or the idata sections,
5471         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5472         also accept the 'udata' pragma,
5473         * src/pic16/main.h: new structure types sectName and sectSym
5474         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5475         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5476         * (pic16_findPrevInstruction): fixed, it returned nothing,
5477         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5478         instruction combinations,
5479         * (pic16_FixRegisterBanking): heavily reorganised,
5480         * (pic16_AnalyzeBanking): if generating banksel directives is
5481         disabled, then don't call FixRegisterBanking at all,
5482         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5483         completely removed,
5484         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5485
5486 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5487
5488         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5489         Phuah Yee Keat <yk.phuah AT nestac.com>
5490
5491 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5492
5493         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5494         correctly the IVT even if it is relocated to some other location
5495
5496 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5497
5498         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5499         * device/include/pic16/pic18f2220.h: NEW,
5500         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5501         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5502         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5503         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5504         nodefaultlibs, ivt_loc is the location of the interrupt vector
5505         table, and nodefaultlibs signs that default libraries should not be
5506         linked in link stage,
5507         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5508         according to --ivt-loc argument,
5509         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5510         when pragma stack is found,
5511
5512 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5513
5514         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5515         256 (range check), 257 (do while), 258.a-f (bit banging
5516         f.e. on 3-wire SPI bus)
5517
5518 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5519
5520         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5521         variables used exclusively within a loop
5522
5523 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5524
5525         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5526
5527 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5528
5529         * src/SDCClrange.c (computeClash): fixed bug #971834
5530
5531 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5532
5533         * src/mcs51/gen.c (genCmp): fixed bug #975903
5534         * src/hc08/gen.c (operandsEqu),
5535         * src/ds390/gen.c (operandsEqu),
5536         * src/z80/gen.c (operandsEqu),
5537         * src/pic/gen.c (operandsEqu),
5538         * src/pic16/gen.c (operandsEqu),
5539         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5540         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5541
5542 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5543
5544         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5545
5546 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5547
5548         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5549         default case in switch statement,
5550         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5551         to eliminate problem with initialisation of pointers, but problem
5552         still exists,
5553         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5554         * (emitStaticSegment): removed various lines emitting debug info,
5555         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5556         added processor registers for utilizing EEPROM,
5557         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5558         configurable and set 8
5559
5560 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5561
5562         * .version: increased version number to 2.4.2,
5563
5564         Cumulative patch for pic16 port
5565         * src/pic16/device.c: changed scheme to dump initial values for
5566         variables in idata segment, all print_idata* functions were removed,
5567         now the pic16_printIval* will be called,
5568         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5569         * _pic16_printPointerType, pic16_printPointerType,
5570         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5571         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5572         NEW, similar to the respective functions in SDCCglue.c,
5573         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5574         way, emitting hex bytes,
5575         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5576
5577 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5578
5579         * src/avr/ralloc.c (serialRegAssign),
5580         * src/xa51/ralloc.c (serialRegAssign),
5581         * src/pic/ralloc.c (serialRegAssign),
5582         * src/pic16/ralloc.c (serialRegAssign),
5583         * src/hc08/ralloc.c (serialRegAssign),
5584         * src/z80/ralloc.c (serialRegAssign),
5585         * src/ds390/ralloc.c (serialRegAssign),
5586         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5587
5588 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5589
5590         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5591         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5592
5593 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5594
5595         Cumulative patch for pic16 port:
5596         * src/pic16/device.h (typedef PIC16_device) modified fields for
5597         defining microcontrollers,
5598         * src/pic16/device.c: added new info for all devices in Pics16 array,
5599         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5600         to be optimised out by the pCode optimiser,
5601         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5602         specially, bug reported by G.M. Gallant,
5603         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5604         as force'd so that cannot be optimised out by pCode optimiser,
5605         * src/pic16/pcode.c,
5606         * src/pic16/pcodepeeph.c,
5607         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5608         they are disabled by default, but can be enabled explicit with
5609         command argument --denable-peeps, for testing,
5610         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5611         --pomit-ivt in COMPILE_FLAGS
5612
5613 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5614
5615         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5616           compilation on MSVC
5617
5618 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5619
5620         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5621
5622 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5623
5624         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5625         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5626
5627 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5628
5629         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5630         would only assign 0x300001 register.
5631
5632 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5633
5634         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5635         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5636
5637 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5638
5639         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5640         for ds80c400
5641         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5642         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5643         added peephole 254 (left shift), 255 (jump table)
5644
5645 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5646
5647         * device/lib/Makefile.in: removed comment line with model-pic16,
5648         * (target port-specific-objects-pic16): the libraries and objects
5649         are copied to the build directory form the device/lib/pic16/bin
5650         directory
5651
5652         Cumulative patch concerning pic16 port:
5653         * library directory has been re-organized,
5654         * added support for PIC18F1220,
5655         * added headers and library sources for chips 18f1220,18f6520,
5656         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5657
5658         * configuration registers setting has changed, now each supported
5659         device has a complete description of the registers it uses,
5660         * all initialisations are moved to idata sections, these section
5661         can be absolute or relocatable,
5662         * fixed initialisation of codespace variables,
5663         * fixed warning about PCLATU and gpsim,
5664         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5665         * (genAssign): use table reads when assigning from variables in codespace,
5666         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5667         char/int variables placed in codespace,
5668         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5669         registers set in .asm file, no need for --pomit-config-words anymore,
5670         * (pic16glue): some 8051 legacy segments are commented out
5671         (to be removed completely),
5672         * added support for alternative assembler and linker with --asm=
5673         and --link= command line arguments,
5674         * peepholes are disabled automatically in the port, no need to
5675         specify on command line,
5676         * port supports natively char/int/long multiplication, but converts
5677         all divisions to support functions,
5678         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5679         to the file set in variable $2,
5680         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5681         strings in ASCII format and not in hex,
5682         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5683         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5684         allocate proper register if iCodes aren't temporary,
5685
5686 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5687
5688         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5689
5690 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5691
5692         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5693         is commented out
5694
5695 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5696
5697         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5698         computed address is reused
5699         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5700         multi-byte bitfields
5701
5702 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5703
5704         * src/z80/gen.c: (genArrayInit): must check for pointers too
5705
5706 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5707
5708         * support/regression/tests/zeropad.c: never meant to commit the
5709           nestedstruct test: removed, added check for GCC version
5710
5711 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5712
5713         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5714         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5715         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5716           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5717           bugs 928906 and 954082 half-empty initializers
5718         * src/SDCCsymt.h,
5719         * src/SDCCsymt.c (getAllocSize): added for above fix
5720         * src/z80/gen.c (genArrayInit): fixed bug 741044
5721         * support/regression/tests/zeropad.c: added tests
5722
5723 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5724
5725         * src/pic16/device.c (pic16_dump_section): corrected bug which
5726         caused some symbols of the libraries to be misplaced
5727
5728 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5729
5730         * src/pic16/glue.c,
5731         * src/pic16/ralloc.h,
5732         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5733         to fix conflict with pic port
5734
5735 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5736
5737         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5738         externs configuration variables,
5739         * src/pic16/ralloc.h,
5740         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5741         prototype in header, commented out some debug messages
5742
5743 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5744
5745         * src/pic16/glue.c,
5746         * src/pic16/main.c,
5747         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5748         for gpasm COFF object generation. Thanks to D. Hawkins for
5749         his patch info
5750
5751 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5752
5753         * src/ds390/main.c,
5754         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5755         Brock for spotting this)
5756         * src/ds390/gen.c (genEndFunction),
5757         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5758         interrupt handler and critical. Disable push/pop optimizations when
5759         peephole optimizations disabled.
5760
5761 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5762
5763         Updated pic16 library sources and headers.
5764         * device/lib/pic16/pic18f*/ ,
5765         * device/include/pic16/*.h: modified to handle structured SFR
5766         definitions
5767
5768 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5769
5770         * src/port.h (PORT structure): added hook initPaths, now each
5771         port can declare its own default search paths,
5772         which can been seen with the --print-search-dirs option,
5773         see pic16 port for example,
5774         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5775         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5776         * (doPrintSearchDirs): NEW, replaces in a central manner the
5777         printing of search dirs which was split in set*Paths functions,
5778         * (main): added call to port->initPaths and doPrintSearchDirs,
5779         * src/avr/main.c,
5780         * src/ds390/main.c,
5781         * src/hc08/main.c,
5782         * src/izt/i186.c,
5783         * src/izt/tlcs900h.c,
5784         * src/mcs51/main.c,
5785         * src/pic/main.c,
5786         * src/pic16/main.c: modified port structures to reflect addition of
5787         initPaths hook,
5788
5789         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5790         * (pic16_dump_section): for registers in same address reserve memory once,
5791         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5792         to no_banksel,
5793         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5794         result is greater in size than right or left,
5795         * (pic16_genUMult8X8_8): there are some cases where the result can
5796         be 16 bits size, so handle these,
5797         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5798         * (pic16_outBitC): modified to emit pcodes,
5799         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5800         or not,
5801         * (genDivOneByte): implemented algorithm to divide 8-bits,
5802         * (genCmp): uncommented goto, but issues still exist,
5803         * (genAnd): fixed a bug with variables >8bits,
5804         * (genPackBits): optimization added that uses BCF/BSF to change a
5805         single bit,
5806         * (genAssign): fixed bug when assigning floating point literals,
5807         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5808         __sdcc_gsinit_startup label,
5809         * src/pic16/main.c (_pic16_init): removed search directory
5810         initialisations,
5811         * (_pic16_initPaths): NEW, used to initialise search directories,
5812         * (_hasNativeMulFor): support functions for all except char/int
5813         multiplication, and char division,
5814         * (PIC16_port struct): modified entry for native mul support,
5815         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5816         no_banksel option,
5817         * (buildCallTree): call to register_usage is ifdef'ed out,
5818
5819 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5820
5821         * device/include/string.h: applied Stas Sergeev's patch to make this
5822         header file compatible with the preprocessor -Wundef option
5823         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5824         failure (fixes bug #941458)
5825
5826 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5827
5828         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5829         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5830         that the variable, not the function, should be static
5831         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5832         to be consistent with non-literal case
5833
5834 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5835
5836         * src/SDCCast.c (isConformingBody): fixed bug #949967
5837         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5838         convilong): fixed bug #952086
5839
5840 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5841
5842         * src/SDCCmem.c (allocVariables): fixed bug #955321
5843
5844 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5845
5846         * src/hc08/main.c (_hc08_genAssemblerEnd),
5847         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5848         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5849         completely eliminated the use of a temporary file
5850         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5851         when more than one file linked
5852         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5853
5854 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5855
5856         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5857         which fixes bug #543481
5858         * support/regression/tests/bug-751703.c: fixed comments left from a
5859         cut and paste error
5860         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5861         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5862         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5863         scopes
5864         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5865         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5866         are now changed to underscores in moduleName
5867
5868 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5869
5870         * as/mcs51/lkmem.c: better fix for bug #954173
5871
5872 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5873         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5874
5875         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5876         * device/include/c8051f000.h,
5877         * device/include/c8051f120.h,
5878         * device/include/c8051f300.h,
5879         * device/include/c8051f310.h,
5880         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5881         PWM16) and detab'ed
5882
5883 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5884
5885         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5886         and mailing lists, doc'ed --no-peep-comments, removed reference
5887         to knoppix (newest version has no LyX/LaTeX), other minor changes
5888         * src/SDCCglue.c (glue): save 2 bytes stack space with
5889         option --main-return. The ljmp could probably be avoided too
5890
5891 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5892
5893         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5894
5895 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5896
5897         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5898         * src/SDCCopt.c (isLocalWithoutDef),
5899         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5900         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5901         (credit to Maarten Brock for patch #949363, on which this is based)
5902         * support/regression/tests/bug-751703.c: some test cases of extern used
5903         within inner scopes.
5904
5905 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5906
5907         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5908         SPEC_STRUCT
5909         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5910         struct definitions
5911         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5912         dwWriteLabel): fix to create valid debugger symbols even when
5913         the module name has non-alphanumeric symbols in it
5914         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5915         when a variable's allocation has been optimized away
5916
5917
5918 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5919
5920         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5921         * src/hc08/main.c,
5922         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5923         * src/mcs51/main.c,
5924         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5925         * src/ds390/main.c,
5926         * src/z80/gen.c (z80_emitDebuggerSymbol),
5927         * src/z80/main.c,
5928         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5929         * src/pic/main.c,
5930         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5931         * src/pic16/main.c,
5932         * src/avr/gen.c (avr_emitDebuggerSymbol),
5933         * src/avr/main.c,
5934         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5935         * src/xa51/main.c,
5936         * src/SDCCdebug.c (emitDebuggerSymbol),
5937         * src/SDCCdebug.h,
5938         * src/port.h: added a debugger struct to the port struct. Added a
5939         callback for defining debugger symbols
5940
5941         * src/SDCCast.c (createLabel),
5942         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5943         with isitmp = 1
5944         * src/SDCCicode.h,
5945         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5946         iCode back to the ast for the function
5947
5948         * src/hc08/ralloc.c (hc08_assignRegisters),
5949         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5950         unneeded fields from the regs struct.
5951         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5952         pushReg() & pullReg() functions instead of emitcode()
5953
5954         * src/hc08/gen.c (genLabel, genhc08Code),
5955         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5956
5957         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5958         debugger hooks
5959
5960         * src/hc08/gen.c (genEndFunction, genhc08Code),
5961         * src/hc08/gen.h,
5962         * src/mcs51/gen.c (genEndFunction, gen51Code),
5963         * src/mcs51/gen.h,
5964         * src/ds390/gen.c (genEndFunction, gen390Code),
5965         * src/ds390/gen.h,
5966         * src/z80/gen.c (genEndFunction, genZ80Code),
5967         * src/z80/gen.h,
5968         * src/z80/z80.h,
5969         * src/pic/gen.c (genEndFunction, genpic14Code),
5970         * src/pic/gen.h,
5971         * src/pic16/gen.c (genEndFunction, genpic16Code),
5972         * src/pic16/gen.h,
5973         * src/avr/gen.c (genEndFunction, genAVRCode),
5974         * src/avr/gen.h,
5975         * src/xa51/gen.c (genEndFunction, genXA51Code),
5976         * src/xa51/gen.h,
5977         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5978         specific code to cdbFile.c and out of the backend code generators
5979
5980         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5981         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5982         starting address is now 0
5983
5984         * as/hc08/asm.h,
5985         * as/hc08/m08pst.c,
5986         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5987         assembler directive for DWARF support
5988         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5989
5990         * src/src.dsp,
5991         * src/Makefile.in,
5992         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5993
5994 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5997         and inappropriate peephole optimization in jump tables
5998
5999 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6000
6001         * as/hc08/m08pst.c,
6002         * src/SDCCglue.c: sdccopt works for the hc08 port now
6003
6004 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6005
6006         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6007
6008 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6009
6010         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6011
6012 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6013
6014         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6015         rules
6016         * src/SDCCmain.c,
6017         * src/SDCCglobl.h,
6018         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6019         comments from the peephole optimizer replacement rules
6020         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6021         symbols
6022         * src/SDCCcse.c (updateSpillLocation),
6023         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6024         equivalents
6025         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6026         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6027         objects far pointers
6028
6029 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6030
6031         * src/SDCCsymt.h: a missing part of my last change
6032         * src/pic/ralloc.c (regTypeNum),
6033         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6034
6035 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6036
6037         * src/SDCCicode.h,
6038         * src/SDCCicode.c (aggrToPtrDclType),
6039         * src/SDCCptropt.h,
6040         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6041         ptrPseudoSymConvert),
6042         * src/pic/ralloc.c (regTypeNum),
6043         * src/pic16/ralloc.c (regTypeNum),
6044         * src/hc08/ralloc.c (regTypeNum),
6045         * src/ds390/ralloc.c (regTypeNum),
6046         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6047         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6048
6049 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6050
6051         * link/z80/lkmain.c (afile),
6052         * as/hc08/lkmain.c (afile),
6053         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6054         prevent a pointer problem when a filename has no directory and
6055         no extension specified.
6056
6057 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * link/z80/lkmain.c (afile): allow periods in directory names
6060         * link/z80/lkmain.c (afile),
6061         * as/mcs51/lkmain.c (afile),
6062         * as/hc08/lkmain.c (afile): allow linker script file to have an
6063         extension other than ".lnk"
6064         * link/z80/lklex.c (getfid),
6065         * link/z80/lkmain.c (parse),
6066         * as/mcs51/lklex.c (getfid),
6067         * as/mcs51/lkmain.c (parse),
6068         * as/hc08/lklex.c (getfid),
6069         * as/hc08/lkmain.c (parse): Support comments in the linker script
6070         file on lines by themselves and after filenames
6071
6072 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6073
6074         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6075
6076 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6077
6078         * src/z80/peeph-z80.def: removed some peephole rules that don't
6079         work with multibyte arithmetic (fixed bug #937126)
6080         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6081         to registers and not global variables
6082         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6083         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6084         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6085         checking for assignments not internally generated (fixed bug #931895)
6086         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6087         structure member (fixed bug #930072)
6088
6089 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6090
6091         * src/SDCCmain.c (linkEdit),
6092         * src/hc08/main.c (_hc08_parseOptions),
6093         * as/hc08/Makefile.in,
6094         * as/hc08/aslink.h,
6095         * as/hc08/asm.h,
6096         * as/hc08/m08pst.c,
6097         * as/hc08/lkrloc.c (relr, rele),
6098         * as/hc08/lkarea.c (lnkarea)
6099         * as/hc08/lkmain.c (afile, parse),
6100         * as/hc08/lkelf.c: support for ELF output
6101         * as/hc08/lks19.c (s19),
6102         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6103
6104 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6105
6106         * as/mcs51/lkihx.c: Fixed bug #899105.
6107
6108 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6109
6110         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6111         .dsp files from Unix to DOS.
6112
6113 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6114
6115         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6116         function pointers; we have been compliant for several months now.
6117         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6118         change that was accidently commented out
6119         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6120         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6121         bug #922319
6122
6123 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * src/hc08/gen.c: output of all of the internal debugging information
6126         is now controlled by the D() macro; it is disabled by default
6127
6128 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6129
6130         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6131         harder to keep the same registers during a CAST iCode
6132         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6133         long via int can be done in a single cast, if the signedness is
6134         correct.
6135         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6136         putchar() in tinibios.c in ds390's library
6137
6138 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6139
6140         * src/SDCCast.c (decorateType): fixed bug #898889,
6141         cast result of a literal complement too
6142         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6143         fixed check for bitfields
6144
6145 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6146
6147         * src/SDCCicode.c (geniCodeLogic): made it static,
6148         (geniCodeLogicAndOr): added in order to fix bug #905492,
6149         (ast2iCode): fixed bug #905492
6150         * support/regression/tests/bug-905492.c: added
6151         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6152         (processParms): fixed bug #927659: don't copy parms, this will clear
6153         decorated flag
6154         * support/regression/tests/bug-927659.c: added
6155
6156 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6157
6158         * src/SDCCast.c (addCast): don't cast float to char
6159         * device/lib/libsdcc.lib: added _memmove
6160
6161 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6162
6163         * device/lib/large/Makefile: fixed parallel execution by
6164         replacing `make` by `$(MAKE)`
6165
6166 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6167
6168         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6169         offsets (fixes bug #923936)
6170
6171 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6172
6173         * device/lib/small/Makefile: fixed parallel execution by
6174         replacing `make` by `$(MAKE)`
6175
6176 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6177
6178         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6179
6180 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6181
6182         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6183         * src/regression/Makefile: Regression test was not running.
6184
6185 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6186
6187         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6188         complement if possible
6189         * src/SDCCval.c (valComplement),
6190         * src/SDCCicode.c (operandOperation): fixed complement of literal
6191         * support/regression/tests/onebyte.c (testComplement): added
6192
6193 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6194
6195         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6196         return an optimized tree; actually replace actParm with the new tree
6197         * src/SDCCast.h: added some parantheses to remove side effects
6198         * support/regression/tests/bug-920866.c
6199
6200 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6201         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6202         Bit operands were not being handled properly in the pic14 port.
6203         (now src/regression/add.c passes again).
6204
6205 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6206
6207         * src/SDCC.y (labeled_statement): case and default no longer require
6208         a following statement (RFE #893037)
6209
6210 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6211
6212         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6213         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6214         disabled (fixes bug #916294)
6215         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6216         "mov a,acc"; patch provided by Lenny Story
6217         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6218
6219 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6220
6221         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6222         functions
6223         * src/ds390/gen.c (genFunction, genEndFunction),
6224         * src/ds390/ralloc.c (ds390_assignRegisters),
6225         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6226         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6227         pushed if there are parameters passed on the stack. Also, a cleaner
6228         way to decide if r0/r1 should be pushed/popped. (Together they fix
6229         bug #918693)
6230
6231 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6232
6233         * doc/sdccman.lyx,
6234         * device/lib/mcs51/crtpagesfr.asm,
6235         * device/lib/mcs51/crtxinit.asm,
6236         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6237         to avoid confusion with Si Lab's SFRPAGE register.
6238
6239 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6240
6241         * src/SDCCglue.c (emitMaps): allow public sfr variables
6242         * src/SDCCglue.c (initialComments): include compiler build date
6243         with compiler version and put the timestamp of the generated
6244         assembly file on a serperate line to be less confusing.
6245         * src/port.h: added genInitStartup hook
6246         * src/avr/main.c,
6247         * src/ds390/main.c,
6248         * src/hc08/main.c,
6249         * src/pic/main.c,
6250         * src/pic16/main.c,
6251         * src/xa51/main.c,
6252         * src/z80/main.c: genInitStartup initialize as NULL (default to
6253         historical behaviour)
6254         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6255         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6256         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6257         library instead of hard coding it into the compiler.
6258         * support/regression/ports/mcs51-stack-auto/spec.mk,
6259         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6260         * device/lib/mcs51/Makefile,
6261         * device/lib/small/Makefile,
6262         * device/lib/large/Makefile,
6263         * device/lib/mcs51/crtpagesfr.asm,
6264         * device/lib/mcs51/crtstart.asm,
6265         * device/lib/mcs51/crtxclear.asm,
6266         * device/lib/mcs51/crtxinit.asm,
6267         * device/lib/mcs51/crtclear.asm,
6268         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6269         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6270         and into user configurable files.
6271         * device/lib/clean.mk: clean mcs51 directory too
6272         * support/regression/tests/longlit.c: added static to T1 declaration
6273         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6274         accesses in the initialization code
6275
6276 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6277
6278         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6279         OSCTRIMVAL as noted in bug #916008
6280
6281 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6282
6283         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6284         in loops with multiple exits (reported as incorrect registers
6285         used by Martin Helmling in Sdcc-user list)
6286
6287 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6288
6289         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6290         made ds390 register extensions look less like error messages
6291
6292 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6293
6294         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6295         reported by Adam Wozniak in Sdcc-user list
6296
6297 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6298
6299         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6300         arithmetic optimizations, added debug output
6301
6302 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6303
6304         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6305         * sdcc.spec: updated and split sdcc into 3 rpms
6306         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6307         needed for literals of LEFT_OP and '+'
6308         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6309         introduced RESULT_TYPE_NOPROM
6310         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6311         left shift
6312         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6313         limited promotion to int only for '*'
6314         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6315
6316 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6317
6318         * src/pic16/gen.c (genSkip),
6319         (genc16bit2lit), (gencjneshort): commented out
6320         (is_LitOp): new helper function, checks operand type
6321         (genCmpEq): rewritten
6322
6323 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6324
6325         * support/regression/tests/bug-908454.c: added
6326
6327 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6328
6329         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6330         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6331         (geniCodeCast): cosmetic, don't preserve bit storage class
6332         (geniCodeLeftShift): added promotion
6333         (geniCodeLogic): fixed regression
6334         * src/SDCCsymt.c (computeTypeOr): accept bits too
6335         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6336
6337 2004-03-07  Borut Razem <borut.razem AT siol.net>
6338
6339         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6340
6341 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6342
6343         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6344         version of pic16_genPackRegisters which does not check if ic is a
6345         CAST operator,
6346         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6347         function cause string1.c regression test fails
6348
6349 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6350
6351         * sim/ucsim/configure.in,
6352         * sim/ucsim/configure,
6353         * sim/ucsim/doc/Makefile.in: use docdir
6354         * src/SDCC.y: fixed sbit atrributes
6355         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6356         * src/SDCCast.c (decorateType): |^& need special promotion handling
6357         * src/SDCCast.h,
6358         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6359         * src/SDCCsymt.h (computeType),
6360         * src/SDCCicode.c: computeType() needs op
6361         * src/SDCCsymt.c (checkTypeSanity),
6362         * doc/sddman.lyx: "plain" bitfields are unsigned
6363         * src/SDCCsymt.c (computeTypeOr): added
6364         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6365         |^& ops
6366         * src/SDCCval.c (val*): computeType() needs op
6367         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6368         * support/regression/tests/onebyte.c: added tests for |^&
6369
6370 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6371
6372         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6373         for writing icode into asm output.
6374
6375 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6376
6377         * src/pic16/device.c: added some debug lines enabled
6378         with macro DEBUG_CHECK,
6379         * src/pic16/genarith.c: more debug in genPlus,
6380         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6381         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6382         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6383         * (aopForSym): onStack symbols are re-placed in data memspace,
6384         and onStack flag is cleared,
6385         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6386         copy temporary pcodeop,
6387         * (genPcall): added warning for not updating PCLATU,
6388         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6389         always true for pic16 port,
6390         * (genMultOneWord): NEW, supports integer multiplication,
6391         * (genMult): modified to call genMultOneWord,
6392         * (ifxForOp): added warning when return NULL,
6393         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6394         flag is set before call to operandFromSymbol for implicit
6395         added structures,
6396         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6397         options.intlong_rent are set by default,
6398         * (_hasNativeMulFor): modified to allow port generation of integer
6399         multiplication,
6400         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6401         set regtype to REG_SFR for all registers, restricting seting the
6402         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6403
6404 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6405
6406         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6407         more than 500 times in the regression tests
6408
6409 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6410
6411         * support/Util/SDCCerr.h,
6412         * support/Util/SDCCerr.c,
6413         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6414         enumerator_list),
6415         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6416         for symbol conflicts.
6417         * support/valdiags/tests/enum.c,
6418         * support/valdiags/tests/tentdecl.c,
6419         * support/valdiags/tests/struct.c: expect possible error messages
6420         referring to original symbol definitions.
6421         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6422         * src/SDCCsymt.h,
6423         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6424
6425 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6426
6427         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6428
6429 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6430
6431         * src/pic16/ralloc.c (newReg): fixed bug #908929
6432
6433 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6434
6435         * src/ds390/gen.c: added missing #include "main.h"
6436
6437 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6438
6439         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6440         checking if symbol is already in set,
6441         * src/pic16/device.h: prototype for checkAddSym,
6442         * src/pic16/gen.c: (_G): added entry interruptvector,
6443         * (assignResultValue): removed some commented out lines,
6444         * (genFunction): check for ISR via sym->type, absolute section for
6445         interrupt code is created via a new pBlock, the goto instruction is
6446         placed now correctly at the interrupt vector position, changed all
6447         references from ivec to _G.interruptvector,
6448         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6449         is the interrupt is a high priority one, same for return from ISR,
6450         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6451         externs to calls of checkAddSym,
6452         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6453         pic16_pcode_verbose flag is set,
6454         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6455         * src/pic16/pcoderegs.c: message about how many registers are saved
6456         will only be emitted if pic16_pcode_verbose flag is set,
6457
6458 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6459
6460         * src/ds390/ralloc.h,
6461         * src/ds390/ralloc.c (ds390_regWithIdx),
6462         * src/ds390/gen.c (emitcode),
6463         * src/ds390/main.h,
6464         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6465         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6466         ds390operandCompare, getRegsRead, getRegsWritten,
6467         initializeAsmLineNode): customized instruction size calculation for
6468         ds390, started basis for some register optimizations
6469         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6470         corresponding assembly output
6471         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6472         missing push/pop of r0/r1. Optimized push/pops
6473
6474 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6475
6476         * src/mcs51/main.c (instructionSize): fixed ACALL size
6477         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6478
6479 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6480
6481         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6482         the sorting of rlist with NULL elements
6483         * (print_idataType, print_idata): NEW to create idata sections
6484         * src/pic16/device.h: idataSymSet new variable
6485         * src/pic16/gen.c (genFunction): fixed some bugs in string
6486         comparing, improved the absolute section creation for ISRs,
6487         added FSR0L/FSR0H in registers that are saved in an ISR,
6488         * (genInline): fixed the processing of inline snippets,
6489         now they undergo no process by the peephole optimizer
6490         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6491         are placed in idataSymSet,
6492         * (pic16emitStaticSeg): extern symbols are added in externs,
6493         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6494         switching when aboslute variables are placed in access bank memory
6495         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6496         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6497         commented out with #if,
6498         * (pic16_packRegisters): reintroduce the check for CAST because some
6499         symbols are not correctly handled,
6500         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6501         pCodeInstruction instead of pCode,
6502         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6503         pCodeAsmDir definition,
6504         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6505         directive, then the argument directive is emitted without the leading
6506         tab, hack for inline labels which must be in the first column,
6507         * (compareLabel,pic16_findNextInstruction),
6508         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6509         * (insertBankSwitch): modified for the new pCodeAsmDir,
6510
6511 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6512         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6513
6514         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6515         instance,
6516         * (pushSide): commented out with #if,
6517         * (assignResultValue): fixed some typos in saving
6518         registers,
6519         * (genPcall): FIXED and sync'ed with genCall,
6520         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6521         * (genNearPointerGet): fixed to handle some more cases,
6522         implementation scheme via table reads,
6523         * (genConstPointerGet): modified to access code memory correct,
6524         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6525         and improved to handle some cases
6526         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6527         instead of "RETLW" for init data
6528         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6529         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6530         variables are placed in access bank memory (<0x80 and >=0xf80),
6531         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6532         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6533         TBLWT_POSTDEC,TBLWT_PREINC
6534         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6535         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6536         directives
6537         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6538         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6539         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6540         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6541
6542 2004-02-29  Borut Razem <borut.razem AT siol.net>
6543
6544         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6545         support/Util/findme.h, support/Util/system.h: enhance binary relative
6546         search for lib and include by using findProgramPath()
6547
6548 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6549
6550         * src/SDCCpeeph.h,
6551         * src/SDCCpeeph.c (pcDistance),
6552         * src/port.h,
6553         * src/mcs51/ralloc.h,
6554         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6555         * src/mcs51/main.h,
6556         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6557         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6558         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6559         size calculation port specific, started basis for some register
6560         optimizations
6561         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6562         missing push/pop of r0/r1. Optimized push/pops
6563         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6564         * device/lib/_modsint.c (_modsint),
6565         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6566         and stack version so regression tests pass
6567
6568 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6569
6570         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6571         * src/SDCCast.c (decorateType): catch another small optimization
6572         with '?' operator
6573         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6574         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6575         modified to finally use computeType() all over SDCC,
6576         see Feature Request #877103
6577         * src/SDCCval.h: cosmetic
6578         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6579         valCompare(); regression tested in muldiv.c
6580         * support/regression/tests/muldiv.c (testMod): mod sign follows
6581         dividend only
6582
6583 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6584
6585         * src/SDCCast.c (decorateType): fixed bug #902362
6586         * doc/INSTALL.txt: fixed install instructions for win32
6587
6588 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6589
6590         * device/include/Makefile.in (install): fixed by replacing spaces
6591         by tabs
6592         * doc/README.txt,
6593         * doc/INSTALL.txt: updated for release
6594         * doc/sdccman.lyx: added warning for --xstack being buggy
6595
6596 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6597
6598         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6599         to eliminate build warnings.
6600         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6601
6602 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6603            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6604
6605         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6606         removed -penable-stack, added comment for stack pragma, added
6607         warning for not initializing the stack/frame registers, removed
6608         comment at interrupts section
6609
6610         Stack is made permanent, there is no ability to disable stack usage.
6611         * src/pic16/device.h,
6612         * src/pic16/device.c: removed all references to USE_STACK macro,
6613         * src/pic16/device.c (pic16_dump_section): when no elements in
6614         rlist, free rlist before return,
6615         * (pic16_dump_int_registers): NEW, internal registers are a new set
6616         of general purpose registers reused by each function,
6617         * (checkAddReg): returns 1 if registers is added to set,
6618         * (pic16_groupRegistersInSection): when a registers is of type
6619         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6620         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6621         SRCASECMP macro is moved here from device.c
6622         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6623         PO_PCLATU, PO_PRODL, PO_PRODH,
6624         * (pic16_pCodeOpType, genMinus,
6625         changed compares to "a" register, with AOP_ACC,
6626         * (pic16_genPlus): fixed some bugs and indented properly,
6627         * (pic16_addSign): changed size to size+offset in the MOVWF
6628         instruction,
6629         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6630         multiply 8-bit operand by literal, result is 8-bit,
6631         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6632         multiply 2 8-bit operand, result is 8-bit,
6633         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6634         genUMult8X*_16,
6635         * src/pic16/gen.c: changed accUse to contain WREG only,
6636         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6637         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6638         true, do not use immediate addressing any more unless sym is a
6639         pointer in codespace,
6640         * (aopForRemat): do not use immediate addressing when symbol not in
6641         codespace and when symbol's address is requested,
6642         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6643         accUse size (= 1),
6644         * (aopGet): added case for AOP_ACC and don't return "accumulator
6645         bug" but WREG instead,
6646         * (popGetTempReg): pushes contents of temporary register in stack,
6647         * (popReleaseTempReg): pops contents of temporary register from
6648         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6649         * (pic16_popGet): separated case AOP_ACC to return register WREG
6650         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6651         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6652         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6653         the use of immediate pointers to certain cases only.
6654
6655         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6656         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6657         * (assignResultValue, genCall, genRet): modified to use the new
6658         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6659         genPcall is still broken,
6660         * (genFunction): added code to create 'A' type pBlocks when
6661         interrupt functions are generated, code not extensively tested yet,
6662         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6663         * (genEndFunction): modified so ISRs pop stored registers from stack,
6664         * (genMultOneByte): cleanup,
6665         * (AccRsh): added flag andmask, to and result with appropriate mask,
6666         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6667         * (genDataPointerGet): fixed and reenabled its use,
6668         * (genNearDataPointerGet): bugs fixed,
6669         * (genDataPointerSet): bugs fixed,
6670         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6671         pic16_DumpSymbol, pic16_DumpOp,
6672         * src/pic16/genutils.h: function prototypes for the above functions,
6673         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6674         pointers,
6675         * (pic16emitRegularMap): many many many improvements, but needs a
6676         major cleanup,
6677         * src/pic16/main.c: enable_stack in pic16_options is removed,
6678         * (_pic16_parseOptions): removed command line options -penable-stack,
6679         * (_process_pragma): emit stack symbol only when stack pragma is
6680         processed,
6681         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6682         redirected to FSR0L/FSR0H pair,
6683         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6684         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6685         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6686         for immediates,
6687         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6688         * (dumpPicOptype): NEW,
6689         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6690         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6691         with movff instruction,
6692         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6693         added pic16_int_regs, some packRegsFor* functions are commented out,
6694         because produce errors,
6695         * src/pic16/NOTES: minor modifications
6696
6697 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6698
6699         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6700         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6701         --pack-iram.
6702         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6703         * as/mcs51/lkaomf51.c: fixed bug #895763
6704
6705 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6706
6707         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6708
6709 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6710
6711         * doc/sdccman.lyx: added details about the HC08 storage classes and
6712         interrupts, fixed the register usage info for z80 & gbz80
6713
6714 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6715
6716         * doc/sdccman.lyx: added more pic16 port documentation
6717         * device/include/pic16/: added header pic18fregs.h
6718
6719 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6720
6721         * doc/sdccman.lyx: added Vangelis' contribution
6722
6723 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6724
6725         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6726         extend to the next CALL or PCALL, not just to the next CALL.
6727
6728 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6729
6730         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6731
6732 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6733
6734         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6735         bug #895752 and a better fix for bug #716790
6736
6737 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6738
6739         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6740
6741 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6742
6743         * doc/sdccman.lyx: minor changes, minor changed
6744
6745 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6746
6747         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6748         which can't handle SDCC_NEWONEBYTEOPS,
6749         (geniCodeMultiply): removed conversion from mult to shift for pic14
6750         and pic16
6751
6752 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6753
6754         * src/hc08/gen.h,
6755         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6756         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6757         thus fixing bug #895406
6758
6759 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6760
6761         * device/lib/_modsint.c,
6762         * device/lib/_modslong.c: sign follows divisor only
6763         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6764         signs or signedness can be ignored
6765         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6766         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6767         added optimization for IFX,
6768         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6769         arguments;
6770         reenabled optimization for IFX, which was removed on 2004-01-11
6771         * src/SDCCast.h: added return type IFX
6772         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6773         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6774         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6775         SDCC_OLDONEBYTEOPS selects the old behaviour
6776         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6777         changed again and commented promotion rule
6778         * src/SDCCval.c (valDiv): promotion no longer necessary
6779         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6780         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6781         rewritten
6782         * support/regression/tests/onebyte.c: added
6783
6784 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6785
6786         * gen.c (genInline): reverted to old code for assemnling inline
6787         code because of bug reported James Chadd
6788
6789 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6790
6791         * ralloc.h: missing declarations from previous patch,
6792         seems that patch for ralloc.h was never applied, fixed
6793
6794 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6795            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6796
6797         * pcode.c,
6798         * pcode.h,
6799         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6800         indirect addressing. Marked FSR0 as deprecated
6801         * gen.c (pointerCode): commented out, not needed now
6802         (pic16_popGet2p): new MOVFF helper function
6803         (genGenPointerGet),
6804         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6805         (shiftRLong): removed duplicate debugging info
6806
6807 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6808
6809         * src/ds390/gen.c (genNearPointerGet),
6810         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6811         optimization with bits, but not bitfields.
6812         * src/ds390/ralloc.c (packRegisters),
6813         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6814
6815 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6816
6817         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6818
6819 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6820
6821         * src/SDCCsymt.h,
6822         * src/SDCCicode.c (operandFromSymbol),
6823         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6824         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6825         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6826         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6827         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6828         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6829         bug #892038
6830         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6831         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6832         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6833         * src/SDCCsymt.c (newSymbol),
6834         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6835         enumerator_list),
6836         * src/SDCCval.h,
6837         * src/SDCCval.c (newiList): fixed bug #885705
6838
6839 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6840
6841         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6842         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6843
6844 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6845
6846         * device/include/c8051f120.h,
6847         * device/include/c8051f300.h,
6848         * device/include/c8051f310.h: added/updated header files for Silicon
6849         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6850         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6851         in new section Submitting patches
6852
6853 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6854
6855         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6856         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6857         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6858         genGenPointerSet),
6859         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6860         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6861         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6862         genGenPointerSet),
6863         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6864         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6865         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6866         genGenPointerSet),
6867         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6868         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6869         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6870         genGenPointerSet): fixed bug #892400
6871         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6872         to eliminate build warnings.
6873         * src/SDCCast.c (processParms),
6874         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6875         fixed bug 751859
6876         * support/valdiag/valdiag.py: added GCC to the list of defines active
6877         when compiling with gcc
6878
6879 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6880
6881         * support/Util/SDCCerr.h,
6882         * support/Util/SDCCerr.c,
6883         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6884         with an incomplete type (fixed bug #883734)
6885         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6886
6887 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6888
6889         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6890
6891 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6892
6893         * src/SDCCast.c (decorateType),
6894         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6895         function pointer implementation
6896         * support/regression/tests/funptrs.c: added tests to verify both forms
6897         of function pointers work correctly. Added tests to verify parameters
6898         are passed in the correct order.
6899
6900 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6901
6902         * device.c (regCompare): registers are sorted by ascending
6903         address and increasing size,
6904         * main.c (_pic16_finaliseOptions): removed the declaration
6905         of compiler macro MCU. Now a macro of the format pic18fxxxx
6906         will be defined from the command line
6907
6908 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6909             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6910
6911         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6912         PCOP_RLCF was overwritten!
6913         * gen.c (genSkip): commented out calls to pic16_emitcode,
6914         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6915         * (genlshTwo),
6916         * (genRRC): added debugging info,
6917         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6918         overwritten while shifting,
6919         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6920         overwritten while shifting,
6921         * (AccLsh),
6922         * (AccRsh),
6923         * (shiftLLeftOrResult),
6924         * (shiftRLeftOrResult),
6925         * (shiftRLong),
6926         * (shiftLLong): Implemented with pic16_emitpcode
6927         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6928         * (genLeftShift): Fixed bug, operand for shift by variable always
6929         was "and"ed with 0x0f,
6930         * (genLeftShiftLiteral),
6931         * (genrshTwo),
6932         * (genRightShiftLiteral): added debugging info,
6933         * (genrshFour): added comment,
6934         * (genRightShift): determined signedness from operand "left"
6935         instead of "result"
6936
6937 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6938
6939         * src/SDCCicode.c (geniCodeParms),
6940         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6941         function pointers, fixed function pointer bugs #861242 and #861896
6942
6943 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6944
6945         * device/include/c8051f000.h,
6946         * device/include/c8051f120.h,
6947         * device/include/c8051f300.h: added header files for Silicon
6948         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6949
6950 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6951
6952         * src/SDCCast.c (processParams): added new type flow and restructured
6953         (gatherAutoInit): added new type flow
6954         (addCast): cosmetic changes
6955         (getLeftResultType): added new type flow for array indices, patch
6956         provided by Stas, see FR #877103
6957         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6958         array index patch by Stas
6959         * src/SDCCast.h: added prototype getResultTypeFromType()
6960         * src/SDCCval.h,
6961         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6962         * src/pic/glue.c (pic14emitStaticSeg),
6963         * src/pic16/glue.c (pic16emitStaticSeg),
6964         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6965         for initialization of symbols
6966         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6967         * support/Util/SDCCerr.h:
6968         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6969         * .version: bumped version number to 2.3.8
6970         * device/include/Makefile.in (install),
6971         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6972         avoid warnings
6973
6974 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6975
6976         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6977         Slade Rich fixed an optimization bug
6978         * src/pic/pcodepeep.c,
6979         * src/pic/pcoderegs.c
6980         * doc/Makefile (install): added test for directory
6981
6982 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6983
6984         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6985         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6986         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6987         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6988         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6989         * as/mcs51/asexpr.c (term),
6990         * as/hc08/asexpr.c (term): fixed bug #887146
6991
6992 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6993
6994         * src/z80/gen.c (genMult): handle single byte result product
6995         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6996         DUMMY_READ_VOLATILE (fixed bug #886367)
6997
6998 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6999
7000         * support/regression/tests/libmullong.c: fixed logic, on little endian
7001         hosts we ended without a mullong_wrapper()
7002
7003 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7004
7005         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7006         virus/worm forged address usage.
7007
7008 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7009
7010         Fixed promotion, it should be done on AST level:
7011         * src/SDCCast.c (addCast): added promotion to int
7012         (decorateType): updated call to upCast()
7013         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7014         usualUnaryConversions()
7015
7016 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7017
7018         * support/regression/tests/literalop.c (mulWrapper): Added a
7019         wrapper to remove integer overflow warnings.
7020
7021         * support/regression/tests/float_trans.c: Made work on host.
7022
7023         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7024         location of sz80.
7025
7026         * support/regression/generate-cases.py (main): Changed from inline
7027         to a main method.
7028
7029         * doc/Makefile (install): Changed to depth first to get rid of
7030         missing directory install warning.
7031
7032         * as/Makefile (install-doc): Made work on Mac.
7033
7034 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7035
7036         * src/SDCCast.c: added an additional type flow in decorateType() of
7037         opposite direction, see feature request #860006; it's enabled at runtime
7038         by setting the environment variable SDCC_NEWTYPEFLOW
7039         * src/SDCCast.h: changed prototype of decorateType()
7040         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7041         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7042         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7043         see feature request #877103
7044         * src/SDCCval.c: updated call of decorateType()
7045         (valBitwise): fixed bug #882876
7046         (valMinus): added promotion
7047         (valLogicAndOr): result is unsigned
7048         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7049         * src/SDCCsymt.c (computeType),
7050         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7051         must not cause an unsigned operation
7052         * src/pic/glue (pic14emitRegularMap),
7053         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7054
7055 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7056
7057         * src/pic/pcode.c (PCodeID): commented out left over debug code
7058
7059 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7060
7061         * support/valdiag/tests/overflow.c: added shift tests
7062         * src/pic/device.c,
7063         * src/pic/gen.c,
7064         * src/pic/gen.h,
7065         * src/pic/glue.c,
7066         * src/pic/main.c,
7067         * src/pic/pcode.c,
7068         * src/pic/pcode.h,
7069         * src/pic/pcodepeep.c,
7070         * src/pic/pcoderegs.c,
7071         * src/pic/ralloc.c,
7072         * src/pic/ralloc.h: applied patch from Slade Rich;
7073         added support for multiple code pages and multiple RAM banks on the
7074         PIC 14 port. The ASM files now no longer simply assume all the
7075         code / RAM are in the same page / bank. This means the linker can
7076         safely allocate code/RAM of separate ASM files to different pages/banks.
7077         * doc/sdccman.lyx: added Slade's tips
7078         * src/mcs51/peeph.def: fixed bug #880768
7079
7080 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7081
7082         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7083         * src/SDCCast.c (decorateType): fixed bug #880197
7084
7085 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7086
7087         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7088         getopt.h.
7089
7090         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7091         strtof is not part of C89 and isn't included with Mac OS X.
7092
7093 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7094
7095         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7096         shiftL2Left2Result): fixed bug #879326
7097         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7098         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7099         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7100         address fetch for clr instruction
7101         * device/lib/hc08/_mulint.c: created optimized assembly version
7102         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7103
7104 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7105
7106         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7107         proposed in FR #877103
7108
7109 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7110
7111         * src/SDCCval.c (cheapestVal): added missing checks
7112         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7113         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7114
7115 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7116
7117         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7118         equal operands
7119
7120 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7121
7122         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7123         loaded with the linker search paths (-L arguments) and the libraries
7124         to be linked with the current source (-l arguments). Changes
7125         currently will affect only the pic16 port.
7126         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7127         include path the port specific paths and port specific libraries,
7128         * gplink command now contains the $3 argument,
7129         * src/pic16/device.h,
7130         * src/pic16/device.c,: structure PIC_device is made public and
7131         renamed to PIC16_device, the same for variable Pics which is renamed
7132         to Pics16. Updated all references to them.
7133         * src/pic16/glue.c (pic16glue): corrected bug with code
7134         initialization which bypassed the variable initializations block.
7135
7136         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7137         COMPILE_FLAGS and added the --nostdinc option
7138
7139 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7140
7141         * device/include/mc68hc908jb8.h: Register defs for another member
7142         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7143
7144 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7145
7146         Documenting changes from previous commits.
7147         * configure.in (version 1.56),
7148         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7149         when generating output files to configure the pic16 library,
7150         but now I've commented it out, since gputils aren't installed in the
7151         SF compile farm, so library won't compile
7152
7153         * device/lib/Makefile.in (version 1.56): initially I've added in
7154         target 'all' the prerequestive 'model-pic16' so it compiled the
7155         pic16 library, but now I've commented it out for the same reasons
7156         above,
7157         * added targets 'model-pic16' and 'objects-pic16' to compile the
7158         library
7159         * added target 'port-specific-objects-pic16' to handle the
7160         generated libraries and copy them into the build/ directory
7161         * added target 'clean-intermediate-pic16' to clean intermediate
7162         files into pic16 directory
7163         * in target 'installdirs' added line to create directory pic16 in
7164         the installation path
7165
7166         * device/include/Makefile.in (version 1.11): in target 'install'
7167         added lines to copy all header files to installation path,
7168         * in target 'installdirs' added line create directory for pic16
7169         headers in the installation path
7170
7171 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7172
7173         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7174          a function call
7175
7176 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7177
7178         * configure,
7179         * device/lib/configure.in,
7180         * device/lib/configure: fixed for autoconf 2.57
7181
7182 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7183
7184         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7185         option so that it actually works. Made it specific to the z80, since
7186         the gbz80 doesn't have these kinds of I/O ports.
7187
7188 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7189
7190         * device/include/z180.h,
7191         * device/lib/_memcpy.c,
7192         * device/lib/_memmove.c,
7193         * device/lib/_mulint.c,
7194         * device/lib/ser_ir.c,
7195         * device/lib/ser_ir_cts_rts.c,
7196         * device/lib/_strcmp.c,
7197         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7198         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7199         portmode; added deprecation warning for bank= and protmode= forms.
7200         Also, guard against buffer overflow.
7201         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7202
7203 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7204
7205         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7206         changed interrupt vector table generation to only emit declared vectors.
7207         * device/include/Makefile.in: added missing backslash
7208         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7209
7210 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7211
7212         Mainly changes to support compilation of the device libraries
7213         * src/pic16/device.c: stack is allocated via symbol and not
7214         via literal number. The symbol is placed in the corresponding
7215         position of the data ram
7216         * (pic16_dump_section): relocatable and absolute uninitialized
7217         data are now emitted in sorted order to reduce section naming,
7218         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7219         weren't marked as being in the access bank,
7220
7221 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7222
7223         Added portion of GNU PIC Library under the directory
7224         device/include/pic16 and device/lib/pic16. These files
7225         contain the declarations of SFRs for the PIC18Fxx2 devices.
7226         The directory is initialized via configure from toplevel.
7227
7228 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7229
7230         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7231         the spilllocations to be compared correctly
7232
7233 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7234
7235         * src/SDCCast.c (decorateType): fixed bug introduced today
7236
7237 2004-01-12  Borut Razem <borut.razem AT siol.net>
7238
7239         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7240         doc/sdccman.lyx: upper case pragmas are deprecated
7241
7242 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7243
7244         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7245         in simpler and even better code
7246
7247 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7248
7249         * src/SDCCicode.c (operandOperation): fixed bug #874819
7250         * src/SDCCast.c (decorateType): fixed
7251         char foo (unsigned long ul) { return ul > 0; }
7252
7253 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7254
7255         * doc/sdccman.lyx: Moved and added some sections, small changes
7256         all over. Telling LaTeX to be less strict with word spacing
7257         to better keep the right margin. Changed some notes about
7258         maintainance of the ports in section 3.2.1 - is it OK like this?
7259
7260 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7261
7262         SDCC source changes:
7263         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7264         convilong): modified to inform the pic16 port that builtin functions
7265         are external
7266
7267         PIC16 PORT specific changes:
7268         * src/pic16/device.c pic16_dump_equates() added,
7269         processor registers declared internally by the port are emitted in
7270         the translation as equates,
7271         * src/pic16/gen.c: inline code is passed unprocessed to the
7272         translation,
7273         * (pic16_popGetLit2): fnuction modified to take second operand as
7274         pCodeOp pointer and not as literal,
7275         * (popRegFromIdx): prefixed with pic16_,
7276         * (pic16_popCombine2): modified to receive already allocated pCode
7277         operands,
7278         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7279         * (genFunction): initializes local stack frame and pushes on stack
7280         all the registers used by this function,
7281         * (genEndFunction): restores all registers from stack and restores
7282         stack frame,
7283         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7284         improvements,
7285         * (pic16glue): changed the program startup sequence,
7286         * added new dbName code 'A' for functions placed in absolute section
7287         * src/pic16/main.c: added function attribute _naked,
7288         * added pragma 'code' to place a fnuction at an absolute address,
7289         * added command line arguments --debug-ralloc and --pcode-verbose,
7290         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7291         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7292         * (pic16_newpCodeOpLit2): modified to take the second operand as
7293         pCodeOp pointer,
7294         * (pic16_printpBlock): modified to emit each function in a separate
7295         section,
7296         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7297         UPPER for immediate operands,
7298         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7299         instruction,
7300         * src/pic16/peeph.def: all peepholes with movff are commented out,
7301         because there is a problem in the pcode peep optimizer,
7302         * src/pic16/ralloc.c: the register allocator can now reuse local
7303         function symbols for another function. This saves register usage.
7304         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7305
7306         Added file src/pic16/NOTES with information about program writing on
7307         the current port version.
7308
7309 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7310
7311         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7312         and peephole 252 (array access)
7313
7314 2004-01-09  Borut Razem <borut.razem AT siol.net>
7315
7316         * src/SDCCmain.c : fixed #872250: -l command line defined library
7317           files are scanned before standard library files
7318
7319 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7320
7321         * src/SDCCast.c (decorateType): fixed bug #874046
7322
7323 2004-01-09  Borut Razem <borut.razem AT siol.net>
7324
7325         * support/scripts/sdcc.nsi: remove previous installation
7326
7327 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7328
7329         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7330         bytes for last interrupt vector (mcs51)
7331         * sdcc.spec: fixed typo
7332
7333 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7334
7335         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7336         gen51Code): more efficient parameter receive for --model-large
7337         ("bug" #845294)
7338
7339 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7340
7341         * src/ds390/main.c,
7342         * src/z80/main.c: added missed needLinkerScript flags (more than
7343         one port structure defined in these file)
7344         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7345         bug #795325
7346
7347 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7348
7349         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7350         * src/port.h: added flag needLinkerScript in port->linker
7351         structure to inform whether to create a .lnk file or not,
7352         * src/avr/main.c,
7353         * src/ds390/main.c,
7354         * src/hc08/main.c,
7355         * src/mcs51/main.c,
7356         * src/pic/main.c,
7357         * src/pic16/main.c,
7358         * src/xa51/main.c,
7359         * src/z80/main.c: changed appropriately to configure
7360         needLinkerScript flag
7361         * src/pic/gen.c,
7362         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7363         * src/pic/glue.c: added variable udata_section_name to
7364         override default uninitialized data segment definition for
7365         devices only with SHAREBANK memory (reported from Erik Epetrich)
7366         * (pic14emitOverlay): modified to emit a commented overlay segment
7367         directive when no overlay data exist
7368         * (picglue): modified to emit uninitialized data segment
7369         according to udata_section_name
7370         * src/pic/main.c (_pic14_parseOptions): added command line
7371         options --udata-section-name=[name] to override default
7372         udata definition name
7373         * modified _linkCmd and _asmCmd to include compiler passed
7374         arguments via -W option
7375         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7376         object file from '.rel' to '.o' in port->linker structure,
7377         changed size of fptr from 2 to 3 in port structure
7378
7379 2004-01-07  Borut Razem <borut.razem AT siol.net>
7380
7381         * support/scripts/sdcc.nsi: update PATH
7382         * support/scripts/sdcc.ico: craeted
7383
7384 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7385
7386         * device/include/Makefile.in: fix install
7387         * doc/Makefile: fix install
7388
7389 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7390
7391         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7392         in bug #860505
7393         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7394         how the function variable allocation summary is displayed; also
7395         include information about variables allocated to the overlay
7396         segment
7397
7398 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7399
7400         * as/mcs51/lkmain.c: Help about -Y option
7401         * as/mcs51/lkarea.c: Fixed gcc warnings
7402
7403 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7406         fixed warning
7407         * support/valdiag/tests/overflow.c: added
7408         * src/SDCCast.c (decorateType),
7409         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7410         LEFT_OP (left shift)
7411
7412 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7413
7414         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7415         (default behaviour).
7416
7417 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7418
7419         A python script to validate compiler diagnostic messages. It can be
7420         used to verify that sdcc complains about bad c source code and
7421         gives a good location of the error.
7422         * support/valdiag/Makefile,
7423         * support/valdiag/valdiag.py,
7424         * support/valdiag/tests/*
7425
7426 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7427
7428         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7429         * src/SDCCsymt.c (newEnumType),
7430         * src/SDCCsymt.h
7431         * support/Util/SDCCerr.c,
7432         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7433         enum related bugs.
7434         * support/regression/tests/enum.c: added test for enum values that
7435         require at least 2 bytes of storage.
7436
7437 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7438
7439         * src/common.h: added ifndef/define/endif macros
7440         around the header file.
7441         Bug reported from Jesus Calvino-Fraga
7442
7443 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7444
7445         * sdcc.spec: updated
7446         * device/include/Makefile.in: don't install CVS directories
7447         * device/lib/Makefile.in: added removal of CVS directories after install
7448         * doc/Makefile: fixed install, added local_icons
7449         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7450         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7451         * src/ds390/gen.c (genRightShift): fixed bug #870788
7452         * src/SDCCast.c (decorateType): fixed bug #870781
7453
7454 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7455
7456         PIC16 port related changes:
7457         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7458         added variable stackPos,
7459
7460         * gen.c: genCall, assignResultValue: added support for
7461         pushing/retrieving function parameters to/from stack,
7462         genFunction,genEndFunction: setup stack frame for the
7463         generated function,
7464         genAddrOf: will be changed according to bug 863624
7465
7466         * added files genutils.c and genutils.h which contain gen*
7467         debugged and optimised functions extracted from gen.c
7468
7469         * glue.c: added variable 'externs' which holds extern symbols,
7470         pic16emitRegularMap: is modified to properly handle relocatable
7471          symbols under the new scheme,
7472         pic16createInterruptVect: is modified
7473         pic16printPublics: is modified to emit 'global' assembler directives,
7474         added pic16_printExterns to print extern symbols,
7475         pic16glue: initializes stack/frame pointer in the beginning of
7476         the assembly output. Temporary hack, will be corrected later,
7477         because gplink yet does not support stack and SDCC does not
7478         yet support a type of crt0.o object to create the final binary.
7479
7480         * Removed many lines that contain 8051 legacy code.
7481         * The code is finally placed under a 'code' directive.
7482         * Added port specific options.
7483
7484         * _process_pragma: simplified since now we do not need *special*
7485         include file to define SFR registers. But a separate header
7486         will be needed. This will be developed later.
7487         * _pic16_parseOptions: added, parses port specific options:
7488         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7489         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7490         --preplace-udata-with=
7491
7492         * _pic16_setDefaultOptions: modified to initialize section names,
7493         but hack is temporarly out of order since it needs improvement.
7494         * _pic16_genAssemblerPreamble: configuration words are emitted by
7495         their address instead of their name. This part is incomplete and
7496         supports only the 18Fxx2 devices. Other devices will emit an error
7497         during assembly since they do not contain the same set of config
7498         registers
7499         * _pic16_genIVT: is modified,
7500
7501         * pcode.c: added definitions for some hardware registers that are needed
7502         for stack support
7503         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7504         All PCI entries are updated. Now LFSR is supported.
7505         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7506         * added pic16_newpCodeOpLit2 to support instructions with
7507         two literal arguments
7508         * pic16_pCode2str: corrected code that emits assembler instructions
7509         with two literal operands and those that have an access bit modifier
7510         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7511         this fixes a bug which caused some labels to be lost, when an
7512         assembler directive was added, i.e. banksel,
7513         * pic16_FixRegisterBanking: improved logic that causes the insertion
7514         of bank switching,
7515         * InlineFunction: functions that are called once, are not any more
7516         inlined. This can be a port option in the future,
7517
7518         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7519
7520         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7521         hold the corresponding uninitialized symbols,
7522         * pic16_allocProcessorRegister: registers have explicit marked the
7523         accessBank field,
7524         * pic16_allocInternalRegister: registers are explicit marked as
7525         not used,
7526         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7527         processing list, so bit registers were lost,
7528         *
7529
7530         * ralloc.h: added field 'accessBank' and original symbol operand
7531         in register definition,
7532         * removed the field isMapped from register definition,
7533
7534         ** Several functions have been removed from various sources:
7535         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7536         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7537         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7538         pic16_assignRelocatableRegisters
7539
7540         ** others have been introduced:
7541         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7542         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7543
7544 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7545
7546         * support/scripts/inc2h.pl: changed definition of BIT_AT
7547         to emit 'sbit at' instead of 'bit at'. This was a request.
7548
7549         PIC16 port related preliminary changes:
7550         * gen.c: prefixed function popRegFromString with
7551         pic16_ and all references to it corrected
7552         * pcode.c: all pic16_pc_* hardware registers prefixed
7553         with underscore (_),
7554         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7555         * ralloc.c: newReg(): when register is REG_SFR then
7556         set address to rIdx,
7557         pic16_allocProcessorRegister(): marks register wasUsed=0
7558         pic16_writeUsedRegs(): added a call to assign processor
7559         registers via pic16_assignFixedRegisters
7560
7561 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7562
7563         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7564         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7565         variables in unused register banks.  Also the SSEG is placed
7566         wherever there is enough space for it, and IDATA can be anywhere
7567         in internal RAM.  For now compile using -Wl-Y[stack_size].
7568         The mem file is different for this option as well, since it
7569         makes no sense of talking about DSEG lenght.
7570
7571 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7572
7573         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7574         in certain cases, e.g. when ROM assignment, patch provided
7575         from Albert den Haan.
7576
7577 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7578
7579         Many signedness and type propagation fixes:
7580         * src/SDCCicode.c: made geniCodeCast() static
7581         replaced SPEC_ by IS_ (cosmetic)
7582         (operandOperation): fixed div and mod operation
7583         (usualBinaryConversions): added support for promotion of char
7584         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7585         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7586         (geniCodeAdd): an array index will stay unsigned, even if promoted
7587         from char to int
7588         (geniCodeArray): ditto
7589         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7590         * src/SDCCsymt.c (computeType): added more support for char;
7591         promotion of char is selectable by promoteCharToInt, fixed signedness
7592         for all cases
7593         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7594         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7595         * src/SDCCval (val*): replaced signedness calculation by
7596         computeType()
7597         rearranged if-branches (cosmetic)
7598         (valShift): added warning W_SHIFT_CHANGED
7599         (valCompare): fixed problem with different types
7600         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7601         * support/regression/tests/literalop.c: added many cases
7602         * support/regression/tests/ast_constant_folding.c: changed finally to
7603         'unsigned int'
7604         * .version: new year, new version: 2.3.7
7605         * src/SDCCmain.c (main): applied patch #866468
7606         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7607         provided by Scott Bronson
7608         * doc/sdccman.lyx: updated documentation for sdcdb
7609         updated and added chapter tips
7610
7611 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7612
7613         * src/SDCCsymt.h: missing from yesterday's commits
7614
7615 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7616
7617         * src/SDCC.y (struct_or_union_specifier),
7618         * support/Util/SDCCerr.c,
7619         * support/Util/SDCCerr.h: verify that struct & union tags are used
7620         as declared.
7621
7622 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7623
7624         * src/SDCCglobl.h: missing from yesterday's commits
7625
7626 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7627
7628         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7629         sft_attributes, struct_declaration, parameter_declaration,
7630         type_name, start_block, declaration_list),
7631         * src/SDCC.lex (check_type): support redefinition of typedef names
7632
7633 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7634
7635         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7636         aligned xdata arrays. Erik helped me with the if clause.
7637
7638 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7639
7640         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7641         warning
7642
7643 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7644
7645         * src/SDCCast.h,
7646         * src/SDCCast.c (newAst_),
7647         * src/SDCCicode.h,
7648         * src/SDCCicode.c (ast2iCode, newiCode),
7649         * src/SDCCglobl.h,
7650         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7651         expr, statement, expression_statement, selection_statement,
7652         iteration_statement, expr_opt, jump_statement): foundation for tracking
7653         sequence points
7654         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7655         point code too)
7656
7657 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7658
7659         * support/Util/SDCCerr.c,
7660         * src/SDCCast.h,
7661         * src/SDCCast.c (createCase, createDefault, decorateType),
7662         * src/SDCClabel.c (labelUnreach),
7663         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7664         to error messages.
7665         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7666         (with thanks to Stas Sergeev)
7667         * device/include/time.h,
7668         * device/lib/time.c (CheckTime): suppress unreachable code warning
7669
7670 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7671
7672         * src/SDCCast.c (createIvalCharPtr),
7673         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7674         bug #753752)
7675         * support/regression/tests/nullstring.c: tests for these two bugs
7676
7677 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7678
7679         * support/Util/SDCCerr.h,
7680         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7681         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7682         about storage class and 'at' used inside struct or union
7683         * src/SDCCBBlock.c (iCodeFromeBBlock),
7684         * src/SDCCcse.c (ifxOptimize),
7685         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7686         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7687         printIval, emitStaticSeg, emitOverlay),
7688         * src/SDCClabel.c (deleteIfx),
7689         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7690         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7691         gatherAutoInit, processParms),
7692         * support/Util/SDCCerr.h,
7693         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7694         reporting for post-parse errors.
7695
7696 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7697
7698         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7699         implicit casts via union; they don't work on big endian systems
7700         (possible fix for bug #861138)
7701
7702 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7703
7704         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7705         * src/mcs51/main.c: fixed the fix for bug #737001
7706
7707 2003-12-15  Borut Razem <borut.razem AT siol.net>
7708
7709         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7710
7711 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7712
7713         * support/makebin/makebin.c: put output in binary mode
7714
7715 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7716
7717         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7718         xdata and data memory on startup. Set the environment variable
7719         SDCC_NOGENRAMCLEAR to disable this.
7720         * src/mcs51/peephole.def,
7721         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7722         (allows non-interrupt and interrupt code to safely compete for a resource
7723         without the non-interrupt code having to disable interrupts)
7724
7725 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7726
7727         * src/SDCCicode.c (geniCodeAdd),
7728         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7729         with valFromType if type might be a pointer and host is big endian).
7730         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7731         types, not just integer types.
7732         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7733         multiply defined with mismatching "at" address.
7734
7735 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7736
7737         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7738         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7739         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7740         with embedded nulls (fixed bug #753752)
7741
7742 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7743
7744         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7745         Apparently this did not see much testing (endless loop)
7746
7747 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7748
7749         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7750
7751 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7752
7753         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7754         gracefully handle NULL memmap pointers
7755
7756 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7757
7758         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7759         instead of deleting the iCode when an operand is volatile
7760         * src/z80/gen.c (genDummyRead),
7761         * src/mcs51/gen.c (genDummyRead),
7762         * src/ds390/gen.c (genDummyRead),
7763         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7764         not just IC_RIGHT
7765         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7766         * src/SDCC.y: fixed bug #850420
7767
7768 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7769
7770         Applied z80 i/o port patch from Peter Townson and fixed some operators
7771         to better handle operands in A register.
7772         * device/include/z180.h
7773         * src/SDCC.y
7774         * src/SDCCglue.c
7775         * src/z80/gen.c
7776         * src/z80/gen.h
7777         * src/z80/main.c
7778         * src/z80/peeph-z80.def
7779         * src/z80/peeph.def
7780         * src/z80/z80.h
7781
7782 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7783
7784         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7785
7786 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7787
7788         * device/lib/hc08/_mullong.c: Removed extra #endif
7789
7790 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7791
7792         * sim/ucsim/hc08.src/inst.cc,
7793         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7794         carries from x to h
7795         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7796         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7797         * device/include/stdarg.h: fixed varargs for hc08
7798         * device/lib/Makefile.in,
7799         * device/lib/hc08/Makefile,
7800         * device/lib/hc08/_mulint.c,
7801         * device/lib/hc08/_mullong.c: fixed some endian problems
7802
7803 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7804
7805         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7806         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7807         * device/lib/_gptrget.c,
7808         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7809
7810 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7811
7812         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7813         * src/SDCCast.c (astErrors): fixed bug #846007
7814         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7815
7816 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7817
7818         * src/SDCCast.c (decorateType): disabled a transformation I added in
7819         revision 1.188 (access to fields of a structure at an absolute address);
7820         it breaks with bitfields, extern declarations, and gcse analysis.
7821         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7822         could be assigned through a pointer, so don't complain.
7823         * src/SDCCast.c (astErrors),
7824         * src/SDCCast.h,
7825         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7826
7827 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7828
7829         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7830         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7831         output of __config directives, since gpasm now supports them
7832         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7833         pre-processor macro, i.e. -DMCU=p18f452
7834         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7835         and modified to handle 'cast' icode similarly to '=' icode
7836         * src/pic16/device.h (typedef struct PIC_device): added field
7837         'extMIface' to indicate that chip has external memory interface
7838         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7839         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7840         18F8720
7841
7842 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7843
7844         * src/SDCC.y (pointer): fixed bug #846006
7845         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7846         * src/SDCCast.c (decorateType): fixed bug #846009
7847         * src/ds390/peeph.def,
7848         * src/ds390/gen.c (genAnd, genOr),
7849         * src/mcs51/peeph.def,
7850         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7851
7852 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7853
7854         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7855         * src/SDCCdflow.c
7856         * src/SDCCcse.c
7857         * src/SDCCcse.h
7858         * src/SDCCBBlock.h
7859         * src/SDCCBBlock.c
7860
7861 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7862
7863         fixed bug #845089
7864         * src/SDCCbitv.h,
7865         * src/SDCCbitv.c: added function to free a bitvector
7866         * src/SDCClrange.h,
7867         * src/SDCClrange.c: added function to recompute the liveranges
7868         * src/avr/ralloc.c,
7869         * src/ds390/ralloc.c,
7870         * src/hc08/ralloc.c,
7871         * src/mcs51/ralloc.c,
7872         * src/pic/ralloc.c,
7873         * src/pic16/ralloc.c,
7874         * src/xa51/ralloc.c,
7875         * src/z80/ralloc.c: recompute the liveranges after register packing
7876
7877 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7878
7879         * src/SDCCloop.c (newInduction): fixed bug #845630
7880
7881 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7882
7883         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7884         inadvertantly left behind from my 2003-11-12 change
7885
7886 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7887
7888         Updated headers I neglected to commit yesterday.
7889         * src/SDCClrange.h,
7890         * src/SDCCicode.h
7891
7892 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7893
7894         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7895         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7896         * src/SDCCopt.c (eBBlockFromiCode),
7897         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7898         the creation of the key hash table from the sequencing so it can be used
7899         earlier (for some GCSE bug fixes still pending)
7900
7901 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7902
7903         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7904         * support/regression/tests/addsub.c: testing genPlus shortcut
7905
7906 2003-11-15  Borut Razem <borut.razem AT siol.net>
7907
7908         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7909
7910 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7911
7912         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7913         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7914         ordering is immaterial.
7915         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7916
7917 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7918
7919         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7920         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7921         (SIGSEV) of bug #840381
7922         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7923         unlink new file before rename if new and old filenames are the same)
7924
7925 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7926
7927         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7928         uninitialized variables) for the mcs51. Set environment variable
7929         SDCC_GENRAMCLEAR to test.
7930         xdata initialization slightly shorter
7931
7932 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7933
7934         * src/SDCCsymt.h,
7935         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7936         #838241 & 780691 (basicly the same bug)
7937         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7938         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7939
7940 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7941
7942         * src/SDCCmain.c (linkEdit): "fix" #834252
7943
7944 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7945
7946         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7947         * src/SDCCast.h,
7948         * src/SDCC.y: fixed bug #819403
7949
7950 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7951
7952         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7953         the reentrant attribute.
7954         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7955         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7956         simulation
7957         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7958         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7959         erroneously reduced to a literal.
7960         * src/hc08/ralloc.c (packRegisters, rematStr),
7961         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7962         some cases
7963
7964 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7965
7966         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7967         * doc/sdccman.lyx: changed from 'article' to 'book'
7968         * doc/Makefile: readded test_suite_spec and cdbfileformat
7969
7970 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7971
7972         * device/include/stdlib.h: include malloc.h to comply with ANSI
7973         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7974
7975 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7976
7977         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7978         * doc/clean.mk: also remove *.out files
7979         * doc/sdccman.lyx: some additions, larger top/bottom margins
7980
7981 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7982
7983         * src/SDCC.y: fixed bug #837365
7984         * support/regression/tests/bitopcse.c
7985         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7986         a symbol (might be valop instead)
7987         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7988         * device/lib/clean.mk: added hc08 to the cleaning list
7989
7990 2003-11-04  Borut Razem <borut.razem AT siol.net>
7991
7992         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7993           made 2003-11-04
7994         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7995           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7996           malloc is declared in standard stdlib.h
7997
7998 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7999
8000         * device/lib/hc08/Makefile: need to clean .rel not .o files
8001         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8002
8003 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8004
8005         * src/port.h,
8006         * src/hc08/main.c,
8007         * src/mcs51/main.c,
8008         * src/ds390/main.c,
8009         * src/z80/main.c,
8010         * src/avr/main.c,
8011         * src/pic/main.c,
8012         * src/pic16/main.c,
8013         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8014         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8015         tests (which uses the port's oclsExpense function)
8016         * src/SDCC.y,
8017         * src/SDCCast.c,
8018         * src/SDCCicode.c,
8019         * src/hc08/gen.c,
8020         * src/ds390/gen.c,
8021         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8022
8023 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8024
8025         * src/SDCCcse.c (ifxOptimize),
8026         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8027         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8028         deleting the IFX iCode.
8029         * src/hc08/ralloc.c: reduced unneeded slocs
8030         * src/hc08/gen.c: fixed bug in asmopToBoolean
8031
8032 2003-11-04  Borut Razem <borut.razem AT siol.net>
8033
8034         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8035           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8036           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8037           transferred to configure
8038
8039 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8040
8041         Use headers defined in the C[++] standards:
8042         * sim/ucsim/gui.src/serio.src/fileio.cc
8043         * sim/ucsim/gui.src/serio.src/frontend.cc
8044         * sim/ucsim/gui.src/serio.src/main.cc
8045         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8046         * support/Util/NewAlloc.c
8047         * as/hc08/lklibr.c
8048         * as/mcs51/lklibr.c
8049         * as/z80/aslist.c
8050         * as/z80/assym.c
8051
8052 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8053
8054         * Added MSVC projects for hc08 assembler and linker:
8055         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8056         /as/hc08/link_hc08.dsp
8057
8058 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8059
8060         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8061
8062 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8063
8064         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8065
8066 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8067
8068         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8069
8070 2003-10-31  Borut Razem <borut.razem AT siol.net>
8071
8072         * support/cpp2/cpplib.h,
8073           support/cpp2/cpplib.c,
8074           support/cpp2/cpplex.c,
8075           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8076           to switch _asm block preprocessing on / off. Default is
8077           #pragma preproc_asm +
8078
8079 2003-10-31  Borut Razem <borut.razem AT siol.net>
8080
8081         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8082           when outputting comment blocks (when executed with -C option) and
8083           _asm (SDCPP specific) blocks
8084
8085 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8086
8087         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8088
8089 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8090
8091         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8092
8093 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8094
8095         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8096         * src/SDCCast.c (decorateType): fixed bug #832664
8097
8098 2003-10-31  Borut Razem <borut.razem AT siol.net>
8099
8100         * support\cpp2\cpplex.c: fixed for SDCPP:
8101           comments(when executed with -C option) and _asm blocks
8102           were included even if they where in skipped #if block.
8103           Applied solution from GCC cpp 3.3.2
8104
8105 2003-10-31  Borut Razem <borut.razem AT siol.net>
8106
8107         * src/SDCC.lex: sdcc now understands both formats:
8108           '# <line_number> <file_name>' and
8109           '#line <line_number> <file_name>'
8110         * support/cpp2/cppmain.c: sdcpp now generates the standard
8111           '# <line_number> <file_name>' instead of former
8112           '#line <line_number> <file_name>'
8113
8114 2003-10-30  Borut Razem <borut.razem AT siol.net>
8115
8116         * support/cpp2/cpphash.h,
8117         * support/cpp2/cpplib.h
8118         * support/cpp2/cpplex.c,
8119         * support/cpp2/cppmain.c,
8120         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8121
8122 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8123
8124         Fixed a number of problems revealed by bug #827883.
8125         * src/SDCCloop.c (loopInvariants): Spill location of the
8126         result operand should be recomputed if extracted from
8127         a loop. Also, don't extract assignments of an iTemp
8128         from a literal.
8129         * src/SDCCast.c (isConformingBody): loop reversal should
8130         not occur if the control variable is involved with a
8131         relational operator.
8132
8133 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8134
8135         * .version: bumped to 2.3.6 to reflect the big improvements
8136         made by Erik and Klaus. Thanks!
8137
8138 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8139
8140         Replaced the livrange code.
8141         * src/SDCClrange.c: added new LR code
8142         * src/SDCCloop.c,
8143         * src/SDCCBBlock.h: removed remainig parts from old LR code
8144         * src/ds390/ralloc.c,
8145         * src/ds390/gen.c: minor fixes to make it work with new code
8146
8147 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8148
8149         * as/hc08/asm.h,
8150         * as/hc08/lkrloc.c,
8151         * src/hc08/gen.c,
8152         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8153         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8154         (tweaked fix for bug #818696)
8155
8156 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8157
8158         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8159
8160 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8161
8162         * src/SDCCmain.c,
8163         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8164         * src/mcs51/gen.c (gencjneshort),
8165         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8166         more efficient (per Scott Bronson's suggestion)
8167
8168 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8169
8170         Extended the semantics of the critical keyword to include
8171         individual statements. See RFE #827755 and #799831
8172         * src/SDCC.y
8173         * src/SDCCicode.c
8174         * src/SDCCopt.c
8175         * src/SDCCast.c
8176         * support/Util/SDCCerr.c
8177         * support/Util/SDCCerr.h
8178         * src/mcs51/gen.c
8179         * src/ds390/gen.c
8180         * src/hc08/gen.c
8181
8182 2003-10-19  Borut Razem <borut.razem AT siol.net>
8183
8184         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8185
8186 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8187
8188         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8189         Fixed bug #818696
8190         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8191         and predecrement operand is displayed
8192
8193 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8194
8195         * src/SDCCval.c (valMinus): fixed bug #826041
8196
8197 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8198
8199         Some hc08 related updates that I missed earlier
8200         * sim/ucsim/stypes.h
8201         * support/regression/ports/hc08/spec.mk
8202
8203 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8204
8205         New target "hc08" for the Motorola 68hc08 family of micros
8206
8207         * configure
8208         * configure.in
8209         * Makefile
8210         * src/hc08/*
8211         * src/SDCCmain.c
8212         * src/port.h
8213         * sim/ucsim/hc08.src/*
8214         * sim/ucsim/configure.in
8215         * src/ucsim/configure
8216         * sim/ucsim/packages_in.mk
8217         * as/hc08/*
8218         * as/Makefile
8219         * device/include/mc68hc908qy.h
8220         * device/lib/hc08/*
8221         * device/lib/Makefile.in
8222         * support/regression/ports/hc08/*
8223         * support/regression/Makefile
8224
8225 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8226
8227         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8228         regression test
8229         * src/ds390/gen.c (genCast): fixed bug #821957
8230
8231 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8232
8233         * device/lib/logf.c: "fixed" overlay bug
8234         * support/regression/ports/host/spec.mk: added m library
8235         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8236         * support/regression/tests/float_trans: added (for Eric)
8237
8238 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8239
8240         * src/mcs51/gen.c (genCpl): fixed bug
8241         http://sf.net/mailarchive/message.php?msg_id=6263915
8242
8243 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8244
8245         * src/SDCCast.c (decorateType): added extended constant folding
8246         * src/SDCCsymt.c (computeType): cleanup
8247         * src/SDCCval.c (valShift): minor optimization
8248         * support/regression/tests/ast_constant_folding.c: added
8249
8250 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8251
8252         * src/SDCCmain.c: removed some unintended changes
8253
8254 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8255
8256         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8257         * src/z80/gen.c: fixed part of bug #817589
8258         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8259
8260 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8261
8262         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8263         * src/SDCCcflow.c
8264         * src/SDCCcse.c
8265         * src/SDCCdflow.c
8266         * src/SDCClabel.c
8267         * src/SDCClrange.c
8268         * src/SDCCmem.c
8269         * src/SDCCopt.c
8270         * src/SDCCpeeph.c
8271         * src/SDCCset.c
8272         * src/avr/ralloc.c
8273         * src/ds390/ralloc.c
8274         * src/izt/ralloc.c
8275         * src/mcs51/ralloc.c
8276         * src/pic/ralloc.c
8277         * src/pic16/ralloc.c
8278         * src/xa51/ralloc.c
8279         * src/z80/ralloc.c
8280         * src/z80/gen.c: removed unused label "release:"
8281
8282 2003-10-06  Borut Razem <borut.razem AT siol.net>
8283
8284         * src/SDCC.lex: removed definition of unused variables
8285           save_optimize and save_options
8286
8287 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8288
8289         * clean.mk: removed '=' in "-maxdepth=1"
8290         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8291         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8292
8293 2003-10-06  Borut Razem <borut.razem AT siol.net>
8294
8295         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8296           my_unput() replaced by unput()
8297
8298 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8299
8300         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8301         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8302         type-punned pointer will break strict-aliasing rules"
8303         Old LR behaviour is again default; Klaus' LR can be choosen by
8304         defining the environment variable LRKLAUS
8305         * src/SDCCBBlock.h
8306         * src/SDCCloop.c
8307         * src/SDCClrange.c
8308         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8309         * clean.mk: fixed removal of files in bin/CVS/
8310         * device/lib/clean.mk: fixed removal of directories small and large
8311         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8312         * src/SDCCicode.c,
8313         * src/SDCCval.c: removed superflous test for pedantic
8314
8315 2003-10-05  Borut Razem <borut.razem AT siol.net>
8316
8317         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8318           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8319           message "unmatched #pragma SAVE and #pragma RESTORE"
8320
8321 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8322
8323         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8324           assembly, critical functions, atomic, nojtbound)
8325
8326 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8327
8328         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8329         * src/SDCCBBlock.h
8330         * src/SDCCloop.c
8331         * src/SDCCloop.h
8332         * src/SDCClrange.c
8333
8334 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8335
8336         * src/z80/gen.h,
8337         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8338         * src/mcs51/gen.h
8339         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8340         * src/ds390/gen.h
8341         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8342         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8343         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8344
8345 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8346
8347         * src/z80/gen.c (genRet): fixed bug #524753
8348         * src/z80/gen.c (genCast): fixed internal error on cast from
8349         pointer to long
8350         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8351         fix for bug #477835 to the z80
8352         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8353         for tracking iCodes in the peephole optimizer for z80
8354
8355 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8356
8357         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8358         the other part of bug #814548
8359         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8360
8361 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8362
8363         * src/SDCCcse.c: fixed part of bug #814548
8364
8365 2003-09-28  Borut Razem <borut.razem AT siol.net>
8366
8367         * src/asm.c: rewrite of printILine() to use temporary file instead
8368           a pipe
8369         * src/xa51/main.c: commented out declaration of int rewinds
8370
8371 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8372
8373         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8374
8375 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8376
8377         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8378         * src/asm.c (printILine): Fixed bug #811015
8379
8380 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8381
8382         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8383         freeing.
8384
8385 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8386
8387         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8388         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8389         to correctly handle general case of AOP_PAIRPTR
8390         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8391
8392 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8393
8394         * src/mcs51/ralloc.c (fillGaps),
8395         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8396         register positioning bug)
8397
8398 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8399
8400         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8401
8402 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8403
8404         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8405         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8406         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8407         (ralloc doesn't intentionally do this now, but perhaps later)
8408         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8409         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8410         register positioning bugs (Fixed bug #762602 and #795325)
8411         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8412         (Fixed bug #808779)
8413         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8414         lines that --i-code-in-asm generates
8415
8416 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8417
8418         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8419         trying to fclose a FILE* that was already closed.
8420
8421 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8422
8423         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8424         of const struct should be treated as if const themselves)
8425
8426 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8427
8428         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8429
8430 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8431
8432         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8433         Unix (/n) and DOS (/r/n) line terminations.
8434
8435 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8436
8437         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8438         bug #613775
8439
8440 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8441
8442         * src/mcs51/gen.c (genFunction, genEndFunction),
8443         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8444         and restore of EA so that stack offsets to parameters are
8445         correct when using both critical and reentrant/stack-auto.
8446         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8447         size (can be triggered in error if sloc is shared between
8448         different sized objects)
8449         * device/include/float.h: fixed macros to explicitly use
8450         unsigned long where needed
8451
8452 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8453
8454         Feature req. 799831: added code to allow nesting of critical functions
8455         * src/mcs51/gen.c (genFunction, genEndFunction)
8456         * src/ds390/gen.c (genFunction, genEndFunction)
8457
8458 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8459
8460         * src/SDCCsymt.c (sclsFromPtr),
8461         * src/SDCCsymt.h,
8462         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8463         support for standard C idiom of memory mapped variables; for
8464         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8465         to xdata int at 0x1234 tempvar = 1.
8466         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8467         provided by Akiya ISHIDA
8468
8469 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8470
8471         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8472         * src/SDCCval.c (constVal): added reduction from int to char
8473         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8474         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8475         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8476         to ignore the sign
8477         * support/regression/tests/shifts.c: fixed
8478
8479 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8480
8481         * src/z80/gen.c (genXor): Fixed bug #805445
8482
8483 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8484
8485         Fixed bug #621531 (const & volatile confusion in the type chain).
8486         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8487         refer to the const or volatile state of the pointer itself.
8488
8489         * src/SDCCast.c
8490         * src/SDCCglue.c
8491         * src/SDCCicode.c
8492         * src/SDCCsymt.c
8493         * src/SDCCval.c
8494         * src/SDCC.y
8495         * src/SDCCsymt.h
8496         * src/pic/gen.c
8497         * src/pic/ralloc.c
8498         * src/pic16/gen.c
8499         * src/pic16/ralloc.c
8500         * support/regression/tests/const.c
8501
8502 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8503
8504         When checking for duplicated modules, use absolute paths
8505         instead of relative paths.  Files changed:
8506
8507         * as/mcs51/lklib.c
8508         * link/z80/lklib.c
8509
8510 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8511
8512         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8513
8514 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8515
8516         * device/include/string.h: added size_t typedef, changed
8517         prototypes to use size_t, eliminated separate reentrant and
8518         non-reentrant declarations, added _memmove declaration
8519         * device/lib/_memcpy.c: changed to use size_t instead of int,
8520         changed /4 to >>2 to avoid division library call
8521         * device/lib/_memcmp.c,
8522         * device/lib/_memset.c,
8523         * device/lib/_strncat.c,
8524         * device/lib/_strncpy.c,
8525         * device/lib/_strncmp.c: changed to use size_t instead of int
8526         * device/lib/_memmove.c: new file (fixed bug #772294)
8527         * device/lib/Makefile.in: added _memmove.c
8528         * device/lib/z80/asm_strings.s: fixed bug #772290
8529         * support/regression/tests/bitfields.c: attempt to fix host assertion
8530         failure on amd64-unknown-linux2.2
8531
8532 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8533
8534         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8535         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8536         * as/z80/asmain.c (main): fixed bug #801766
8537
8538 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8539
8540         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8541         compilers
8542
8543 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8544
8545         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8546         reported in bug #800609
8547
8548 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8549
8550         * Top header beautifications in src/pic16 directory:
8551           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8552           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8553           pcoderegs.h, ralloc.c, ralloc.h
8554         * main.c: added top header and GPL license notice
8555         * pcode.c: fixed the if-conditional warning
8556
8557 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8558
8559         * device/lib/_mullong.c: replaced int by short for gcc
8560
8561 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8562
8563         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8564         and JUMPTABLE iCodes properly now (worked by accident before)
8565         * src/mcs51/gen.c (leftRightUseAcc),
8566         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8567         iCode properly now. Use getSize instead of nRegs since a & b
8568         aren't part of the nRegs tally.
8569
8570 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8571
8572         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8573         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8574           before instructions that use the _STATUS register
8575
8576 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8577
8578         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8579         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8580         fetching of the pointer
8581         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8582         copied from genNearPointerSet()
8583         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8584         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8585         If they pop r0/r1 they must be called in the opposite order than aopOp().
8586         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8587         (resp. --stack-auto), prepared for --xstack
8588
8589 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8590
8591         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8592
8593 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8594
8595         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8596         these ports have their own __sdcc_external_start()
8597
8598 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8599
8600         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8601         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8602         type for bits was changed. It resulted in bit variables becoming
8603         global, which is not permitted in PIC 14 assembly output.
8604
8605 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8606
8607         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8608
8609 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8610
8611         Z80 and MCS51 linkers complaint if a public symbol is defined
8612         in more than one library module:
8613
8614         * as/mcs51/lklib.c
8615         * link/z80/lklib.c
8616         * as/mcs51/Makefile.in
8617
8618 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8619
8620         A few small changes that speed up the peephole optimizer.
8621
8622         * src/SDCCpeeph.c
8623
8624 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8625
8626         Try to make the peephole optimizer smarter by maintaining
8627         an association between the assembly source code and the
8628         iCodes that originated them. Put this information to use
8629         with a new peephole rule condition "notVolatile" so that
8630         the rules can be aggressive yet still safe.
8631
8632         * src/SDCCpeeph.c
8633         * src/SDCCpeeph.h
8634         * src/mcs51/gen.c
8635         * src/mcs51/peeph.def
8636
8637 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8638
8639         Fixed bug #741761
8640
8641         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8642         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8643         if the left or right operand symbols have the accuse flag set.
8644
8645 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8646
8647         Changed the type of the result of the ! (NOT) operator to char;
8648         previously it returned the same type as the source. This allows
8649         us to eliminate all the genFloatNot functions (all of its target
8650         implementations were very buggy) since !float can use the same
8651         code as !long now.
8652
8653         * src/SDCCicode.c (ast2iCode): ! returns char
8654         * src/mcs51/gen.c (genNot, genNotFloat),
8655         * src/ds390/gen.c (genNot, genNotFloat),
8656         * src/z80/gen.c (genNot, genNotFloat),
8657         * src/pic/gen.c (genNot, genNotFloat),
8658         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8659
8660 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8661
8662         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8663         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8664            during interrupts. Ensure WSAVE is located at a shared bank address.
8665         2. Fixed page selection in some places
8666         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8667            the registers name strings.
8668         4. Fixed "signed / unsigned compare" compiler warnings.
8669         5. The PIC port manages its own allocation of the general purpose
8670            registers, but makes no attempt to reuse them. As a result when
8671            compiling it soon runs out of general purpose registers. Some
8672            additional code was added to the files pcode.c and device.c to walk
8673            through the function call tree and rename the registers so that they
8674            get reused.
8675
8676         * src/pic/device.c
8677         * src/pic/gen.c
8678         * src/pic/glue.c
8679         * src/pic/pcode.c
8680         * src/pic/pcode.h
8681         * src/pic/ralloc.c
8682         * src/pic/ralloc.h
8683         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8684         genPlus() & genMinus() when the result is the same as left or right
8685
8686 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8687
8688         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8689
8690 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8691
8692         Made bitfield a distinct type from bit so that bitfields
8693         convert as per ANSI C and bits retain their traditional
8694         boolean style behaviour. Implemented bitfield support in
8695         the z80 port.
8696
8697         * src/SDCCsymt.h,
8698         * src/SDCCsymt.c,
8699         * src/SDCCast.c,
8700         * src/cdbFile.c,
8701         * src/mcs51/gen.c,
8702         * src/ds390/gen.c: bit v bitfield split
8703         * src/z80/gen.c: New support for bitfields
8704         * support/regression/tests/bitfields.c: reenabled z80,
8705         added more tests
8706
8707 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8708
8709         Rules 246.x, 247.x relate to bitfields, the others speed up
8710         access to xdata mapped I/O devices.
8711
8712         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8713
8714 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8715
8716         Cleaned up genPackBits and genUnpackBits and added two helper
8717         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8718         for literal assignments in genPackBits (thanks to Frieder for
8719         reminding me).
8720
8721         * src/mcs51/gen.c
8722         * src/ds390/gen.c
8723
8724 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8725
8726         Fixed bug #748310 (pointer to function type mishandled when the
8727         function name is omitted). Also fixed a SIGSEGV when a function
8728         attribute (reentrant, etc) is used on a non-function or on a
8729         function but misplaced before the parameter list.
8730
8731         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8732         bug #748310
8733         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8734         * support/Util/SDCCerr.h,
8735         * support/Util/SDCCerr.c: Added func attr misuse error msg
8736
8737 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8738
8739         Fixed bug #787649 by anonymous
8740         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8741         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8742
8743 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8744
8745         Fixed numerous bitfield problems.
8746
8747         * src/SDCC.y: More bitfield related error checking
8748         * src/SDCCsymt.h,
8749         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8750         * support/Util/SDCCerr.h,
8751         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8752         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8753         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8754         * support/regression/tests/bitfields.c: tests added
8755
8756 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8757
8758         Made the constant following the "interrupt" keyword optional. If
8759         omitted, the function will not automatically be given an entry
8760         in the interrupt vector table (similar to #pragma NOIV, but
8761         less syntacticly kludgy). The interrupt number is also now
8762         range checked. Also fixed a bug in the high order bit example
8763         in the manual.
8764
8765         * src/SDCC.y
8766         * src/SDCCmem.c
8767         * src/SDCCglue.c
8768         * src/SDCCsymt.h
8769         * support/Util/SDCCerr.c
8770         * support/Util/SDCCerr.h
8771         * doc/sdccman.lyx
8772
8773 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8774
8775         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8776         * src/SDCCicode.c (operandOperation): rewritten some ops
8777         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8778         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8779         other type
8780         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8781         be re-activated by defining REDUCE_LITERALS)
8782         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8783         unsigned, but are signed by default
8784         * src/SDCCval.c (constVal): rearranged
8785         * src/SDCCval.c (valMod): preliminary fix
8786         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8787         * support/regression/literalop.c: added, work in progress
8788
8789 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8790
8791         Generate warnings for useless declarations like "char data;"
8792         that don't do what new users expect.
8793
8794         * src/SDCC.y
8795         * support/Util/SDCCerr.h
8796         * support/Util/SDCCerr.c
8797
8798 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8799
8800         * src/SDCCval.c (valMult): fix overflow detection of negative int
8801
8802 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8803
8804         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8805
8806         Changes to support big endian targets:
8807
8808         * src/ports.h
8809         * src/SDCCglue.c
8810         * src/avr/main.c
8811         * src/ds390/main.c
8812         * src/izt/i186.c
8813         * src/mcs51/main.c
8814         * src/pic/main.c
8815         * src/pic16/main.c
8816         * src/xa51/main.c
8817         * src/z80/main.c
8818
8819 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8820
8821         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8822         * device/lib/time.c: fixed warning "integer overflow in expression"
8823
8824 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8825
8826         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8827         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8828         constants are unsigned; added recognition of "u" flag for unsigned
8829         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8830         * src/SDCCval.c (valDiv, valMod): fixed signdness
8831         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8832         signedness of modulo, left and right shift
8833         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8834         * support/Util/SDCCerr.h: added warning W_INT_OVL
8835         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8836         * src/SDCCast.c (ast_print): improved output of constants
8837
8838 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8839
8840         Fixed some warnings when building with MSVC:
8841
8842         * as\mcs51\asdata.c
8843         * as\z80\asdata.c
8844         * as\mcs51\asm.h
8845         * as\z80\asm.h
8846         * link\z80\aslink.h
8847         * link\z80\lkdata.c
8848         * link\z80\lkeval.c
8849         * link\z80\lkgb.c
8850         * link\z80\lkihx.c
8851         * link\z80\lks19.c
8852         * link\z80\lksym.c
8853         * support\cpp2\cpplib.c
8854         * src\ds390\gen.c
8855         * src\mcs51\gen.c
8856
8857 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8858
8859         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8860
8861 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8862
8863         * support\librarian\clean.mk: Do not remove Makefile.
8864         * support\librarian\Makefile: added.
8865
8866 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8867
8868         Added librarian to MSVC build:
8869         * all.dsp
8870         * sdcc.dsw
8871         * support\librarian\librarian.dsp
8872
8873         'configure' not needed for librarian, removed:
8874         * support\librarian\configure
8875         * support\librarian\configure.in
8876         * support\librarian\config_in.h
8877         * support\librarian\Makefile.in
8878
8879         Hopefully these ones built the librarian and the rest of sdcc properly:
8880         * Makefile
8881         * Makefile.common.in
8882
8883         Messed up 'configure', so revert to previous version:
8884         * configure
8885         * configure.in
8886
8887 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8888
8889         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8890         there, while the mantissa of a double is "only" 53 bits wide.
8891
8892 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8893
8894         Adding sdcclib to the build.  MSVC project coming soon.
8895         Files added/changed:
8896
8897         * support\librarian\clean.mk
8898         * support\librarian\configure
8899         * support\librarian\configure.in
8900         * support\librarian\config_in.h
8901         * support\librarian\Makefile.bcc
8902         * support\librarian\Makefile.in
8903         * support\librarian\sdcclib.c
8904         * Makefile.bcc
8905         * Makefile
8906         * Makefile.common.in
8907         * configure
8908         * configure.in
8909
8910 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8911
8912         Linker now complaints if linked modules have conflicting options, for
8913         example, one compiled using --model-large and another one compiled with
8914         --model-small.  The following files were modified:
8915
8916         * as\mcs51\asdata.c
8917         * as\mcs51\aslink.h
8918         * as\mcs51\asm.h
8919         * as\mcs51\asmain.c
8920         * as\mcs51\asout.c
8921         * as\mcs51\i51pst.c
8922         * as\mcs51\lkdata.c
8923         * as\mcs51\lklibr.c
8924         * as\mcs51\lkmain.c
8925         * as\z80\asdata.c
8926         * as\z80\asm.h
8927         * as\z80\asmain.c
8928         * as\z80\asout.c
8929         * as\z80\z80pst.c
8930         * link\z80\aslink.h
8931         * link\z80\lkdata.c
8932         * link\z80\lklibr.c
8933         * link\z80\lkmain.c
8934         * src\SDCCglue.c
8935
8936 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8937
8938         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8939         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8940
8941 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8942
8943         * src/z80/mappings.i: fix _mul[us][int,long] entries
8944
8945 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8946
8947         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8948
8949 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8950
8951         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8952         * support/regression/tests/bitopcse.c: added
8953         fixed warning:
8954         * src/avr/gen.c:
8955         * src/pic/gen.c:
8956         * src/pic16/gen.c:
8957         * src/z80/gen.c:
8958         * src/xa51/gen.c:
8959
8960 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8961
8962         added support for new library format to z80, gbz80 linkers:
8963         *link/z80/aslink.h
8964         *link/z80/lklex.c
8965         *link/z80/lklib.c
8966         *link/z80/lklist.c
8967
8968 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8969
8970         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8971         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8972
8973 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8974
8975         added DUMMY_READ_VOLATILE:
8976         * src/SDCC.y:
8977         * src/avr/gen.c:
8978         * src/xa51/gen.c:
8979         * src/z80/gen.c:
8980         * src/pic/gen.c:
8981         * src/pic16/gen.c:
8982         * src/mcs51/gen.c:
8983         * src/ds390/gen.c:
8984         * src/SDCCcse.c (algebraicOpts): many improvements
8985         * src/SDCCcse.h: removed algebraicOpts()
8986         * src/SDCCicode.c (picDummyRead): added
8987
8988 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8989
8990         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8991         "Insufficient space in data memory".
8992
8993 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8994
8995         * src/mcs51/gen.c: fixed bug #771358
8996         * src/z80/gen.c: fixed bug #759087
8997
8998 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8999
9000         * src/pic16/glue.c: minor cleanup by Vangelis
9001
9002 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9003
9004         * device/include/regc515c.h: fixed #758477
9005         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9006         * device/lib/_gptrput.c: saved a few bytes
9007         * my tab spacing is 8, yours too?)
9008         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9009         * device/lib/serial.c: process RX bytes earlier than TX bytes
9010         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9011
9012 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9013
9014         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9015
9016 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9017
9018     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9019
9020 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9021
9022         * device/lib/Makefile.in: bad fix, reverted to 1.43
9023
9024 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9025
9026         * device/lib/Makefile.in: added missing z80 object files
9027
9028 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9029
9030         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9031         pic16 progress by Vangelis:
9032         * src/SDCCglobl.h:
9033         * src/SDCCmain.c:
9034         * src/pic/Makefile:
9035         * src/pic:
9036         * pic/Makefile:
9037         * pic16/device.c:
9038         * pic16/device.h:
9039         * pic16/gen.c:
9040         * pic16/gen.h:
9041         * pic16/genarith.c:
9042         * pic16/glue.c:
9043         * pic16/main.c:
9044         * pic16/pcode.c:
9045         * pic16/pcode.h:
9046         * pic16/pcodepeep.c:
9047         * pic16/peeph.def:
9048
9049 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9050
9051     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9052
9053 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9054
9055     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9056     added gbz80 build to MSVC project.
9057     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9058     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9059     from 8051 stuff and setup so it links using a .lnk file.
9060
9061 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9062
9063     * support/librarian/sdcclib.c: sdcc librarian.
9064     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9065     with sdcclib.
9066
9067 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9068
9069     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9070
9071 2003-07-02  Borut Razem <borut.razem AT siol.net>
9072
9073         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9074         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9075         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9076         src/xa51/main.c, src/z80/main.c:
9077         virtualization of glue() function: each port has it's own glue function,
9078         which is accessed by do_glue function pointer in PORT.general structure
9079
9080 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9081
9082         * DS800C400 fun, improved ROM interface and tinibios.
9083
9084 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9085
9086         * More support for DS80C400. Now includes beginning of interface to ROM.
9087
9088 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9089
9090         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9091
9092 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9093
9094         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9095
9096 2003-06-19  Borut Razem <borut.razem AT siol.net>
9097
9098         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9099
9100 2003-06-19  Borut Razem <borut.razem AT siol.net>
9101
9102         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9103         fixed Z80 port - crt0.o: cannot open.
9104
9105 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9106
9107         * support/Util/MySystem.c (merge_command): revert bad fix
9108
9109 2003-06-18  Borut Razem <borut.razem AT siol.net>
9110
9111         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9112
9113 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9114
9115         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9116         option --use-stdout sends errors to stdout instead of stderr.
9117
9118 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9119
9120         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9121
9122 2003-06-15  Borut Razem <borut.razem AT siol.net>
9123
9124         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9125         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9126         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9127         fixed width array of pointers replaced with sets;
9128         multiple include and lib paths ared transferred to preprocessor and linker
9129         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9130         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9131         fixed width array of pointers
9132         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9133         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9134         fixupPath(), getPathDifference()
9135         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9136         fixed width array of pointers
9137
9138 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9139
9140         * src/pic16/ralloc.c: fix warnings
9141         * src/pic16/pcode.c: fix warning
9142
9143 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9144
9145          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9146         know all the details, but essentially this set of changes enable
9147         the pic16 port to generate movff instructions and generate assembler
9148         directives,
9149         * src/SDCCmain.c:
9150         * src/pic16/gen.c:
9151         * src/pic16/glue.c:
9152         * src/pic16/pcode.c:
9153         * src/pic16/device.c:
9154         * src/pic16/main.c:
9155         * src/pic16/pcode.h:
9156         * src/pic16/pcoderegs.c:
9157         * src/pic16/ralloc.c:
9158         * src/pic16/ralloc.h:
9159
9160 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9161
9162         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9163         added option --vc, so sdcc errors and warnings are compatible with
9164         Microsoft Visual Studio.
9165
9166 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9167
9168         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9169           device/lib/libfloat.lib: added atof function.
9170
9171 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9172
9173         * doc/sdccman.lyx: updated to Lyx 1.3
9174         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9175         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9176         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9177
9178 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9179
9180         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9181
9182 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9183
9184         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9185           additions to the "related tools/documentation" section
9186
9187 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9188
9189         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9190
9191 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9192
9193         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9194         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9195
9196 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9197
9198         * doc/sdccman.lyx: fix double dash and other minor things
9199         * doc/Makefile: fix double dash
9200
9201 2003-05-28  Karl Bongers(patches from Martin Helmling)
9202         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9203           condition and ignore commands.
9204
9205 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9206
9207         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9208           is in parts still quite out of date, I did changes as far as I felt makes sense
9209           for a non-native english speaker.
9210           Please feel free to add to the manual or to correct my changes.
9211         * doc/Makefile: undid touching the date of intermediate tex files.
9212
9213 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9214
9215         * doc/sdccman.lyx: Manual has an index now
9216
9217 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9218
9219         Finalize muluint/mulsint and mululong/mulslong merging:
9220         * device/lib/_mulint.c
9221         * device/lib/_mullong.c
9222         * device/lib/gbz80/mul.s
9223         * device/lib/gbz80/stubs.s
9224         * device/lib/z80/mul.s
9225         * device/lib/z80/stubs.s
9226         * src/SDCCsymt.c (initCSupport)
9227
9228 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9229
9230         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9231         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9232           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9233           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9234           instead of /Zm500.
9235
9236 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9237
9238         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9239           the regression tests I'm not brave enough to enable 245.b, 245.c
9240         * doc/sdccman.lyx: added latex preamble for hyperref package.
9241           Using pdflatex this will give you a hyperlinked pdf file with
9242           bookmarks. (prepend '%' before /usepackage if this breaks something)
9243
9244 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9245
9246          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9247
9248 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9249
9250         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9251
9252 2003-05-21    <johan AT balder>
9253
9254         * src/SDCCglue.c (printIval): fixed bug #739934
9255
9256 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9257
9258         Applied patch from bug 737905 (renamed yylineo to mylineno):
9259         * src/altlex.c
9260         * src/SDCCast.c
9261         * src/SDCglobl.h
9262         * src/SDCC.lex
9263         * src/SDCCsymt.c
9264         * src/SDCCval.c
9265         * src/pic16/pcode.c: Cleaned warnings
9266         * src/pic16/pcodeflow.c: Cleaned warnings
9267         * src/pic16/pcoderegs.c: Cleaned warnings
9268
9269 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9270
9271         * src/pic16/pcode.c: Cleaned warnings
9272         * src/pic16/pcodepeep.c: Cleaned warnings
9273         * src/pic16/ralloc.c: Cleaned warnings
9274
9275 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9276
9277         * doc/sdccman.lyx: fixed bug 739745
9278         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9279
9280 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9281
9282         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9283         it can be defined with CFLAGS when running configure
9284         * src/SDCCmain.c: fixed compiling + linking with object files
9285
9286 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9287
9288         * configure.in: configure for pic16 port,
9289             added --disable-pic16-port
9290         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9291         * src/SDCCmain.c: linkOptions is changed to set *,
9292             added if/endif conditional macros to remove options help
9293             messages from optionsTable when a port is not configured, added
9294             support for the PIc16 port in the ports table, when executing
9295             the compiler with no port specified on command line, a default
9296             port is selected with the new macro DEFAULT_PORT which is
9297             defined in port.h, in setDefaultOptions() linkOptions is removed
9298             from initialization assignment, since now it is a set,
9299             parseCmdLine uses setParseWithComma for linkOptions, in
9300             linkEdit() linkOptions are accessed with new function indexSet()
9301             which returns the i'th item of a set variable. See SDCCset.c, in
9302             linkEdit() when calling buildCmdLine(), added linkOptions as
9303             last argument. Now users can pass arguments to gplink via the
9304             -Wl option, main() uses pic16glue() to glue up pic16 programs
9305         * src/SDCCpeeph.c: various changes to support pic16
9306         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9307             return the i'th item of the set
9308         * src/SDCCset.h: added function prototype for indexSet()
9309         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9310         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9311         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9312             added macro DEFAULT_PORT
9313         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9314         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9315             generated
9316         * src/pic16/glue.c: commented out some error producing lines
9317         * src/pic16/main.c: __config directives are commented out to stop
9318             gpasm complaining and test the linkage with gplink, _linkCmd and
9319             _asmCmd changed to be more gplink and gpasm friendly
9320         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9321             produced an error when parsed, peep rule 12 is added to utilize
9322             movff, but it is commented out since the pCode does not support
9323             yet a command with 2 address arguments
9324
9325 2003-05-18    <johan AT balder>
9326
9327         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9328         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9329 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9330
9331         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9332   Added feature to script commands from file.
9333
9334 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9335
9336         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9337         * src/SDCCutil.c: include ctype.h for win32
9338
9339 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9340
9341         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9342
9343 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9344
9345         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9346   Fixed so you can set breakpoints prior to run, run does not stop
9347   on entry now.  Add tbreak.  Other enhancements and fixes for use
9348   with ddd.
9349
9350 2003-05-12  Borut Razem <borut.razem AT siol.net>
9351
9352         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9353
9354 2003-05-11  Borut Razem <borut.razem AT siol.net>
9355
9356         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9357         the path of bin directory, so that PATH is the only env. variable, which has to be set
9358         in case of standard installation.
9359         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9360         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9361         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9362
9363 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9364
9365         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9366         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9367         temp files are in the port dir; clean the gen/test directory when
9368         generating new test.c
9369         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9370         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9371         * support/regression/tests/zeropad.c: added
9372
9373 2003-05-09    <johan AT balder>
9374
9375         * src/SDCCglue.c: fixed bug #597940
9376
9377 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9378
9379         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9380   cache sfr, optimize next,step, fix off by one sourceline,
9381   support ddd list function.
9382         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9383
9384 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9385
9386         * support/regression/HTMLgen.py: added compare_s2f()
9387         * support/regression/Makefile: redo 1.27
9388         * support/regression/generate-cases.py: redo 1.5
9389
9390 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9391
9392         * support/regression/tests/float.c: workaround 33 bit hex constant
9393         * support/regression/tests/simplefloat.c: fix division for host
9394
9395 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9396
9397         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9398         that tame's the PIC's over-aggressive optimizer.
9399
9400 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9401
9402          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9403          support for MSVC.
9404
9405 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9406
9407         Initial support for DS80C400. "Hello world" runs on TINIm400
9408         (with polled I/O).
9409
9410 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9411
9412          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9413          * Some notes on ddd usage added in debugger/README
9414          Martin Helmling adding more features and fixes for ddd GUI debugger.
9415          Code added for nexti, stepi, up, down, and other adjustments.
9416
9417 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9418
9419         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9420         * src/pic/peeph.def Added two rules to optimize carry manipulation
9421         * src/pic/* removed debug printfs
9422
9423 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9424
9425         * debugger/mcs51/cmd.c: added header newalloc.h
9426
9427 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9428
9429         * as/Makefile: new EXEEXT
9430         * as/z80/Makefile: remove trailing slash of BUILDIR
9431         * as/z80/clean.mk: new EXEEXT
9432         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9433         * support/cpp2/Makefile.in: new EXEEXT
9434         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9435
9436 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9437
9438         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9439         EXEEXT was introduced to fix all related problems with targets
9440         "clean", "install" and "uninstall"; a couple of further flaws
9441         especially with "clean" have been fixed too
9442         * as/mcs51/Makefile.in
9443         * as/mcs51/clean.mk
9444         * as/z80/Makefile
9445         * Makefile
9446         * clean.mk
9447         * debugger/mcs51/Makefile.in
9448         * debugger/mcs51/clean.mk
9449         * link/z80/Makefile
9450         * link/z80/Makefile.in
9451         * link/z80/clean.mk
9452         * link/Makefile
9453         * packihx/Makefile.in
9454         * packihx/clean.mk
9455         * sim/ucsim/Makefile
9456         * sim/ucsim/clean.mk
9457         * sim/ucsim/avr.src/Makefile.in
9458         * sim/ucsim/avr.src/clean.mk
9459         * sim/ucsim/s51.src/Makefile.in
9460         * sim/ucsim/s51.src/clean.mk
9461         * sim/ucsim/xa.src/Makefile.in
9462         * sim/ucsim/xa.src/clean.mk
9463         * sim/ucsim/z80.src/Makefile.in
9464         * sim/ucsim/z80.src/clean.mk
9465         * sim/ucsim/main_in.mk
9466         * sim/ucsim/packages_in.mk
9467         * sim/ucsim/gui.src/Makefile.in
9468         * sim/ucsim/gui.src/serio.src/Makefile.in
9469         * sim/ucsim/gui.src/serio.src/clean.mk
9470         * src/Makefile.in
9471         * src/clean.mk
9472         * support/cpp2/Makefile.in
9473         * support/cpp2/clean.mk
9474         * support/makebin/Makefile
9475         * support/makebin/clean.mk
9476         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9477         * doc/sdccman.lyx: --program-suffix no longer needed
9478
9479 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9480
9481          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9482          Martin Helmling added support for ddd GUI debugger.
9483          Code added to display assembly, set variables, and other commands
9484          to interface to ddd.
9485
9486 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9487
9488         * as/Makefile: fix target clean
9489         * as/clean.mk: fix target clean
9490         * as/z80/clean.mk: fix target clean
9491
9492 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9493
9494         * Makefile.common.in: added  AT EXEEXT AT
9495         * configure.in: removed all mingw32 stuff
9496         * configure: rebuilt from configure.in
9497         * doc/sdccman.lyx: updated section "installation"
9498         * support/scripts/sdcc_mingw32: adapted to configure
9499         * support/scripts/sdcc_cygwin_mingw32: added
9500
9501 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9502
9503         * src/pic Added object file support for the PIC port
9504         * src/pic Applied patch from Craig Franklin (this started the object file support)
9505         * src/regression Updated the PIC regression tests for object files
9506
9507 2003-04-20  Borut Razem <borut.razem AT siol.net>
9508
9509         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9510           lklex.c: In function `getfid':
9511           lklex.c:203: warning: array subscript has type `char'
9512         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9513           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9514         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9515           stack handling macros
9516
9517 2003-04-19  Borut Razem <borut.razem AT siol.net>
9518
9519         * "handling space characters in file path" task:
9520         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9521         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9522         * support/Util/MySystem.h: make it self-sufficient
9523         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9524           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9525           handling space characters in file path
9526         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9527           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9528         * support/Util/MySystem.c: handling space characters in executable's path
9529
9530 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9531
9532         * as/z80/Makefile: fix permanent rebuild of z80
9533         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9534         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9535
9536 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9537
9538         * src/SDCCopt.c: add special case optimization to replace modulo by
9539           a power of two with a bitwise AND.
9540
9541 2003-04-18    <johan AT balder>
9542
9543         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9544
9545 2003-04-17    <johan AT balder>
9546
9547         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9548         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9549
9550 2003-04-13  Borut Razem <borut.razem AT siol.net>
9551
9552         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9553         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9554           fixed mingw problem in adl_NORMALIZE_PATH
9555
9556 2003-04-12  Borut Razem <borut.razem AT siol.net>
9557
9558         * fixed "#pragma SAVE/RESTORE can not be nested":
9559         * src/SDCC.lex: reworked pragma handling functions
9560         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9561         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9562
9563 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9564
9565         * src/SDCCutil.c (pathEquivalent): defined but not used
9566         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9567         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9568         * configure: rebuilt from configure.in
9569         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9570         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9571         * device/include/Makefile.in: replace sdcc_datadir
9572         * device/lib/Makefile.in: replace sdcc_datadir
9573         * Makefile.common.in: add LDFLAGS from configure
9574         * packihx/Makefile.in: use LDFLAGS
9575         * src/Makefile.in: use LDFLAGS
9576         * support/cpp2/Makefile.in: add LDFLAGS from configure
9577         * support/makebin/Makefile: use LDFLAGS
9578         * .version: bumped version number to 2.3.5
9579
9580 2003-04-12  Borut Razem <borut.razem AT siol.net>
9581
9582         * completed "different paths" task:
9583         * src/SDCCmacro.c: fixed bug in handling quotes
9584         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9585         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9586
9587 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9588
9589         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9590
9591 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9592
9593         * ds390/gen.c ds390/peeph.def: fix bug 706781
9594
9595 2003-04-11  Borut Razem <borut.razem AT siol.net>
9596
9597         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9598
9599 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9600
9601         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9602         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9603          set - this bit used to not be set...).
9604         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9605           bad code in PIC Port
9606         * src/regression/and2.c added to test bug 609268
9607         * src/regression/Makefile added and2.c to regression test
9608
9609
9610 2003-04-08    <johan AT CP255758-A>
9611
9612         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9613         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9614         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9615
9616 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9617
9618         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9619         fix bug #487815
9620         * support/cpp2/Makefile.in: fix bug #487815
9621         * configure: rebuilt from configure.in
9622         * Makefile.common.in: docdir changed, new path suffixes
9623         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9624         * sdcc_vc_in.h: reflect changes from sdccconf.h
9625         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9626         * src/SDCCutil.h: remove BINDIR hack
9627         * doc/sdccman.lyx: update new path hierarchy
9628
9629 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9630
9631         * src/SDCCpeeph.c: added okToRemoveSLOC test
9632
9633 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9634
9635         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9636
9637 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9638
9639         * src/SDCCpeeph.c: added labelIsReturnOnly test
9640         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9641
9642 2003-04-05    <johan AT balder>
9643
9644         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9645         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9646         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9647         * src/SDCCast.c: fixed a warning
9648         * src/SDCCast.h: fixed a warning
9649         * src/SDCCicode.c (operandFromAst): fixed a warning
9650
9651 2003-04-04    <johan AT balder>
9652
9653         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9654         * src/SDCCast.c (decorateType): fixed bug #715076
9655         * src/SDCC.y: fixed bug #702907
9656
9657 2003-04-03    <johan AT balder>
9658
9659         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9660         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9661         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9662         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9663         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9664
9665 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9666
9667         * _decdptr.c: fix return values
9668         * _gptrget.c: fix return values
9669         * _gptrgetc.c: fix return values
9670         * _gptrput.c: fix return values
9671         * _mulint.c: fix return values
9672         * as/z80/Makefile: fix 'make -j' problem
9673
9674 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9675
9676         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9677         * configure.in: big cleanup, updated to autoconf 2.5x
9678         * configure: rebuilt from configure.in
9679         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9680         * sdcc_vc_in.h: reflect changes from sdccconf.h
9681         * doc/Makefile: fixed a flaw in "make install"
9682
9683 2003-04-02    <johan AT balder>
9684
9685         * src/ds390/gen.c (genCmp): no comments
9686         * src/mcs51/gen.c (genCmp): no comments
9687         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9688         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9689
9690 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9691
9692         * support/regression/generate-cases.py: place generated file in given sub directory
9693         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9694         * support/regression/Makefile: improvements for 'make -j';
9695         side effect: it's simpler and faster now
9696
9697 2003-03-31  Borut Razem <borut.razem AT siol.net>
9698
9699         * src/z80/main.c: link-{port} and as-{port} defined without path
9700         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9701
9702 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9703
9704         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9705
9706 2003-03-30  Borut Razem <borut.razem AT siol.net>
9707
9708         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9709           changed type of list parameter to set
9710         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9711         * src/port.h: changed type of do_assemble() parameter to set
9712         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9713           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9714           definition of "cppoutfilename" macro with NULL value in preProcess()
9715         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9716         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9717         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9718           replaced with set *binPathSet
9719         * shash_add() deallocates the item, if allready exsists, before adding the new one
9720         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9721
9722 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9723
9724         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9725           a nested for loop bug in the PIC port
9726         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9727           for loops
9728
9729 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9730
9731         * support/Util/dbuf.h: remove C++ stuff to make it portable
9732
9733 2003-03-28  Borut Razem <borut.razem AT siol.net>
9734
9735         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9736           literal strings in stringLiteral()
9737         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9738         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9739           to the project
9740
9741 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9742
9743         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9744
9745 2003-03-26    <johan AT balder>
9746
9747         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9748         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9749         * src/SDCCast.c (decorateType): fixed " -v < 3"
9750
9751 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9752
9753         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9754         Added Lenny Story's debug infrastructure changes:
9755         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9756         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9757         * src/cdbFile.c: added
9758         * src/SDCCdebug.c: added
9759         * src/SDCCdebug.h: added
9760         * src/SDCCast.c (createFunction)
9761         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9762         * src/SDCCmain.c (parseCmdLine, main)
9763         * src/SDCCmem.c (redoStackOffsets)
9764         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9765         * src/SDCCsymt.h
9766         * src/common.h
9767         * src/avr/gen.c (genAVRCode)
9768         * src/ds390/gen.c (gen390Code)
9769         * src/mcs51/gen.c (gen51Code)
9770         * src/pic/gen.c (genpic14Code)
9771         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9772         * src/xa51/gen.c (genXA51Code)
9773         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9774
9775 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9776
9777         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9778         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9779
9780 2003-03-22    <johan AT balder>
9781
9782         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9783
9784 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9785
9786         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9787         * doc/cdbfileformat.lyx: added, written by Lenny Story
9788         * doc/Makefile: added cdbfileformat.lyx
9789         * doc/clean.mk: added cdbfileformat.lyx
9790
9791 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9792
9793         * src/mcs51/peeph.def: fix bug #705773
9794
9795 2003-03-20    <johan AT balder>
9796
9797         An sfr/sbit can have an "at #" AND an initializer
9798         * src/SDCCsymt.c (checkSClass):
9799         * src/SDCCmem.c (allocGlobal):
9800         * src/SDCCmem.c (allocLocal):
9801         * src/SDCCast.c (createBlock):
9802
9803 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9804
9805         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9806
9807 2003-03-16    <johan AT balder>
9808
9809         Undid the hackup of const and volatile, the problem is much bigger
9810         * src/SDCC.y:1.65
9811         * src/SDCCast.c:1.171
9812         * src/SDCCglue.c:1.138
9813         * src/SDCCicode.c:1.146
9814         * src/SDCCsymt.c:1.150
9815         * src/SDCCval.c:1.65
9816
9817 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9818
9819         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9820         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9821
9822 2003-03-13    <johan AT balder>
9823
9824         Hackup const and volatile modifiers in type chains a bit:
9825         * src/SDCC.y:1.63
9826         * src/SDCCast.c:1.169
9827         * src/SDCCglue.c:1.136
9828         * src/SDCCicode.c:1.143
9829         * src/SDCCsymt.c1.146
9830         * src/SDCCsymt.h1.59
9831         * src/SDCCval.c:1.63
9832
9833 2003-03-12    <johan AT balder>
9834
9835         * src/SDCCBBlock.h: more LRH debugging junk
9836         * src/SDCCcflow.h: more LRH debugging junk
9837         * src/SDCCloop.c: more LRH debugging junk
9838         * src/SDCC.y (struct_declaration): fixed bug #697590
9839         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9840         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9841         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9842
9843 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9844         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9845         test function names must now match exactly).
9846         * src/SDCCcse.c: added special case in findCheaperOp to allow
9847         extending a short integer. Makes less awful code for bug 700121 test case.
9848
9849 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9850
9851         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9852         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9853
9854 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9855
9856         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9857         actually called (operandsNotEqual() was called for all
9858         operandsNotEqualX tests).
9859
9860 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9861
9862         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9863         with shorter literals. Fixes bug 700121.
9864
9865 2003-03-11    <johan AT balder>
9866
9867         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9868
9869 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9870
9871         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9872         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9873
9874 2003-03-10  Borut Razem <borut.razem AT siol.net>
9875
9876         * src/SDCCmain.c: pipe preprocessor's output
9877         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9878         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9879         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9880         which closes all pipes in pipeSet set
9881         * src/SDCCset.c: free deleted item in function deleteSetItem()
9882         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9883         moved from z80 to src subproject
9884         * .version: increased version number to 2.3.4
9885
9886 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9887
9888         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9889         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9890         * support/regression/ports/xa51/spec.mk: fix typo
9891
9892 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9893
9894         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9895
9896 2003-03-09  Borut Razem <borut.razem AT siol.net>
9897
9898         * src/SDCCmain.c: pipe preprocessor's output
9899         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9900         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9901         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9902         which closes all pipes in pipeSet set
9903         * src/SDCCset.c: free deleted item in function deleteSetItem()
9904         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9905         moved from z80 to src subproject
9906
9907 2003-03-09  Borut Razem <borut.razem AT siol.net>
9908
9909         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9910         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9911         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9912         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9913         * src/SDCCglobl.h: unification of WIN32 native definitions
9914
9915 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9916
9917         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9918
9919 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9920
9921         * src/configure.in:   check for endianess (even while cross-compiling)
9922         * src/configure:      check for endianess (even while cross-compiling)
9923         * src/configure_in.h: check for endianess (even while cross-compiling)
9924         * src/avr/gen.c:        remove old endianess stuff
9925         * src/mcs51/gen.c:      remove old endianess stuff
9926         * src/ds390/gen.c:      remove old endianess stuff
9927         * src/pic/gen.c:        remove old endianess stuff
9928         * src/pic/genarith.c:   remove old endianess stuff
9929         * src/pic/glue.c:       fix endianess check
9930         * src/pic16/gen.c:      remove old endianess stuff
9931         * src/pic16/genarith.c: remove old endianess stuff
9932         * src/pic16/glue.c:     fix endianess check
9933         * src/xa51/gen.c:       remove old endianess stuff
9934         * src/z80/gen.c:        fix endianess check
9935         * src/SDCCglue.c:       fix endianess check
9936         * src/ds390/peeph.def: fix bug 700036
9937
9938 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9939
9940         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9941         * src/configure: find appropriate data-types on host for SDCC's int and long
9942         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9943         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9944         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9945
9946 2003-03-07    <johan AT balder>
9947
9948         Just a big NOOP:
9949                 some minor cleanups before the big shot
9950                 OP_DEFS and OP_USES now use Kevin's protection
9951                 new option --nolabelopt
9952
9953         * src/SDCCBBlock.c:
9954         * src/SDCCast.c,:
9955         * src/SDCCcflow.c:
9956         * src/SDCCcse.c:
9957         * src/SDCCicode.c:
9958         * src/SDCCicode.h:
9959         * src/SDCClabel.c:
9960         * src/SDCCloop.c:
9961         * src/SDCCmain.c:
9962         * src/ds390/ralloc.c:
9963         * src/mcs51/ralloc.c:
9964         * src/pic/ralloc.c:
9965         * src/xa51/ralloc.c:
9966         * src/z80/ralloc.c:
9967
9968 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9969
9970         * src/pic/pcode.c (get_op): fix 64 bit warnings
9971         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9972         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9973         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9974         * support/regression/tests/malloc.c: fix 64 bit warnings
9975
9976 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9977
9978         * src/mcs51/gen.c (genMinus): fixed bug 696436
9979
9980 2003-03-02  Borut Razem <borut.razem AT siol.net>
9981
9982         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9983
9984 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9985
9986         * configure.in: test for mkstemp
9987         * sdccconf_in.h: add HAVE_MKSTEMP
9988
9989 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9990
9991         * device/include/ctype.h: removed warning while using --stack-auto
9992         * device/include/malloc.h: removed warning while using --stack-auto
9993         * device/include/string.h: removed warning while using --stack-auto
9994
9995 2003-02-23  Borut Razem <borut.razem AT siol.net>
9996
9997         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9998         because NDEBUG is defined (see man assert)
9999         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10000
10001 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10002
10003         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10004         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10005
10006 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10007
10008         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10009         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10010
10011 2003-02-18    <johan AT balder>
10012
10013         * as/mcs51/asmain.c (asmbl): module can start with a digit
10014         * as/z80/asmain.c (asmbl): module can start with a digit
10015
10016 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10017
10018         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10019         * src/asm.c: fix pipe() for Mingw32
10020
10021 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10022
10023         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10024         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10025         make -V work again; --c1mode reads now from stdin
10026         * doc/sdccman.lyx: added --c1mode
10027         * support/Util/SDCCerr.c: new messages for c1 mode
10028         * support/Util/SDCCerr.h: new messages for c1 mode
10029         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10030
10031 2003-02-15    <johan AT balder>
10032
10033         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10034
10035 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10036
10037         * doc/sdccman.lyx: Environment variables, -o and other minor things
10038
10039 2003-02-14    <johan AT balder>
10040
10041         * src/xa51/main.c: before anyone really tries to use it :)
10042
10043         * Install doc's in share/sdcc/doc
10044         * removed some obsolete files
10045         * Do a proper make distclean and uninstall
10046         M Makefile.common.in
10047         R sdccbuild.sh
10048         M as/Makefile
10049         M device/include/Makefile.in
10050         M device/lib/Makefile.in
10051         M doc/sdccman.lyx
10052         M link/Makefile
10053         M sim/ucsim/doc/Makefile.in
10054         M src/clean.mk
10055         R src/avr/peeph.rul
10056         R src/xa51/peeph.rul
10057         M support/cpp2/Makefile.in
10058         M support/makebin/Makefile
10059
10060
10061 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10062
10063         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10064
10065 2003-02-10  Borut Razem <borut.razem AT siol.net>
10066
10067         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10068         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10069         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10070         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10071         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10072         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10073         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10074         src/z80/Makefile.bcc: Borland Makefile cleanup
10075         * as/z80/Makefile.bcc: Added Borland Makefile
10076         * support/cpp2/borland.h: Removed
10077
10078 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10079
10080         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10081         * src/SDCC.lex: new pragma NOIV
10082         * src/SDCCglobl.h: new pragma NOIV
10083         * src/SDCCmem.c: new pragma NOIV
10084
10085 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10086
10087         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10088
10089 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10090
10091         * src/SDCCmain.c: signal handling is switched off by --debug
10092         * doc/Makefile: small fix for install; use clean.mk again
10093         * doc/clean.mk: clean *.pdf and *.html too
10094
10095 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10096
10097         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10098         * device/lib/printfl.c: fix a ds390 bug by making it portable
10099         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10100         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10101         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10102         * debugger/mcs51/cmd.c: converted multi-line string literals
10103         * sim/ucsim/globals.cc: converted multi-line string literals
10104         * src/SDCCmain.c: introduced signal handler to remove temp files
10105         * doc/Makefile: small tweaks, implement clean
10106         * doc: removed generated files
10107
10108 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10109
10110         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10111         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10112         Address Record is not correctly generated for DS390."
10113
10114 2003-02-02  Borut Razem <borut.razem AT siol.net>
10115
10116         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10117         * as/mcs51/asm.h: fixed compilation with Borland C
10118         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10119         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10120         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10121         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10122         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10123         src/z80/Makefile.bcc: delete $(LIB) only if exist
10124         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10125
10126 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10127
10128         * device/include/malloc.h: introduced NULL
10129         * device/include/string.h: introduced NULL
10130         * device/include/stdlib.h: introduced NULL
10131         * device/lib/_memcpy.c: removed NULL
10132         * device/lib/_strcat.c: removed NULL
10133         * device/lib/_strchr.c: removed NULL
10134         * device/lib/_strcmp.c: removed NULL
10135         * device/lib/_strcpy.c: removed NULL
10136         * device/lib/_strcspn.c: removed NULL
10137         * device/lib/_strlen.c: removed NULL
10138         * device/lib/_strncat.c: removed NULL
10139         * device/lib/_strncmp.c: removed NULL
10140         * device/lib/_strncpy.c: removed NULL
10141         * device/lib/_strpbrk.c: removed NULL
10142         * device/lib/_strrchr.c: removed NULL
10143         * device/lib/_strspn.c: removed NULL
10144         * device/lib/_strstr.c: removed NULL
10145         * device/lib/_strtok.c: removed NULL
10146         * device/lib/malloc.c: removed NULL, include own header
10147
10148 2003-02-02    <johan AT balder>
10149
10150         * 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
10151         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10152         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10153         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10154         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10155         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10156
10157 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10158
10159         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10160         area 'DATA'"
10161
10162 2003-02-01    <johan AT balder>
10163
10164         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10165
10166 2003-01-31    <johan AT CP255758-A>
10167
10168         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10169
10170 2003-01-30    <johan AT balder>
10171
10172         * src/SDCCBBlock.c: automatic bug detection
10173         * src/SDCCicode.c: automatic bug detection
10174
10175 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10176
10177         * src/SDCCglobl.h:   now --xram-size 0 works
10178         * src/SDCCmain.c:    now --xram-size 0 works
10179
10180 2003-01-29    <johan AT balder>
10181
10182         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10183
10184 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10185
10186         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10187         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10188         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10189         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10190         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10191         * src/SDCCmain.c:    Added options --xram-size and --code-size
10192
10193 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10194
10195         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10196         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10197
10198 2003-01-27    <johan AT balder>
10199
10200         * src/SDCC.y: fixed bug #613764
10201
10202 2003-01-26    <johan AT balder>
10203
10204         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10205         * src/SDCCsymt.h: fixed bug #673374
10206         * src/SDCCglue.c: fixed bug #661910
10207         * src/SDCCast.c: fixed bug #458099 and 673374
10208
10209 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10210
10211         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10212         * as/mcs51/strcmpi.h: added
10213         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10214         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10215         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10216         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10217         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10218         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10219         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10220         * as/mcs51/Makefile.aslink: new module strcmpi
10221         * as/mcs51/Makefile.asx8051: new module strcmpi
10222         * as/mcs51/Makefil.bcc: new module strcmpi
10223         * as/mcs51/Makefile.in: new module strcmpi
10224         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10225
10226 2003-01-26    <johan AT balder>
10227
10228         * src/SDCCglue.c: reverted back to 1.124
10229         * src/SDCCast.c: reverted back to 1.156
10230         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10231
10232 2003-01-25    <johan AT balder>
10233
10234         * src/SDCCglue.c: A better fix for bug #661910
10235         * src/SDCCast.c: A better fix for bug #661910
10236         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10237
10238 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10239
10240         * src/Makefile.in: remove spawn.o
10241         * src/SDCCmain.c: remove spawn.h
10242         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10243         * src/spawn.c: removed
10244         * src/spawn.h: removed
10245         * support/regression/ports/ds390/spec.mk: link with -r
10246
10247 2003-01-24    <johan AT CP255758-A>
10248
10249         * src/ds390/gen.c (aopOp): fixed bug #667458
10250         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10251         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10252         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10253
10254 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10255
10256         * src/mcs51/peeph.def: better assembler identation by Frieder
10257         * src/mcs51/gen.c: better assembler identation by Frieder
10258
10259 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10260
10261         * as/z80/string.h: removed for gcc 3.2
10262         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10263         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10264
10265 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10266
10267         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10268         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10269         * support/regression/Makefile: separate temp files for ports
10270         * support/regression/generate-cases.py: separate temp files for ports
10271         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10272         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10273
10274 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10275
10276         * moved tinitalk to device/examples/ds390
10277
10278 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10279
10280         * as/mcs51/lkmem.c: rflag is for DS390
10281         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10282         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10283                          (linkEdit): move mem- and map-files the same way as ihx-files
10284         * src/z80/main.c (_setDefaultOptions): removed --generic
10285         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10286         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10287         * src/pic/glue.c (picglue): --c1mode works again
10288         * src/pic16/glue.c (pic16glue): --c1mode works again
10289         * src/asm.c (printCLine): fix #660034
10290
10291 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10292
10293         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10294         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10295         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10296         * as/mcs51/lkmem (summary): better fix for sp problem
10297         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10298         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10299         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10300                                               remove --stack-after-data
10301
10302 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10303
10304         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10305         * src/SDCCutil.c (join): ugly bug: missing '\0'
10306         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10307
10308 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10309
10310         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10311         * src/port.h: typo
10312         * src/pic/main.c (_asmCmd): gpasm supports -o
10313         * src/z80/main.c: more general macros
10314         * device/lib/Makefile.in: remove intermediate files
10315
10316 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10317
10318         * .version: Bumped version number to 2.3.3
10319         * src/SDCCBBlock.c: new option -o
10320         * src/SDCCglobl.h: new option -o
10321         * src/SDCCglue.c: new option -o
10322         * src/SDCCmain.c: new option -o
10323         * src/asm.c: new option -o
10324         * src/ds390/main.c: new option -o
10325         * src/pic/glue.c: new option -o
10326         * src/pic/pcode.c: new option -o
10327         * src/pic/ralloc.c: new option -o
10328         * src/pic16/glue.c: new option -o
10329         * src/pic16/pcode.c: new option -o
10330         * src/pic16/ralloc.c: new option -o
10331         * src/z80/main.c: new option -o
10332         * device/lib/Makefile.in: use -o
10333         * support/regression/ports/ds390/spec.mk: use -o
10334         * support/regression/ports/gbz80/spec.mk: use -o
10335         * support/regression/ports/mcs51/spec.mk: use -o
10336         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10337         * support/regression/ports/z80/spec.mk: use -o
10338         * support/regression/ports/ucz80/spec.mk: use -o
10339         * support/regression/ports/xa51/spec.mk: use -o
10340         * support/regression/fwk/lib/timeout.c: fix usage string
10341
10342 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10343         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10344
10345 2003-01-07    <johan AT balder>
10346
10347         * src/SDCCast.c (decorateType): fixed bug #600035
10348
10349 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10350         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10351         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10352         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10353         * src/pic/pcode.c: outcommented unused variable to remove warnings
10354         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10355
10356 2003-01-06    <karl AT turbobit.com>
10357         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10358    regression tests.
10359
10360 2003-01-06    <johan AT balder>
10361
10362         * src/SDCCicode.c: fixed array add
10363
10364 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10365         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10366         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10367
10368 2003-01-04    <johan AT balder>
10369
10370         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10371
10372 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10373         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10374
10375 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10376         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10377         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10378
10379 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10380         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10381
10382 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10383         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10384
10385 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10386         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10387
10388 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10389
10390     * in \sdcc\as\mcs51\ changed these files in order to create an
10391     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10392     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10393     following files to include the previous two files: aslink.dsp,
10394     Makefile.aslink, Makefile.bcc, and Makefile.in.
10395
10396     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10397     .adb instead of .cdb
10398
10399 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10400
10401         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10402         value from option --iram-size.
10403
10404 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10405
10406         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10407         dram[] array.
10408
10409 2002-09-18    <wiml AT hhhh.org>
10410
10411         * SDCClrange.h: exposed setFromRange() and setToRange()
10412         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10413           packRegsForAccUse() (bug 542397)
10414         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10415           multiple times and emitting the fetch operations more than once
10416           added aopGetUsesAcc() function to allow binary operators to
10417           fetch their operands in the correct order; made genMinus() emit
10418           compact code for X = LITERAL - Y
10419
10420 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10421         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10422         sprintf() in line 1267.
10423
10424 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10425         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10426         like ports.
10427
10428 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10429         Changes to aslink (All the changes are marked with 'JCF'):
10430
10431         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10432         summary().
10433
10434         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10435         area BSEG.  Also moves, if possible, the DATA area down into the internal
10436         ram so more space is available.
10437
10438         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10439         sflag.
10440
10441         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10442         not bytes.  Function summary() which creates a memory usage summary
10443         file with extension .mem.  Reports of overlaping stack and small stack
10444         size.  If the space for the stack is less than 16 bytes aslink trows a
10445         warning.
10446
10447         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10448         the 8051.  Option 'y' for memory summary output file.
10449
10450         Changes to sdcc (All the changes are marked with 'JCF'):
10451
10452         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10453
10454         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10455         overlaying area for it (uses RegBankUsed[4]).
10456
10457         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10458         bank zero as used by default.  By default aslink locates the stack
10459         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10460         the creation of the .mem file.  Delegates the allocation of data area
10461         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10462         the begining of the stack area to aslink.
10463
10464         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10465         glue() in SDCCglue.c creates an area for it.
10466
10467 2002-09-03  Borut Razem <borut.razem AT siol.net>
10468         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10469         sdcc/src/pic/glue.c:
10470         introduced atexit() handler for teporay files removal in case of
10471         errors, assertions, ...
10472
10473 2002-08-29  Borut Razem <borut.razem AT siol.net>
10474         * sdcc/support/cpp2/auto-host_vc_in.h:
10475         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10476         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10477         Maybe there is a similar problem with BORLANDC? It should be checked!
10478
10479         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10480         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10481         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10482         was not executed, and the compiler (cl) launched a warning:
10483         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10484
10485 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10486         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10487
10488 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10489         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10490
10491         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10492           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10493           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10494           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10495           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10496           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10497           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10498         - added Release configuration in VS projects
10499         - review of compiler an linker options
10500         - VC .exe files are generated in bin_vc directory, not to interfere
10501           with binaries generated from other projects (cygwin, mingw, bcc ...)
10502
10503         * sdcc/src/yacc.dsp: added
10504
10505         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10506         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10507         and insert the version number definitions from .version
10508
10509         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10510
10511         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10512         added - genarate auto-host.h using auto-host_vc_in.h as template
10513
10514         * sdcc/sdcc_vc.h,
10515         removed from CVS, generated automatically
10516
10517 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10518         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10519
10520 2002-08-11  Borut Razem <borut.razem AT siol.net>
10521         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10522
10523 2002-08-10  Borut Razem <borut.razem AT siol.net>
10524         * src/SDCCmain.c (main):
10525         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10526         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10527         The consequence was that some temporary files were not removed.
10528
10529         * src/SDCCglue.c:
10530         unification of code in functions tempfilename() and tempfile():
10531         function tempnam() is defined in Visual Studio 6.0 and .NET
10532
10533         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10534
10535         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10536           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10537         - removed compiler command line option /WX: Treats all warnings as errors
10538         - update a list of source files, included into the project
10539
10540         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10541           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10542         changed project type to Generic Project so that can be correcly converted to VS.NET project
10543
10544         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10545
10546         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10547
10548         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10549
10550         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10551         added return 0 statements after assert() to make compiler happy
10552
10553         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10554         added newline in the def file to keep MSC compiler satisfied
10555
10556         * sdcc/src/z80/gen.c:
10557         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10558           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10559         - solved MSC error in function aopDump()
10560
10561         * sdcc_vc.h: define PREFIX as "\\sdcc"
10562
10563 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10564         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10565
10566 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10567         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10568         - Rewrote the register banking algorithm.
10569         - Added pCode live-range analysis to registers (for now, only non-used and
10570         singly-used registers optimized away)
10571
10572         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10573
10574         * 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.
10575
10576 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10577         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10578
10579 2002-04-22  Michael Hope  <michaelh AT vroom>
10580
10581         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10582
10583         * configure.in (DD_COPT): Added include support required for gbdk.
10584
10585         * .version: Bumped version number just to increase it.
10586
10587         * src/SDCCmain.c: Added -nostdinc to the default options.
10588
10589 2002-04-15  Michael Hope  <michaelh AT vroom>
10590
10591         * device/lib/z80/printf.c (sprintf): Added.
10592
10593         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10594
10595         * src/z80/peeph.def: Added transpose redundent load rule.
10596
10597         * src/z80/main.c: Added force callee saves for jaune.
10598
10599         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10600
10601         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10602
10603 2002-03-28  Johan Knol  <johan AT balder>
10604
10605         * src/SDCCval.c: fixed bug #532436
10606
10607 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10608         * /src/port.h:
10609         Added "char *Processor" field to the port structure.
10610
10611         * /src/SDCCmain.c:
10612         Added -p option. Allows port dependent processor to be specified.
10613
10614         * all ports:
10615         Initialized the new field char *Processor field to NULL in all ports
10616
10617         * /src/pic/*:
10618         Compiler generated registers for interrupt context saving
10619         were not getting allocated.
10620
10621 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10622
10623         * /src/SDCCast.c:
10624         Fixed left shift. Will promote the left side of a left shift
10625         if a) left shifting more than size of operand or b) when assigned
10626         to something size > size of left side
10627
10628 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10629         * src/pic/*
10630         tons of changes. Register allocation has been
10631         rewritten. Added customization for the various PICs. Flow
10632         analysis is restructured. ...
10633
10634         * src/pic/device.h:
10635         Added
10636
10637         * src/pic/device.c:
10638         Added. device.c is a PIC port hack to accomodate variations
10639         in PIC devices.
10640
10641 2002-03-13  Michael Hope  <michaelh AT vroom>
10642
10643         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10644
10645 2002-03-04  johanknol  <johanknol AT manik>
10646
10647         * /src/SDCCval.c: fixed
10648
10649         const unsigned char arr[][2] = { { 0, 1 } };
10650         t18.c:1: error: Initializer element is not constant
10651
10652 2002-03-04  bela  <bela AT manik>
10653
10654         * /device/include/mcs51reg.h:
10655         ds89c420 register definition update
10656
10657 2002-03-03    <johan AT FRIJA>
10658
10659         * support/Util/SDCCerr.c: did something, but don't no why anymore
10660
10661         * support/regression/tests/bug-524691.c: made it a little less shy
10662
10663         * src/SDCCast.c (decorateType): fixed bug #524697
10664
10665         * src/SDCCast.c: made some lineno improvements
10666
10667         * src/SDCCval.c (getNelements): changed warning to error
10668
10669         * src/SDCCglue.c (printIvalArray): changed warning to error
10670
10671         * src/SDCCicode.c: fixed a warning for mingw
10672
10673         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10674
10675         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10676
10677 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10678
10679         * src/ds390/peeph.def:
10680         Added some more peephole rules
10681
10682         * src/ds390/gen.c: Various fixes & enhancements
10683
10684         * src/SDCClrange.c, src/SDCClrange.h:
10685         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10686
10687         * src/ds390/ralloc.c:
10688         various fixes & enhancements (ds390) specific
10689
10690         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10691         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10692         from rallocs.
10693
10694         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10695
10696 2002-03-02    <johan AT FRIJA>
10697
10698         * src/SDCCast.c (decorateType): fixed bug #524708
10699
10700         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10701
10702         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10703
10704 2002-03-01  Michael Hope  <michaelh AT vroom>
10705
10706         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10707
10708         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10709
10710 2002-03-01    <johan AT FRIJA>
10711
10712         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10713
10714         * src/SDCCast.c (decorateType): fixed bug #524209
10715
10716         * src/SDCCval.c (valNot): fixed bug #524195
10717
10718 2002-02-26    <johan AT balder>
10719
10720         * src/xa51/gen.c: fixed a warning
10721
10722         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10723
10724         * src/SDCCast.c (decorateType): fixed bug #522534
10725
10726 2002-02-23    <johan AT balder>
10727
10728         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10729
10730 2002-02-22    <johan AT balder>
10731
10732         * src/SDCCast.c: fixed bug #514865
10733
10734         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10735
10736 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10737
10738         * sdcc/src/SDCCloop.c:
10739         Previous fix was not good. basic blocks that have "break" or "return" are
10740         not really partof a loop , but live ranges used in these blocks should
10741         be live thru the entire loop, so set partOfLoop but don't add them to
10742         loop region
10743
10744 2002-02-21    <johan AT FRIJA>
10745
10746         * src/SDCCcse.c: fixed bug #514308
10747
10748 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10749
10750         * src/SDCCloop.c:
10751         Fixed BUG #519583. If a conditional block ended in a return/break
10752         statement inside a loop, it was not being considered part of the loop.
10753
10754         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10755
10756 2002-02-10  Karl Bongers <karl AT turbobit.com>
10757
10758         * debugger/*:
10759         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10760         with lots of comments and notes.
10761
10762         * device/examples/test2.c:
10763         Fix bug, "red" variable not being initialized(compiler complained).
10764
10765         * device/examples/Makefile, examples/test3.c:
10766         Add Makefile in device/examples folder, compiles test3.c
10767         for use as a multiple module SDCDB test case.
10768
10769         * sim/ucsim/cmd.src/cmdset.cc:
10770         Took out debug printfs in ucsim "next" command.
10771
10772         * sim/ucsim/xa.src:
10773         Karl and Johan start ucsim XA support.  Most dissassembly working,
10774         about 75% emulation done(plenty of work remaining).
10775
10776         * sim/ucsim/z80.src:
10777         Add Z80 support to ucsim, add test-ucz80 regression test,
10778         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10779         Notice z80 compiler fails on examples/test3.c/crc code.
10780
10781 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10782
10783         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10784         Added support for --parms-in-bank1
10785
10786         * src/ds390/peeph.def:
10787         added a few more peephole optimzations
10788
10789         * src/ds390/main.c:
10790         1) added __builtin_inp & __builtin_outp used to read in data of given length
10791            from a memory mapped port
10792         2) added __builtin_memcmp
10793         3) added __builtin_swapw swap bytes of a short
10794
10795         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10796         1) handle multiple send & receives from register bank1
10797         2) ralloc can now allocate DPTR1 to some liveRanges
10798
10799         * src/SDCCsymt.c, src/SDCCsymt.h:
10800         changes to handle multiple sends & receives
10801
10802         * src/SDCCptropt.h:
10803         added some pointer arithmetic optimization
10804
10805         * src/SDCCptropt.c:
10806         added some pointer arithmetic optimizations but not stable yet so not
10807         called from anywhere (will get this working shortly)
10808
10809         * src/SDCCopt.c: fixed for multiple sends & receives
10810
10811         * src/SDCCmain.c:
10812         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10813         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10814            set preprocessor defines (depending on options)
10815
10816         * src/SDCCicode.c, src/SDCCicode.h:
10817         changes made to handle multiple sends & receives
10818
10819         * src/SDCCglobl.h:
10820         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10821
10822         * src/SDCCcse.c, src/SDCCcse.h:
10823         added function findbackward def (to be used in upcoming optimization)
10824
10825         * src/SDCCcflow.c, src/SDCCcflow.h:
10826         added function returnAtEnd - to determine if a basic block terminates with
10827         a RETURN iCode
10828
10829         * src/SDCCast.c, src/SDCCast.h:
10830         added option parms-in-bank1
10831
10832         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10833         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10834         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10835         adjusted for --parms-in-bank1 option
10836
10837         * device/include/string.h:
10838         donot redefine "reentrant" keyword
10839
10840         * device/include/ds80c390.h: Added some more SFRs
10841
10842 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10843
10844         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10845
10846 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10847
10848         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10849
10850 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10851
10852         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10853
10854 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10855
10856         * Added --xram-movc option
10857
10858 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10859
10860         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10861
10862 2002-01-11  Johan Knol
10863
10864         * Added math lib of Jesus Calvino-Fraga
10865
10866 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10867
10868         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10869         * support/regression/Makefile: new target test-mcs51-stack-auto
10870         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10871
10872 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10873
10874         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10875
10876 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10877
10878         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10879
10880 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10881
10882         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10883
10884         * src/SDCCglue.h: add definition for printIvalChar()
10885
10886 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10887
10888         * src/SDCCast.c: fix #498138 by Johan
10889
10890         * src/SDCCglue.c: fix #498138 by Johan
10891
10892 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10893
10894         * support/regression/Makefile: fix clean
10895
10896         * support/regression/ports/ds390/support.c: fix transmission of last character
10897
10898 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10899
10900         * /sdcc/src/ds390/gen.c:
10901         a) improved computing address of stack variable
10902         b) took out some #if 0 code
10903         c) improved parmBytes adjustment
10904         d) improved genPlusIncr & genMinusIncr
10905         e) genCmp could generate bad code (when left assigned to DPTR)
10906         f) Fixed bug in hasInc
10907
10908         * /sdcc/src/ds390/ralloc.c:
10909         a) packRegsForSupport could mess up live information (Fixed)
10910         b) packRegsDPTRuse could be incorrect for left & right shift
10911
10912         * /sdcc/src/mcs51/ralloc.c:
10913         packRegsForSupport could mess up the live information (Fixed)
10914
10915         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10916
10917         * /sdcc/src/SDCCast.c:
10918         can reverse a loop even if function call is present as long
10919         as the loop control variable is local & is not passed as parameter
10920
10921 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10922
10923         * /sdcc/ChangeLog: *** empty log message ***
10924
10925         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10926         More builtin function additions for TININative
10927
10928         * /sdcc/src/ds390/ralloc.c:
10929         Had broken the regression testsuite
10930
10931         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10932
10933         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10934         Added funcattr hasStackParms will be set for reentrant functions when there
10935         are paramteres on the stack, this helps in minimizing frame pointer generation
10936         typeFromStr can handle function pointers now
10937
10938         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10939         *** empty log message ***
10940
10941 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10942
10943         * /src/ds390/gen.c, /src/ds390/main.c:
10944         More builtin function additions for TININative
10945
10946         * /src/ds390/ralloc.c:
10947         Had broken the regression testsuite
10948
10949         * /src/SDCCast.c: Fixed a bug in dumptree
10950
10951         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10952         Added funcattr hasStackParms will be set for reentrant functions when there
10953         are paramteres on the stack, this helps in minimizing frame pointer generation
10954         typeFromStr can handle function pointers now
10955
10956         * /doc/builtins.txt, /doc/TININative.txt:
10957         *** empty log message ***
10958
10959
10960 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10961
10962         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10963         ALPHA version for -mTININative
10964
10965         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10966         updated to reflect changes in the port structure
10967
10968         * /src/port.h:
10969         added function do_assemble (similar to do_link) if non-null this function
10970         will be called to do assembly (-mTININative) requires a multi command
10971         assembly
10972         added function genAssemblerEnd will be called to generate assembler Epilogue
10973
10974         * /src/SDCCsymt.c:
10975         added _JavaNative to debug info printing
10976
10977         * /src/SDCCmain.c: added option --tini-libid
10978         added port->do_assemble function (-mTININative) has a multi command assemble
10979
10980         * /src/SDCCglue.c: Disabled "constExpr" check
10981         added port->genAssemblerEnd function
10982
10983         * /src/SDCCglobl.h: Added option --tini-libid value
10984
10985         * /src/SDCCast.h:
10986         tookout optimizeCompare from the header (has no external references)
10987
10988         * /src/SDCCast.c: made one more function "static"
10989
10990 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10991
10992         * src/z80/mappings.i: Added z80asm support.
10993
10994         * src/z80/main.c: Added z80asm support on --asm=z80asm
10995
10996         * src/z80/gen.c: Fixed asm portability issues.
10997
10998         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10999
11000         * src/SDCCglue.c (printExterns): Added global/extern split.
11001
11002 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11003
11004         * support/regression/Makefile: added test for mcs51 model large
11005
11006         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11007
11008         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11009
11010 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11011
11012         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11013
11014 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11015
11016         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11017
11018         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11019
11020 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11021
11022         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11023
11024         * support/regression/tests/simplefloat.c: Port to mcs51.
11025
11026 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11027         * support/regression/tests/bug-485362.c: Added.
11028
11029         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11030
11031         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11032
11033         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11034
11035         * src/z80/gen.c (aopDump): Added a dump function.
11036
11037 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11038         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11039
11040         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11041
11042         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11043
11044         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11045
11046         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11047
11048         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11049
11050         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11051
11052         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11053
11054         * support/regression/ports/ds390/support.c: Use tinibios.
11055
11056         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11057
11058 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11059
11060         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11061         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11062
11063         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11064
11065         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11066
11067 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11068
11069         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11070
11071         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11072         (packRegsForIYUse): Created and optimised.
11073
11074 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11075
11076         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11077 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11078
11079         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11080
11081         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11082
11083         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11084
11085 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11086
11087         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11088
11089         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11090
11091 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11092
11093         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11094
11095         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11096
11097         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11098
11099 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11100
11101         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11102         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11103         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11104
11105         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11106
11107         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11108         (genNotFloat): Added.
11109         (genUminusFloat): Added.
11110
11111         * device/lib/z80/Makefile: Added floating pt stubs.
11112
11113         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11114
11115         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11116
11117         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11118
11119 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11120
11121         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11122
11123         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11124
11125         * sdcc/support/regression/Makefile: Add port ds390.
11126
11127         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11128
11129         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11130
11131         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11132
11133         * sdcc/support/regression/ports/ds390/support.c: Added.
11134
11135         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11136
11137         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11138
11139         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11140
11141 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11142
11143         * device/include/malloc.h: Added z80 and gbz80 support.
11144
11145         * device/lib/gbz80/heap.s: Added.
11146
11147         * device/lib/z80/heap.s: Added.
11148
11149         * device/lib/malloc.c: Added z80 and gbz80 support.
11150
11151         * support/regression/tests/malloc.c (testMalloc): Added.
11152
11153         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11154
11155         * support/regression/tests/bug-478094.c: Added.
11156
11157         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11158
11159 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11160
11161         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11162
11163         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11164
11165         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11166
11167         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11168
11169         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11170
11171 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11172
11173         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11174
11175 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11176
11177         * support/regression/tests/bug-477927.c: Added.
11178
11179         * src/z80/peeph.def: Added minor rules.
11180
11181         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11182
11183         * src/z80/peeph.def: Added jump optimisation modification.
11184
11185 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11186
11187         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11188
11189 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11190
11191         * support/regression/tests/funptrs.c: Added.
11192
11193 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11194
11195         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11196
11197 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11198
11199         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11200
11201         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11202
11203         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11204         (movLeft2ResultLong): Created.
11205
11206         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11207         (joinPushes): Added.  Joins two char pushes into a word push.
11208
11209 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11210
11211         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11212
11213         * support/makebin/Makefile (install): Added creation of dest dir.
11214
11215 2001-10-24 Karl Bongers <karl AT turbobit.com>
11216
11217         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11218
11219 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11220
11221         * src/z80/ralloc.c: Turned off faulty pack for one use.
11222
11223         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11224
11225         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11226
11227 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11228
11229         * support/regression/Makefile: Improved clean
11230
11231         * support/regression/ports/gbz80/spec.mk: Added clean
11232
11233         * support/regression/ports/host/spec.mk: Added clean
11234
11235         * support/regression/ports/z80/spec.mk: Added clean
11236
11237         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11238
11239         * support/regression/ports/mcs51/timeout.c: little improvements
11240
11241 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11242
11243         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11244
11245         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11246
11247         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11248
11249 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11250
11251         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11252
11253         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11254
11255 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11256         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11257
11258         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11259
11260         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11261
11262         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11263
11264         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11265
11266         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11267
11268         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11269
11270         * support/regression/tests/longor.c: Added.
11271
11272 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11273
11274         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11275
11276         * as/mcs51/aslink.h: define PATH_MAX
11277
11278         * as/mcs51/asm.h: define PATH_MAX
11279
11280         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11281
11282         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11283
11284         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11285
11286         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11287
11288         * src/SDCCglobl.h: define PATH_MAX
11289
11290         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11291
11292         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11293
11294 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11295
11296         * src/z80/gen.c (gencjneshort): Fixed
11297
11298         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11299
11300 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11301
11302         * support/regression/tests/bug-469671.c: Added.
11303
11304         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11305
11306 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11307
11308         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11309
11310         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11311
11312 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11313
11314         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11315
11316         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11317
11318         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11319
11320         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11321
11322         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11323
11324         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11325
11326         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11327
11328 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11329
11330         * 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.
11331
11332         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11333
11334         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11335
11336 2001-10-07    <johan AT FRIJA>
11337
11338         * device/lib/gets.c (gets): fixed the return value.
11339
11340 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11341         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11342
11343         * 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.
11344
11345         * 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.
11346
11347         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11348
11349         * src/pic/gen.c: Removed Safe_strdup.
11350
11351         * configure.in: Added option to enable libgc support.
11352
11353         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11354         (bitVectUnion): Optimised.
11355         (bitVectIntersect): Optimised.
11356         (bitVectBitsInCommon): Optimised.
11357         (bitVectCplAnd): Optimised.
11358
11359         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11360
11361 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11362
11363         * src/SDCCmain.c: distinguish between assembler debug and plain options
11364
11365         * src/avr/main.c:   remove standard assembler options
11366
11367         * src/ds390/main.c: remove standard assembler options
11368
11369         * src/mcs51/main.c: remove standard assembler options
11370
11371         * src/port.h: removed "PENDING" comment
11372
11373 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11374
11375         * src/device/lib/_mulint.c  : new, with assember functions
11376
11377         * src/device/lib/_mullong.c : new, with assember functions
11378
11379         * src/device/lib/_divuint.c : with assember functions
11380
11381         * src/device/lib/_divsint.c : with assember functions
11382
11383         * src/device/lib/_divulong.c: with assember functions
11384
11385         * src/device/lib/_divslong.c: with assember functions
11386
11387         * src/device/lib/_moduint.c : with assember functions
11388
11389         * src/device/lib/_modsint.c : with assember functions
11390
11391         * src/device/lib/_modulong.c: with assember functions
11392
11393         * src/device/lib/_modslong.c: with assember functions
11394
11395         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11396
11397         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11398
11399         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11400                                       replaced _mululong.c and _mulslong.c by _mullong.c
11401
11402 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11403
11404         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11405
11406 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11407
11408         * src/SDCCglue.c: test, if win32api is available for MINGW
11409
11410 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11411
11412         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11413         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11414         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11415         * support/regression/ports/host/spec.mk: removed GENERIC
11416         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11417         * support/regression/ports/z80/spec.mk: removed GENERIC
11418
11419 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11420
11421         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11422
11423         * support/regression/tests/bug-467035.c: Created.
11424
11425 2001-10-01    <johan AT FRIJA>
11426
11427         * src/SDCC.y: fixed bug #466586 part 1
11428
11429 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11430
11431         * SDCCicode.c: z80 has no generic pointers
11432         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11433
11434 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11435
11436         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11437
11438 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11439
11440         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11441
11442         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11443
11444 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11445
11446         * configure.in: Fixed up so that ucsim is only configured once.
11447
11448         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11449
11450         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11451         (getPathDifference): As above.
11452
11453         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11454
11455         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11456
11457 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11458         * .version: Updated to 2.3.1
11459
11460         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11461         Added copyright header.
11462
11463         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11464         (assemble): Added support for macro based assembler commands.
11465         (linkEdit): Added support for macro based linker commands.
11466         (preProcess): Changed the pre-processor to use macros.
11467         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11468         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11469
11470         * device/lib/z80/crt0.s: Added module name for debugging.
11471
11472 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11473
11474         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11475
11476         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11477
11478         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11479
11480         * src/Makefile.in: Added SDCCmacro and SDCCutil
11481
11482 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11483
11484         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11485
11486 2001-09-16    <johan AT FRIJA>
11487
11488         * 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.
11489
11490 2001-09-15    <johan AT FRIJA>
11491
11492         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11493         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11494
11495 2001-09-11    <johan AT FRIJA>
11496
11497         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11498
11499 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11500
11501         * support/regression/tests/bug-460444.c: Added test case.
11502
11503         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11504         (genCast): Added justification for all of the asserts.
11505
11506 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11507
11508         * support/regression/support.c: _xdata replaced by xdata
11509
11510         * support/regression/spec.mk: removed _generic
11511
11512 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11513
11514         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11515
11516         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11517         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11518
11519         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11520
11521         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11522
11523         * support/regression/tests/bug-460010.c: Added test case.
11524
11525         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11526
11527 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11528
11529         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11530
11531         * support/regression/testfwk.c: removed workaround for bug #436344
11532
11533         * support/regression/tests/bp.c: use less memory with mcs51
11534
11535         * support/regression/tests/bug-441448.c: use less memory
11536
11537         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11538
11539         * support/regression/collate-results.py: typo
11540
11541 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11542
11543         * support/regression/tests/fetchoverlap.c: Added new test case.
11544
11545         * support/regression/tests/bp.c: Added new test case.
11546
11547         * support/regression/tests/bug-448984.c: Added new test case.
11548
11549         * support/regression/tests/pow2shifts.c: Added new test case.
11550
11551         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11552         (genlshTwo): Fixed right shift for count > 8.
11553
11554         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11555
11556 2001-09-08    <johan AT FRIJA>
11557
11558         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11559
11560 2001-09-07    <johan AT FRIJA>
11561
11562         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11563
11564         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11565
11566 2001-09-06    <johan AT FRIJA>
11567
11568         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11569         * bernhard noted me at this: "() equals to (void)" (1.38)
11570
11571 2001-09-05    <johan AT FRIJA>
11572
11573         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11574
11575 2001-09-04    <johan AT FRIJA>
11576
11577         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11578
11579
11580 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11581
11582         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11583
11584 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11585
11586         * link/z80/aslink.h: Fixed path for PATH_MAX
11587
11588 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11589
11590         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11591
11592         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11593
11594         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11595
11596         * 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.
11597
11598 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11599
11600         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11601         (genCmp): Fixed up genCmp for the GB with longs.
11602
11603         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11604
11605         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11606
11607         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11608
11609         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11610
11611 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11612
11613         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11614
11615 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11616
11617         * 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.
11618
11619         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11620
11621 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11622
11623         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11624
11625         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11626
11627 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11628
11629   * sim/ucsim/configure:    little improvement of Cygwin-detection
11630   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11631   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11632   * support/regression/tests/bug-221100.c: small changes for mcs51
11633   * support/regression/tests/bug-221168.c: small changes for mcs51
11634   * support/regression/tests/bug-227710.c: small changes for mcs51
11635   * support/regression/tests/staticinit.c: small changes for mcs51
11636   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11637   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11638   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11639
11640 $Revision$