* device/include/mcs51/compiler.h: new, added header file to enable
[fw/sdcc] / ChangeLog
1 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * device/include/mcs51/compiler.h: new, added header file to enable
4           creating common sfr definition header files for different compilers
5
6 2006-06-05 Raphael Neider <rneider AT web.de>
7
8         * src/pic16/{pcode.h,genarith.c}:
9           introduced pCodeOp combining any two pCodeOps (previously only
10           two register operands could be combined), removed pcop2 from
11           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
12         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
13         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
14           rewritten to use new PO_TWO_OPS
15         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
16         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
17           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
18           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
19           (pic16_get_op): embraced return arg to allow #define return(x),
20             added new case for combined opcodes
21           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
22           (pic16_pCode2str,pic16_getRegFrompCodeOp,
23            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
24
25 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
26
27         * src/SDCCval.c (checkConstantRange): added
28         * src/SDCCval.h: added checkConstantRange
29         * support/Util/SDCCerr.c,
30         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
31         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
32         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
33         * src/SDCCast.c (decorateType): added checkConstantRange,
34         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
35         can be emitted with the correct always true/false warning,
36         added optimization for double '!';
37         result of decorateType() must be assigned back to the tree, because
38         decorateType() can change the tree
39         * src/SDCCicode.c (geniCodeLogic),
40         (geniCodeAssign): replaced new checkConstantRange, added warnings,
41         (checkConstantRange): removed, it was only a fragment which never
42         emitted a warning
43         * src/SDCCsymt.c (computeType): fixed promotion for
44         "-1 < (unsigned bit) b"
45         * src/pic/ralloc.c (packRegsForAssign),
46         * src/pic16/ralloc.c (packRegsForAssign),
47         * src/hc08/ralloc.c (packRegsForAssign),
48         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
49         from mcs51
50         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
51         * support/regression/tests/constantRange.c: added
52         * support/valdiag/tests/constantRange.c: added
53         * support/valdiag/valdiag.py: added -DPORT_HOST=1
54
55 2006-06-02 Borut Razem <borut.razem AT siol.net>
56
57         * support/regression/ports/pic16/support.c: increase stack size
58           to 255 bytes
59         * support/regression/Makefile.in: sort tests by name so that the
60           resutlts can be compared on different machines / platforms
61
62 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
63
64         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
65         * src/ds390/gen.c (emitLabel): new, added,
66           (genDjnz): fixed stack overflow bug,
67           (throughout): cosmetic changes to sync with mcs51/gen.c,
68           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
69         * src/mcs51/gen.c (genEndFunction): small optimization,
70           (throughout): cosmetic changes to sync with ds390/gen.c
71
72 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
73
74         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
75           (_print_format): fixed printing pointers
76         * src/mcs51/gen.c (emitLabel, movb): new, added,
77           (genAssign): small optimization,
78           (genDjnz): fixed stack overflow bug,
79           (throughout): replaced sprintf with SNPRINTF,
80           replaced mcs51_regWithIdx with REG_WITH_INDEX,
81           replaced emitcode("mov", "b,...") with MOVB(...),
82           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
83           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
84         * src/mcs51/peeph.def: added rules 140 and 264
85         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
86           so they may get optimized into registers
87
88 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
89
90         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
91           immediately when encountered,
92           (printUsage): always use stderr even on windows
93
94 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
95
96         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
97         (processParms): fixed bug #1247551
98         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
99         parseCmdLine, main): print '--version' to stdout,
100         print 'help' to stdout if --help is given,
101         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
102         arguments are given; fixed --help
103
104 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
105
106         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
107         * support/regression/tests/bug-1493710.c: added
108
109 2006-05-27 Borut Razem <borut.razem AT siol.net>
110
111         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
112           static instead auto
113         * support/regression/ports/pic16/support.c: increase stack size
114           from default 64 bytes to 128 bytes
115         * support/regression/tests/staticinit.c,
116           support/regression/tests/float.c: regression tests fully enabled
117           for pic16 port by putting the initialized data arrays into the code
118           section
119         * support/regression/ports/pic16/spec.mk: don't link default libraries.
120           This was changed by mistake in the previous version.
121
122 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
123
124         * src/pic16/gen.c (genFunction, genEndFunction): some
125         beautifications, fixed bug with falsely restoring FSR2 in large
126         stack model, thanks to Beau E. Cox for reporting the bug
127
128 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
129
130         * debugger/mcs51/break.c,
131         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
132           use %p to print pointers, made address variables unsigned
133         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
134         * debugger/mcs51/symtab.c (parseSymbol): must return something
135         * src/mcs51/gen.c (aopForSym): small optimization,
136            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
137           (freeAsmop): added missing break,
138           (aopPut): removed parameter bvolatile, determine it inside the function,
139           (saveRegisters, unsaveRegisters): small optimization,
140           (genIpush): removed pointless check,
141           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
142           replaced sprintf with SNPRINTF,
143           replaced strcpy with strncpyz,
144           updated aopPut calls,
145           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
146         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
147
148 2006-05-24 Borut Razem <borut.razem AT siol.net>
149
150         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
151           modification of test for the pic16 port, put the array to the code
152           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
153
154 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
155
156         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
157         * support/Util/pstdint.h: added
158
159 2006-05-22 Borut Razem <borut.razem AT siol.net>
160
161         * src/regression/Makefile: removed bool2.c test, added -q linker option
162         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
163           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
164           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
165           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
166           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
167           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
168           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
169           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
170           define SUPPORT_BIT_TYPES 0, removed unused bit variables
171
172 2006-05-22 Raphael Neider <rneider AT web.de>
173
174         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
175           bug #1492360 (problematic due to generic pointers, see code)
176
177 2006-05-22 Borut Razem <borut.razem AT siol.net>
178
179         * support/regression/ports/pic16/specs.mk: removed stack size linker
180           directive
181         * support/regression/tests/array.c,
182           support/regression/tests/bitopcse.c,
183           support/regression/tests/bug-908454.c,
184           support/regression/tests/malloc.c: modified for pic16 regression test
185         * support/regression/tests/bitfields.c:
186           pic16 - excluded bitfileds of size > 8
187         * support/regression/tests/bp.c: pic16 - reduced data size
188         * support/regression/tests/bug-221100.c: pic16 - reduced data size
189         * support/regression/tests/bug-460010.c:
190           pic16 - used the absolute address the fits in memory
191         * support/regression/tests/bug-716242.c:
192           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
193         * support/regression/tests/float.c:
194           pic16 - excluded - data size too big
195         * support/regression/tests/onebyte.c:
196           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
197         * support/regression/tests/shifts.c:
198           pic16 - function names probably have to differ in first X characters
199           (gpasm limitation?)
200         * support/regression/tests/staticinit.c:
201           pic16 - excluded some tests due error: no target memory available for
202           section ".idata"
203
204 2006-05-22 Borut Razem <borut.razem AT siol.net>
205
206         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
207           second try. Thanks Stas Sergeev once more.
208
209 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
210
211         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
212           (genLeftShift, genRightShift): fixed bug 1491627
213         * src/hc08/peeph.def (rules 7, 8.x): added
214         * support/regression/tests/shifts.c (ShiftLeftByParam,
215           ShiftRightByParam, testShiftByParam): added to test variable shifting
216
217 2006-05-20 Raphael Neider <rneider AT web.de>
218
219         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
220         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
221           (allocReg): add only new registers to dynAllocRegs,
222           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
223             #1489055, #1445850, and probably #1483693
224
225 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
226
227         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
228         bug in for-loop that didn't emit the last of CONFIG and ID registers
229
230 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
231
232         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
233           with offset
234         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
235           1489016, 1434401 and 1490124
236         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
237           1489016, 1434401 and 1490124
238
239 2006-05-17 Borut Razem <borut.razem AT siol.net>
240
241         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
242           thanks Stas Sergeev
243
244 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
245
246         * device/include/mcs51/P89c51RD2.h,
247         * device/include/mcs51/P89LPC901.h,
248         * device/include/mcs51/P89LPC922.h,
249         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
250
251 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
252
253         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
254         to fix missing stack pragma in compiled binary object file,
255
256 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
257
258         * support/packihx/configure.in,
259         * support/packihx/configure: removed warning, autoconf >= 2.5x can
260         determine sizeof basic types even while cross compiling
261
262 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
263
264         * src/avr/gen.c (aopop),
265         * src/ds390/gen.c (aopOp),
266         * src/hc08/gen.c (aopOp),
267         * src/mcs51/gen.c (aopop),
268         * src/pic16/gen.c (pic16_aopOp),
269         * src/pic/gen.c (aopOp),
270         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
271         if size of operand is smaller than spill location
272
273 2006-05-12 Borut Razem <borut.razem AT siol.net>
274
275         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
276           have to have CR/LF line endings even if they are checked out on *nix
277           or on WIN32 in cygwin binmode
278
279 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
280
281         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
282         * device/include/ds80c390.h: added sfr16 definitions
283         * src/ds390/gen.c,
284         * src/ds390/gen.h,
285         * src/ds390/main.c,
286         * src/ds390/ralloc.c,
287         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
288           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
289           bit returning functions
290         * support/regression/tests/sfr16.c: enabled test on ds390
291
292 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
293
294         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
295         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
296
297 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
298
299         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
300         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
301           (cl_address_space constructor): removed expensive initialization,
302           (cl_address_space::get_cell): extended for late initialization,
303           (cl_address_space::*): use late initialization,
304           (cl_address_decoder::activate): removed expensive initialization,
305           This reduced regression test running time by 25%
306
307 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
308
309         * packihx/,
310         * configure.in,
311         * configure,
312         * sdcc.dsw,
313         * Makefile.bcc,
314         * Makefile.in,
315         * support/packihx/Makefile.in,
316         * support/packihx/clean.mk,
317         * support/packihx/Makefile.bcc,
318         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
319
320 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
321
322         * src/SDCCval.c (valNot): fix for regression test failure
323           of not.c on big endian hosts
324
325 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
326
327         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
328
329 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
330
331         * device/lib/mcs51/Makefile.in: changed string comparison operator
332           to = for POSIX compliance; == is bash extension
333
334 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
335
336         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
337           kosmonaut_pirx
338
339 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
340
341         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
342         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
343         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
344         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
345         bug report #1478657,
346
347 2006-05-05 Borut Razem <borut.razem AT siol.net>
348
349         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
350           making the html
351
352 2006-05-02 Borut Razem <borut.razem AT siol.net>
353
354         * doc/Makefile.in: removed *.ind dependency since there is no rule to
355           create *.ind, which made make to fail if invoked with -j 2
356
357 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
358
359         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
360           Hubert Sack for patch 1479782
361
362 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
363
364         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
365
366 2006-05-01 Raphael Neider <rneider AT web.de>
367
368         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
369           (create_pic): store only prefix-free device name,
370           (init_pic): check for device names with "16" prefix,
371           (list_valid_pics),
372         * src/pic/device.h (struct PIC_device),
373         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
374             stored device name,
375         * device/include/pic/pic12f{635,675,629,683}.h,
376         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
377         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
378         * device/include/pic/pic16f505.h,
379         * device/lib/pic/libdev/pic16f505.c: removed
380         * device/include/pic/pic14devices.txt: added support for pic12f
381             devices, removed unsupported non 16-bit devices
382             [above changes provided by patch from Zik Saleeba]
383         * src/pic/*, src/pic16/*, device/include/pic16/*,
384           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
385
386 2006-05-01 Borut Razem <borut.razem AT siol.net>
387
388         * configure.in, configure, doc/Makefile.in:
389           sync with nightly build makefile - latex, dvipdf and dvips
390           not needed any more
391
392 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
393
394         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
395         in the library source
396
397 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
398
399         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
400
401 2006-04-28 Raphael Neider <rneider AT web.de>
402
403         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
404         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
405           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
406         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
407
408 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
409
410         * device/lib/pic/libdev/Makefile.in,
411         * device/lib/hc08/Makefile.in,
412         * device/lib/gbz80/Makefile.in,
413         * device/lib/z80/Makefile.in,
414         * device/lib/ds390/Makefile.in,
415         * device/lib/ds400/Makefile.in: added srcdir to include search path,
416         thanks to Borut for the bug report
417         * configure.in,
418         * configure: always create doc/Makefile independent from --enable-doc
419         * Makefile.in: always install from directory doc independent from
420         --enable-doc
421         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
422         removed
423         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
424         * doc/Makefile.in: install *.txt if present
425         * device/include/Makefile.in (install): added installation of pic/*.inc
426         and pic/*.txt files again, they were erroneously removed
427
428 2006-04-28 Raphael Neider <rneider AT web.de>
429
430         * src/pic/{gen.c,main.h,pcode.c},
431         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
432             concerning signedness with casts
433
434 2006-04-28 Raphael Neider <rneider AT web.de>
435
436         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
437             definition of an interrupt handler,
438         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
439             interrupt handler stuff from picglue() to separate routine,
440           (picglue): enabled definition of intr handlers in files w/o main()
441
442 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
443
444         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
445           compilation with MSVC 2005 Express Edition (VC8)
446
447 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
448
449         * device/lib/Makefile: fixed build of gbz80 lib
450
451 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
452
453         * support/regression/tests/bug-460010.c,
454         * support/regression/tests/bug-524691.c,
455         * support/regression/tests/bug-716242.c: removed conditional defines
456           that are already in testfwk.h
457
458 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
459
460         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
461           (AccAXRsh1): added, shift right by 1,
462           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
463            AccAXLrl1
464         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
465
466 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
467
468         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
469         remove cast to same type
470         * src/SDCCast.c (decorateType): fix for RFE 1475742,
471         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
472         * as/z80/Makefile,
473         * link/z80/Makefile: removed, they have moved to
474         Makefile.in files
475         * configure,
476         * configure.in: replaced duplicate message about ucsim by missing sdcpp
477         * install-sh: fix bug #1204398 by setting umask 0022
478         * device/lib/Makefile: separate build of z80 and gbz80 lib
479
480 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
481
482         Enabled VPATH feature: changed nearly all Makefiles (149 files).
483         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
484
485         One basic decision: e.g. src/clean.mk includes further files. In order
486         to make this work there are two solutions:
487         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
488           run configure on them. This way they can use
489           'include $(srcdir)/port-clean.mk'
490         - always include clean.mk by the Makefile at the same level. To avoid
491           that `make clean` tries to include and build Makefile.dep the
492           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
493           implemented, because now even `make uninstall` doesn't create
494           Makefile.in. clean.mk could be eliminated by pasting it in
495           Makefile.in.
496
497         * debugger/mcs51/Makefile.in: build own objects from library sources
498         (SLIB, SDCC) in current directory
499
500         * configure, configure.in: renamed --disable-device-lib-build in
501         --disable-device-lib; added --enable-doc, the required tools are
502         searched by configure; added result message; the toolchain for the
503         belonging ports are now only built, if the port is enabled.
504
505         * support/regression/*: all output is written in directory gen, because
506         the fwk and ports directories don't livet in the build tree using vpath
507
508         * doc/sdccman.lyx: renamed --disable-device-lib-build to
509         --disable-device-lib, added --enable-doc, added section VPATH
510
511         * sim/ucsim/configure.in,
512         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
513         z80 are enabled by default
514
515 2006-04-24 Raphael Neider <rneider AT web.de>
516
517         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
518             to config word, "pic14_"-prefixed some extern functions
519           (pic14_emitConfigWord): emit __config directive(s) if assignment to
520             config word has been found
521         * src/pic/device.h: added prototypes
522         * src/pic/pcode.c: added "pic14_"-prefix where needed
523         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
524             fixup
525         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
526             words,
527           (pic14emitRegularMap): ignore config words,
528           (pic14createInterruptVect): moved generating __config directives away
529           (picglue): have __config directives emitted
530
531 2006-04-24 Borut Razem <borut.razem AT siol.net>
532
533         * doc/Makefile: sync with nightly build makefile
534
535 2006-04-24 Raphael Neider <rneider AT web.de>
536
537         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
538             registers that have not been assigned proper liveranges,
539             fixes #1469504 and #1474602,
540           (pCodeRegOptimizeRegUsage): fixed typo in comment
541
542 2006-04-24 Borut Razem <borut.razem AT siol.net>
543
544         * device/examples/main8051.c: deleted - it was removed from CVS
545           24.mar.2000 and after that modified 18.feb.2001, so it reappered
546           after the transition to Subversion
547         * src/SDCCalloc.h: deleted - it was removed  from CVS
548           3.feb.2001 and after that modified 18.feb.2001, so it reappered
549           after the transition to Subversion
550         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
551           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
552           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
553           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
554
555 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
556
557         * as/asx8051.dsp: added mcs51/strcmpi.h
558         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
559         * as/hc08/aslink.h: updated lnksect prototype
560         * as/hc08/asm.h,
561         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
562         * as/hc08/asmain.c,
563         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
564           (newdot): handle A_ABS
565         * as/hc08/asout.c,
566         * as/mcs51/asout.c (outarea): output address
567         * as/hc08/lkaomf51.c,
568         * as/mcs51/lkaomf51.c: disabled unused array UsageType
569         * as/hc08/m08pst.c,
570         * as/mcs51/i51pst.c,
571         * as/z80/z80pst.c: "ABS" is not A_OVR
572         * as/hc08/lkarea.c (newarea): read a_addr,
573           (lnkarea): added codemap array, sort absolute areas to the front,
574            combine all GSINITx/GSFINAL,
575           (find_empty_space, allocate_space): new functions,
576           (lnksect): return next address, handle absolute sections
577         * as/mcs51/lkarea.c (newarea): read a_addr,
578           lnksect2 prototype changed,
579           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
580           (find_empty_space, allocate_space): new, factored out of lnksect2,
581           (lnksect2): return next address, handle absolute sections
582         * as/hc08/lkhead.c,
583         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
584         * as/hc08/lklibr.c (addfile, fndsym),
585         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
586           index out of range and detect both '\' and '/'
587         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
588         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
589           regression tests (ds390 cannot return bool yet)
590         * doc/sdccman.lyx: changed version number, document changed --no-peep,
591           document critical interrupts on z80, document changed SDCC define
592         * src/asm.c (_asxxxx_mapping): fixed .org directive,
593           (_a390_mapping): added .org directive
594         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
595           (genMultOneByte): fixed warnings
596         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
597           ones
598         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
599         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
600           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
601         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
602         * src/pic16/main.c: removed newReg prototype
603         * src/pic16/pcode.c,
604         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
605           warnings
606         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
607           ones
608         * src/pic16/ralloc.c
609         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
610           to fix warnings
611         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
612           from short to PIC_OPTYPE
613         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
614         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
615           optype from short to PIC_OPTYPE
616         * src/port.h: made int_size unsigned to fix warnings
617         * src/SDCC.y: fixed warning on MSVC
618         * src/SDCCicode.c (getArraySizePtr): return unsigned int
619         * src/SDCCopt.c (convertToFcall): fixed warnings
620         * src/SDCCsymt.h: removed double prototype for genSymName
621         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
622           offset int to fix warnings
623
624 2006-04-22 Borut Razem <borut.razem AT siol.net>
625
626         * doc/sdccman.lyx, */Makefile, */Makefile.in:
627           references to CVS replaced with Subversion
628
629 2006-04-21 Borut Razem <borut.razem AT siol.net>
630
631         * doc/sdccman.lyx, */Makefile, */Makefile.in:
632           references to CVS replaced with Subversion
633
634 2006-04-19 Borut Razem <borut.razem AT siol.net>
635
636         * src/version.awk: adapted for svn
637         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
638           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
639           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
640           /binutils-avr/etc/*.vi, *.jin: removed all properties
641           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
642
643 2006-04-19 Borut Razem <borut.razem AT siol.net>
644
645         * CVS to Subversion migration completed
646
647 2006-04-18 Borut Razem <borut.razem AT siol.net>
648
649         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
650           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
651
652 2006-04-17 Borut Razem <borut.razem AT siol.net>
653
654         * device/include/Makefile.in: added pic/*.inc to the installation
655
656 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
657
658         * support/regression/collate-results.py: fixed output in case of
659         a valdiag error
660         * support/regression/generate-cases.py: fixed splitting of pathnames
661         with dots
662         * as/hc08/lklibr.c (addfile),
663         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
664
665 2006-04-11 Raphael Neider <rneider AT web.de>
666
667         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
668         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
669         * src/pic16/pcode.c (assignValnums): fixed #1460578
670
671 2006-04-11 Raphael Neider <rneider AT web.de>
672
673         * device/lib/pic/libdev/*.c,
674         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
675           fixes #1468739, enables compilation in --std-c99 mode
676         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
677
678 2006-04-11 Raphael Neider <rneider AT web.de>
679
680         * src/pic/device.c (find_device): removed debug output
681           (list_valid_pics): enabled verbose listing of supported devices
682         * device/include/stdbool.h: define bool as char for pic14/16 as well
683
684 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
685
686         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
687
688 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
689
690         * .version: bumped version to 2.5.6
691         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
692
693 2006-04-06 Raphael Neider <rneider AT web.de>
694
695         * .version: bumped version to 2.5.6 (pic14 ABI changed)
696         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
697         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
698           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
699             pic14_constructAbsMap
700           (pic14printPublics): declare absolute global symbols as global
701           (pic14createInterruptVect),
702         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
703           (newReg): assume new registers unused, use correct name in
704             hashtable (reg->name instead of name), more debugLog output
705         * src/pic/device.h (PIC_device): added fields for verbose output
706         * src/pic/device.c: moved device definition to pic14devices.txt,
707             added routines for runtime parsing of pic14devices.txt,
708             added support for second config word
709         * src/pic/main.c (_process_pragma): removed #pragma maxram,
710           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
711           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
712           (_pic14_parseOptions): moved pCodeInitRegisters here
713           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
714         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
715           (pCodeInitRegisters): rewrapped comments, perpared new approach to
716             handling the pseudo stack
717         * device/lib/Makefile.in: ignore failures in objects-pic16,
718         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
719         * device/lib/pic/NEWS: document new dependency on picXXX.lib
720         * device/lib/pic/Makefile.subdir,
721         * device/lib/pic16/Makefile.subdir: improved clean rules
722         * device/lib/pic/libdev/: NEW, pic14 device libraries
723         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
724         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
725         * device/include/Makefile.in: create subdir and install pic14 headers
726         * device/include/pic/p16f_common.inc: removed unused declarations
727         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
728             PICs from inc2h.pl v1.6,
729             replaced BIT_AT macros with struct declarations
730         * device/include/pic/pic14devices.txt: definition of supported devices,
731             all above improvements contributed by Zik Saleeba, thanks
732         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
733         * support/scripts/sdcc.nsi: also install pic14 device libraries and
734             headers
735
736 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
737
738         * device/include/mcs51/c8051f410.h: added interrupt numbers,
739         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
740           thanks to Charles Olds
741
742 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
743
744         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
745
746 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
747
748         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
749         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
750         * support/regression/bug1464657.c: added, new test
751
752 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
753
754         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
755           version number
756
757 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
758
759         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
760           --no-peep and --peep-file <file> are used don't use default rules but
761           do use the <file>
762
763 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
764
765         * src/mcs51/gen.c (genCall): fixed bug 1457608
766
767 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
768
769         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
770         changes seem to cause (trigger?) problems with the build system.
771
772 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
773
774         * src/SDCCpeeph.c (operandsLiteral): new, added,
775           (callFuncByName): inserted operandsLiteral
776         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
777
778 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
779
780         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
781         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
782
783 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
784
785         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
786           implemented patch 1120823 Thanks to Willy De la Court (normal
787           interrupts need an interrupt number now if they are made critical),
788           and enabled nesting of critical functions though not for gbz80
789           (genCritical, genEndCritical): added functions
790           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
791         * src/z80/mappings.i: added "ei" to all mappings
792
793 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
794
795         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
796         submitted by the Debian SDCC maintainer Aurelien Jarno:
797         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
798         archive with gcc 4.1 on mips and wrote the patch"
799
800 2006-03-16 Raphael Neider <rneider AT web.de>
801
802         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
803           the left operand is shorter than the result (c* = lit-c* + int),
804           fixes bug #1450796
805         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
806           OP_SYMBOL
807
808 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
809
810         * src/.version: increased version number to 2.5.5
811         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
812         linking is done manually in pic16 port's _linkEdit,
813         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
814         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
815         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
816         allocate asmop as AOP_ACC,
817         (aopForRemat): added parameter 'bool result' in function declaration,
818         (pic16_aopGet): return AOP_ACC when accessing WREG,
819         (pic16_popGetTempReg): minor modification,
820         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
821         'pic16_allocWithIdx',
822         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
823         calling function in absolute addresses,
824         (genAssign): take into account AOP_ACC asmop,
825         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
826         * src/pic16/pcoderegs.c: some debug functions and lines added,
827         * src/pic16/ralloc.c (decodeRegType): added but commented out,
828         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
829         register too,
830         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
831         call to allocReg, not by manually allocating a new one,
832         (pic16_assignRegisters): now before going through the register
833         allocating functions mark all registers as free. This eliminates some
834         side effects resulting from peephole parser done earlier in the backbone
835
836 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
837
838         * src/SDCCicode.c (geniCodeLogic),
839         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
840
841 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
842
843         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
844           (genSend): bugfix, do not allocate and free twice,
845           (shiftRLong): handle partially overlapping aops
846         * support/regression/tests/bitopcse.c: fixed warning redefined idata
847
848 2006-03-08 Borut Razem <borut.razem AT siol.net>
849
850         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
851           for pic16
852
853 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
854
855         * support/regression/tests/bug1409955.c: new, added
856         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
857         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
858           (aopForSym, aopOp): increment asmop.allocated if reused,
859           (freeAsmop): decrement asmop.allocated and check for zero instead of
860           using asmop.freed,
861           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
862           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
863            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
864            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
865            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
866            genSignedRightShift, genRightShift, genDataPointerGet,
867            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
868            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
869             in reverse order from allocation,
870           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
871             added swappedLR to keep track
872         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
873           pdata & code for GCC, z80, gbz80 & hc08
874         * support/regression/tests/zeropad.c: moved defines to testfwk.h
875
876 2006-03-08 Raphael Neider <rneider AT web.de>
877
878         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
879
880 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
881
882         * device/include/mcs51/c8051f410.h: new SiLabs mcu
883         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
884         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
885
886 2006-03-06 Borut Razem <borut.razem AT siol.net>
887
888         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
889           made the linker quiet
890
891 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
892
893         * src/pic16/gen.c (genPcall): fixed bug #1443644
894         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
895         which dumps before the function entry point a data byte which represents
896         the number of the local variables used by the specified function, added
897         'xinst' for initial support for Extended Instruction Support,
898         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
899         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
900         port->fun_prefix anymore (may change later),
901         (genFunction, genEndFunction): do not store/restore local registers for
902         _main (this should take care the --main-return command line option in
903         the future),
904         (genOr): removed some legacy pic-port instructions,
905         * src/pic16/genarith.c (genAddLit): re-enabled old code because
906         performing operations with SFR's causes data to be written more than
907         once to each SFR. Perhaps SFRs should be handled in special cases...
908         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
909         pcode.h
910         * src/pic16/main.c (_process_pragma): stack bound checking did not take
911         into account for stack starting position,
912         (struct OPTIONS pic16_optionsTable): added command line argument
913         --extended or -y for Extended Instruction Support,
914         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
915         (deassignLRs): *** perhaps the most important change, old 'for' code
916         (commented out for reference), didn't account for some registers which
917         were left marked 'not free' after a pointer operation. The change
918         reduces register usage a lot in some cases
919
920 2006-03-04 Borut Razem <borut.razem AT siol.net>
921
922         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
923           _clean
924         * support/regression/tests/bug-524697.c: decreased array size for
925           mcs51 to fit into the internal RAM
926         * support/regression/Makefile.in: a little bit more verbose
927
928 2006-03-03 Borut Razem <borut.razem AT siol.net>
929
930         * support/regression/fwk/lib/testfwk.c,
931           support/regression/fwk/include/testfwk.h: introduced function
932           _prints(), nonrecursive _printn(), call _initEmu() from main()
933         * support/regression/ports/gbz80/support.asm,
934           support/regression/ports/ucz80/support.asm,
935           support/regression/ports/z80/support.asm,
936           support/regression/ports/ds390/support.c,
937           support/regression/ports/hc08/support.c,
938           support/regression/ports/host/support.c,
939           support/regression/ports/mcs51/support.c,
940           support/regression/ports/xa51/support.c: added empty _initEmu()
941           function
942         * support/regression/ports/pic16/gpsim.cmd,
943           support/regression/ports/pic16/spec.mk,
944           support/regression/ports/pic16/support.c,
945           support/regression/Makefile.in: added pic16 regression test
946
947 2006-03-01 Raphael Neider <rneider AT web.de>
948
949         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
950           genConstPointerGet): use safe way of generating MOVFF to cover
951             literals as well as registers, fixes bug #1440527
952         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
953             dereference
954           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
955             more correctly, fixes bug #1232186
956           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
957         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
958             gplink guess the correct processor in more cases, applied patch
959             from Till Riedel attached to and fixing bug #1436552
960
961 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
962
963         * support/regression/tests/array.c: added, contains check for #1434401
964         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
965
966 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
967
968         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
969         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
970         * device/include/mcs51/c8051f326.h,
971         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
972         * device/include/mcs51/c8051f000.h,
973         * device/include/mcs51/c8051f018.h,
974         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
975           PCON_IDLE,PCON_STOP and added sfr16 definitions
976
977 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
978
979         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
980           genGetWord): fixed bug 1409955
981
982 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * device/include/hc08/mc68hc908gp32.h,
985         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
986
987 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
988
989         * src/SDCCast.c (constExprValue): return NULL if not a value
990         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
991         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
992         * support/regression/tests/bitfields.c: enabled signed bitfield for all
993
994 2006-02-13 Borut Razem <borut.razem AT siol.net>
995
996         * src/regression/ptrarg.c: added, fails due to bug #1430967
997         * src/regression/Makefile: ptrarg.c added, ...
998
999 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1000
1001         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1002         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1003
1004 2006-02-11 Borut Razem <borut.razem AT siol.net>
1005
1006         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1007           print "Processor: xxx" message to stdout only if --verbose
1008
1009 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1010
1011         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1012         * support/regression/tests/bug1426356.c: added
1013         * support/regression/tests/bitfields.c: removed 2 tests
1014
1015 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1016
1017         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1018         * device/include/mcs51/c8051f330.h,
1019         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1020           PCON_IDLE,PCON_STOP and added sfr16 definitions
1021         * device/lib/_divsint.c,
1022         * device/lib/_divuint.c,
1023         * device/lib/_divulong.c,
1024         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1025           register bank bug for small stackauto
1026
1027 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1028
1029         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1030
1031 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1032
1033         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1034         * all.dsp: corrected several bin paths
1035         * device/include/mcs51/c8051f120.h,
1036         * device/include/mcs51/c8051f300.h,
1037         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1038           to PCON_IDLE,PCON_STOP
1039         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1040         * device/lib/printf_large.c (output_float): fixed bug 1388703
1041         * support/regression/tests/bug1057979.c: added test for bug 1388703
1042
1043 2006-02-08 Raphael Neider <rneider AT web.de>
1044
1045         * src/pic/pcode.c (pciTRIS): fixed typo,
1046           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1047           (LinkFlow): fixed handling of flows that end in a call,
1048           (ReuseReg): perform safety check earlier
1049         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1050             to work with flows at the beginning of a pBlock,
1051             fixes #1426557 (Symbol not previously defined),
1052           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1053             usage information
1054           (RemoveUnusedRegisters): update register usage info
1055         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1056             created, reuse existing ones instead
1057         * src/pic/gen.c (genPcall): fixed #1424719
1058
1059 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1060
1061         * link/z80/lkmain.c,
1062         * link/z80/lklex.c,
1063         * link/z80/lkdata.c,
1064         * link/z80/aslink.h: fixed build on current cygwin:
1065         replaced getline() by lk_getline()
1066
1067 2006-02-01 Borut Razem <borut.razem AT siol.net>
1068
1069         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1070           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1071           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1072           src/regression/bool1.c, src/regression/bool2.c,
1073           src/regression/bool3.c, src/regression/call1.c,
1074           src/regression/compare.c, src/regression/compare10.c,
1075           src/regression/compare2.c, src/regression/compare3.c,
1076           src/regression/compare4.c, src/regression/compare5.c,
1077           src/regression/compare6.c, src/regression/compare7.c,
1078           src/regression/compare8.c, src/regression/compare9.c,
1079           src/regression/configword.c, src/regression/for.c,
1080           src/regression/inline.c, src/regression/mult1.c,
1081           src/regression/nestfor.c, src/regression/or1.c,
1082           src/regression/pointer1.c, src/regression/ptrfunc.c,
1083           src/regression/rotate1.c, src/regression/rotate2.c,
1084           src/regression/rotate3.c, src/regression/rotate4.c,
1085           src/regression/rotate5.c, src/regression/rotate6.c,
1086           src/regression/rotate7.c, src/regression/string1.c,
1087           src/regression/struct1.c, src/regression/sub.c,
1088           src/regression/sub2.c, src/regression/switch1.c,
1089           src/regression/while.c, src/regression/xor.c,
1090           src/regression/create_stc, src/regression/simulate,
1091           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1092           regression tests
1093         * src/regression/gpsim_assert.h: added
1094
1095 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1096
1097         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1098         ((void (code *) (void)) 0) ();
1099         * as/hc08/aslex.c,
1100         * as/hc08/aslink.h,
1101         * as/hc08/asm.h,
1102         * as/hc08/asmain.c,
1103         * as/hc08/lkdata.c,
1104         * as/hc08/lklex.c,
1105         * as/hc08/lkmain.c,
1106         * as/mcs51/aslex.c,
1107         * as/mcs51/aslink.h,
1108         * as/mcs51/asm.h,
1109         * as/mcs51/asmain.c,
1110         * as/mcs51/lkdata.c,
1111         * as/mcs51/lklex.c,
1112         * as/mcs51/lkmain.c,
1113         * as/z80/aslex.c,
1114         * as/z80/asm.h,
1115         * as/z80/asmain.c: fixed build on current cygwin:
1116         replaced getline() by as_getline()
1117
1118 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1119
1120         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1121         declarator in the symbol chain
1122         * src/SDCCsymt.h,
1123         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1124         parameter list for function pointers
1125         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1126         * support/regression/tests/bug-716242.c: added
1127
1128 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1129
1130         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1131         offset if possible
1132         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1133
1134 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1135
1136         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1137         inifinitely recurseable, added static
1138         * support/regression/tests/bug-1408066.c: added
1139
1140 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1141
1142         * src/SDCCicode.h,
1143         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1144         renamed, added possibility to create "postLoopLbl"-labels
1145         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1146         newiTempLoopHeaderLabel
1147         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1148         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1149         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1150         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1151         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1152         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1153         (basicInduction): fixed bug #136564, made static,
1154         (loopInduction): changed parameter of basicInduction, made static,
1155         (addPostLoopBlock): added
1156         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1157         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1158         findLoopEndSeq
1159         * support/regression/tests/bug-136564.c: added
1160         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1161         --std-sdcc99 to LIBSDCCFLAGS
1162
1163 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1164
1165         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1166         while loop
1167         * support/regression/tests/bug-1406131.c: added
1168
1169 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1170
1171         * src/SDCCast.c (decorateType): fix promotion of unary minus
1172         * src/SDCCsymt.c (computeType): beautified
1173         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1174         (valUnaryPM, valComplement): fix sign and promotion,
1175         (valNot): ANSI: result type is int (SDCC: unsigned char)
1176         * support/regression/tests/uminus.c: speedup by removing superflous
1177         test case 'int'
1178         * support/regression/tests/onebyte.c: added promotion and signedness
1179         tests for unary minus
1180         * support/regressions/tests/bug-477927.c: disable warning about
1181         uninitialized variables
1182         * support/regression/tests/not.c: added
1183
1184 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1185
1186         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1187         * src/mcs51/gen.c (gen51Code): show final register usage after
1188         fillGaps in asm with --i-code-in-asm
1189         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1190         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1191         incUsed, rliveClear, adjustIChain): made static,
1192         (setFromRange): excluded because it's unused,
1193         (findPrevUseSym, markWholeLoop): added,
1194         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1195         through all branches of predecessors enables sdcc to emit the warning
1196         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1197         (rlivePoint): made static, added parameter emitWarnings which is only
1198         true during the first run out of two,
1199         (findRecursiveSucc, findRecursivePred): removed,
1200         (computeLiveRanges): made static, added parameter emitWarnings,
1201         (dumpIcRlive): added for debugging only
1202         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1203         removed prototype of setFromRange()
1204         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1205         in call of computeLiveRanges()
1206         * support/regression/tests/bug-895992.c: added
1207         * support/regression/tests/bug-971834.c: added
1208         * support/valdiag/tests/bug-895992.c: added
1209         * support/valdiag/tests/bug-971834.c: added
1210
1211 2005-12-18 Raphael Neider <rneider AT web.de>
1212
1213         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1214           (genUnpackBits): improved code for direct operands,
1215           (genPackBits): improved code for literal assignment to bitfields
1216             and for direct destination operands (no FSR indirection),
1217             prevented redundant AND, fixes #1362800,
1218           (AccLsh): added parameter to disable masking of the result
1219         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1220           skip instructions with side-effects (like incfsz),
1221           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1222         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1223         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1224           fixes #1375263
1225
1226 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1227
1228         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1229         volatile variables as spill location
1230
1231 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1232
1233         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1234         replacing literals
1235         * support/regression/tests/bug-1376320.c: added
1236
1237 2005-12-08 Raphael Neider <rneider AT web.de>
1238
1239         * src/pic/device.c: renamed is_shared to pic14_is_shared
1240         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1241         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1242           (is_valid_identifier): added for above workaround
1243
1244 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1245
1246         * device/lib/Makefile.in: fixed to enable port-specific-objects
1247         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1248           char, thanks Hubert Sack
1249         * doc/sdccman.lyx: documented --xstack-loc,
1250           elaborated a bit more on interrupts and pitfalls,
1251           removed "setjmp/longjmp unsupported",
1252           documented some unsupported C99 features
1253         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1254         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1255           if, thanks Hubert Sack
1256         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1257         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1258           make make_library
1259         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1260           regression tests can report resource usage (rfe 700441)
1261         * support/regression/collate-results.py: report resource usage
1262         * support/regression/ports/ds390/spec.mk,
1263         * support/regression/ports/hc08/spec.mk,
1264         * support/regression/ports/mcs51/spec.mk,
1265         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1266         * support/regression/ports/ds390/uCsim.cmd,
1267         * support/regression/ports/hc08/uCsim.cmd,
1268         * support/regression/ports/mcs51/uCsim.cmd,
1269         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1270         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1271           library, use the default one
1272         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1273           building the library
1274
1275 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1276
1277         * config.dsp: added dependency on .version and configure_vc.awk
1278         * device/include/setjmp.h: updated for --stack-auto and --xstack
1279         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1280         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1281         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1282         * device/lib/libsdcc.lib: added _setjmp
1283         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1284           (decorateType): fixed bug 1372851,
1285           (optimizeGetHbit): fixed warning
1286         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1287           array initialisation
1288         * support/regression/tests/bug1057979.c: added test for bug 1358192
1289         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1290
1291 2005-12-03 Borut Razem <borut.razem AT siol.net>
1292
1293         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1294           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1295
1296 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1297
1298         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1299         createIval): implement symbol independant "flexible array member",
1300         (createIvalCharPtr): implemented flexible array initialisation with a
1301         string
1302         * src/SDCCsymt.c (copyStruct): removed,
1303         (getSize): fixed misleading comment,
1304         (getAllocSize): removed, the additional allocation size is now in
1305         sym->flexArrayLength,
1306         (checkStructFlexArray): new, syntax checks for flexible array members,
1307         (compStructSize): added syntax checks for "flexible array members"
1308         (copyStruct): removed,
1309         (copyLinkChain): removed inefficient fix for bug 770487
1310         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1311         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1312         symbol->flexArrayLength
1313         * src/SDCCerr.c,
1314         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1315         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1316         * support/regression/tests/structflexarray.c: added
1317         * support/valdiag/tests/structflexiblearray.c: added
1318
1319 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1320
1321         * src/SDCCast.c (decorateType): fixed bug 1368489
1322         * support/Util/SDCCerr.c,
1323         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1324
1325 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1326
1327         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1328           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1329
1330 2005-11-27 Borut Razem <borut.razem AT siol.net>
1331
1332         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1333           support/cpp2/mkdeps.h: added command line option
1334           -obj-ext=<extension> to SDCPP to define object file externion, used
1335           for generation of make dependencies (-M)
1336         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1337
1338 2005-11-26 Borut Razem <borut.razem AT siol.net>
1339
1340         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1341           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1342           added pic and pic16 libraries
1343
1344 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1345
1346         * device/include/float.h: Corrected typo in prototype of __fsgt
1347
1348 2005-11-25 Borut Razem <borut.razem AT siol.net>
1349
1350         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1351           added creation of model-mcs51-stack-auto libraries
1352
1353 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1354
1355         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1356         and fields-list too
1357         * src/SDCCast.c (createIvalArray): removed obsolete comment
1358
1359 2005-11-24 Borut Razem <borut.razem AT siol.net>
1360
1361         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1362           added missing device/lib/mcs51/crt*.asm sources
1363
1364 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1365
1366         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1367
1368 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1369
1370         * device/lib/_fs2schar.c,
1371         * device/lib/_fs2sint.c,
1372         * device/lib/_fs2slong.c: optimized inline asm
1373
1374 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1375
1376         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1377           Better handling of floats between -1.0 and 0.0.
1378
1379 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1380
1381         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1382           (the missing "if"s prohibited removal of redundant labels)
1383
1384 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1385
1386         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1387           Properly convert floats between -1.0 and 0.0 to long, int, and char
1388           types (max integer value of negative floats tends to zero).
1389         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1390           Removed changes made so to work properly with floats between
1391           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1392           and _fs2char.c
1393
1394 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1395
1396         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1397         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1398         (genCast) cosmetic change
1399         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1400         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1401         from mcs51
1402         * support/regression/tests/bitfields (testSignedBitfields): added
1403
1404 2005-11-18 Borut Razem <borut.razem AT siol.net>
1405
1406         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1407         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1408           introduced SILENT option to make building of pic16 libraries less
1409
1410 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1411
1412         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1413           Now they work properly with floats between -1.0 and 0.0
1414         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1415
1416 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1417
1418         * src/SDCCicode.c (printOperand): added missing else
1419
1420 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1421
1422         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1423         reformatted for better readability
1424         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1425         signed bitfields
1426
1427 2005-11-17 Borut Razem <borut.razem AT siol.net>
1428
1429         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1430           introduced SILENT option to make building of pic16 libraries less
1431           verbose - used for nightly snapshot build
1432         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1433           available on Win32 platforms.
1434         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1435           medium, large, pic and pic16
1436
1437 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1438
1439         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1440           printf("%f"...) sets fraction to zero.
1441
1442 2005-11-16 Raphael Neider <rneider AT web.de>
1443
1444         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1445           fixes #1357221
1446         * src/pic/gen.c (genIfx): implemented for CARRY bit
1447         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1448           to generic pointers, fixes #1357332,
1449           (pic16_movLit2f): NEW,
1450           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1451
1452 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1453
1454         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1455
1456 2005-11-11 Raphael Neider <rneider AT web.de>
1457
1458         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1459         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1460           compute pointer's type from operand,
1461           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1462           improved single bit reads, fixes bug #1353379
1463
1464 2005-11-09 Borut Razem <borut.razem AT siol.net>
1465
1466         * support/scripts/sdcc.nsi: added lib/pic to the package
1467
1468 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1469
1470         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1471
1472 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1473
1474         * support/regression/tests/bug1348008.c: added
1475         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1476         * support/regression/tests/bug1337835.c: updated comment
1477
1478 2005-11-06 Borut Razem <borut.razem AT siol.net>
1479
1480         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1481           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1482           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1483           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1484           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1485           dynamic construction of cl_error_class and derivates - 2.nd try
1486
1487 2005-11-05 Borut Razem <borut.razem AT siol.net>
1488
1489         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1490           bug, which caused Bus Errors on sparc solaris
1491
1492 2005-11-04 Borut Razem <borut.razem AT siol.net>
1493
1494         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1495           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1496           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1497           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1498           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1499           and derivates to resolve the initialization problem on OSX
1500
1501 2005-11-02 Borut Razem <borut.razem AT siol.net>
1502
1503         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1504           corrected typo - #include <winsock2.h>
1505
1506 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1507
1508         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1509           (_asxxxx_mapping): added org directive for future enhancements
1510
1511 2005-11-01 Borut Razem <borut.razem AT siol.net>
1512
1513         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1514           enabled sockets on WIN32
1515         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1516
1517 2005-10-31 Borut Razem <borut.razem AT siol.net>
1518
1519         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1520           WIN32 backslash path delimiters should be escaped when used in C strings
1521         * support/regression/tests/bitfields.c: exclude failing assertions for
1522           __CYGWIN32__ and __MINGW32__ hosts
1523
1524 2005-10-30 Borut Razem <borut.razem AT siol.net>
1525
1526         * src/SDCCutil.c: corrected double comparison typo
1527
1528 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1529
1530         * device/lib/medium/Makefile: added for new memory model medium
1531         * device/include/asm/mcs51/features.h: updated for medium/pdata
1532         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1533           added Multiply & Accumulate sbit's and MAC0_PAGE define
1534         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1535         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1536         * device/lib/_mullong.c: update for medium model
1537         * device/lib/incl.mk: added medium model
1538         * doc/sdccman.lyx: documented medium model
1539         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1540         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1541         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1542         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1543           (allocParms): set SCLS and OCLS to pdata for medium model
1544         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1545           for pdata,
1546           (powof2): return <0 if not power of 2
1547         * src/avr/gen.c (genBitWise): use updated powof2
1548         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1549           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1550           (shiftLLeftOrResult): use B if necessary
1551         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1552         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1553         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1554         * support/regression/Makefile.in: added test-mcs51-medium
1555         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1556
1557 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1558
1559         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1560         specifier unsigned
1561         * device/lib/time.c (mktime): fixed bug 1334315
1562
1563 2005-10-28 Raphael Neider <rneider AT web.de>
1564
1565         * device/include/pic/p16f_common.inc: added common declarations
1566         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1567
1568 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1569
1570         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1571           (aopPutUsesAcc): added to predict accumulator use,
1572           (assignResultValue): save acc if necessary,
1573           (genMinusDec): store result if indirectly addressed,
1574           (genDivOneByte):  save acc if necessary,
1575           (movLeft2Result): bugfix if left already in acc,
1576           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1577             attention to accumulator use (esp. pdata),
1578           (genReceive): receive pdata correctly
1579         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1580         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1581
1582 2005-10-27 Raphael Neider <rneider AT web.de>
1583
1584         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1585
1586 2005-10-27 Raphael Neider <rneider AT web.de>
1587
1588         * .version: changed version to 2.5.4
1589         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1590         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1591           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1592             arithmetics support routines
1593         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1594         * device/lib/Makefile.in: also create installdir for pic
1595
1596         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1597           pic14 port as well
1598         * src/pic/device.c (dump_sfr): rewritten to delegate register
1599           placement to the linker (use `extern sym' rather than sym EQU addr),
1600           (validAddress): fixed to check last specified address
1601         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1602           (popGetLit): truncate literal value to 8 bit,
1603           (popGet): moved assert to more appropriate place
1604           (popGetExternal): create pCode operand from and mark the according
1605             symbol as being `extern'
1606           (popGetAddr): added sanity check on immediate's offset, provide
1607             GPOINTER tag on demand
1608           (aopPut): fixed for immediates,
1609           (mov2w_op): move operand's address or contents to WREG (depending on
1610             operand type), safer variant of mov2w,
1611           (movwf,call_libraryfunc): NEW, handy abbreviations,
1612           (get_argument_pcop,get_return_val_pcop,pass_argument,
1613           get_returnvalue): interface for accessing function parameters and
1614             return values,
1615           (assignResultValuei,genRet): use new parameter/return value interface
1616           (pic14_getDataSize): back to old version handling generic pointers,
1617           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1618             provided implementation and/or fixed old one,
1619           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1620             calls, removed legacy 8051 reference code
1621           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1622           (loadSignToC): NEW, move the operands sign bit to CARRY,
1623           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1624             genRightShiftSigned, accepts negative shift counts,
1625           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1626           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1627             generic pointers, __data pointers and __code pointers,
1628           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1629             and signed bitfields, limit bitfields to 8 bit,
1630           (genDataPointerGet): fixed number of bytes read,
1631           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1632           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1633             pointers to constant data are no longer assumed to point to __code
1634             space, removed invalid pointer types,
1635           (bitpatternFromVal): retrieve the PICs representation of an integer
1636             or float literal,
1637           (genDataPointerSet): fixed assigning to po_immediate operands,
1638           (genGenPointerSet): implemented as library call,
1639           (genIfx): fixed incorrect condition,
1640           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1641             provide GPOINTER tag according to destination's storage class,
1642           (genCast): added code to handle casting to generic pointers, added
1643             sign-/zero extension of the result
1644           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1645         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1646         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1647           extend the result
1648         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1649           address/register resides in the shared banks
1650           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1651             put all variables into separate sections (have the linker arrange
1652             them)
1653           (picglue): put init code and interrupt handlers in separate sections
1654         * src/pic/main.c: added port specific options table, modified to PORT
1655           structure to make GPOINTERs 3 byte, added pic14_options
1656           (_pic14_do_link): private linking routine (update paths to libraries,
1657             add libsdcc.lib by default)
1658         * src/pic/main.h: declare pic14_options
1659         * src/pic/pcode.c: fixed instructions i/o relations,
1660           (RegCond): reverted to correct version,
1661           (newpCodeOpLit): truncate literals to 8 bit,
1662           (genericPrint): added debug output,
1663           (getRegFromInstruction): fixed for various operand types, simplified
1664           (BuildFlow): fixed broken handling of isntructions with labels
1665           (LinkFlow): start at last instruction in flow (skip trailing comments),
1666             pass the flow on to the next instruction after CALL
1667           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1668           (insertPCodeInstruction): fixed inserting after a skip instruction,
1669           (DoBankSelect): fixed for labeled instructions
1670           (OptimizepBlock): honor --nopeep switch
1671           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1672         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1673         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1674           (pCodeOptime2pCodes): allow disabling this optimization via
1675             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1676             but is still buggy), started implementation of a dataflow based
1677             pCode optimization (CSE + dead code elimination)
1678           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1679         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1680           names are independant of the stack location and therefore portable across
1681           devices
1682
1683 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1684
1685         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1686           (selectSpil): fixed bug 1337835 by not spilling bit variables
1687         * support/regression/tests/bug1337835.c: added test for this bug
1688         * src/mcs51/peeph.def: restart after rule 3.c,
1689           addded rules 263.x to optimize loading constants
1690
1691 2005-10-26 Raphael Neider <rneider AT web.de>
1692
1693         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1694         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1695           (genAssign): emit warning when casting literals to generic pointer
1696             type, also applies when taking the address of a fixed variable,
1697           (genCast): improved casting to generic pointers
1698         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1699           extern variables, added verbose error message
1700         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1701
1702 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1703
1704         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1705         carry must be complemented too
1706         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1707         could be emitted by genMinus
1708         * src/SDCCval.c (constVal): fixed bug 1305065
1709
1710 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1711
1712         * src/SDCCast.c (addCast): added promotion for bit variables
1713         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1714         promotion casts + optimisation
1715         (optimizeGetWord): fix warning 'i' might be used uninitialized
1716         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1717         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1718
1719 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1720
1721         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1722         all chars are promoted to int; promotion should be handled in SDCCast.c
1723
1724 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1725
1726         * device/lib/_strcmp.c: Fixed bug 1326457
1727
1728 2005-10-11 Raphael Neider <rneider AT web.de>
1729
1730         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1731         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1732
1733 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1734
1735         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1736         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1737
1738 2005-10-04 Raphael Neider <rneider AT web.de>
1739
1740         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1741           device/lib/pic16/pics.all: added pic18f1320
1742         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1743
1744 2005-09-30 Raphael Neider <rneider AT web.de>
1745
1746         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1747         * src/pic16/devices.inc: NEW, provides device descriptions
1748         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1749
1750 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1751
1752         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1753           GETHBIT
1754
1755 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1756
1757         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1758           documented Any Order Bit, Higher Order Byte and Higher Order Word
1759         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1760         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1761           (optimizeGetAbit): new, to get any bit, not only the high bit,
1762           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1763           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1764           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1765           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1766             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1767             GETABIT, GETBYTE, GETWORD: decorate them,
1768           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1769           (ast_print): added GETABIT, GETBYTE, GETWORD
1770         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1771         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1772           (geniCodeBinary): new generic binary icode,
1773           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1774         * src/port.h: updated comment for PORT.hasExtBitOp
1775         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1776           (genGetByte): new, to get a single byte,
1777           (genGetWord): new, to get a word from a long,
1778           (gen51Code): added GETABIT, GETBYTE, GETWORD
1779         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1780
1781 2005-09-23 Raphael Neider <rneider AT web.de>
1782
1783         * configure.in, configure: have device/lib/pic configured
1784         * device/lib/Makefile.in: added model-pic14
1785         * device/lib/clean.mk: added pic/ to clean rule
1786         * device/lib/pic: added rudimentary pic14 library providing support
1787           functions for multiplication/division/generic pointer access
1788         * src/SDCCopt.c (convilong): mark support functions as extern
1789           for pic14 port as well
1790         * src/pic/gen.c (genMult): added assertions,
1791           (genpic14Code): emit warning on unhandled iCodes
1792         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1793         * src/pic/pcode.c (pCodeOpCopy),
1794         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1795           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1796           SFR_REGISTER}), made safe for future extensions
1797         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1798           instructions even if preceeded by SKIP instructions (also remove
1799           them); removed unused code
1800         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1801           prevents leaving parts of the structure uninitialized after copying
1802
1803 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1804
1805         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1806           ago by me
1807         * support/regression/tests/addsub.c: added test for the bug
1808
1809 2005-09-21 Raphael Neider <rneider AT web.de>
1810
1811         * device/include/pic16/pic18f1220.h,
1812           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1813         * device/lib/pic16/Makefile.rules: added missing opening paren
1814         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1815           are provided in genutils.c,
1816           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1817           operand/result sizes,
1818           (genCmp): assert on NULL pointers first, then check deref'ed values
1819         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1820           result size
1821
1822 2005-09-18 Raphael Neider <rneider AT web.de>
1823
1824         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1825           as these are now unused,
1826           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1827         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1828           local, avoids uninitialized pointer dereference on r->name
1829         * src/pic16/ralloc.c (newReg): fixed indentation
1830
1831 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1832
1833         * src/SDCCval.c (constVal): fixed bug 730366
1834         * support/Util/SDCCerr.c,
1835         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1836
1837 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1838
1839         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1840
1841 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1842
1843         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1844
1845 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1846
1847         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1848           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1849         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1850           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1851         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1852         * packihx/packihx.c (hexDigit): made c unsigned char
1853         * as/mcs51/lklibr.c (fndsym),
1854         * link/z80/lkgb.c (gb),
1855         * link/z80/lklibr.c (fndsym),
1856         * link/z80/lkrloc.c (relr),
1857         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1858         * src/SDCC.lex (checkCurrFile, process_pragma),
1859         * src/SDCCglue.c (spacesToUnderscores),
1860         * src/SDCCmain.c (setParseWithComma, processFile),
1861         * src/asm.c (tvsprintf, printCLine),
1862         * src/avr/gen.c (emitcode, aopPut),
1863         * src/ds390/gen.c (emitcode),
1864         * src/hc08/gen.c (emitcode, emitinline),
1865         * src/mcs51/gen.c (emitcode, genInline),
1866         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1867           tokenizeLineNode),
1868         * src/pic/ralloc.c (debugLog),
1869         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1870           tokenizeLineNode),
1871         * src/pic16/ralloc.c (debugLog),
1872         * src/z80/main.c (_process_pragma):
1873            made all ctype.h function calls safe
1874         * src/SDCCopt.c: include math.h for fabs
1875         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1876           and used them throughout the code to make ctype.h function calls safe
1877         * src/ds390/main.c (asmLineNodeFromLineNode),
1878         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1879         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1880            unsigned char*
1881         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1882           (newpCodeAsmDir): made ctype.h function calls safe
1883         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1884           pic16_emitcode):  made lbp unsigned char*
1885         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1886           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1887         * src/xa51/gen.c (emitcode),
1888         * src/z80/gen.c (_emit2): made lbp unsigned char*
1889         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1890            char*
1891
1892 2005-09-05 Raphael Neider <rneider AT web.de>
1893
1894         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1895           access bank splitpoint
1896
1897 2005-09-05 Raphael Neider <rneider AT web.de>
1898
1899         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1900
1901 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1902
1903         * .version: changed to version 2.5.3
1904         * doc/sdccman.lyx: changed version to 2.5.3,
1905           documented --codeseg and --constseg and pragma codeseg and constseg,
1906           documented bit parameters (reentrant) and bit returning
1907         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1908            currFunc->recvSize, but is this ok for all ports?
1909           (ast2iCode): result of ~ on unsigned char must be cast to int for
1910            bool to work
1911         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1912           function pointers in bit space
1913         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1914           (processFuncArgs): call port.reg_parm() with reentrancy info
1915         * src/port.h,
1916         * src/avr/main.c,
1917         * src/ds390/main.c,
1918         * src/hc08/main.c,
1919         * src/pic/main.c,
1920         * src/pic16/main.c,
1921         * src/xa51/main.c,
1922         * src/z80/main.c: port.reg_parm prototype extended with
1923           "bool reentrant" parameter
1924         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1925           options.stackAuto for allocating bit register parameters
1926         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1927           (genSend): set BitBankUsed if it is,
1928           (selectRegBank): factored out of genCall for use in genPcall,
1929           (genCall): removed redundant dtype assignmen, use selectRegBank,
1930           (genPcall): handle returning in Carry properly, save in F0 if needed,
1931           (genReceive): handle bit register parameters
1932         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1933           (mcs51_assignRegisters): enable bit registers for all reentrant
1934            functions and don't set BitBankUsed unconditionally
1935         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1936         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1937         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1938
1939 2005-08-27 Borut Razem <borut.razem AT siol.net>
1940
1941         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1942         ppc-osx (Darwin) does not support -u option. It seems that it is
1943         supported only on Linux - GNU cp
1944
1945 2005-08-25 Borut Razem <borut.razem AT siol.net>
1946
1947         * sim/ucsim/gui.src/serio.src/Makefile.in,
1948           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1949           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1950           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1951           install and strip, since the strip at /usr/ccs/bin should be used
1952           on solaris
1953
1954 2005-08-24 Borut Razem <borut.razem AT siol.net>
1955
1956         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1957
1958 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1959
1960         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1961         ffffffffu
1962
1963 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1964
1965         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1966         * as/mcs51/lkmain.c (link_main): fixed warning
1967         * device/include/stdbool.h: ds390 has no advanced bit support yet
1968         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1969         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1970         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1971           and updated their macros
1972         * src/SDCCval.c (constVal): updated comment for renamed b_long
1973
1974 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
1975
1976         * as/mcs51/asdata.c: changed ctype['['] to BINOP
1977         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
1978           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
1979           (oprio): set priority for '['
1980         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
1981            and adb_24_bit
1982         * as/mcs51/asm.h: added defines R_BIT and S_BIT
1983         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
1984         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
1985         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
1986           added overlayable BIT_BANK area
1987         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
1988           (summary2): explain 'T' in legenda
1989         * as/mcs51/lkrloc.c: replaced old K&R style,
1990           (relr): added R_BIT processing,
1991           (errmsg): added "Bit-addressable relocation error",
1992           (adb_bit): added for converting from byte- to bit-addressable space,
1993           (adb_24_bit): added for converting from byte- to bit-addressable space
1994         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
1995            used in reentrant functions now even as return value
1996         * device/lib/_gptrput.c (_gptrput): removed obsolete code
1997         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
1998           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
1999         * src/SDCCglobl.h: added indicator BitBankUsed
2000         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2001            the bit registers b0-b7
2002         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2003           (geniCodeCast): fixed bug 1263853,
2004           (geniCodeLogicAndOr): put result in bool or char,
2005           (geniCodeReceive): added parameter func for accessing the return type,
2006           (geniCodeFunctionBody): pass func to geniCodeReceive
2007         * src/SDCCmain.c: added indicator BitBankUsed
2008         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2009         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2010           (checkSClass): don't put automatic bool/bit on stack,
2011           (checkFunction): removed check on function cannot return bit
2012         * src/SDCCsymt.h: added newBoolLink prototype
2013         * src/mcs51/gen.c (rb1regs): added bit registers,
2014           (movc): created for assigning to carry,
2015           (pushReg, popReg): created for pushing registers,
2016           (sameRegs): check both AOP_REG and AOP_CRY types,
2017           (aopOp): handle bit registers,
2018           (aopPut): optimization no self-assign,
2019           (saveRegisters): push reg->base (bits) only once for bit registers,
2020            and use pushReg,
2021           (unsaveRegisters): pop reg->base only once and use popReg,
2022           (assignResultValue): added parameter func and return in carry for bits,
2023           (genIpush): optimization no reload in A if not changed,
2024           (genSend): bit parameters in reentrant functions are passed in bit
2025            registers by first assigning to bits in B, then save registers and
2026            copy B to bits,
2027           (genCall): handle returning in Carry properly, save it in F0 if needed,
2028           (genPcall): updated assignResultValue call, this is not safe yet for bit
2029            returning function !!!
2030           (genFunction): don't generate equ's for bit registers and use pushReg,
2031           (genEndFunction): take care of bit returning functions and use popReg,
2032           (genRet): return bit in Carry,
2033           (genIfx): optimize bit registers and other directly addressable bits,
2034           (genReceive): updated assignResultValue call
2035         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2036           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2037            registers when using stack-auto
2038         * src/mcs51/ralloc.c (_G): added allBitregs,
2039           (regs8051): added the bit registers,
2040           (createStackSpil): use macro IS_BIT,
2041           (getRegBit): added to allocate a bit register, else spill,
2042           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2043           (updateRegUsage): factored out to ease stepping while debugging,
2044           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2045            also allocate bit registers,
2046           (fillGaps): handle bit registers,
2047           (findAllBitregs): added to create bit vector with all bit registers,
2048           (mcs51_allBitregs): returns this bit vector,
2049           (mcs51_assignRegisters): when using stack-auto use bit registers for
2050            passing parameters and creating local variables
2051         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2052
2053 2005-08-22 Borut Razem <borut.razem AT siol.net>
2054
2055         * device/lib/Makefile.in: replaced find option -or with -o
2056           to make it run on solaris
2057
2058 2005-08-22 Raphael Neider <rneider AT web.de>
2059
2060         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2061           fixes #1265442 (crash on Solaris)
2062
2063 2005-08-20 Borut Razem <borut.razem AT siol.net>
2064
2065         * configure, configure.in: added tests for libsocket and libnsl libraries,
2066           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2067           from support/regression/Makefile.in
2068         * support/regression/Makefile.in: added
2069         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2070         * sim/ucsim/libtool: regenerated on sparc-solaris
2071         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2072           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2073           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2074           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2075           sparc-solaris, which doesn't use GNU ld linker
2076         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2077         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2078
2079 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2080
2081         * src/mcs51/peeph.def: updated comments
2082
2083 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2084
2085         * device/lib/_gptrget.c,
2086         * device/lib/_gptrput.c: slightly shorter
2087         * doc/sdccman.lyx: incremented version
2088         * src/mcs51/peeph.def: moved peephole comments to the line of first
2089           change to better keep line correlation, reanimated 186.e
2090         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2091
2092 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2093
2094         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2095           David Saxton with quotes around file name.
2096
2097 2005-08-15 Borut Razem <borut.razem AT siol.net>
2098
2099         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2100           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2101           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2102           make tests run on x86_64 platform
2103
2104 2005-08-13 Raphael Neider <rneider AT web.de>
2105
2106         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2107           as it might be executed DURING a build (parallel make is wonderful)
2108
2109 2005-08-13 Raphael Neider <rneider AT web.de>
2110
2111         * device/lib/Makefile.in (port-specific-objects-pic16):
2112           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2113         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2114           dependency
2115         * device/lib/pic16/Makefile.rules: build subdirs before creating
2116           the library, removed builddir rule, create $(builddir) early in
2117           recurse rule, use empty recurse rule for leaf directories
2118         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2119           mkdir errors (race condition), removed duplicate suffix "hex"
2120           from clean rules
2121         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2122         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2123           prevents mkdir -p from aborting on Alpha
2124
2125 2005-08-12 Raphael Neider <rneider AT web.de>
2126
2127         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2128           db-statements in order to allow for arrays of pointers in code
2129           sections to be placed without interspersed 0-padding, fixes
2130           bug #1256215
2131         * (emitStatistics): fixed division by zero for pic18f1220
2132         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2133           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2134         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2135         * (pic16_pCodeConstString): keep track of already emitted string
2136           literals to prevent "duplicate definitions of symbol _str_NR"
2137         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2138           debug message
2139         * device/lib/Makefile.in: ignore failing PIC16 library builds
2140         * device/lib/pic16/Makefile: do not build if gputils are missing
2141         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2142
2143 2005-08-10 Raphael Neider <rneider AT web.de>
2144
2145         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2146           my last commit)
2147
2148 2005-08-10 Raphael Neider <rneider AT web.de>
2149
2150         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2151           Rokas' patch to add the new fixed point type "__fixed16x16"
2152         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2153           functions for __fixed16x16 arithmetics
2154         * device/lib/pic16: reimplemented the build system to support
2155           a separate build directory, better handling of libio (create
2156           the library in a separate subdir for each architecture) and
2157           easier configuration (centralized in Makefile.common)
2158
2159 2005-08-07 Raphael Neider <rneider AT web.de>
2160
2161         * src/pic16/gen.c (genrshTwo): fixed sign extension
2162         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2163         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2164           added T0CONbits
2165         * device/include/pic16/pic18f4220.h: NEW, header for
2166           pic18f4220 and pic18f4320
2167         * device/include/pic16/pic18fregs.h: added new devices,
2168           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2169         * device/include/pic16/signal.h: resolved name clashes
2170           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2171           to also allow testing for interrupt enable bits, added
2172           comments on how to use the macros
2173         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2174         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2175           register definitions for the devices
2176         * device/lib/pic16/pics.all: added new devices
2177         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2178           allocated memory
2179         * device/lib/pic16/libc/stdlib/memfree: do not count
2180           the block header as free memory
2181         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2182           simplified and added missing end-of-blocklist-marker
2183           (reported by Peter Onion, fixes #1252814)
2184         * (_mergeHeapBlock): fixed loop condition
2185         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2186           len==0, restructured code
2187         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2188           up a bit, reduced bitfield accesses, prevent endless loops
2189           in case of heap corruption
2190         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2191           "unreferenced arguments/must return a value" warnings
2192         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2193           replaced BAUDREG with SPBRG
2194         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2195           device/lib/pic16/debug/gstack/gstack.c: replaced
2196           _naked, _asm, _endasm with __naked, __asm, __endasm
2197
2198 2005-08-05 Raphael Neider <rneider AT web.de>
2199
2200         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2201           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2202
2203 2005-08-05 Borut Razem <borut.razem AT siol.net>
2204
2205         * device/lib/Makefile.in: added missing ';'
2206         * configure: removed ^M characters
2207
2208 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2209
2210         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2211           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2212           License
2213
2214 2005-08-04 Borut Razem <borut.razem AT siol.net>
2215
2216         * configure.in: pic16 libraries build 2nd try - enable running
2217           configure in device/lib/pic16
2218         * configure: regenerated from configure.in
2219         * device/lib/Makefile.in: create $(PORT)/bin directory
2220
2221 2005-08-03 Raphael Neider <rneider AT web.de>
2222
2223         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2224           to get/set values via pointers
2225         * (genUnpackBits,genPackBits): changed detection of
2226           ptr->bitfield vs. sym.bitfield, fixed access via generic
2227           pointers, removed dead (wrong) code for multibyte bitfields
2228         * (genNearPointerGet, genGenPointerGet): removed useless code,
2229           fixed bitfield detection, fixes #1250594
2230         * (genNearPointerSet): removed useless code
2231         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2232           and introduced macro pic16_emitpcode that conditionally emits
2233           the origin of the following pCode (useful for debugging SDCC)
2234         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2235         * (createDefmap): fixed handling of LFSR for --optimize-df
2236
2237 2005-08-02 Borut Razem <borut.razem AT siol.net>
2238
2239         * device/lib/Makefile.in: pic16 libraries build enabled since
2240           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2241
2242 2005-08-02 Raphael Neider <rneider AT web.de>
2243
2244         * src/pic16/gen.c (genPackBits): removed deprecated warning
2245         * (genGenPointerSet): fixed bitfield detection
2246
2247 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2248
2249         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2250
2251 2005-07-31 Raphael Neider <rneider AT web.de>
2252
2253         * device/lib/pic16/libdev/pic18f458.c,
2254           device/include/pic16/pic18f458.h: added missing T0CONbits
2255
2256 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2257
2258         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2259
2260 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2261
2262         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2263
2264 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2265
2266         * device/include/mcs51/at89c51ed2.h: added.
2267
2268 2005-07-23 Raphael Neider <rneider AT web.de>
2269
2270         * src/pic/gen.h: added emitpcode macro for debugging
2271         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2272           and replace by macro adding debug information on demand
2273         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2274         * (gencjne): tried to fix; replaced with correct (slower) code
2275         * (gen{Unp,P}ackBits): fixed single bit access
2276         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2277         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2278           previous instruction
2279         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2280           register has to be handled with care (forbidding movement
2281           of assignments/uses, removing assignments completely, ...)
2282         * (pCodeOptime2pCodes): make use of regIsSpecial
2283         * added lots of debugging output (commented out)
2284         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2285           from being reused as result UNLESS it is known to work
2286
2287 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2288
2289         * support/Util/dbuf.h: include <stddef.h> for size_t
2290         * .version: changed to version 2.5.2
2291
2292 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2293
2294         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2295
2296 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2297
2298         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2299           (genModOneByte): removed needless psha/pula
2300
2301 2005-07-22 Raphael Neider <rneider AT web.de>
2302
2303         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2304           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2305         * src/pic/gen.c (resolveIfx): do not "invent" labels
2306         * (genSkipc): changed to positive logic
2307         * (genSkipCond): removed as no longer needed
2308         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2309           backport from PIC16
2310         * (genLeftShift): check operands are in different registers
2311         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2312           INCF does not update CARRY...
2313         * src/pic/main.c: fixed _linkCmd
2314         * src/pic/pcode.c (unlinkpCode): added inactive code
2315         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2316           alive (do not assign result and operand overlapping registers)
2317
2318 2005-07-22 Raphael Neider <rneider AT web.de>
2319
2320         * src/pic/device.c (dump_sfr): replaced register declaration with
2321           call to emitSymbolToFile() to avoid duplicate symbols
2322         * (assignRelocatableRegisters): do not declare external symbols
2323         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2324           right (take size of type, not etype)
2325         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2326         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2327         * (packRegsForAccUse): disabled assignment of WREG as
2328           the result reg to prevent occurence of just fixed #1235003,
2329           fixes #1242954
2330         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2331           symbols (avoids duplicate symbols in .asm file)
2332         * (pic14emitRegularMap): use emitSymbolToFile()
2333         * src/pic/gen.c (aopOp): fixed spillLocation handling
2334         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2335         * (genDataPointerSet): removed unneccessary variables/output
2336
2337 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2338
2339         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2340         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2341
2342 2005-07-21 Raphael Neider <rneider AT web.de>
2343
2344         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2345           architecture cannot handle them efficiently, fixes bug #1235003
2346         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2347           check for empty sets before using them (fixes bug #1232190)
2348
2349 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2350
2351         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2352           (lnksect2): generate warnings for memory overlap
2353         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2354           constseg to set the name of these segments so you can instruct the linker
2355           to place them in banks
2356         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2357         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2358           added code_seg and const_seg to options
2359         * src/SDCCglue.c (emitMaps): use options.const_seg,
2360           (createInterruptVect): put interrupt vectors in segment HOME,
2361           (glue): put HOME before static segment and put the main glue in HOME,
2362           (glue): use options.code_seg
2363         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2364         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2365           these segments so you can instruct the linker to place them in banks
2366           (linkEdit): use code_loc for HOME segment which should be the first
2367           segment in code memory now
2368         * src/SDCCmem.c: fixed more stuff like bug 1238386
2369         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2370           (changePointer): don't change function pointers to code pointers for
2371           banked functions,
2372           (compareType): added exceptional check for banked function pointers
2373         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2374         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2375           after static in code memory
2376         * src/mcs51/gen.c: added aopLiteralLong prototype,
2377           (aopForSym): use getSize for functions,
2378           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2379           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2380           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2381           the segment,
2382           (genPcall): use call for literal function pointers and generate banked
2383           calls over the one trampoline so there's only one place for the user to
2384           modify according to his/hers hardware,
2385           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2386           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2387         * src/mcs51/main.c: added keyword banked,
2388           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2389         * support/Util/SDCCerr.c,
2390         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2391           needed for passing the bank and address to the trampoline
2392         * device/lib/mcs51/crtbank.asm: added for bankswitching
2393         * device/lib/mcs51/Makefile: added crtbank
2394
2395 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2396
2397         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2398           for fields at offset 0 of a struct or union as reported
2399           on 2005-07-07 in the developer mailing list.
2400
2401 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2402
2403         * src/SDCCmem.c: fixed bug 1238386
2404
2405 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2406
2407         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2408           (patch #1144962), added peephole 300, enabled 259.x
2409         * doc/sdccman.lyx: removed screenshot and provided link instead
2410
2411 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2412
2413         * doc/sdccman.lyx: added section about debugging with ddd
2414         * doc/figures/ddd_example.eps: screenshot of debugging session
2415
2416 2005-07-04 Raphael Neider <rneider AT web.de>
2417
2418         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2419           like CODE pointers, fixes #1115683
2420         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2421           call, fixes bugs #1232211, #1228110,
2422           fixed wrong casts to pCodeFlow from pCodeInstructions
2423
2424 2005-07-04 Raphael Neider <rneider AT web.de>
2425
2426         * src/pic/gen.c (popGet): changed assert to allow for
2427           bit operands
2428         * (popGetAddr): changed signature to provide
2429           an additional index, patched all call sites
2430         * (genCmpEq): handle literal-like operands correctly
2431         * (genAddrOf): added sanity checks on __code/__data pointers
2432         * (genAssign): added handling of symbols from __code section
2433         * (gencjne): do not generate code for comparisons whose result
2434           is neither stored nor used, fixes bug #1171114
2435         * (AccLsh, AccRsh): operate on operand instead of WREG
2436         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2437           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2438           by known count
2439         * rewrote complete shift-by-literal logic, commented unused
2440           functions out
2441         * (genConstPointerGet): get multiple bytes (if result size > 1),
2442           fixed handling of non-immediate addresses
2443         * (genPointerGet): handle CODE pointers like CONST pointers
2444         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2445         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2446           operand is to be treated as a literal or not
2447         * (mov2w,genPcall,genCmpEq),
2448           src/pic/genarith.c: use aop_isLitLike() to decide between
2449           literal/register contents
2450         * (addSign): added missing offset
2451         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2452           only emit comment in debug-mode,
2453           use {aop,op}_isLitLike throughout the file
2454         * src/pic/glue.c: fix initializers for pointers (work in progress)
2455         * src/pic/pcode.c (get_op): honor index on _const symbols
2456         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2457         * (dumppBlock): added pCode size estimation
2458         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2459           check for IS_SYMOP before OP_SYMBOL'ing
2460         * fixed indentation, compacted switch-statements
2461         * (allocReg): find free register and allocate it instead of
2462           allocating new registers all the time
2463         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2464           registers as its operands (necessary only for multibyte GETs)
2465
2466 2005-07-01 Raphael Neider <rneider AT web.de>
2467
2468         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2469           debugging .asm-output macros FENTRY + FEXIT
2470         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2471           way... I wonder...
2472         * (emitpComment): NEW, printf to pCode
2473         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2474           offset handling
2475         * (popGetAddr): NEW, variant of popGet to access an immediates
2476           high(er) bytes instead of the n'th byte of memory they reference,
2477           replaced popGet with popGetAddr where neccessary
2478         * (genDataPointerGet): reactivated and fixed implementation
2479         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2480           accesses
2481         * (genDataPointerSet): fixed multibyte assignments
2482         * (genpic14Code): fixed --i-code-in-asm handling
2483         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2484         * (genPlus): fixed index-out-of-bounds error
2485         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2486         * src/pic/ralloc.c: added debugging output macro FENTRY2
2487         * (spillThis): fixed indentation, enbraced for-body for clarity
2488         * (rematStr): commented out as now unused
2489         * (regTypeNum): commented out special spill case (overwrites
2490           arbitrary values)
2491         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2492
2493 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2494
2495         * doc/sdccman.lyx: documented sfr16/sfr32,
2496           added example for using storage class with function pointers
2497         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2498
2499 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2500
2501         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2502         * device/lib/_itoa.c,
2503         * device/lib/_ltoa.c: optimized codesize
2504         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2505           but don't know how to suppress the double warning.
2506         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2507         * support/Util/SDCCerr.c,
2508         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2509
2510 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2511
2512         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2513           fixed old K&R prototypes
2514         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2515         * device/lib/_gptrget.c,
2516         * device/lib/_gptrgetc.c,
2517         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2518           also new versions for small generic pointers and banked generic pointers
2519         * src/port.h: added const_name
2520         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2521         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2522         * src/SDCCcse.c (findPrevIc): check all associative operators
2523         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2524         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2525         * src/SDCCmem.c: updated comments,
2526           set far-space to 0 for pdata, results in optimized code
2527         * src/SDCCmem.h: added macro CONST_NAME
2528         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2529           moving the info into the highest bits, see also gptrget/gptrput
2530         * src/src.dsp: added sdcc.ico to project files
2531         * src/avr/gen.c (genCast): fixed bug 0x%d
2532         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2533         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2534           relation between ptr_type and DCL_TYPE,
2535           (genCast): fixed bug 0x%d
2536         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2537           (CODE)" for const_name
2538         * src/hc08/gen.c (genCast): fixed bug 0x%d
2539         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2540           (hc08_port): added "CONST (CODE)" for const_name
2541         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2542           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2543           between ptr_type and DCL_TYPE,
2544           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2545           operand* and took AOP() inside function so sfr-ness can be checked,
2546           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2547           new prototype,
2548           (genFunction, genEndFunction): optimized stack setup,
2549           (genMinus): optimized for literals with ending zeroes (in bytes),
2550           (genCast): fixed bug 0x%d
2551         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2552           (mcs51_port): added "CONST (CODE)" for const_name
2553         * src/mcs51/peeph.def: made rule 226 more generic
2554         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2555         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2556         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2557         * src/z80/main.c (z80_port): added NULL for const_name,
2558           (gbz80_port): added NULL for const_name
2559         * support/regression/tests/bug663539.c,
2560         * support/regression/tests/sfr16.c: new tests
2561
2562 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2563
2564         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2565
2566 2005-06-24 Raphael Neider <rneider AT web.de>
2567
2568         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2569           corrected typos...
2570         * device/include/pic16/signal.h: added USBIF
2571           and SIG_USB
2572
2573 2005-06-24 Raphael Neider <rneider AT web.de>
2574
2575         * device/lib/pic16/libdev/pic18f2455.c,
2576           device/include/pic16/pic18f2455.h: NEW
2577         * device/include/pic16/pic18fregs.h,
2578           device/lib/pic16/pics.all,
2579           src/pic16/device.c: added 18f2455
2580         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2581           device/include/pic16/{pic18f[68][567].h,usart.h}:
2582           replaced MULTIPLE_USARTS define with more relaible
2583           compatibility sfrs (for USART access)
2584
2585 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2586
2587         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2588           and the output asm file line is printed on two lines.
2589
2590 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2591
2592         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2593           BGT, BLE, BHI, and BLS instructions
2594         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2595           genCmpEq): removed
2596         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2597           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2598           fixes bug #1216342
2599         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2600
2601 2005-06-15 Raphael Neider <rneider AT web.de>
2602
2603         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2604         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2605         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2606           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2607           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2608
2609 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2610
2611         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2612           Marcel Telka in bug #1215704
2613
2614 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2615
2616         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2617           located in shared memory bank.
2618
2619 2005-05-31 Raphael Neider <rneider AT web.de>
2620
2621         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2622           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2623           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2624
2625 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2626
2627         * device/lib/_strncpy.c: fixed the fix
2628
2629 2005-05-26 Raphael Neider <rneider AT web.de>
2630
2631         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2632           initializers with \0, bug #1208187
2633         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2634           intializers with \0, bug #1208187
2635
2636 2005-05-26 Raphael Neider <rneider AT web.de>
2637
2638         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2639           initializers with \0, bug #1208187
2640         * src/pic16/main.c (_process_pragma): added sanity checks
2641           for stack position and size, emit warnings when appropriate
2642
2643 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2644
2645         * device/lib/_strncpy.c: fixed not filling with \0
2646
2647 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2648
2649         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2650           createFunction),
2651         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2652           compound_statement),
2653         * src/SDCCsymt.h,
2654         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2655
2656 2005-05-24 Raphael Neider <rneider AT web.de>
2657
2658         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2659
2660 2005-05-24 Raphael Neider <rneider AT web.de>
2661
2662         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2663           TRISE definitions, closes bug #1162453
2664
2665 2005-05-22 Raphael Neider <rneider AT web.de>
2666
2667         * src/pic16/main.c (_process_pragma): check for missing
2668           arguments to pragmas code and udata
2669         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2670           consistency fixes to match other headers (thanks to Jim Paris)
2671         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2672
2673 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2674
2675         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2676
2677 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2678
2679         * support/regression/tests/bug1198642.c: new test
2680         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2681         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2682         * support/scripts/resource.h,
2683         * support/scripts/resource.rc,
2684         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2685         * support/scripts/sdcc.ico: added 32x32 icon
2686
2687 2005-05-18 Raphael Neider <rneider AT web.de>
2688
2689         * device/lib/pic16/libdev/pic18f*.c,
2690         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2691           keywords to "__sfr" and "__at (X)"
2692         * device/include/pic16/pic18fregs.h: added pic18f4520
2693         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2694           #1203088 (MPLAB compatibility)
2695
2696 2005-05-17 Raphael Neider <rneider AT web.de>
2697
2698         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2699         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2700         * device/lib/pic16/pics.all: added new devices
2701         * src/pic16/device.c: added support for pic18f4520
2702
2703 2005-05-16 Raphael Neider <rneider AT web.de>
2704         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2705         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2706         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2707           convenience function for bit access
2708
2709 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2710
2711         * device/lib/printf_large.c: fixed bug 1193299
2712         * support/regression/tests/bug1057979.c: added test %3.3s
2713
2714 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2715
2716         * device/include/mcs51/8051.h,
2717         * device/include/mcs51/8052.h: made parseable with lint
2718         * device/include/mcs51/lint.h: added include file for (sp)lint
2719         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2720         * doc/cdbfileformat.lyx,
2721         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2722
2723 2005-05-14 Raphael Neider <rneider AT web.de>
2724
2725         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2726         * device/lib/pic16/libc/stdlib/itoa.c (new)
2727         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2728         * device/lib/pic16/libio/Makefile: exclude subdir according to
2729           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2730         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2731         * src/pic16/gen.c (genFunction): prevent annoying warning
2732         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2733           nameclashes on BeOS
2734         * support/cpp2/cppmain.c (cpp_output_string): new
2735         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2736           fixes bug 1116802
2737
2738 2005-05-13 Borut Razem <borut.razem AT siol.net>
2739
2740         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2741
2742 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2743
2744         * .version: changed to version 2.5.1; back to bleeding edge development
2745
2746 2005-05-11 Borut Razem <borut.razem AT siol.net>
2747
2748         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2749           generate PDF version 1.3 documents
2750
2751 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2752
2753         * .version: changed to version 2.5.0
2754
2755 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2756
2757         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2758
2759 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2760
2761         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2762         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2763         well as many smaller updates.
2764         * .version: changed to version 2.5.0-pre1
2765
2766 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2767
2768         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2769
2770 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2771
2772         * support/regression/tests/bug1185672.c: added
2773         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2774           bug 1185672
2775         * src/mcs51/gen.c (genCall): added comments, made it look safer
2776         * src/mcs51/gen.c (genEndFunction): simplified
2777
2778 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2779
2780         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2781
2782 2005-04-14 Borut Razem <borut.razem AT siol.net>
2783
2784         * fixed bug 1045046 - SIGSEGV with really simple code?:
2785           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2786           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2787
2788 2005-04-14 Borut Razem <borut.razem AT siol.net>
2789
2790         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2791           src/pic16/device.h: temporarily disabled experimental #inline pragma
2792           for 2.5.0 release
2793
2794 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2795
2796         * device/include/z80/stdio.h,
2797         * device/include/z80/string.h: removed these highly incomplete files so
2798           SDCC can use the default ones in device/include/
2799
2800 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2801
2802         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2803         gcc warning.
2804         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2805         fix sdcpp warnings.
2806
2807 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2808
2809         * device/include/malloc.h: removed redundant __reentrant prototypes
2810         * device/lib/_mullong.c: added working xstack variant in asm (C version
2811           doesn't pass regression tests)
2812         * device/lib/bpx.c: used __data and made bpx char for mcs51
2813         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2814           (createFunction): fixed bug with xstackPtr
2815         * src/SDCCcse.c: corrected comments
2816         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2817           (killDeadCode, eBBlockFromiCode): removed unused code
2818         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2819           corrected comments
2820         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2821           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2822           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2823           (genModOneByte): fixed warning in MSVC
2824         * src/mcs51/main.c (): added comments
2825         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2826
2827 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2828
2829         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2830
2831 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2832
2833         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2834
2835 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2836
2837         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2838         characters arrays of larger size than the declared one.
2839
2840 2005-04-10 Borut Razem <borut.razem AT siol.net>
2841
2842         * src/pic/gen.c (genInline),
2843           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2844           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2845           (findNextInstruction), (findPrevInstruction),
2846           (findInstructionUsingLabel),
2847           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2848         * src/pic/pcode.c (findLabel): added missing '\n'
2849         * src/src.dsp: added SDCCdwarf2.c to the project
2850
2851 2005-04-09 Borut Razem <borut.razem AT siol.net>
2852
2853         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2854
2855 2005-04-08 Raphael Neider <rneider AT web.de>
2856
2857         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2858           into the chain after a given one) and mergeDefmapSymbols (combine
2859           defmap entries for each symbol per pcode)
2860         * (createDefmap): have defmap entries merged in the end
2861         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2862           a symbol before replacing one access type's symbol, merge symbols in
2863           the end (replacement symbol might already have an entry)
2864         * (assignValnums): keep reference to written WREG intact
2865
2866 2005-04-08 Raphael Neider <rneider AT web.de>
2867
2868         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2869           Alpha)
2870
2871 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2872
2873         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2874         bytes
2875
2876 2005-04-07 Raphael Neider <rneider AT web.de>
2877
2878         * device/include/pic16/usart.h: added compatibility defines for
2879           devices with more than one USART
2880         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2881
2882 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2883
2884         * device/lib/Makefile.in: updated for port specific include
2885
2886 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2887
2888         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2889
2890 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2891
2892         * device/include/8051.h,
2893         * device/include/8052.h,
2894         * device/include/at89S8252.h,
2895         * device/include/at89c55.h,
2896         * device/include/at89x051.h,
2897         * device/include/at89x51.h,
2898         * device/include/at89x52.h,
2899         * device/include/mcs51reg.h,
2900         * device/include/reg51.h,
2901         * device/include/reg764.h,
2902         * device/include/regc515c.h,
2903         * device/include/sab80515.h: (re)moved these 12 files
2904         * device/include/mcs51/8051.h,
2905         * device/include/mcs51/8052.h,
2906         * device/include/mcs51/at89S8252.h,
2907         * device/include/mcs51/at89c55.h,
2908         * device/include/mcs51/at89x051.h,
2909         * device/include/mcs51/at89x51.h,
2910         * device/include/mcs51/at89x52.h,
2911         * device/include/mcs51/mcs51reg.h,
2912         * device/include/mcs51/reg51.h,
2913         * device/include/mcs51/reg764.h,
2914         * device/include/mcs51/regc515c.h,
2915         * device/include/mcs51/sab80515.h: and added them here
2916
2917 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2918
2919         * device/include/stdarg.h: changed SDCC specific keywords to double
2920           underlined form.
2921         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2922           mcs51 and ds390.
2923         * device/include/hc08/mc68hc908gp32.h,
2924         * device/include/hc08/mc68hc908jb8.h,
2925         * device/include/hc08/mc68hc908jkjl.h,
2926         * device/include/hc08/mc68hc908qy.h: fixed comments
2927         * device/include/mcs51/README: updated
2928         * device/include/mcs51/c8051f120.h: added PINRSF
2929         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2930         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2931           amidst code. Also inline is not supported.
2932
2933 2005-04-06 Raphael Neider <rneider AT web.de>
2934
2935         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2936         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2937           callers stack/frame pointers
2938
2939 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2940
2941         * device/include/pic16/usart.h: added, missing in previous commit,
2942         * device/include/pic16/adc.h: fixed typo,
2943         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2944         commit,
2945         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2946         <p18fxxx.inc>
2947         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2948         uninitialized because a bug appears with gplink
2949         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2950         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2951         complains for unrecognised option
2952
2953 2005-04-05 Raphael Neider <rneider AT web.de>
2954
2955         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2956           structs as well (using memcpy)
2957         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2958           on ISRs (GOTO has no label)
2959         * src/pic16/device.h: added OF_OPTIMIZE_DF
2960         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2961           new data flow analysis/optimization
2962         * src/pic16/pcode.c: added (prototypes for and implementation of)
2963           dataflow analysis functions, fixed pCodeInstructions' inCond and
2964           outCond values, made RCALL a branch instruction
2965         * (pic16_unlinkpCode): keep C line if possible
2966         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2967           C line moved if possible
2968         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2969         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2970           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2971         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2972           new flow)
2973         * (pic16_getJumptabpCode): NEW, needed in...
2974         * (LinkFlow): fixed handling of jumptables, calls and conditional
2975           branches
2976         * (pic16_InsertCommentAfter): NEW
2977         * (pic16_pCodeReplace): made verbose and flow preserving
2978         * (AnalyzeFlow): added call to data flow analysis
2979         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
2980         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
2981         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
2982
2983 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2984
2985         * src/SDCCast.c (decorateType): fixed bug #1105626
2986
2987 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
2988
2989         * device/include/asm/pic16/features.h,
2990         * pic18f*.h headers,
2991         * device/include/pic16/adc.h,
2992         * device/include/pic16/delay.h,
2993         * device/include/pic16/i2c.h,
2994         * device/include/pic16/malloc.h,
2995         * device/include/pic16/stdio.h,
2996         * device/include/pic16/stdlib.h,
2997         * device/include/pic16/string.h,
2998         * device/lib/pic16/libc/stdio/printf_tiny.c,
2999         * device/lib/pic16/libc/stdio/printf_small.c,
3000         * device/lib/pic16/libc/stdio/strmgpsim.c,
3001         * device/lib/pic16/libc/stdio/strmmssp.c,
3002         * device/lib/pic16/libc/stdio/strmusart.c,
3003         * device/lib/pic16/libc/stdio/vfprintf.c,
3004         * device/lib/pic16/libc/stdlib/ltoa.c,
3005         * device/lib/pic16/libc/stdlib/putchar.c,
3006         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3007         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3008         * device/lib/pic16/libc/stdlib/memchrram.c,
3009         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3010         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3011         * device/lib/pic16/libio/adc/adcbusy.c,
3012         * device/lib/pic16/libio/adc/adcread.c,
3013         * device/lib/pic16/libio/adc/adcsetch.c,
3014         * device/lib/pic16/libio/usart/ubaud.c,
3015         * device/lib/pic16/libio/usart/ubusy.c,
3016         * device/lib/pic16/libio/usart/udrdy.c,
3017         * device/lib/pic16/libio/usart/uopen.c,
3018         * device/lib/pic16/libio/usart/uputc.c,
3019         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3020         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3021         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3022         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3023         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3024         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3025         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3026         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3027         specific keywords to double underlined form,
3028         * device/lib/pic16/libc/Makefile.rules,
3029         * device/lib/pic16/libsdcc/Makefile.rules,
3030         * device/lib/pic16/libm/Makefile,
3031         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3032         to compile with C standard set in Makefile.common
3033         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3034         rand.c and crc.c in compilation process,
3035         * device/lib/pic16/libsdcc/int/divuint.c,
3036         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3037         `c' from signed to unsigned,
3038         * device/lib/pic16/startup/crt0.c,
3039         * device/lib/pic16/startup/crt0i.c,
3040         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3041         keywords to double underlined form, bug fixes in _do_cinit function
3042         which prevented the correct initialization of the .idata segment,
3043         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3044         core to enter a infinite loop
3045         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3046
3047 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3048
3049         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3050
3051 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3052
3053         * device/include/Makefile.in: add support for hc08 subdirectory
3054         * device/include/hc08/: new subdirectory
3055         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3056         Lucas Loizaga, thanks!
3057         * device/include/hc08/mc68hc908qy.h,
3058         * device/include/hc08/mc68hc908gp32.h,
3059         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3060         their own directory. Changed internal macro names to use the compiler
3061         reserved namespace. Changed SDCC specific keywords to double
3062         underlined form.
3063         * device/include/math.h,
3064         * device/include/malloc.h,
3065         * device/include/stdarg.h,
3066         * device/include/stdbool.h
3067         * device/include/string.h,
3068         * device/include/tinibios.h,
3069         * device/include/ds400rom.h,
3070         * device/include/8051.h,
3071         * device/include/8052.h,
3072         * device/include/80c51xa.h,
3073         * device/include/at89c55.h,
3074         * device/include/at89S8252.h,
3075         * device/include/at89x51.h,
3076         * device/include/at89x52.h,
3077         * device/include/ds80c390.h,
3078         * device/include/reg764.h,
3079         * device/include/regc515c.h,
3080         * device/include/sab80515.h,
3081         * device/include/mcs51/c8051f000.h,
3082         * device/include/mcs51/c8051f018.h,
3083         * device/include/mcs51/c8051f020.h,
3084         * device/include/mcs51/c8051f040.h,
3085         * device/include/mcs51/c8051f060.h,
3086         * device/include/mcs51/c8051f120.h,
3087         * device/include/mcs51/c8051f300.h,
3088         * device/include/mcs51/c8051f310.h,
3089         * device/include/mcs51/c8051f320.h,
3090         * device/include/mcs51/c8051f330.h,
3091         * device/include/mcs51/c8051f350.h,
3092         * device/include/z180.h: Changed SDCC specific keywords to double
3093         underlined form.
3094
3095 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3096
3097         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3098         18F4455,
3099         * (pic16_assignConfigWordValue): disable testing of configuration
3100         register value with config mask,
3101         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3102         function with port->fun_prefix,
3103         * (genFunction): when generating a naked interrupt function never
3104         create an absolute segment placed in interrupt vector address, place
3105         the actual interrupt function at IVA instead, when an interrupt
3106         function is generated with unspecified interrupt then do not create
3107         the absolute section,
3108         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3109         code for generating a call to generic pointer get/put function with
3110         a call to function pic16_callGenericPointer(),
3111         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3112         the call to the generic pointer get/put functions with prefixing the
3113         function name with port->fun_prefix,
3114         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3115         * src/pic16/main.c (_process_pragma): prefix function with
3116         port->fun_prefix,
3117         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3118         calling assembler, old 18Fxxxx macro is deprecated,
3119         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3120         PC_ASMDIR in while condition,
3121         * (findInstruction): add PC_ASMDIR in while condition,
3122         * (buildCallTree): prefix main with port->fun_prefix,
3123         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3124         identifier for variable with banked access in instructions BTFSS,
3125         BTFSC, BCF, BSF, BTG
3126         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3127         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3128         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3129         perform optimization when enviroment variable NO_REG_OPT is set,
3130         * (insideLRBlock): NEW, return 1 if register is inside an
3131         INF_LOCALREGS block,
3132         * (RemoveRegFromLRBlock): remove a register that is completely
3133         eliminated by register optimization, but it is still left in local
3134         register store/restore in/from stack block,
3135         * (Remove2pcodes): after removing register, check to see if it
3136         should be removed from local register store/restore in/from stack
3137         block,
3138         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3139         DUMMY_READ_VOLATILE,
3140
3141         * device/include/pic16/adc.h: minor prototype modifications and
3142         update,
3143         * device/include/pic16/malloc.h: added GPL notice various
3144         modifications,
3145         * device/include/pic16/stdint.h: NEW, standard header for ints
3146         * device/include/pic16/delay.h: NEW, header for delay functions,
3147         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3148         delay1mtcy,
3149         * device/include/pic16/signal.h: NEW, header providing helper macros
3150         for implementing signal handlers,
3151         * device/include/pic16/stdio.h: added prototypes for functions,
3152         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3153         prototypes for stdin and stdout, added macro PUTCHAR to
3154         automatically implement putchar function prototype,
3155         * device/include/pic16/usart.h: modified and updated USART library,
3156         * device/lib/pic16/libio/adc/,
3157         * device/lib/pic16/libio/i2c: some modifications to improve library
3158         performance,
3159         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3160         family of functions,
3161         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3162         family of functions and other sources,
3163         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3164         of the PIC18Fxx[28] devices,
3165         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3166         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3167         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3168         _do_cinit function, because the previous failed when local variables
3169         where not placed in the same memory bank,
3170         * device/lib/pic16/libsdcc/char/: various modifications to improve
3171         library performance,
3172         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3173         information on the new functions of the c library and more...
3174
3175 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3176
3177         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3178
3179 2005-03-26 Raphael Neider <rneider AT web.de>
3180
3181         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3182           if condition == CARRY)
3183         * (genCmp): adapted to new genSkipc semantics
3184         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3185           on rIfx (genCmp was broken)
3186
3187 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3188
3189         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3190         * src/z80/main.c (_keywords[]),
3191         * src/SDCCglobal.h (struct options),
3192         * src/SDCC.y,
3193         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3194         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3195         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3196         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3197         always available in leading double underscore form. The C99 support is
3198         mostly missing, but it's a start.
3199         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3200         reserved identifier "__data".
3201
3202 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3203
3204         * src/mcs51/peeph.def: fixed bug 1170013
3205
3206 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3207
3208         * device/include/mcs51reg.h: fixed bug 842007
3209
3210 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3211
3212         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3213         last time.
3214
3215 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3216
3217         * src/port.h (struct PORT),
3218         * src/avr/ralloc.c (avr_assignRegisters),
3219         * src/avr/main.c,
3220         * src/ds390/ralloc.c (ds390_assignRegisters),
3221         * src/ds390/main.c,
3222         * src/hc08/ralloc.c (hc08_assignRegisters),
3223         * src/hc08/main.c,
3224         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3225         * src/mcs51/main.c,
3226         * src/pic/ralloc.c (pic14_assignRegisters),
3227         * src/pic/main.c,
3228         * src/pic16/ralloc.c (pic16_assignRegisters),
3229         * src/pic16/main.c,
3230         * src/xa51/ralloc.c (xa51_assignRegisters),
3231         * src/xa51/main.c,
3232         * src/z80/ralloc.c (z80_assignRegisters),
3233         * src/z80/ralloc.h,
3234         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3235         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3236         * src/SDCCcse.h,
3237         * src/SDCCdflow.c (computeDataFlow),
3238         * src/SDCCdflow.h,
3239         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3240         * src/SDCCloop.h,
3241         * src/SDCCcflow.c (*),
3242         * src/SDCCcflow.h,
3243         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3244         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3245         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3246         immedDom() returning wrong block; probably fixes bug #1160833)
3247
3248 2005-03-20 Borut Razem <borut.razem AT siol.net>
3249
3250         * support/scripts/inc2h.pl: WIN32 port
3251
3252 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3253
3254         * device/lib/makefile.in: added abs.c and labs.c
3255
3256 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3257
3258         * device/include/stdint.h: added
3259         * device/lib/abs.c: added
3260         * device/lib/labs.c: added
3261         * device/include/stdlib.h: added abs() and labs() prototypes
3262         * device/lib/libsdcc.lib: added abs and labs
3263         * device/include/float.h,
3264         * device/lib/_fsmul.c,
3265         * device/lib/printf_fast.c,
3266         * device/lib/printf_tiny.c: updated comments
3267
3268 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3269
3270         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3271         bug #1164313
3272
3273 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3274
3275         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3276         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3277
3278 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3279
3280         * device/lib/printf_large.c: removed inline assembly for portability and
3281           readability. Use printf_fast if speed or size are more important.
3282         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3283         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3284
3285 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3286
3287         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3288         prevent compiler warning
3289
3290 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3291
3292         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3293         moved to level 0 and declared as static. Also they are explicit
3294         placed in access bank. This was necessery because some times they
3295         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3296         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3297         optimizations. Currently only compare to unsigned char is implemented,
3298         * src/pic16/gen.c: added fReturnIdx array,
3299         * (struct resolvedIfx) is moved to gen.h and made public,
3300         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3301         * (aopForSym): added an optimization to directly store in stack of
3302         the operand of a SEND iCode,
3303         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3304         but as registers instead (AOP_REG) using the fReturnIdx array,
3305         * (pic16_freeAsmop): remove the freed register from the
3306         _G.sregsAlloc field,
3307         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3308         a compare of 'WREG',
3309         * (pic16_popGetTempRegCond): changed function prototype, now
3310         function takes also a bitVector argument v which holds the current
3311         set of registers that are allocated for stack access by aopForSym,
3312         registers allocated in aopForSym for accessing stack symbols are not
3313         any more part of the functions usedRegs field,
3314         * (genCall): some times aopOp is called for a stack variable to be
3315         send, aopForSym might perform the push, if this is true make sure
3316         that genCall doesn't push the variable twice by testing _G.resDirect,
3317         * (genFunction): changed testing for unspecified interrupt number
3318         from 256 to INTNO_UNSPEC,
3319         * modified selection scheme of frame pointer generation. Previously
3320         if function did use local registers a frame pointer was generated,
3321         now a frame pointer is generated only if function has arguments
3322         (that need PLUSW2 register access), or has stack arguments, or the
3323         compiler is not instructed to omit the frame pointer,
3324         * (genEndFunction): before restoring local registers that were saved
3325         in the function preamble, also restore the registers that *might*
3326         have been allocated for stack access,
3327         * (genRet): removed some old comments,
3328         * (genCmp, the active (RN's) version): added a call to the
3329         pic16_genCmp_special function to perform the compare with a more
3330         robust and optimized way,
3331         * (genInline): a feature has been added in inline code generation,
3332         which allows a wildcard variable substitution when writing inline
3333         assembly. Code is incomplete and experimental therefore undocumented,
3334         * (genCast): changed order of aopOp for result and right to allow
3335         aopForSym to directly load the result if possible,
3336         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3337         perform an optimized compare on some selected special occasions,
3338         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3339         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3340         generate an IVT any more,
3341         * src/pic16/main.c (pic16_optionsTable): added command line option
3342         --optimize-cmp,
3343         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3344         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3345         macros,
3346         * src/pic16/NOTES: Raphael Neider added in list of active developers
3347         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3348         jumptable_end to prevent bug #,
3349         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3350         inCond and outCond fields,
3351         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3352         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3353         turn off register spilling,
3354         * (packRegsForOneUse): synced with other ports' versions although it
3355         is not used currently,
3356         * (pic16_packRegisters): added an optimization while reading
3357         structure bitfields, some registers may be saved (malloc code is
3358         decreased by 80 bytes)
3359
3360 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3361
3362         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3363         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3364         this can be optimized more?
3365
3366 2005-03-10 Raphael Neider <rneider AT web.de>
3367
3368         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3369           genNearPointerGet): (hopefully) fixed access to bitfields via
3370           pointers (p->bitN = x; and x = p->bitN; failed)
3371
3372 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3373
3374         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3375
3376 2005-03-09 Raphael Neider <rneider AT web.de>
3377
3378         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3379
3380 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3381
3382         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3383         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3384           (regTypeNum): set REG_BIT type if necessary
3385         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3386         * support/regression/tests/critical.c: check bug 1144613
3387
3388 2005-03-02 Raphael Neider <rneider AT web.de>
3389
3390         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3391
3392 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3393
3394         * src/avr/ralloc.c (serialRegAssign),
3395         * src/ds390/ralloc.c (serialRegAssign),
3396         * src/hc08/ralloc.c (serialRegAssign),
3397         * src/mcs51/ralloc.c (serialRegAssign),
3398         * src/pic/ralloc.c (serialRegAssign),
3399         * src/pic16/ralloc.c (serialRegAssign),
3400         * src/xa51/ralloc.c (serialRegAssign),
3401         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3402
3403 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3404
3405         * src/SDCCast.c (decorateType): fixed bug 1124787
3406
3407 2005-02-20 Hubert Sack <sack AT digiplan.de>
3408         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3409
3410         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3411         patch #1121755
3412
3413 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3414
3415         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3416         to keep the correct label reference count when adding/removing references
3417         to labels. A peephole file using this is appended to patch #1144962.
3418
3419 2005-02-14 Raphael Neider <rneider AT web.de>
3420
3421         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3422         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3423         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3424           retrievals of result operand's value on assignment
3425
3426 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3427
3428         * device/include/pic16/string.h: modified prototype for memccpy()
3429         to memccpy(void *, void *, char, size_t)
3430         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3431         check whether to omit frame pointer or not,
3432         * (genInline): convert all occurences of "\n" to LF in inline
3433         assembler blocks, this helps formatting the inline text,
3434         * (pic16_loadFSR0): modified prototype,
3435         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3436         removed some 8051 legacy code,
3437         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3438         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3439         before allocating temporary registers in functions,
3440
3441 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3442
3443         * support/regression/tests/bitvars.c: corrected the "fix"
3444
3445 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3446
3447         * support/regression/tests/bitvars.c,
3448         * support/regression/tests/bitwise.c,
3449         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3450
3451 2005-02-10 Raphael Neider <rneider AT web.de>
3452
3453         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3454           different size for Alpha
3455         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3456
3457 2005-02-09 Raphael Neider <rneider AT web.de>
3458
3459         * src/SDCC.lex(doPragma) : save and restore warning options as well
3460           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3461         * have #pragma less_pedantic set the errorlevel to WARNING
3462           (fixes #1117001)
3463         * (cloneOptimize) : fixed wrong malloc's size
3464         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3465           facilitate correct handling of #pragma (save|restore)
3466
3467 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3468
3469         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3470
3471 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3472
3473         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3474
3475 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3476
3477         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3478
3479 2005-02-02 Raphael Neider <rneider AT web.de>
3480
3481         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3482         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3483         * (pic16_storeForReturn): fixed to allow returning function pointers
3484         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3485         * device/include/pic16/{stddef.h,stdbool.h}: added
3486
3487 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3488
3489         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3490
3491 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3492
3493         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3494         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3495          appeared to be required
3496
3497 2005-01-31 Borut Razem <borut.razem AT siol.net>
3498
3499         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3500           include/mcs51 and include/z80 directories to the package
3501
3502 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3503
3504         * src/hc08/gen.c (genFunction): fixed bug #1112752
3505
3506 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3507
3508         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3509
3510 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3511
3512         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3513
3514 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3515
3516         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3517
3518 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3519
3520         * device/include/c8051fxxx.h: removed these 6 files
3521         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3522
3523 2005-01-26 Raphael Neider <rneider AT web.de>
3524
3525         * src/pic16/gen.c (genAssign): fixed assignment from longs
3526           in codespace (were cut to three bytes)
3527         * (genDummyRead): implemented (except for CODESPACE...),
3528           fixed bug #1108575
3529         * src/pic16/glue.c (emitStatistics): beautified
3530         * device/lib/pic16/libm/Makefile: added include path
3531
3532 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3533
3534         * src/z80/gen.c (aopPut): fixed bug #1103902
3535
3536 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3537
3538         * device/lib/expf.c: fixed bug #1095792
3539
3540 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3541
3542         * device/lib/pic16/libm: added Math library sources
3543
3544 2005-01-24 Raphael Neider <rneider AT web.de>
3545
3546         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3547           to enable upcast to pCodeOpReg2 (there is no type tag to
3548           differenciate the two and pic16_popGet2p cast into PCOR2)
3549         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3550           (sizeof(sectNames) changed to sizeof(sectName))
3551           Both patches fix segfaults under MinGW.
3552
3553 2005-01-23 Raphael Neider <rneider AT web.de>
3554
3555         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3556           Safe_[mc]?alloc()'ed variables
3557         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3558           of (byte sized) temporaries (assign them to WREG for now)
3559         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3560           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3561           this might fix SIGSEGVs on MinGW...
3562         * src/SDCCopt.c (killDeadCode): restored original behaviour
3563           (volatile operands might get thrown away though)
3564
3565 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3566
3567         * src/pic16/gen.c: fixed bug #1106975,
3568         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3569         pointer update, INTCON is saved, global interrupts are disabled and
3570         restored after updateing TOS.
3571         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3572         * added function attribute 'shadowregs' to take advantage of shadow
3573         registers,
3574         * added function attribute 'wparam' as an alternative to the wparam
3575         pragma,
3576         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3577         user declares a non-ISR function as 'shadowregs',
3578         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3579
3580 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3581
3582         * .version: bumped version number to 2.4.8
3583         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3584         pic16 port,
3585         * device/lib/pic16/libio/i2c/: I2C module support library,
3586         * device/include/pic16/i2c.h: I2C support library header,
3587         * device/lib/pic16/libc/stdio/: standard IO support sources,
3588         * (printf_small.c): printf_small() source, supports float print,
3589         * (printf_tiny.c): printf_tiny() source, does not support floats,
3590         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3591         enable global optimizations for entire library source, other
3592         Makefiles in the source tree are also modified to reflect this,
3593         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3594         function,
3595         * doc/sdccman.lyx: updated to reflect new changes,
3596         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3597         sym->onStack if-case,
3598         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3599         sbit, idata, _idata, xdata, _xdata,
3600         * added pragma library, to link an external library, (see doc),
3601         * removed command line options, --pomit-config-words, --pomit-ivt,
3602         --pleave-reset-vector,
3603         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3604         when calling assembler to reflect memory model used, also define
3605         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3606         reflect stack model used,
3607         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3608         on stack return NULL,
3609
3610 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3611
3612         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3613           of the operands is volatile. Fixes #1020220
3614
3615 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3616
3617         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3618         * (OptimizeRegUsage): make sure that there is really no other flow where
3619           the first pCode is used
3620
3621 2005-01-22 Raphael Neider <rneider AT web.de>
3622
3623         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3624           to fix #1106967 (pCode->seq are not set up correctly)
3625
3626 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3627
3628         * src/SDCCglue.c (glue): make sure code area is declared before the
3629         static initialization area.
3630
3631 2005-01-21 Raphael Neider <rneider AT web.de>
3632
3633         * device/lib/Makefile.in: fixed test for pic16 install dir
3634         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3635           optimizations
3636         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3637           added --optimize-goto compiler switch and pragma wparam documentation
3638         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3639         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3640           and PRODH closing bug #1071770 (peephole optimizer)
3641
3642 2005-01-19 Raphael Neider <rneider AT web.de>
3643
3644         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3645           cmdLine buffers (used when calling sdcpp...) are large enough
3646           (MAX_PATH=256 truncates arguments leading to system halts when
3647           used in MinGW...)
3648         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3649         * (genUminus): rewritten to for efficiency
3650         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3651           used uninitialized in some cases)
3652         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3653           copy the third byte from the int -- now assumes 0x80 (data memory)
3654         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3655           operands (genAddLit expects the iCode's operands to swapped as
3656           well), fixed leftover bytes (crashed for short left operands)
3657         * (pic16_genMinusDec): performance improvements, removed false
3658           PIC14 emitSKPNCs
3659         * (pic16_genMinus): fixed to cope with differently sized operands
3660         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3661           for --obanksel > 1
3662         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3663         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3664           new banksel optimization
3665         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3666           analysis for temporary registers (segfaults...)
3667         * src/pic16/peeph.def: added rule
3668
3669 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3670
3671         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3672         which converts a float number to its ASCII representation
3673         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3674         functions to convert the fractional and integer part of a float to ASCII,
3675         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3676         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3677         ram
3678         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3679         _STATMEM macros,
3680         * device/include/pic16/adc.h: added GPL info,
3681         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3682         a pCodeOp as tested operand,
3683         * (genNearPointerGet): optimized bit testing, does not use
3684         intermediate register for bit value, test directly instead with
3685         BTFSS, BTFSC, works only for single bits,
3686         * (genpic16Code): dump the name of the iCode in the asm,
3687         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3688         renamed to pic16_decodeOp,
3689         * (serialRegAssign): do not allocate a temporary register for iCode
3690         sequences that test a single bit for 1/0
3691
3692 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3693
3694         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3695         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3696         access stack and frame pointers. They are initially assigned to
3697         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3698         accessing SFRs. Updated all occurences of modification of stack or
3699         frame pointer in gen.c and pcode.c,
3700         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3701         assigning of a literal value to pointers,
3702         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3703         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3704         selected
3705
3706 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3707
3708         * doc/sdccman.lyx: update documentation about stack pragma, added
3709         some info for stack memory models
3710
3711 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3712
3713         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3714
3715 2005-01-08 Raphael Neider <rneider AT web.de>
3716
3717         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3718           udata sections to fix bug #1097823
3719
3720 2005-01-05 Raphael Neider <rneider AT web.de>
3721
3722         * src/pic16/gen.c (genGenericShift): added handling of differently
3723           sized left operand and result
3724
3725 2005-01-04 Raphael Neider <rneider AT web.de>
3726
3727         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3728         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3729           to hold the condition bit)
3730         * added new version of genCmp (old code available via #define)
3731         * added new version of genShiftLeft/genShiftRight in a generic
3732           way, now supports shifting by negative values
3733         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3734           shiftCount (expected by genGenericShift)
3735         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3736         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3737           dump
3738         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3739           is an invalid literal too...)
3740
3741 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3742
3743         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3744         from Raphael Neider,
3745         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3746         for 8-bit literals. This fixes some literal operands which are sign
3747         extended to 16-bits ints when instruction needs only 8-bits.
3748
3749 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3750
3751         * device/lib/logf.c: added mcs51 assembly version
3752         * device/lib/expf.c: added mcs51 assembly version
3753         * device/lib/_logexpf.c: new shared asm code for expf and logf
3754         * device/include/math.h: add defines for assembly math library
3755         * device/lib/Makefile.in: build new _logexpf.c
3756         * device/lib/libfloat.lib: use new _logexpf.c
3757
3758 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3759
3760         * src/pic/device.c
3761         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3762           device types which have less than 0x7f registers.
3763
3764 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3765
3766         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3767
3768 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3769
3770         * device/lib/printf_fast.c: only build on supported arch.
3771         * device/lib/printf_tiny.c: only build on supported arch.
3772         * device/lib/printf_fast_f.c: only build if asm float lib
3773         * device/lib/_fsget1arg.c: only build if asm float lib
3774         * device/lib/_fsget2args.c: only build if asm float lib
3775         * device/lib/_fsnormalize.c: only build if asm float lib
3776         * device/lib/_fsreturnval.c: only build if asm float lib
3777         * device/lib/_fsrshift.c: only build if asm float lib
3778         * device/lib/_fsswapargs.c: only build if asm float lib
3779         * device/include/stdio.h: don't provide print_fast,
3780           print_fast_f, print_tiny prototypes if --xstack used
3781
3782 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3783
3784         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3785         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3786           to the SOURCES
3787
3788 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3789
3790         * device/lib/printf_fast_f.c: same as printf_fast, but
3791           with floating point enabled
3792         * device/lib/printf_fast.c: minor tweaks
3793         * device/include/stdio.h: add printf_fast_f
3794
3795 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3796
3797         * src/SDCCmain.c: make --float-reent default for mcs51
3798         * device/lib/_fsadd.c: added mcs51 assembly version
3799         * device/lib/_fssub.c: added mcs51 assembly version
3800         * device/lib/_fsmul.c: added mcs51 assembly version
3801         * device/lib/_fsdiv.c: added mcs51 assembly version
3802         * device/lib/_fseq.c: added mcs51 assembly version
3803         * device/lib/_fsneq.c: added mcs51 assembly version
3804         * device/lib/_fsgt.c: added mcs51 assembly version
3805         * device/lib/_fslt.c: added mcs51 assembly version
3806         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3807         * device/lib/Makefile.in: add _fscmp to build
3808         * device/lib/libfloat.lib: add _fscmp to build
3809
3810 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3811
3812         * device/lib/_fs2slong.c: added mcs51 assembly version
3813         * device/lib/_fs2sint.c: added mcs51 assembly version
3814         * device/lib/_fs2schar.c: added mcs51 assembly version
3815         * device/lib/_fs2ulong.c: added mcs51 assembly version
3816         * device/lib/_fs2uint.c: added mcs51 assembly version
3817         * device/lib/_fs2uchar.c: added mcs51 assembly version
3818         * device/lib/_slong2fs.c: added mcs51 assembly version
3819         * device/lib/_sint2fs.c: added mcs51 assembly version
3820         * device/lib/_schar2fs.c: added mcs51 assembly version
3821         * device/lib/_ulong2fs.c: added mcs51 assembly version
3822         * device/lib/_uint2fs.c: added mcs51 assembly version
3823         * device/lib/_uchar2fs.c: added mcs51 assembly version
3824         * device/include/float.h: added #define to select asm vs c
3825
3826 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3827
3828         * device/lib/printf_fast.c: improvements to float output
3829         * device/include/float.h: add defines for assembly float library
3830         * device/lib/_fsget1arg.c: receive 1 float arg
3831         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3832         * device/lib/_fsnormalize.c: normalize a float
3833         * device/lib/_fsreturnval.c: return float, various helper routines
3834         * device/lib/_fsrshift.c: right shift a float's mantissa
3835         * device/lib/_fsswapargs.c: swap 2 floats
3836         * device/lib/Makefile.in: build these 6 new files for mcs51
3837         * device/lib/libfloat.lib: add these 6 files to the library
3838
3839 2004-12-26 Borut Razem <borut.razem AT siol.net>
3840
3841         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3842           built by gcc 3.4.2
3843
3844 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3845
3846         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3847           and fully reentrant and register bank neutral.
3848         * device/lib/printf_fast.c: added float (not enabled by default),
3849           added compact/slower integer (also not enabled by default),
3850           improved size/speed of fast integer code, other minor changes
3851         * device/include/stdio.h, device/lib/Makefile.in,
3852           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3853
3854 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3855
3856         * src/pic16/pcode.c: declaring variables other than at the start of a
3857           block is not supported in C by VC6.
3858
3859 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3860
3861         * applied a previous patch from Raphael Neider that wasn't included
3862         in the previous commits, which fixes infinite loops within jumptable
3863         improvements,
3864         * made some fixes that previous patches introduced
3865
3866 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3867
3868         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3869         that fixes an issue with AOP_PCODE asmop's offset,
3870         * (pic16_popCopyReg): update instance field too,
3871         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3872         function of pic port,
3873         * (genCmp, genAnd, genAssign),
3874         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3875
3876 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3877
3878         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3879         variables initial values to idata section,
3880         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3881         variables in some functions. This utilizes parmBytes field of iCode
3882         structure to hold the offset of the variable in stack. (might be
3883         able to use the stack field too?)
3884         * applied patch from Raphael Neider # ### , # ###
3885         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3886         variable initial values in idata section,
3887         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3888         for static variables with initial value
3889         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3890         applied fix in while loop from Raphael Neider.
3891
3892 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3893
3894         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3895         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3896         * src/ds390/ralloc.c (serialRegAssign): spill bits
3897         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3898         * support/Util/SDCCerr.c,
3899         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3900         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3901         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3902
3903 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3904
3905         * device/include/sdcc-lib.h: inserted LGPL, added includes
3906           asm/ds390/features.h and asm/mcs51/features.h
3907         * device/include/asm/default/features.h,
3908         * device/include/asm/gbz80/features.h,
3909         * device/include/asm/z80/features.h: added empty _AUTOMEM
3910           and _STATMEM
3911         * device/include/asm/ds390/features.h,
3912         * device/include/asm/mcs51/features.h: added files with defines for
3913           _AUTOMEM and _STATMEM indicating automatic and static storage class
3914         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3915         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3916         * src/SDCCicode.c (geniCodeCast),
3917         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3918         * src/SDCCloop.c (loopInduction): removed unused variable lr
3919         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3920           to convertToFcall to include char modulo (RFE 1065037), added check
3921           if left operand is unsigned and use abs of literal value
3922         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3923           as it doesn't work after conversion from peephole.def to peephole.rul
3924         * src/mcs51/gen.c (toBoolean): added check for size,
3925           (genModOneByte): optimized code for signed char modulo a literal
3926           power of 2 (thanks to Hubert Sack),
3927           (genRRC): removed unnecessary "clr c",
3928           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3929         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3930           jump optimization,
3931           swapped rules 256.c and 256.d,
3932           extended 256.d by using new multiple checks (thanks Erik),
3933           added rules 256.e and 256.f,
3934           updated rule 261.a and 261.b to new generated code
3935         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3936
3937 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3938
3939         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3940           induction related bugs, including first part of bug #1074377
3941
3942 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3943
3944         * applied patch from bug-report #1076292,
3945         * applied patches for genAnd and Goto-optimizations for Raphael
3946         Neider,
3947         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3948         dump a less iCode information,
3949         * src/pic16/device.h (pic16_options_t): added field debgen,
3950         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3951         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3952         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3953         puclic,
3954         * (various functions): added macros FENTRY and FENTRY2 to functions,
3955         to emit function prologue,
3956         * (various functions): fixed indentation,
3957         * (genNearPointerGet): fixed loading of FSR0,
3958         * (genPackBits): applied patch from Raphael Neider to fix updating
3959         of FSR0 and touching only the modified bits,
3960         * src/pic16/genarith.c (various functions): added macros FENTRY to
3961         emit function prologue in comments,
3962         * src/pic16/pcode.h: added functions debugf2, debugf3,
3963         * src/pic16/ralloc.c: partial fix for packForPush caused
3964         segmentation fault,
3965
3966 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3967
3968         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3969           <stsp AT users.sourceforge.net> with reversed byte order
3970         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3971
3972 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3973
3974         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
3975           bug #1074377
3976         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
3977         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
3978
3979 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3980
3981         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
3982
3983 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3984
3985         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
3986           conditions,
3987           (setFromConditionArgs): friendly operand parser for peephole rules,
3988           (operandBaseName, operandsNotRelated): new peephole condition
3989           "operandsNotRelated" -- similar to "operandsNotSame", but takes
3990           architecture specific register naming into account, handles n-way
3991           comparisons, and supports quoted literals
3992         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
3993
3994 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3995
3996         * src/mcs51/peeph.def: fixed bug #1076940
3997
3998 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
3999
4000         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4001
4002 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4003
4004         Adding support for replacing ljmps with sjmps in jumptables
4005         generated for switch statements. For now you need to set the
4006         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4007         Now 4 algorithms for mcs51 jumptable generation are used:
4008         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4009         addresses loaded pc-relative for up to 112 cases and stack-pushing
4010         target addresses loaded with offset from dptr for up to 256 cases.
4011
4012         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4013         * src/mcs51/main.c: adapted constants for switch table generation
4014         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4015
4016 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4017
4018         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4019         * support/regression/tests/bug1057979.c: added test for bug 1073386
4020
4021 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4022
4023         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4024         compilers
4025
4026 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4027
4028         * src/pic16/device.h,
4029         * src/pic16/genarith.c,
4030         * src/pic16/glue.c,
4031         * src/pic16/main.c,
4032         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4033
4034 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4035
4036         Large cummulative patch for pic16 port.
4037         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4038         to call when a stack overflow occurs,
4039         * (malloc.h): added CVS Id tag,
4040         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4041         variable,
4042         * added libc directory. The current version of LibC contains string
4043         functions, ctype functions and macros and some functions of the
4044         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4045         be extensively tested in the future. Standard disclaimer here.
4046         Library is not automatically build yet. But one can build it by
4047         invoking 'make' inside the libc directory.
4048         * added ADC library under libio. Preliminary version yet.
4049
4050         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4051         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4052         aopForRemat() now and not by pic16_aopOp(),
4053         * (pic16_popGetTempReg): removed warning messgae when allocating
4054         temporary registers, its a buggy feature and will be removed,
4055         * (pic16_popGet): set register instance field in AOP_CRY,
4056         * (pic16_outBitC): fixed for results in size greater than 1,
4057         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4058         * (pic16_storeForReturn): optimized return of 0,
4059         * (genCmp): experimental code for new genCmp which uses PIC18's
4060         special compare&skip instructions. Initial tests fail some times
4061         with variables grater than 1 byte in size, so new code is disabled,
4062         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4063         a single bit,
4064         * (genCast): began a fix to optimize the casting of a bit to another
4065         bit, now assigning a bitfield to another bitfield will fail, sorry,
4066         * src/pic16/main.c: disabled the use of lr-support feature,
4067         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4068         * added some function prototypes, added function _debugf prototype,
4069         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4070         bits with offset (case PO_GPR_BIT),
4071         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4072         command line,
4073         * (isBankInstruction): modified to return 0 for no banking instruction,
4074         and 1 for banking instruction,
4075         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4076         caused stop processing pCodes after a inline assembly block,
4077         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4078         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4079         registers when it shouldn't,
4080         * src/pic16/ralloc.c (allocReg): add preliminary support for
4081         supporting a limited set of temporary registers,
4082
4083 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4084
4085         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4086           genDataPointerSet): ensure assignments always copy in MSB to LSB
4087           order,
4088           (loadRegFromAop): recognize CLRH optimization,
4089           (genFunction): optimize RECEIVE iCodes in reentrant functions
4090
4091 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4092
4093         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4094           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4095           selected.
4096         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4097         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4098           contiguous with data
4099
4100 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4101
4102         * device/lib/_gptrget.c (_gptrget),
4103         * device/lib/_gptrgetc.c (_gptrgetc),
4104         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4105           instead of sjmp to ret
4106         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4107           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4108
4109 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4110
4111         * .version: bumped version to 2.4.7
4112         * device/lib/_gptrget.c (_gptrget): is now _naked
4113         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4114         * device/lib/_gptrput.c (_gptrput): is now _naked
4115         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4116           (createFunction): fixed xstack
4117         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4118         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4119           or bit either,
4120           (geniCodeCritical): store original interrupt state in an iTemp bit
4121           var unless stack-auto
4122         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4123         * src/SDCCmain.c (setIncludePath): added include/target to search path
4124         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4125         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4126           prototype,
4127           (processFuncArgs): put bit vars in bit area
4128         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4129           unsaveRBank): fixed xstack,
4130           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4131           (genFunction, genEndFunction): fixed xstack,
4132           (genAssign): optimization don't walk backwards through mem
4133         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4134         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4135         * support/regression/Makefile: also make library (for stack-auto) when
4136           making "all" and added "test-mcs51-xstack-auto"
4137         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4138         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4139         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4140         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4141         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4142           make-library by MAKE_LIBRARY
4143         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4144           regression tests for xstack
4145         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4146         * support/regression/tests/critical.c: test for critical on mcs51
4147
4148 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4149
4150         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4151           built version of sdcc instead of installed version
4152
4153 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4154
4155         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4156         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4157           vprintf.c now
4158         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4159         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4160           WARNING: remove device/lib/build/z80/printf.o by hand when
4161           updating from previous build!
4162         * device/lib/z80/printf.c: updated comment
4163         * support/regression/tests/bug1057979.c: test all ports now
4164         * support/regression/tests/bug1065458.c: file added
4165
4166 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4167
4168         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4169           *_start and *_end symbols for static functions
4170
4171 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4172
4173         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4174           and search crt0.o in all library paths,
4175           (setIncludePath): proper handling of --nostdinc,
4176           (setLibPath): proper handling of --nostdlib
4177         * support/regression/Makefile,
4178         * support/regression/ports/ds390/spec.mk,
4179         * support/regression/ports/gbz80/spec.mk,
4180         * support/regression/ports/hc08/spec.mk,
4181         * support/regression/ports/mcs51/spec.mk,
4182         * support/regression/ports/mcs51-large/spec.mk,
4183         * support/regression/ports/mcs51-stack-auto/spec.mk,
4184         * support/regression/ports/z80/spec.mk: use include and lib files from
4185           built version of sdcc instead of installed version
4186         * doc/sdccman.lyx: fixed typo in --nostdinc
4187
4188 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4189
4190         * src/pic/pcode.c,
4191         * src/pic/device.c,
4192         * src/pic/ralloc.c,
4193         * src/pic/gen.c : added support to generate code for struct bit fields.
4194
4195 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4196
4197         * as/xa51/xa_version.h,
4198         * device/include/errno.h,
4199         * device/include/regc515c.h,
4200         * device/lib/_itoa.c,
4201         * device/lib/_ltoa.c,
4202         * device/lib/ser_ir_cts_rts.c,
4203         * sim/ucsim/xa.src/glob.cc,
4204         * sim/ucsim/xa.src/inst_gen.cc,
4205         * sim/ucsim/xa.src/xa_bit.cc,
4206         * sim/ucsim/xa.src/xa_sfr.cc,
4207         * sim/ucsim/z80.src/inst_dd.cc,
4208         * sim/ucsim/z80.src/inst_fdcb.cc,
4209         * support/scripts/keil2sdcc.pl,
4210         * src/pic16/pic16.dsp,
4211         * src/pic16/pic16a.dsp: corrected cvs line endings
4212         * device/lib/printf_large.c: fixed bug 1057979
4213         * src/pic16/gen.c: fixed non-C standard code
4214         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4215         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4216         * support/regression/ports/mcs51/support.c: reload T1 asap
4217         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4218           pdata use and clear idata startup behaviour
4219         * support/regression/tests/bug1057979.c: added
4220
4221 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4222
4223         * device/examples/ds390/ow390/ad26.h,
4224         * device/examples/ds390/ow390/cnt1d.h,
4225         * device/examples/ds390/ow390/crcutil.c,
4226         * device/examples/ds390/ow390/ownet.h,
4227         * device/examples/ds390/ow390/owsesu.c,
4228         * device/examples/ds390/ow390/swt12.h,
4229         * device/examples/ds390/ow390/swtoper.c,
4230         * device/examples/ds390/ow390/temp10.h,
4231         * device/examples/ds390/ow390/thermodl.c,
4232         * device/examples/ds390/tinitalk/tinitalk.dsp,
4233         * device/examples/ds390/tinitalk/tinitalk.dsw,
4234         * device/examples/mcs51/clock/hw.h,
4235         * device/examples/mcs51/simple2/go.bat,
4236         * device/examples/serialcomm/windows/serial.h,
4237         * device/examples/xa51/dummy.c,
4238         * device/examples/xa51/hello.c,
4239         * device/include/80c51xa.h,
4240         * device/include/at89x051.h: corrected cvs line endings
4241
4242 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4243
4244         * src/pic16/main.c (options): added command line --gstack, to trace
4245         stack over/under flows,
4246         * added pragma 'wparam' to allow passing first byte of function
4247         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4248         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4249         call to __gstack_test function and sets up the symbol as extern,
4250         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4251         * popaop): added call to pic16_testStackOverflow,
4252         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4253         wparamList list,
4254         * (genCall, genPcall): now all parameters are passed via stack
4255         except in functions that are pass to wparam pragma in which WREG is
4256         used too,
4257         * (genPcall): REENTRANT flag is checked to see if variable prototype
4258         contains reentrant keyword, don't call a non-reentrant function, via
4259         a reentrant function pointer or vice versa, functions are never
4260         passed via WREG,
4261         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4262         D.Winkler,
4263         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4264         SIGSEGV when accessing a NULL register stucture,
4265         * (pic16_printGPointerType): modified to handle UPPER modifier for
4266         function initializers, changed prototype of function to simpler one,
4267         * (pic16_printIvalFuncPtr): check to see if function is already
4268         added in externs list,
4269         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4270         optimized a move from W to SFR with a move to the same register
4271         later after a CALL,
4272         * device/lib/pic16/debug: NEW directory, contains debug features
4273         which are enabled when linking with libdebug.lib, currently command
4274         line option --gstack enables stack pointer tracing for over/under
4275         flow, corresponding sources are in debug/gstack
4276
4277 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4278
4279         * doc/sdccman.lyx: updated SDCC version,
4280         * (PIC16 port): update list of command line options,
4281         * src/pic16/device.h (structure pic16_options_t): added field gstack
4282         to enable stack overflow tracing on push/pops,
4283         * src/pic16/device.c (statistics structure): added statistics
4284         structure,
4285         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4286         pic16_dump_int_registers): increase statistics counters for each
4287         * variable which is encountered
4288         * (pic16_dump_usection): emit each .udata variable to its own udata
4289         section,
4290         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4291         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4292         parameters via stack, otherwise use old scheme,
4293         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4294         assembler output file,
4295         * src/pic16/main.c: added command line options --gstack to enable
4296         push/pop tracing for stack overflow,
4297         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4298         instructions): added size of each instruction,
4299         * (pic16_countInstruction): estimate size of instructions in
4300         the_pFile list, inline assembly blocks are not counted,
4301         * (pic16_FixRegisterBanking): trace previous register usage, when
4302         banksel optimizations is greater than 0, don't emit a redudant
4303         banksel directive,
4304
4305 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4306
4307         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4308         * src/pic16/ralloc.c : applied same fix for pic16.
4309         * src/pic/gen.c : tidied it up a little.
4310
4311 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4312
4313         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4314         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4315
4316 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4317
4318         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4319
4320 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4321
4322         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4323         non-reentrant function __modsint in the interrupt function (thus
4324         corrupting math operations during serial I/O)
4325         * device/lib/ser_ir.c: as above, changed buffersize
4326         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4327         256.c,d for zeroing
4328         * doc/Makefile: added option -t for rsync
4329
4330 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4331
4332         * src/SDCCast.h (struct ast),
4333         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4334
4335 2004-10-20 Borut Razem <borut.razem AT siol.net>
4336
4337         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4338         package
4339
4340 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4341
4342         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4343         makefile targets,
4344         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4345         support functions to replace long sequences of MOVFF's from access
4346         bank registers to stack and vice versa,
4347         * src/pic16/device.h: added new field opt_flags, where optimization
4348         flags can be set to enable certain features,
4349         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4350         * pBlock, (genFunction, genEndFunction): surroung loop for
4351         saving/loading used registers in stack with PC_INFO pCodes,
4352         INF_LREGS. Code in between can then be optimized by pCode optimizer
4353         to support function calls,
4354         * (genDataPointerSet): fixed bug which loaded float fields in
4355         structures with corrupt data,
4356         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4357         in a standard way debug info on stderr. Feature used for developing
4358         and debugging only,
4359         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4360         obsolete chunks of code,
4361         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4362         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4363         * pic16/src/pcode.c (pic16_newpCodeInfo,
4364         * (pic16_newpCodeOpLocalRegs),
4365         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4366         feature,
4367         * (pic16_pCodeConstString): printing of the initial value of a
4368         symbol as a comment is inhibited since parsing was already done by
4369         copyStr and output is corrupt,
4370         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4371
4372 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4373
4374         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4375
4376 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4377
4378         * as/mcs51/lkarea.c: removed old K&R style,
4379           (lnksect): changed check on boundary error,
4380           (lnksect2): changed check on boundary error,
4381           (lnksect2): extend XSTK to end of page if size = 1
4382         * as/mcs51/lkmain.c: removed old K&R style,
4383           (Areas51): create l_IRAM symbol
4384         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4385         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4386           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4387         * device/lib/_mullong.c: added version to be compiled with xstack
4388         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4389         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4390         * device/lib/mcs51/crtxstack.asm: fixed comment
4391         * src/SDCCglue.c: maxInterrupts defaults to 0,
4392           (emitMaps): added pdata,
4393           (createInterruptVect): (re)moved default,
4394           (glue): added pdata,
4395           (glue): moved __start__xstack to XSTK with default size 1
4396         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4397           and options.float_rent when options.stackAuto is set,
4398           (linkEdit): only write XDATA_NAME if provided on command line
4399         * src/SDCCmem.h,
4400         * src/SDCCmem.c: added pdata
4401         * src/port.h: added pdata_name to PORT
4402         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4403           (saveRegisters, unsaveRegisters): removed usage of B,
4404           (genMinus): fixed accumulator clash,
4405           (genJumpTab): added comment, this needs another look
4406         * src/mcs51/gen.c: added check for "B in use" paranoia,
4407           added pushB() and popB()
4408         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4409           chance
4410         * src/avr/main.c,
4411         * src/ds390/main.c,
4412         * src/hc08/main.c,
4413         * src/mcs51/main.c,
4414         * src/pic/main.c,
4415         * src/pic16/main.c,
4416         * src/xa51/main.c,
4417         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4418           added PSEG (PAG,XDATA) or NULL to port specifier
4419         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4420         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4421           (_mcs51_genInitStartup): removed __start__xstack equ,
4422           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4423         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4424         * src/z80/gen.c (_rleAppend): fixed warnings
4425         * support/regression/tests/zeropad.c: added pdata test
4426         * .version: bumped to 2.4.6
4427
4428 2004-10-17 Borut Razem <borut.razem AT siol.net>
4429
4430         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4431         as a part of nightly build
4432
4433 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4434
4435         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4436         WREG holds the first byte function parameters,
4437         * (aopForSym): take special case for symbols which are in FARSPACE
4438         but in CODESPACE too,
4439         * (assignResultValue): modified to take into account _G.useWreg,
4440         * (genCall): don't use wreg for parameter passing when function is
4441         declared as reentrant, too, added optimization INCF to stack
4442         pointer when stack parameter count is 1,
4443         * (genFunction, genEndFunction): refurnished and fixed to not using
4444         wreg for passing parameters when function has varargs or is
4445         reentrant, fixed bug with symbol name compare for generating
4446         functions in absolute address,
4447         * (pic16_storeForReturn): refurnished,
4448         * (genCmp): began writing a new version of the function, not ready
4449         yet, therefore it is disabled,
4450         * (genAssign): do not read code memory when assigning a function to
4451         a pointer function,
4452         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4453         array of characters, not pointer,
4454         * (pic16initialComments): in debug mode emit an .ident directive for
4455         the assembler,
4456         * (_process_pragma): emit a new warning type (internal to pic16)
4457         when setting stack to default length, emit a similar warning when
4458         placing a function at absolute address and address is not word aligned
4459         * (_pic16_parseOptions): added 'return TRUE' statement,
4460         * (_pic16_linkEdit): if compiling a source, then add the source's
4461         file object, first in the list of objects to link,
4462
4463 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4464
4465         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4466         * src/pic/main.c : removed VC warning.
4467         * src/pic/gen.c : changed comment.
4468
4469 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4470
4471         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4472         reference to a deprecated symbol _GPTRREG was causing failure to
4473         link. Thanks G. M. Gallant for the info.
4474
4475 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4476
4477         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4478         comments for Bugs item #954788.
4479
4480 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4481
4482         * src/pic16/device.c (pic16_dump_gsection,
4483         * pic16_groupRegistersInSection): handle symbols declared to be in
4484         access bank differently,
4485         * src/pic16/gen.c (struct _G): added field resDirect,
4486         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4487         send values read from stack directly to result and don't allocate
4488         temporary values,
4489         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4490         same registers,
4491         * (pic16_sameRegsOfs): NEW,
4492         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4493         free because they were not allocated from temporary pool,
4494         * pic16_popRegFromString): workaround to fix a problem with
4495         allocating variables twice or never,
4496         * (genGenPointerGet): using PRODL instead of FSR0H,
4497         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4498         instead of FSR0H,
4499         * (genAssign): take advantage of the _G.resDirect flag,
4500         * (genCast): around line 11844, use mov2f instead of directly
4501         MOVFF'ing between operands to account for literal values,
4502         * src/pic16/genutils.c: some new debug functions for gpsim have been
4503         added,
4504         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4505         float with integer part only,
4506         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4507         place variables in access bank
4508         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4509         updated sources to reflect recent changes in gen.c
4510
4511 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4512
4513         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4514         sources that searched for headers in installation path, now the
4515         device/include/pic16 is used,
4516         * src/pic16/glue.c (pic16glue),
4517         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4518         .line directives if not in debug mode, this suppresses assembler's
4519         warnings for ignored directives
4520
4521 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4522
4523         * src/port.h: made reset_regparms prototype void parameter explicit.
4524         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4525         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4526         * doc/sdccman.lyx: documented warning disabling and how to use
4527           printf_large to make it print floats.
4528         * device/include/stdbool.h: NEW
4529         * device/lib/_atof.c,
4530         * device/lib/_divuint.c,
4531         * device/lib/_divulong.c,
4532         * device/lib/expf.c,
4533         * device/lib/printf_large.c,
4534         * device/lib/sincosf.c,
4535         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4536         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4537           a completely reentrant lib.
4538
4539 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4540
4541         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4542         * device/include/pic16/stdio.h: fixed bug with colon
4543
4544 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4545
4546         * device/include/pic16/stdio.h,
4547         * device/include/pic16/stdlib.h,
4548         * device/include/pic16/math.h: NEW
4549         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4550         declared as _naked to reduce overhead
4551         * device/lib/Makefile.in (target port-specific-objects-pic16):
4552         changed * to *.* so to ignore the CVS directory,
4553         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4554         stacked variables back in stack,
4555         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4556         corruption
4557
4558 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4559
4560         * .version: bumped version number to 2.4.5
4561         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4562         * support/Util/SDCCerr.c (messages structure): added entry for
4563         W_POSSBUG2
4564
4565         Large cumulative patch for pic16 port and libraries.
4566         * device/include/pic16/sdcc-lib.h,
4567         * device/include/pic16/stdarg.h,
4568         * device/include/asm/pic16/features.h,
4569         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4570         * device/include/pic16/float.h: changes reentrant keyword with
4571         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4572         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4573         updated target build-libraries to include objects from gptr,
4574         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4575         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4576         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4577         all function headings,
4578         * src/SDCCmain.c: added global parameter userIncDirsSet,
4579         * (parseCmdLine): when option -I is encountered add directory to
4580         userIncDirsSet too,
4581         * src/version.awk: added space between control and long,
4582         * src/pic16/NOTES: added some notes for the port,
4583         * src/pic16/gen.c: added prototype for mov2fp function,
4584         * (fReturnpic16[]): properly named return value registers,
4585         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4586         * (aopForSym): added code to handle symbols with onStack flag set,
4587         symbols onStack are allocated PTRSIZE bytes,
4588         * (aopFreeAsmop): handles special case where asmops are stack objects,
4589         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4590         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4591         added argument lock to trace flaws in allocating temporary registers
4592         when developing port,
4593         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4594         * (pic16_popRegFromString): reenabled allocating a direct register
4595         from string,
4596         * (assignResultValue): various beautifications,
4597         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4598         referenced function argument,
4599         * (genIpush): reenabled to allow stacked arguments, handles only
4600         ic->parmPush iCodes,
4601         * (genCall, genPcall): major changes to allow for variable argument
4602         functions, fixed a bug with falsely restoring stack pointer after
4603         returning from call,
4604         * (genFunction): pending code for critical function,
4605         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4606         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4607         * (genNearPointerGet): fixed bug with indirect reading, was always
4608         reading from INDF0
4609         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4610         pointers,
4611         * (genAddrOf): rewrote code to take address of a stacked function parameter
4612         * (genCast): fixed casting to generic pointer type,
4613         * src/pic16/gen.h: added AOP_STA,
4614         * (struct asmop): added field stk,
4615         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4616         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4617         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4618         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4619         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4620         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4621         generic pointers,
4622         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4623         and library paths,
4624         * (pic16_port structure): generic pointer size is set to 3,
4625         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4626         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4627         compiler warning,
4628         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4629         operand is an iTemp,
4630
4631 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4632
4633         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4634         * debugger/mcs51/simi.c: addapt new syntax of s51
4635
4636 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4637
4638         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4639         * src/pic16/pcode.c: commented out some calls to free() in order to
4640         fix bug #989576,
4641
4642 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4643
4644         * src/SDCCicode.h,
4645         * src/SDCCicode.c (isiCodeInFunctionCall),
4646         * src/avr/ralloc.c (selectSpil),
4647         * src/pic/ralloc.c (selectSpil),
4648         * src/pic16/ralloc.c (selectSpil),
4649         * src/ds390/ralloc.c (selectSpil),
4650         * src/hc08/ralloc.c (selectSpil),
4651         * src/xa51/ralloc.c (selectSpil),
4652         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4653         stack in the middle of a function call sequence (fixes bug #1020268)
4654         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4655         costs associated with the minimum switch case.
4656
4657 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4658
4659         * src/SDCC.lex: fixed bug #1030549
4660
4661 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4662
4663         * src/SDCCcse.h (struct cseDef),
4664         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4665         over a function call if the CSE is derived from a symbol whose
4666         address has been taken (fixes bug #1029883)
4667         * support/regression/tests/bug-1029883: a new regression test for
4668         this bug
4669
4670 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4671
4672         * src/hc08/gen.c (emitinline): fixed bug #1029778
4673         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4674         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4675         and starts toward RFE #905167)
4676
4677 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4678
4679         * src/pic16/gen.c (mov2f): New function to move an operand to
4680         another without considering if it is a literal or a register,
4681         * (pic16_sameRegs): don't check if they are both AOP_REG,
4682         * (AccRsh): removed andmask=0 lines,
4683         * (genLeftShift): duplicated to be improved in future versions,
4684         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4685         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4686         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4687         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4688         * (insertBankSwitch): fixed inserting banksel directives algorithm
4689         for instructions that follow a skip instruction, this fixes a report
4690         for broken subtraction code generation,
4691         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4692         iCode is a left op, just in case result and right share the same
4693         registers
4694
4695 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4696
4697         * src/hc08/main.c,
4698         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4699         preservation of HX
4700         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4701         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4702         on 2004-09-12; it was buggy
4703
4704 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4705
4706         * src/SDCCsymt.h: removed RESULT_CHECK
4707         * src/SDCCast.c,
4708         * src/SDCCglue.c,
4709         * src/SDCCval.c,
4710         * src/pic/glue.c,
4711         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4712
4713 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4714
4715         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4716         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4717         configuration values no more rejected by compiler, they are assigned
4718         to configuration registers with a warning message instead,
4719         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4720         the for-loop so last conf register is emitted too,
4721         * (_pic16_initPaths): link library libsdcc.lib by default,
4722         * (_hasNativeMulFor): modified test for multiplication according to
4723         Raphael Neider's remarks. Integer multiplication is also done with
4724         support functions,
4725         * device/include/pic16/pic18fregs.h: corrected type error in while
4726         testing and including 18f6720 header file
4727
4728 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4729
4730         * src/pic16/device.h (pic16_options): removed field use_crt,
4731         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4732         until an optimization to handle single bits is added,
4733         * (pic16_loadFSR0): moved before genUnpackBits,
4734         * (genAnd): some white lines removed,
4735         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4736         leave_reset flags in pic16_options when using crt modules,
4737
4738 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4739
4740         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4741           for bugs 898889 & 979599. Also used some safer print instructions.
4742
4743 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4744
4745         * src/pic16/device.h (pic16_options_t): added field use_crt,
4746         crt_name, no_crt,
4747         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4748         catch a probable future bug,
4749         * src/pic16/gen.c: aopIdx function commented out,
4750         * (genAssign): commented out old code which used aopIdx,
4751         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4752         code, added if conditionals to take into account the --use-crt
4753         command line options,
4754         * src/pic16/main.c (pic16_optionsTable): added new command line
4755         options, --use-crt= and --no-crt,
4756         * (_pic16_linkEdit): now the proper crt object is added in the
4757         linker command line except than when --no-crt is specified,
4758         * src/pic16/pcode.c,
4759         * src/pic16/pcode.h: added some structures and functions for a new
4760         optimization scheme to compansate for instruction overhead between
4761         same iCodes, this scheme is currently under development and is not
4762         working in any way,
4763         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4764         to && operator,
4765         * device/lib/pic16/startup/crt0i.c,
4766         * device/lib/pic16/startup/crt0iz.c: added global char variable
4767         __uflags to force the generation of an idata section
4768
4769 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4770
4771         * doc/Makefile,
4772         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4773         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4774
4775 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4776
4777         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4778         Frieder) and clarified the default code optimization mode
4779
4780 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4781
4782         * src/SDCC.lex (doPragma, process_pragma),
4783         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4784         "opt_code_size", and "opt_code_balanced"
4785         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4786         regrouped options by category, added support for category headers
4787         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4788         and "--opt-code-size"
4789         * doc/sdccman.lyx: documented these new options and pragmas
4790         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4791         preference into account
4792
4793 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4794
4795         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4796           geniCodePreDec): Fixed bug 904237 by generating a warning
4797         * src/SDCCerr.h,
4798         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4799
4800 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4801
4802         * src/pic/device.c : When no max ram set validate full memory range.
4803         * src/pic/pcode.c,
4804         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4805
4806 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4807
4808         * device/lib/_gptrget.c,
4809         * device/lib/_gptrput.c: updated comment
4810         * device/lib/calloc.c,
4811         * device/lib/free.c,
4812         * device/lib/malloc.c,
4813         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4814         * src/SDCCcse.c (cseBBlock),
4815         * src/SDCCicode.c (printOperand, geniCodeArray),
4816         * src/SDCCicode.h (struct operand): fixed bug 868103
4817         * support/regression/tests/bug-868103.c: added
4818         * src/SDCCast.c (searchLitOp),
4819         * src/SDCCcse.h (struct cseDef),
4820         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4821         * src/SDCCicode.h (struct operand),
4822         * src/SDCCsymt.h (struct sym_link),
4823         * src/avr/gen.c (hasInc),
4824         * src/ds390/gen.c (hasInc),
4825         * src/hc08/gen.c (genPlusIncr, hasInc),
4826         * src/mcs51/gen.c (hasInc),
4827         * src/pic16/glue.c (pic16_printIvalChar),
4828         * src/pic16/ralloc.c (regWithIdx),
4829         * src/xa51/gen.c (hasInc) : removed warnings
4830         * src/SDCCast.c (createBlock): added comment ???
4831         * src/hc08/ralloc.c: updated comments
4832
4833 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4834
4835         * doc/sdccman.lyx: updated section on switch statements, added
4836         section about semaphore locking
4837         * doc/Makefile: added option -info for latex2html
4838         * device/lib/_gptrget.c,
4839         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4840
4841 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4842
4843         * src/pic/device.h,
4844         * src/pic/device.c,
4845         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4846          maxram is less than 0x100.
4847
4848 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4849
4850         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4851
4852 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4853
4854         * src/port.h,
4855         * src/mcs51/main.c,
4856         * src/ds390/main.c,
4857         * src/z80/main.c,
4858         * src/hc08/main.c,
4859         * src/pic/main.c,
4860         * src/pic16/main.c,
4861         * src/avr/main.c,
4862         * src/xa51/main.c
4863         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4864         a jump table is the best form for a switch statement, including
4865         automatic insertion of missing cases to make the case range
4866         continuous. Developed in collaboration with Frieder Ferlemann.
4867
4868 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4869
4870         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4871         accumulator result if it needs sign extension
4872
4873 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4874
4875         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4876
4877 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4878
4879         * device/lib/gbz80/printf.c,
4880         * device/lib/z80/printf.c: removed define for NULL
4881
4882 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4883
4884         * as/xa51/xa_link.c,
4885         * device/examples/ds390/ow390/ad26.c,
4886         * device/examples/ds390/ow390/cnt1d.c,
4887         * device/examples/ds390/ow390/counter.c,
4888         * device/examples/ds390/ow390/ds2480.h,
4889         * device/examples/ds390/ow390/ds2480ut.c,
4890         * device/examples/ds390/ow390/findtype.c,
4891         * device/examples/ds390/ow390/gethumd.c,
4892         * device/examples/ds390/ow390/owllu.c,
4893         * device/examples/ds390/ow390/ownetu.c,
4894         * device/examples/ds390/ow390/swt12.c,
4895         * device/examples/ds390/ow390/swtloop.c,
4896         * device/examples/ds390/ow390/temp.c,
4897         * device/examples/ds390/ow390/temp10.c,
4898         * device/examples/ds390/ow390/thermo21.c,
4899         * device/examples/ds390/ow390/tinilnk.c,
4900         * device/examples/ds390/ow390/tstfind.c,
4901         * device/examples/serialcomm/windows/serial.cpp,
4902         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4903         * device/include/reg51.h: fixed line endings for cvs
4904
4905 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4906
4907         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4908         packRegsForAccUse, packRegisters): new accumulator register
4909         packing algorithm
4910         * support/regression/ports/hc08/support.c (_putchar): suppress
4911         warning of unused variable
4912         * src/SDCCicode.c: added SWAP entry to codeTable
4913
4914 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4915
4916         * device/lib/sprintf.c: forgot to add this file before previous commit
4917
4918 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4919
4920         * src/pic16/gen.c (genPackBits): added operand right in function
4921         parameters, load result directly if p_type is POINTER (that is
4922         called by genNearPointerSet)
4923         * (genUnPackBits): added operand left in function parameters,
4924         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4925         FSR0 if accessing bitfields,
4926
4927 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4928
4929         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4930           _print_format; updated printf, sprintf, vsprintf
4931         * device/include/asm/default/features.h: corrected comment/define
4932         * device/lib/Makefile.in: added sprintf.c
4933         * device/lib/libsdcc.lib: added sprintf module
4934         * device/lib/printf_large.c,
4935         * device/lib/vprintf.c,
4936         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4937           into these 3 files
4938         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4939         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4940         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4941           hc08 test
4942         * support/regression/tests/zeropad.c: define idata as data for hc08
4943
4944 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4945
4946         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4947         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4948         labels are referenced at least once (even if a reference is not found)
4949         * src/hc08/gen.c (emitcode): set isComment flag for comments
4950         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4951         loads), rules 6a..6b (optimize jumps to return)
4952
4953 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4954
4955         * device/lib/acosf.c (acosf),
4956         * device/lib/asinf.c (asinf),
4957         * device/lib/atanf.c (atanf),
4958         * device/lib/ceilf.c (ceilf),
4959         * device/lib/cosf.c (cosf),
4960         * device/lib/coshf.c (coshf),
4961         * device/lib/cotf.c (cotf),
4962         * device/lib/fabsf.c (fabsf),
4963         * device/lib/floorf.c (floorf),
4964         * device/lib/log10f.c (log10f),
4965         * device/lib/logf.c (logf),
4966         * device/lib/sinf.c (sinf),
4967         * device/lib/sinhf.c (sinhf),
4968         * device/lib/sqrtf.c (sqrtf),
4969         * device/lib/tanf.c (tanf),
4970         * device/lib/tanhf.c (tanhf),
4971         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4972         replaced all instances of "reentrant" in the library functions
4973         defined in math.h with this macro.
4974         * support/regression/tests/float_trans.c: reenabled test for hc08
4975
4976 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
4977
4978         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
4979         erroneously deleted
4980
4981 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4982
4983         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
4984         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
4985         multi-byte volatile operands are used
4986         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
4987         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
4988         initialization to area GSINIT0 so that it would always precede
4989         any static initializers in GSINIT
4990         * support/regression/tests/zeropad.c: fixed idata define for hc08
4991         * support/regression/tests/bug-927659.c,
4992         * support/regression/tests/float_trans.c: disabled tests for hc08
4993         pending missing library routines
4994         * .version: increased version number to 2.4.4 - hc08 port now passes
4995         regression tests
4996
4997
4998 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
4999
5000         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5001         * Makefile.common.in,
5002         * as/Makefile,
5003         * as/hc08/Makefile.in,
5004         * as/mcs51/Makefile.in,
5005         * as/z80/Makefile.in,
5006         * debugger/mcs51/Makefile.in,
5007         * device/include/Makefile.in,
5008         * device/lib/Makefile.in,
5009         * doc/Makefile,
5010         * link/Makefile,
5011         * link/z80/Makefile.in,
5012         * packihx/Makefile.in,
5013         * sim/ucsim/main_in.mk,
5014         * sim/ucsim/avr.src/Makefile.in,
5015         * sim/ucsim/doc/Makefile.in,
5016         * sim/ucsim/gui.src/serio.src/Makefile.in,
5017         * sim/ucsim/hc08.src/Makefile.in,
5018         * sim/ucsim/s51.src/Makefile.in,
5019         * sim/ucsim/xa.src/Makefile.in,
5020         * sim/ucsim/z80.src/Makefile.in,
5021         * src/Makefile.in,
5022         * support/cpp2/Makefile.in,
5023         * support/librarian/Makefile,
5024         * support/makebin/Makefile: added DESTDIR to the install path proposed
5025         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5026         * doc/sdccman.lyx: added DESTDIR documentation
5027
5028 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5029
5030         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5031         instruction for interrupt handlers, use fast returns when returning
5032         from high priority interrupts
5033
5034 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5035
5036         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5037         code generation
5038         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5039         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5040         bugs, ported much of Bernhard's code from mcs51
5041         * src/mcs51/gen.c (genSend),
5042         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5043         than one when calling a reentrant function
5044         * device/lib/_mullong.c: defined an alternate struct layout for big
5045         endian ports (hc08)
5046
5047 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5048
5049         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5050         test
5051
5052 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5053
5054         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5055         are sane and complete before asking the port its prefered parameter
5056         passing method (fixes bug #1017633)
5057         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5058         and _ret3
5059
5060 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5061
5062         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5063         problem in bitfields >= 8 bits.
5064
5065 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5066
5067         * src/SDCCsymt.c: undid changes that were not meant to be committed
5068
5069 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5070
5071         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5072
5073 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5074
5075         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5076           copied and wrong bit got inverted
5077
5078 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5079
5080         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5081         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5082         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5083         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5084         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5085         assignments to bitfields at known addresses
5086         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5087         reads from bitfields at known addresses
5088         * src/hc08/ralloc.c (packRegisters),
5089         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5090         genhc08Code): optimize pointer get values used as conditionals
5091         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5092         and branch
5093
5094 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5095
5096         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5097         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5098         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5099         as conditionals
5100
5101 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5102
5103         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5104
5105 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5106
5107         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5108         related problems
5109
5110 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5111
5112         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5113
5114 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5115
5116         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5117         mcs51 port
5118
5119 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5120
5121         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5122
5123 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5124
5125         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5126         cases use more compact code.
5127
5128 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5129
5130         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5131
5132 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5133
5134         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5135
5136 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5137
5138         * src/SDCCsymt.h,
5139         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5140         parameter of changePointer() from symbol* to sym_link*
5141         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5142         * src/SDCCsymt.c (compareType): void* type is castable to other
5143         pointers, but not necesarily an exact match.
5144         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5145         is no longer blindly treated as an exact match.
5146         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5147
5148 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5149
5150         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5151
5152 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5153
5154         * src/pic/gen.c,
5155         * src/pic/pcode.c,
5156         * src/pic/ralloc.h,
5157         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5158
5159 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5160
5161         * src/pic/device.c,
5162         * src/pic/device.h,
5163         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5164
5165 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5166
5167         * src/mcs51/gen.c (emitcode): fixed bug #992819
5168
5169 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5170
5171         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5172           there's no need to make it worse
5173
5174 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5175
5176         * src/mcs51/ralloc.c (deassignLR),
5177         * src/ds390/ralloc.c (deassignLR),
5178         * src/hc08/ralloc.c (deassignLR),
5179         * src/z80/ralloc.c (deassignLR),
5180         * src/pic/ralloc.c (deassignLR),
5181         * src/pic16/ralloc.c (deassignLR),
5182         * src/avr/ralloc.c (deassignLR),
5183         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5184         rlivePoint): fixed another part of bug #971834
5185
5186 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5187
5188         * src/z80/main.c: enabled "critical" keyword
5189         * src/z80/mappings.i,
5190         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5191         functions (fixes bug #979646)
5192         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5193
5194 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5195
5196         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5197           such as c:\mydir.
5198
5199 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5200
5201         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5202           doesn't disable too much optimizations
5203
5204 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5205
5206         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5207
5208 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5209
5210         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5211
5212 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5213
5214         * src/pic/gen.c tidied up tabs
5215         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5216         * src/pic/main.c tidied up tabs
5217         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5218         * src/pic/pcoderegs.c tidied up tabs
5219         * src/pic/ralloc.c tidied up tabs
5220
5221 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5222
5223         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5224         to S_FIXED for pic16 port and when symbol is not in level 0,
5225         allocate for S_REGISTER storage class and pic16 port, too,
5226         * src/pic16/device.h: prototype for checkSym,
5227         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5228         * (pic16_assignConfigWordValue): test the value and the mask to
5229         validate that the value is suitable for the configuration word,
5230         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5231         collect extern declared symbols, don't emit symbol twice, check
5232         first if symbol is in publics set first,
5233         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5234         * added command line '--fstack' which enables an experimental
5235         feature for stack access, too buggy to be used yet...
5236         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5237         * (pic16_allocDirReg): when register has storage class S_REGISTER
5238         allocate in pic16_dynAccessRegs,
5239         * device/include/pic16/pic18f????.h: modified configuration word
5240         naming convention, words started as CONFIG0H but should be CONFIG1H
5241
5242 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5243
5244         * device/include/mcs51reg.h: fixed bug 970993
5245
5246 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5247
5248         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5249         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5250         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5251         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5252         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5253         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5254           error/warning numbers,
5255           added function setWarningDisabled()
5256         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5257         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5258           _memcmp.c _memmove.c calloc.c realloc.c free.c
5259         * support/regression/tests/malloc.c: added tests for new functionality
5260         * support/regression/tests/zeropad.c: added tests for truncated initializers
5261           and initialized char arrays starting with '\x0'
5262         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5263
5264 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5265
5266         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5267
5268 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5269
5270         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5271         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5272         peephole 177.e. Thanks to anonymous
5273
5274 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5275
5276         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5277         function isn't used in the source but referenced as a
5278         variable initializer then declare it as extern in .asm file
5279
5280 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5281
5282         * .version: increased version number to 2.4.3
5283
5284         Adding version extension according to ChangeLog CVS revision
5285         * src/Makefile.in (target all): added dependency 'version.h'
5286         * (rule version.h): added rule to create version.h from ChangeLog,
5287         * (rule dep): added dependency version.h,
5288         * src/version.awk: AWK script to create version.h
5289         * src/SDCCdwarf2.c (dwWriteModule),
5290         * src/SDCCglue.c (initialComments),
5291         * src/SDCCmain.c (printVersionInfo): modified to write after
5292         version string the version extension number,
5293         * src/SDCCutil.c: included "version.h"
5294         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5295         number,
5296         * src/SDCCutil.h: added prototype for getBuildNumber
5297
5298         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5299         includeDirsSet, too,
5300         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5301         const char [] is found in function prototype...
5302
5303         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5304         moving to WREG with source is already in WREG,
5305         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5306         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5307         * (aopForSym): stack'ed symbols are partially supported, added
5308         if-clause to support symbols in FARSPACE,
5309         * (sameRegs): added test for AOP_ACC to see if registers are same,
5310         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5311         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5312         * (pic16_popRegFromString): will not allocate a new register if it
5313         doesn't find one by name, bug may have introduced...
5314         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5315         * (genIpush): revived to use pic16 port's stack,
5316         * (genAddrOf): added incomplete case for stack'ed operand,
5317         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5318         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5319         can handle multibyte operands,
5320         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5321         * (pic16initialComments): added message for MPLAB compatibility
5322         mode enabled,
5323         * src/pic16/main.h: prototype for pic16_mplab_comp,
5324         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5325         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5326         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5327         because of increased complexity of procedure,
5328         * (_process_pragma): stack pragma changed to format 'stack pos len',
5329         emit symbol '_stack_end' to conform with gplink,
5330         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5331         to search for register,
5332         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5333         PO_GPR_REGISTER,
5334         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5335         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5336         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5337         case for PO_GPR_REGISTER,
5338         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5339         dies, the new era is ahead !...
5340         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5341         pic16_dynInternalRegs,
5342         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5343         * (pic16_allocDirReg): minor optimizations and bug fixes,
5344         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5345
5346         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5347         load stack and frame pointer with address of 'stack_end' symbol
5348
5349 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5350
5351         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5352         without source code but only variable initializers
5353
5354 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5355
5356         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5357         external are not declared as extern to reduce overhead while linking
5358
5359 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5360
5361         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5362
5363 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5364
5365         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5366           Yee Keat for the patch
5367         * src/SDCCast.c (decorateType): fixed bug #979599
5368         * src/ds390/gen.h: removed local fReturnSizeDS390
5369         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5370         * src/ds390/gen.c (genAnd, genOr, genXor),
5371         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5372
5373 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5374
5375         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5376         add relFilesSet to $3, manipulate $2 to handle linking of object
5377         files without source files in command line,
5378         * device/include/pic16 (all headers): added ID location macros,
5379         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5380         entries for ID location bytes,
5381         * (pic16_assignIdByteValue): NEW,
5382         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5383         added field dumpcalltree to pic16_options_t,
5384         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5385         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5386         emitting rFalseIfx label after check_carry label,
5387         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5388         pic16_emitDIRegs), NEW
5389         * (pic16glue): dump .calltree file when option --calltree found,
5390         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5391         * (_pic16_genAssemblerPreamble): emit ID locations after
5392         configuration registers,
5393         * (pic16_linkCmd): modifications of the link command,
5394         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5395         * (pic16_pCodeInitRegisters): don't init stack registers,
5396         * (pic16_findPrevInstruction): fixed bug,
5397         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5398         bug with immediate registers,
5399         * (buildCallTree): traces stack push and pop,
5400         * (pct2): dump also stack usage for each function,
5401         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5402         * (pic16_allocDirReg): various modifications,
5403         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5404         fixed to 1,
5405
5406 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5407
5408         * src/pic16/pcode.c: removed buggy double colon
5409
5410 2004-07-01 Borut Razem <borut.razem AT siol.net>
5411
5412         * support/scripts/sdcc.nsi: added include/pic16 to setup
5413
5414 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5415
5416         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5417         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5418         target 'clean',
5419         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5420         specific command line arguments. Also added sample lkr script
5421         for placing a variable at a specific memory bank.
5422         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5423         at a specific memory bank,
5424         * (pic16_dump_isection): fixed bug which caused string literals to
5425         be omitted when dumping idata section,
5426         * (pic16_groupRegistersInSection): added code to handle registers
5427         in specific memory banks,
5428         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5429         public, all references are renamed too,
5430         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5431         AOP_DPTR2,
5432         * (pic16_storeForReturn): added case to handle when dest is WREG,
5433         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5434         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5435         pic16_rel_udata, check to see if that register is marked as being
5436         a member of a specific memory bank,
5437         * (pic16_printIvalCharPtr): added code to add string literals either
5438         to code or the idata sections,
5439         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5440         also accept the 'udata' pragma,
5441         * src/pic16/main.h: new structure types sectName and sectSym
5442         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5443         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5444         * (pic16_findPrevInstruction): fixed, it returned nothing,
5445         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5446         instruction combinations,
5447         * (pic16_FixRegisterBanking): heavily reorganised,
5448         * (pic16_AnalyzeBanking): if generating banksel directives is
5449         disabled, then don't call FixRegisterBanking at all,
5450         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5451         completely removed,
5452         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5453
5454 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5455
5456         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5457         Phuah Yee Keat <yk.phuah AT nestac.com>
5458
5459 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5460
5461         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5462         correctly the IVT even if it is relocated to some other location
5463
5464 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5465
5466         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5467         * device/include/pic16/pic18f2220.h: NEW,
5468         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5469         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5470         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5471         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5472         nodefaultlibs, ivt_loc is the location of the interrupt vector
5473         table, and nodefaultlibs signs that default libraries should not be
5474         linked in link stage,
5475         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5476         according to --ivt-loc argument,
5477         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5478         when pragma stack is found,
5479
5480 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5481
5482         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5483         256 (range check), 257 (do while), 258.a-f (bit banging
5484         f.e. on 3-wire SPI bus)
5485
5486 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5489         variables used exclusively within a loop
5490
5491 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5492
5493         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5494
5495 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5496
5497         * src/SDCClrange.c (computeClash): fixed bug #971834
5498
5499 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5500
5501         * src/mcs51/gen.c (genCmp): fixed bug #975903
5502         * src/hc08/gen.c (operandsEqu),
5503         * src/ds390/gen.c (operandsEqu),
5504         * src/z80/gen.c (operandsEqu),
5505         * src/pic/gen.c (operandsEqu),
5506         * src/pic16/gen.c (operandsEqu),
5507         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5508         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5509
5510 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5511
5512         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5513
5514 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5515
5516         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5517         default case in switch statement,
5518         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5519         to eliminate problem with initialisation of pointers, but problem
5520         still exists,
5521         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5522         * (emitStaticSegment): removed various lines emitting debug info,
5523         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5524         added processor registers for utilizing EEPROM,
5525         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5526         configurable and set 8
5527
5528 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5529
5530         * .version: increased version number to 2.4.2,
5531
5532         Cumulative patch for pic16 port
5533         * src/pic16/device.c: changed scheme to dump initial values for
5534         variables in idata segment, all print_idata* functions were removed,
5535         now the pic16_printIval* will be called,
5536         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5537         * _pic16_printPointerType, pic16_printPointerType,
5538         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5539         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5540         NEW, similar to the respective functions in SDCCglue.c,
5541         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5542         way, emitting hex bytes,
5543         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5544
5545 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5546
5547         * src/avr/ralloc.c (serialRegAssign),
5548         * src/xa51/ralloc.c (serialRegAssign),
5549         * src/pic/ralloc.c (serialRegAssign),
5550         * src/pic16/ralloc.c (serialRegAssign),
5551         * src/hc08/ralloc.c (serialRegAssign),
5552         * src/z80/ralloc.c (serialRegAssign),
5553         * src/ds390/ralloc.c (serialRegAssign),
5554         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5555
5556 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5557
5558         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5559         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5560
5561 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5562
5563         Cumulative patch for pic16 port:
5564         * src/pic16/device.h (typedef PIC16_device) modified fields for
5565         defining microcontrollers,
5566         * src/pic16/device.c: added new info for all devices in Pics16 array,
5567         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5568         to be optimised out by the pCode optimiser,
5569         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5570         specially, bug reported by G.M. Gallant,
5571         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5572         as force'd so that cannot be optimised out by pCode optimiser,
5573         * src/pic16/pcode.c,
5574         * src/pic16/pcodepeeph.c,
5575         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5576         they are disabled by default, but can be enabled explicit with
5577         command argument --denable-peeps, for testing,
5578         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5579         --pomit-ivt in COMPILE_FLAGS
5580
5581 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5582
5583         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5584           compilation on MSVC
5585
5586 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5587
5588         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5589
5590 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5591
5592         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5593         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5594
5595 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5596
5597         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5598         would only assign 0x300001 register.
5599
5600 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5601
5602         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5603         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5604
5605 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5606
5607         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5608         for ds80c400
5609         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5610         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5611         added peephole 254 (left shift), 255 (jump table)
5612
5613 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5614
5615         * device/lib/Makefile.in: removed comment line with model-pic16,
5616         * (target port-specific-objects-pic16): the libraries and objects
5617         are copied to the build directory form the device/lib/pic16/bin
5618         directory
5619
5620         Cumulative patch concerning pic16 port:
5621         * library directory has been re-organized,
5622         * added support for PIC18F1220,
5623         * added headers and library sources for chips 18f1220,18f6520,
5624         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5625
5626         * configuration registers setting has changed, now each supported
5627         device has a complete description of the registers it uses,
5628         * all initialisations are moved to idata sections, these section
5629         can be absolute or relocatable,
5630         * fixed initialisation of codespace variables,
5631         * fixed warning about PCLATU and gpsim,
5632         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5633         * (genAssign): use table reads when assigning from variables in codespace,
5634         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5635         char/int variables placed in codespace,
5636         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5637         registers set in .asm file, no need for --pomit-config-words anymore,
5638         * (pic16glue): some 8051 legacy segments are commented out
5639         (to be removed completely),
5640         * added support for alternative assembler and linker with --asm=
5641         and --link= command line arguments,
5642         * peepholes are disabled automatically in the port, no need to
5643         specify on command line,
5644         * port supports natively char/int/long multiplication, but converts
5645         all divisions to support functions,
5646         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5647         to the file set in variable $2,
5648         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5649         strings in ASCII format and not in hex,
5650         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5651         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5652         allocate proper register if iCodes aren't temporary,
5653
5654 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5655
5656         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5657
5658 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5659
5660         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5661         is commented out
5662
5663 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5664
5665         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5666         computed address is reused
5667         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5668         multi-byte bitfields
5669
5670 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5671
5672         * src/z80/gen.c: (genArrayInit): must check for pointers too
5673
5674 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5675
5676         * support/regression/tests/zeropad.c: never meant to commit the
5677           nestedstruct test: removed, added check for GCC version
5678
5679 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5680
5681         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5682         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5683         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5684           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5685           bugs 928906 and 954082 half-empty initializers
5686         * src/SDCCsymt.h,
5687         * src/SDCCsymt.c (getAllocSize): added for above fix
5688         * src/z80/gen.c (genArrayInit): fixed bug 741044
5689         * support/regression/tests/zeropad.c: added tests
5690
5691 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5692
5693         * src/pic16/device.c (pic16_dump_section): corrected bug which
5694         caused some symbols of the libraries to be misplaced
5695
5696 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5697
5698         * src/pic16/glue.c,
5699         * src/pic16/ralloc.h,
5700         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5701         to fix conflict with pic port
5702
5703 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5704
5705         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5706         externs configuration variables,
5707         * src/pic16/ralloc.h,
5708         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5709         prototype in header, commented out some debug messages
5710
5711 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5712
5713         * src/pic16/glue.c,
5714         * src/pic16/main.c,
5715         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5716         for gpasm COFF object generation. Thanks to D. Hawkins for
5717         his patch info
5718
5719 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5720
5721         * src/ds390/main.c,
5722         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5723         Brock for spotting this)
5724         * src/ds390/gen.c (genEndFunction),
5725         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5726         interrupt handler and critical. Disable push/pop optimizations when
5727         peephole optimizations disabled.
5728
5729 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5730
5731         Updated pic16 library sources and headers.
5732         * device/lib/pic16/pic18f*/ ,
5733         * device/include/pic16/*.h: modified to handle structured SFR
5734         definitions
5735
5736 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5737
5738         * src/port.h (PORT structure): added hook initPaths, now each
5739         port can declare its own default search paths,
5740         which can been seen with the --print-search-dirs option,
5741         see pic16 port for example,
5742         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5743         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5744         * (doPrintSearchDirs): NEW, replaces in a central manner the
5745         printing of search dirs which was split in set*Paths functions,
5746         * (main): added call to port->initPaths and doPrintSearchDirs,
5747         * src/avr/main.c,
5748         * src/ds390/main.c,
5749         * src/hc08/main.c,
5750         * src/izt/i186.c,
5751         * src/izt/tlcs900h.c,
5752         * src/mcs51/main.c,
5753         * src/pic/main.c,
5754         * src/pic16/main.c: modified port structures to reflect addition of
5755         initPaths hook,
5756
5757         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5758         * (pic16_dump_section): for registers in same address reserve memory once,
5759         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5760         to no_banksel,
5761         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5762         result is greater in size than right or left,
5763         * (pic16_genUMult8X8_8): there are some cases where the result can
5764         be 16 bits size, so handle these,
5765         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5766         * (pic16_outBitC): modified to emit pcodes,
5767         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5768         or not,
5769         * (genDivOneByte): implemented algorithm to divide 8-bits,
5770         * (genCmp): uncommented goto, but issues still exist,
5771         * (genAnd): fixed a bug with variables >8bits,
5772         * (genPackBits): optimization added that uses BCF/BSF to change a
5773         single bit,
5774         * (genAssign): fixed bug when assigning floating point literals,
5775         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5776         __sdcc_gsinit_startup label,
5777         * src/pic16/main.c (_pic16_init): removed search directory
5778         initialisations,
5779         * (_pic16_initPaths): NEW, used to initialise search directories,
5780         * (_hasNativeMulFor): support functions for all except char/int
5781         multiplication, and char division,
5782         * (PIC16_port struct): modified entry for native mul support,
5783         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5784         no_banksel option,
5785         * (buildCallTree): call to register_usage is ifdef'ed out,
5786
5787 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5788
5789         * device/include/string.h: applied Stas Sergeev's patch to make this
5790         header file compatible with the preprocessor -Wundef option
5791         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5792         failure (fixes bug #941458)
5793
5794 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5795
5796         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5797         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5798         that the variable, not the function, should be static
5799         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5800         to be consistent with non-literal case
5801
5802 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5803
5804         * src/SDCCast.c (isConformingBody): fixed bug #949967
5805         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5806         convilong): fixed bug #952086
5807
5808 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5809
5810         * src/SDCCmem.c (allocVariables): fixed bug #955321
5811
5812 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5813
5814         * src/hc08/main.c (_hc08_genAssemblerEnd),
5815         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5816         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5817         completely eliminated the use of a temporary file
5818         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5819         when more than one file linked
5820         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5821
5822 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5823
5824         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5825         which fixes bug #543481
5826         * support/regression/tests/bug-751703.c: fixed comments left from a
5827         cut and paste error
5828         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5829         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5830         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5831         scopes
5832         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5833         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5834         are now changed to underscores in moduleName
5835
5836 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5837
5838         * as/mcs51/lkmem.c: better fix for bug #954173
5839
5840 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5841         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5842
5843         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5844         * device/include/c8051f000.h,
5845         * device/include/c8051f120.h,
5846         * device/include/c8051f300.h,
5847         * device/include/c8051f310.h,
5848         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5849         PWM16) and detab'ed
5850
5851 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5852
5853         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5854         and mailing lists, doc'ed --no-peep-comments, removed reference
5855         to knoppix (newest version has no LyX/LaTeX), other minor changes
5856         * src/SDCCglue.c (glue): save 2 bytes stack space with
5857         option --main-return. The ljmp could probably be avoided too
5858
5859 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5860
5861         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5862
5863 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5864
5865         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5866         * src/SDCCopt.c (isLocalWithoutDef),
5867         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5868         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5869         (credit to Maarten Brock for patch #949363, on which this is based)
5870         * support/regression/tests/bug-751703.c: some test cases of extern used
5871         within inner scopes.
5872
5873 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5874
5875         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5876         SPEC_STRUCT
5877         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5878         struct definitions
5879         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5880         dwWriteLabel): fix to create valid debugger symbols even when
5881         the module name has non-alphanumeric symbols in it
5882         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5883         when a variable's allocation has been optimized away
5884
5885
5886 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5887
5888         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5889         * src/hc08/main.c,
5890         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5891         * src/mcs51/main.c,
5892         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5893         * src/ds390/main.c,
5894         * src/z80/gen.c (z80_emitDebuggerSymbol),
5895         * src/z80/main.c,
5896         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5897         * src/pic/main.c,
5898         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5899         * src/pic16/main.c,
5900         * src/avr/gen.c (avr_emitDebuggerSymbol),
5901         * src/avr/main.c,
5902         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5903         * src/xa51/main.c,
5904         * src/SDCCdebug.c (emitDebuggerSymbol),
5905         * src/SDCCdebug.h,
5906         * src/port.h: added a debugger struct to the port struct. Added a
5907         callback for defining debugger symbols
5908
5909         * src/SDCCast.c (createLabel),
5910         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5911         with isitmp = 1
5912         * src/SDCCicode.h,
5913         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5914         iCode back to the ast for the function
5915
5916         * src/hc08/ralloc.c (hc08_assignRegisters),
5917         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5918         unneeded fields from the regs struct.
5919         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5920         pushReg() & pullReg() functions instead of emitcode()
5921
5922         * src/hc08/gen.c (genLabel, genhc08Code),
5923         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5924
5925         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5926         debugger hooks
5927
5928         * src/hc08/gen.c (genEndFunction, genhc08Code),
5929         * src/hc08/gen.h,
5930         * src/mcs51/gen.c (genEndFunction, gen51Code),
5931         * src/mcs51/gen.h,
5932         * src/ds390/gen.c (genEndFunction, gen390Code),
5933         * src/ds390/gen.h,
5934         * src/z80/gen.c (genEndFunction, genZ80Code),
5935         * src/z80/gen.h,
5936         * src/z80/z80.h,
5937         * src/pic/gen.c (genEndFunction, genpic14Code),
5938         * src/pic/gen.h,
5939         * src/pic16/gen.c (genEndFunction, genpic16Code),
5940         * src/pic16/gen.h,
5941         * src/avr/gen.c (genEndFunction, genAVRCode),
5942         * src/avr/gen.h,
5943         * src/xa51/gen.c (genEndFunction, genXA51Code),
5944         * src/xa51/gen.h,
5945         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5946         specific code to cdbFile.c and out of the backend code generators
5947
5948         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5949         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5950         starting address is now 0
5951
5952         * as/hc08/asm.h,
5953         * as/hc08/m08pst.c,
5954         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5955         assembler directive for DWARF support
5956         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5957
5958         * src/src.dsp,
5959         * src/Makefile.in,
5960         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5961
5962 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5963
5964         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5965         and inappropriate peephole optimization in jump tables
5966
5967 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5968
5969         * as/hc08/m08pst.c,
5970         * src/SDCCglue.c: sdccopt works for the hc08 port now
5971
5972 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
5973
5974         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
5975
5976 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5977
5978         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
5979
5980 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5981
5982         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
5983         rules
5984         * src/SDCCmain.c,
5985         * src/SDCCglobl.h,
5986         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
5987         comments from the peephole optimizer replacement rules
5988         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
5989         symbols
5990         * src/SDCCcse.c (updateSpillLocation),
5991         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
5992         equivalents
5993         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
5994         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
5995         objects far pointers
5996
5997 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5998
5999         * src/SDCCsymt.h: a missing part of my last change
6000         * src/pic/ralloc.c (regTypeNum),
6001         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6002
6003 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6004
6005         * src/SDCCicode.h,
6006         * src/SDCCicode.c (aggrToPtrDclType),
6007         * src/SDCCptropt.h,
6008         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6009         ptrPseudoSymConvert),
6010         * src/pic/ralloc.c (regTypeNum),
6011         * src/pic16/ralloc.c (regTypeNum),
6012         * src/hc08/ralloc.c (regTypeNum),
6013         * src/ds390/ralloc.c (regTypeNum),
6014         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6015         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6016
6017 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6018
6019         * link/z80/lkmain.c (afile),
6020         * as/hc08/lkmain.c (afile),
6021         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6022         prevent a pointer problem when a filename has no directory and
6023         no extension specified.
6024
6025 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6026
6027         * link/z80/lkmain.c (afile): allow periods in directory names
6028         * link/z80/lkmain.c (afile),
6029         * as/mcs51/lkmain.c (afile),
6030         * as/hc08/lkmain.c (afile): allow linker script file to have an
6031         extension other than ".lnk"
6032         * link/z80/lklex.c (getfid),
6033         * link/z80/lkmain.c (parse),
6034         * as/mcs51/lklex.c (getfid),
6035         * as/mcs51/lkmain.c (parse),
6036         * as/hc08/lklex.c (getfid),
6037         * as/hc08/lkmain.c (parse): Support comments in the linker script
6038         file on lines by themselves and after filenames
6039
6040 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6041
6042         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6043
6044 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6045
6046         * src/z80/peeph-z80.def: removed some peephole rules that don't
6047         work with multibyte arithmetic (fixed bug #937126)
6048         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6049         to registers and not global variables
6050         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6051         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6052         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6053         checking for assignments not internally generated (fixed bug #931895)
6054         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6055         structure member (fixed bug #930072)
6056
6057 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * src/SDCCmain.c (linkEdit),
6060         * src/hc08/main.c (_hc08_parseOptions),
6061         * as/hc08/Makefile.in,
6062         * as/hc08/aslink.h,
6063         * as/hc08/asm.h,
6064         * as/hc08/m08pst.c,
6065         * as/hc08/lkrloc.c (relr, rele),
6066         * as/hc08/lkarea.c (lnkarea)
6067         * as/hc08/lkmain.c (afile, parse),
6068         * as/hc08/lkelf.c: support for ELF output
6069         * as/hc08/lks19.c (s19),
6070         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6071
6072 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6073
6074         * as/mcs51/lkihx.c: Fixed bug #899105.
6075
6076 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6077
6078         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6079         .dsp files from Unix to DOS.
6080
6081 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6082
6083         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6084         function pointers; we have been compliant for several months now.
6085         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6086         change that was accidently commented out
6087         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6088         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6089         bug #922319
6090
6091 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6092
6093         * src/hc08/gen.c: output of all of the internal debugging information
6094         is now controlled by the D() macro; it is disabled by default
6095
6096 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6097
6098         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6099         harder to keep the same registers during a CAST iCode
6100         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6101         long via int can be done in a single cast, if the signedness is
6102         correct.
6103         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6104         putchar() in tinibios.c in ds390's library
6105
6106 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6107
6108         * src/SDCCast.c (decorateType): fixed bug #898889,
6109         cast result of a literal complement too
6110         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6111         fixed check for bitfields
6112
6113 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6114
6115         * src/SDCCicode.c (geniCodeLogic): made it static,
6116         (geniCodeLogicAndOr): added in order to fix bug #905492,
6117         (ast2iCode): fixed bug #905492
6118         * support/regression/tests/bug-905492.c: added
6119         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6120         (processParms): fixed bug #927659: don't copy parms, this will clear
6121         decorated flag
6122         * support/regression/tests/bug-927659.c: added
6123
6124 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6125
6126         * src/SDCCast.c (addCast): don't cast float to char
6127         * device/lib/libsdcc.lib: added _memmove
6128
6129 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6130
6131         * device/lib/large/Makefile: fixed parallel execution by
6132         replacing `make` by `$(MAKE)`
6133
6134 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6135
6136         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6137         offsets (fixes bug #923936)
6138
6139 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6140
6141         * device/lib/small/Makefile: fixed parallel execution by
6142         replacing `make` by `$(MAKE)`
6143
6144 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6145
6146         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6147
6148 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6149
6150         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6151         * src/regression/Makefile: Regression test was not running.
6152
6153 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6154
6155         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6156         complement if possible
6157         * src/SDCCval.c (valComplement),
6158         * src/SDCCicode.c (operandOperation): fixed complement of literal
6159         * support/regression/tests/onebyte.c (testComplement): added
6160
6161 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6162
6163         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6164         return an optimized tree; actually replace actParm with the new tree
6165         * src/SDCCast.h: added some parantheses to remove side effects
6166         * support/regression/tests/bug-920866.c
6167
6168 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6169         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6170         Bit operands were not being handled properly in the pic14 port.
6171         (now src/regression/add.c passes again).
6172
6173 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * src/SDCC.y (labeled_statement): case and default no longer require
6176         a following statement (RFE #893037)
6177
6178 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6181         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6182         disabled (fixes bug #916294)
6183         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6184         "mov a,acc"; patch provided by Lenny Story
6185         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6186
6187 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6188
6189         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6190         functions
6191         * src/ds390/gen.c (genFunction, genEndFunction),
6192         * src/ds390/ralloc.c (ds390_assignRegisters),
6193         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6194         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6195         pushed if there are parameters passed on the stack. Also, a cleaner
6196         way to decide if r0/r1 should be pushed/popped. (Together they fix
6197         bug #918693)
6198
6199 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * doc/sdccman.lyx,
6202         * device/lib/mcs51/crtpagesfr.asm,
6203         * device/lib/mcs51/crtxinit.asm,
6204         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6205         to avoid confusion with Si Lab's SFRPAGE register.
6206
6207 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6208
6209         * src/SDCCglue.c (emitMaps): allow public sfr variables
6210         * src/SDCCglue.c (initialComments): include compiler build date
6211         with compiler version and put the timestamp of the generated
6212         assembly file on a serperate line to be less confusing.
6213         * src/port.h: added genInitStartup hook
6214         * src/avr/main.c,
6215         * src/ds390/main.c,
6216         * src/hc08/main.c,
6217         * src/pic/main.c,
6218         * src/pic16/main.c,
6219         * src/xa51/main.c,
6220         * src/z80/main.c: genInitStartup initialize as NULL (default to
6221         historical behaviour)
6222         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6223         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6224         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6225         library instead of hard coding it into the compiler.
6226         * support/regression/ports/mcs51-stack-auto/spec.mk,
6227         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6228         * device/lib/mcs51/Makefile,
6229         * device/lib/small/Makefile,
6230         * device/lib/large/Makefile,
6231         * device/lib/mcs51/crtpagesfr.asm,
6232         * device/lib/mcs51/crtstart.asm,
6233         * device/lib/mcs51/crtxclear.asm,
6234         * device/lib/mcs51/crtxinit.asm,
6235         * device/lib/mcs51/crtclear.asm,
6236         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6237         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6238         and into user configurable files.
6239         * device/lib/clean.mk: clean mcs51 directory too
6240         * support/regression/tests/longlit.c: added static to T1 declaration
6241         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6242         accesses in the initialization code
6243
6244 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6245
6246         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6247         OSCTRIMVAL as noted in bug #916008
6248
6249 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6250
6251         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6252         in loops with multiple exits (reported as incorrect registers
6253         used by Martin Helmling in Sdcc-user list)
6254
6255 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6256
6257         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6258         made ds390 register extensions look less like error messages
6259
6260 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6261
6262         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6263         reported by Adam Wozniak in Sdcc-user list
6264
6265 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6266
6267         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6268         arithmetic optimizations, added debug output
6269
6270 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6271
6272         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6273         * sdcc.spec: updated and split sdcc into 3 rpms
6274         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6275         needed for literals of LEFT_OP and '+'
6276         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6277         introduced RESULT_TYPE_NOPROM
6278         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6279         left shift
6280         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6281         limited promotion to int only for '*'
6282         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6283
6284 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6285
6286         * src/pic16/gen.c (genSkip),
6287         (genc16bit2lit), (gencjneshort): commented out
6288         (is_LitOp): new helper function, checks operand type
6289         (genCmpEq): rewritten
6290
6291 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6292
6293         * support/regression/tests/bug-908454.c: added
6294
6295 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6296
6297         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6298         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6299         (geniCodeCast): cosmetic, don't preserve bit storage class
6300         (geniCodeLeftShift): added promotion
6301         (geniCodeLogic): fixed regression
6302         * src/SDCCsymt.c (computeTypeOr): accept bits too
6303         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6304
6305 2004-03-07  Borut Razem <borut.razem AT siol.net>
6306
6307         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6308
6309 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6310
6311         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6312         version of pic16_genPackRegisters which does not check if ic is a
6313         CAST operator,
6314         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6315         function cause string1.c regression test fails
6316
6317 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6318
6319         * sim/ucsim/configure.in,
6320         * sim/ucsim/configure,
6321         * sim/ucsim/doc/Makefile.in: use docdir
6322         * src/SDCC.y: fixed sbit atrributes
6323         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6324         * src/SDCCast.c (decorateType): |^& need special promotion handling
6325         * src/SDCCast.h,
6326         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6327         * src/SDCCsymt.h (computeType),
6328         * src/SDCCicode.c: computeType() needs op
6329         * src/SDCCsymt.c (checkTypeSanity),
6330         * doc/sddman.lyx: "plain" bitfields are unsigned
6331         * src/SDCCsymt.c (computeTypeOr): added
6332         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6333         |^& ops
6334         * src/SDCCval.c (val*): computeType() needs op
6335         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6336         * support/regression/tests/onebyte.c: added tests for |^&
6337
6338 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6339
6340         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6341         for writing icode into asm output.
6342
6343 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6344
6345         * src/pic16/device.c: added some debug lines enabled
6346         with macro DEBUG_CHECK,
6347         * src/pic16/genarith.c: more debug in genPlus,
6348         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6349         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6350         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6351         * (aopForSym): onStack symbols are re-placed in data memspace,
6352         and onStack flag is cleared,
6353         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6354         copy temporary pcodeop,
6355         * (genPcall): added warning for not updating PCLATU,
6356         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6357         always true for pic16 port,
6358         * (genMultOneWord): NEW, supports integer multiplication,
6359         * (genMult): modified to call genMultOneWord,
6360         * (ifxForOp): added warning when return NULL,
6361         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6362         flag is set before call to operandFromSymbol for implicit
6363         added structures,
6364         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6365         options.intlong_rent are set by default,
6366         * (_hasNativeMulFor): modified to allow port generation of integer
6367         multiplication,
6368         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6369         set regtype to REG_SFR for all registers, restricting seting the
6370         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6371
6372 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6373
6374         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6375         more than 500 times in the regression tests
6376
6377 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6378
6379         * support/Util/SDCCerr.h,
6380         * support/Util/SDCCerr.c,
6381         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6382         enumerator_list),
6383         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6384         for symbol conflicts.
6385         * support/valdiags/tests/enum.c,
6386         * support/valdiags/tests/tentdecl.c,
6387         * support/valdiags/tests/struct.c: expect possible error messages
6388         referring to original symbol definitions.
6389         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6390         * src/SDCCsymt.h,
6391         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6392
6393 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6394
6395         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6396
6397 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6398
6399         * src/pic16/ralloc.c (newReg): fixed bug #908929
6400
6401 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6402
6403         * src/ds390/gen.c: added missing #include "main.h"
6404
6405 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6406
6407         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6408         checking if symbol is already in set,
6409         * src/pic16/device.h: prototype for checkAddSym,
6410         * src/pic16/gen.c: (_G): added entry interruptvector,
6411         * (assignResultValue): removed some commented out lines,
6412         * (genFunction): check for ISR via sym->type, absolute section for
6413         interrupt code is created via a new pBlock, the goto instruction is
6414         placed now correctly at the interrupt vector position, changed all
6415         references from ivec to _G.interruptvector,
6416         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6417         is the interrupt is a high priority one, same for return from ISR,
6418         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6419         externs to calls of checkAddSym,
6420         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6421         pic16_pcode_verbose flag is set,
6422         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6423         * src/pic16/pcoderegs.c: message about how many registers are saved
6424         will only be emitted if pic16_pcode_verbose flag is set,
6425
6426 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6427
6428         * src/ds390/ralloc.h,
6429         * src/ds390/ralloc.c (ds390_regWithIdx),
6430         * src/ds390/gen.c (emitcode),
6431         * src/ds390/main.h,
6432         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6433         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6434         ds390operandCompare, getRegsRead, getRegsWritten,
6435         initializeAsmLineNode): customized instruction size calculation for
6436         ds390, started basis for some register optimizations
6437         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6438         corresponding assembly output
6439         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6440         missing push/pop of r0/r1. Optimized push/pops
6441
6442 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6443
6444         * src/mcs51/main.c (instructionSize): fixed ACALL size
6445         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6446
6447 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6448
6449         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6450         the sorting of rlist with NULL elements
6451         * (print_idataType, print_idata): NEW to create idata sections
6452         * src/pic16/device.h: idataSymSet new variable
6453         * src/pic16/gen.c (genFunction): fixed some bugs in string
6454         comparing, improved the absolute section creation for ISRs,
6455         added FSR0L/FSR0H in registers that are saved in an ISR,
6456         * (genInline): fixed the processing of inline snippets,
6457         now they undergo no process by the peephole optimizer
6458         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6459         are placed in idataSymSet,
6460         * (pic16emitStaticSeg): extern symbols are added in externs,
6461         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6462         switching when aboslute variables are placed in access bank memory
6463         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6464         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6465         commented out with #if,
6466         * (pic16_packRegisters): reintroduce the check for CAST because some
6467         symbols are not correctly handled,
6468         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6469         pCodeInstruction instead of pCode,
6470         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6471         pCodeAsmDir definition,
6472         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6473         directive, then the argument directive is emitted without the leading
6474         tab, hack for inline labels which must be in the first column,
6475         * (compareLabel,pic16_findNextInstruction),
6476         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6477         * (insertBankSwitch): modified for the new pCodeAsmDir,
6478
6479 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6480         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6481
6482         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6483         instance,
6484         * (pushSide): commented out with #if,
6485         * (assignResultValue): fixed some typos in saving
6486         registers,
6487         * (genPcall): FIXED and sync'ed with genCall,
6488         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6489         * (genNearPointerGet): fixed to handle some more cases,
6490         implementation scheme via table reads,
6491         * (genConstPointerGet): modified to access code memory correct,
6492         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6493         and improved to handle some cases
6494         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6495         instead of "RETLW" for init data
6496         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6497         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6498         variables are placed in access bank memory (<0x80 and >=0xf80),
6499         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6500         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6501         TBLWT_POSTDEC,TBLWT_PREINC
6502         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6503         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6504         directives
6505         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6506         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6507         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6508         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6509
6510 2004-02-29  Borut Razem <borut.razem AT siol.net>
6511
6512         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6513         support/Util/findme.h, support/Util/system.h: enhance binary relative
6514         search for lib and include by using findProgramPath()
6515
6516 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6517
6518         * src/SDCCpeeph.h,
6519         * src/SDCCpeeph.c (pcDistance),
6520         * src/port.h,
6521         * src/mcs51/ralloc.h,
6522         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6523         * src/mcs51/main.h,
6524         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6525         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6526         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6527         size calculation port specific, started basis for some register
6528         optimizations
6529         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6530         missing push/pop of r0/r1. Optimized push/pops
6531         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6532         * device/lib/_modsint.c (_modsint),
6533         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6534         and stack version so regression tests pass
6535
6536 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6537
6538         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6539         * src/SDCCast.c (decorateType): catch another small optimization
6540         with '?' operator
6541         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6542         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6543         modified to finally use computeType() all over SDCC,
6544         see Feature Request #877103
6545         * src/SDCCval.h: cosmetic
6546         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6547         valCompare(); regression tested in muldiv.c
6548         * support/regression/tests/muldiv.c (testMod): mod sign follows
6549         dividend only
6550
6551 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6552
6553         * src/SDCCast.c (decorateType): fixed bug #902362
6554         * doc/INSTALL.txt: fixed install instructions for win32
6555
6556 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6557
6558         * device/include/Makefile.in (install): fixed by replacing spaces
6559         by tabs
6560         * doc/README.txt,
6561         * doc/INSTALL.txt: updated for release
6562         * doc/sdccman.lyx: added warning for --xstack being buggy
6563
6564 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6565
6566         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6567         to eliminate build warnings.
6568         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6569
6570 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6571            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6572
6573         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6574         removed -penable-stack, added comment for stack pragma, added
6575         warning for not initializing the stack/frame registers, removed
6576         comment at interrupts section
6577
6578         Stack is made permanent, there is no ability to disable stack usage.
6579         * src/pic16/device.h,
6580         * src/pic16/device.c: removed all references to USE_STACK macro,
6581         * src/pic16/device.c (pic16_dump_section): when no elements in
6582         rlist, free rlist before return,
6583         * (pic16_dump_int_registers): NEW, internal registers are a new set
6584         of general purpose registers reused by each function,
6585         * (checkAddReg): returns 1 if registers is added to set,
6586         * (pic16_groupRegistersInSection): when a registers is of type
6587         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6588         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6589         SRCASECMP macro is moved here from device.c
6590         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6591         PO_PCLATU, PO_PRODL, PO_PRODH,
6592         * (pic16_pCodeOpType, genMinus,
6593         changed compares to "a" register, with AOP_ACC,
6594         * (pic16_genPlus): fixed some bugs and indented properly,
6595         * (pic16_addSign): changed size to size+offset in the MOVWF
6596         instruction,
6597         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6598         multiply 8-bit operand by literal, result is 8-bit,
6599         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6600         multiply 2 8-bit operand, result is 8-bit,
6601         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6602         genUMult8X*_16,
6603         * src/pic16/gen.c: changed accUse to contain WREG only,
6604         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6605         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6606         true, do not use immediate addressing any more unless sym is a
6607         pointer in codespace,
6608         * (aopForRemat): do not use immediate addressing when symbol not in
6609         codespace and when symbol's address is requested,
6610         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6611         accUse size (= 1),
6612         * (aopGet): added case for AOP_ACC and don't return "accumulator
6613         bug" but WREG instead,
6614         * (popGetTempReg): pushes contents of temporary register in stack,
6615         * (popReleaseTempReg): pops contents of temporary register from
6616         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6617         * (pic16_popGet): separated case AOP_ACC to return register WREG
6618         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6619         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6620         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6621         the use of immediate pointers to certain cases only.
6622
6623         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6624         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6625         * (assignResultValue, genCall, genRet): modified to use the new
6626         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6627         genPcall is still broken,
6628         * (genFunction): added code to create 'A' type pBlocks when
6629         interrupt functions are generated, code not extensively tested yet,
6630         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6631         * (genEndFunction): modified so ISRs pop stored registers from stack,
6632         * (genMultOneByte): cleanup,
6633         * (AccRsh): added flag andmask, to and result with appropriate mask,
6634         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6635         * (genDataPointerGet): fixed and reenabled its use,
6636         * (genNearDataPointerGet): bugs fixed,
6637         * (genDataPointerSet): bugs fixed,
6638         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6639         pic16_DumpSymbol, pic16_DumpOp,
6640         * src/pic16/genutils.h: function prototypes for the above functions,
6641         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6642         pointers,
6643         * (pic16emitRegularMap): many many many improvements, but needs a
6644         major cleanup,
6645         * src/pic16/main.c: enable_stack in pic16_options is removed,
6646         * (_pic16_parseOptions): removed command line options -penable-stack,
6647         * (_process_pragma): emit stack symbol only when stack pragma is
6648         processed,
6649         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6650         redirected to FSR0L/FSR0H pair,
6651         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6652         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6653         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6654         for immediates,
6655         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6656         * (dumpPicOptype): NEW,
6657         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6658         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6659         with movff instruction,
6660         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6661         added pic16_int_regs, some packRegsFor* functions are commented out,
6662         because produce errors,
6663         * src/pic16/NOTES: minor modifications
6664
6665 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6666
6667         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6668         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6669         --pack-iram.
6670         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6671         * as/mcs51/lkaomf51.c: fixed bug #895763
6672
6673 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6674
6675         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6676
6677 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6678
6679         * doc/sdccman.lyx: added details about the HC08 storage classes and
6680         interrupts, fixed the register usage info for z80 & gbz80
6681
6682 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6683
6684         * doc/sdccman.lyx: added more pic16 port documentation
6685         * device/include/pic16/: added header pic18fregs.h
6686
6687 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6688
6689         * doc/sdccman.lyx: added Vangelis' contribution
6690
6691 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6692
6693         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6694         extend to the next CALL or PCALL, not just to the next CALL.
6695
6696 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6697
6698         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6699
6700 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6701
6702         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6703         bug #895752 and a better fix for bug #716790
6704
6705 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6706
6707         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6708
6709 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6710
6711         * doc/sdccman.lyx: minor changes, minor changed
6712
6713 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6714
6715         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6716         which can't handle SDCC_NEWONEBYTEOPS,
6717         (geniCodeMultiply): removed conversion from mult to shift for pic14
6718         and pic16
6719
6720 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6721
6722         * src/hc08/gen.h,
6723         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6724         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6725         thus fixing bug #895406
6726
6727 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6728
6729         * device/lib/_modsint.c,
6730         * device/lib/_modslong.c: sign follows divisor only
6731         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6732         signs or signedness can be ignored
6733         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6734         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6735         added optimization for IFX,
6736         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6737         arguments;
6738         reenabled optimization for IFX, which was removed on 2004-01-11
6739         * src/SDCCast.h: added return type IFX
6740         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6741         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6742         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6743         SDCC_OLDONEBYTEOPS selects the old behaviour
6744         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6745         changed again and commented promotion rule
6746         * src/SDCCval.c (valDiv): promotion no longer necessary
6747         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6748         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6749         rewritten
6750         * support/regression/tests/onebyte.c: added
6751
6752 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6753
6754         * gen.c (genInline): reverted to old code for assemnling inline
6755         code because of bug reported James Chadd
6756
6757 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6758
6759         * ralloc.h: missing declarations from previous patch,
6760         seems that patch for ralloc.h was never applied, fixed
6761
6762 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6763            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6764
6765         * pcode.c,
6766         * pcode.h,
6767         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6768         indirect addressing. Marked FSR0 as deprecated
6769         * gen.c (pointerCode): commented out, not needed now
6770         (pic16_popGet2p): new MOVFF helper function
6771         (genGenPointerGet),
6772         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6773         (shiftRLong): removed duplicate debugging info
6774
6775 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6776
6777         * src/ds390/gen.c (genNearPointerGet),
6778         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6779         optimization with bits, but not bitfields.
6780         * src/ds390/ralloc.c (packRegisters),
6781         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6782
6783 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6784
6785         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6786
6787 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6788
6789         * src/SDCCsymt.h,
6790         * src/SDCCicode.c (operandFromSymbol),
6791         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6792         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6793         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6794         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6795         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6796         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6797         bug #892038
6798         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6799         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6800         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6801         * src/SDCCsymt.c (newSymbol),
6802         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6803         enumerator_list),
6804         * src/SDCCval.h,
6805         * src/SDCCval.c (newiList): fixed bug #885705
6806
6807 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6808
6809         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6810         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6811
6812 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6813
6814         * device/include/c8051f120.h,
6815         * device/include/c8051f300.h,
6816         * device/include/c8051f310.h: added/updated header files for Silicon
6817         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6818         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6819         in new section Submitting patches
6820
6821 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6822
6823         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6824         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6825         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6826         genGenPointerSet),
6827         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6828         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6829         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6830         genGenPointerSet),
6831         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6832         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6833         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6834         genGenPointerSet),
6835         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6836         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6837         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6838         genGenPointerSet): fixed bug #892400
6839         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6840         to eliminate build warnings.
6841         * src/SDCCast.c (processParms),
6842         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6843         fixed bug 751859
6844         * support/valdiag/valdiag.py: added GCC to the list of defines active
6845         when compiling with gcc
6846
6847 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6848
6849         * support/Util/SDCCerr.h,
6850         * support/Util/SDCCerr.c,
6851         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6852         with an incomplete type (fixed bug #883734)
6853         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6854
6855 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6856
6857         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6858
6859 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6860
6861         * src/SDCCast.c (decorateType),
6862         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6863         function pointer implementation
6864         * support/regression/tests/funptrs.c: added tests to verify both forms
6865         of function pointers work correctly. Added tests to verify parameters
6866         are passed in the correct order.
6867
6868 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6869
6870         * device.c (regCompare): registers are sorted by ascending
6871         address and increasing size,
6872         * main.c (_pic16_finaliseOptions): removed the declaration
6873         of compiler macro MCU. Now a macro of the format pic18fxxxx
6874         will be defined from the command line
6875
6876 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6877             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6878
6879         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6880         PCOP_RLCF was overwritten!
6881         * gen.c (genSkip): commented out calls to pic16_emitcode,
6882         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6883         * (genlshTwo),
6884         * (genRRC): added debugging info,
6885         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6886         overwritten while shifting,
6887         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6888         overwritten while shifting,
6889         * (AccLsh),
6890         * (AccRsh),
6891         * (shiftLLeftOrResult),
6892         * (shiftRLeftOrResult),
6893         * (shiftRLong),
6894         * (shiftLLong): Implemented with pic16_emitpcode
6895         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6896         * (genLeftShift): Fixed bug, operand for shift by variable always
6897         was "and"ed with 0x0f,
6898         * (genLeftShiftLiteral),
6899         * (genrshTwo),
6900         * (genRightShiftLiteral): added debugging info,
6901         * (genrshFour): added comment,
6902         * (genRightShift): determined signedness from operand "left"
6903         instead of "result"
6904
6905 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6906
6907         * src/SDCCicode.c (geniCodeParms),
6908         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6909         function pointers, fixed function pointer bugs #861242 and #861896
6910
6911 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6912
6913         * device/include/c8051f000.h,
6914         * device/include/c8051f120.h,
6915         * device/include/c8051f300.h: added header files for Silicon
6916         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6917
6918 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6919
6920         * src/SDCCast.c (processParams): added new type flow and restructured
6921         (gatherAutoInit): added new type flow
6922         (addCast): cosmetic changes
6923         (getLeftResultType): added new type flow for array indices, patch
6924         provided by Stas, see FR #877103
6925         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6926         array index patch by Stas
6927         * src/SDCCast.h: added prototype getResultTypeFromType()
6928         * src/SDCCval.h,
6929         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6930         * src/pic/glue.c (pic14emitStaticSeg),
6931         * src/pic16/glue.c (pic16emitStaticSeg),
6932         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6933         for initialization of symbols
6934         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6935         * support/Util/SDCCerr.h:
6936         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6937         * .version: bumped version number to 2.3.8
6938         * device/include/Makefile.in (install),
6939         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6940         avoid warnings
6941
6942 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6943
6944         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6945         Slade Rich fixed an optimization bug
6946         * src/pic/pcodepeep.c,
6947         * src/pic/pcoderegs.c
6948         * doc/Makefile (install): added test for directory
6949
6950 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6951
6952         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6953         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6954         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6955         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6956         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6957         * as/mcs51/asexpr.c (term),
6958         * as/hc08/asexpr.c (term): fixed bug #887146
6959
6960 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6961
6962         * src/z80/gen.c (genMult): handle single byte result product
6963         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6964         DUMMY_READ_VOLATILE (fixed bug #886367)
6965
6966 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6967
6968         * support/regression/tests/libmullong.c: fixed logic, on little endian
6969         hosts we ended without a mullong_wrapper()
6970
6971 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6972
6973         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
6974         virus/worm forged address usage.
6975
6976 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6977
6978         Fixed promotion, it should be done on AST level:
6979         * src/SDCCast.c (addCast): added promotion to int
6980         (decorateType): updated call to upCast()
6981         * src/SDCCicode.c (geniCodeLeftShift): removed call to
6982         usualUnaryConversions()
6983
6984 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
6985
6986         * support/regression/tests/literalop.c (mulWrapper): Added a
6987         wrapper to remove integer overflow warnings.
6988
6989         * support/regression/tests/float_trans.c: Made work on host.
6990
6991         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
6992         location of sz80.
6993
6994         * support/regression/generate-cases.py (main): Changed from inline
6995         to a main method.
6996
6997         * doc/Makefile (install): Changed to depth first to get rid of
6998         missing directory install warning.
6999
7000         * as/Makefile (install-doc): Made work on Mac.
7001
7002 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7003
7004         * src/SDCCast.c: added an additional type flow in decorateType() of
7005         opposite direction, see feature request #860006; it's enabled at runtime
7006         by setting the environment variable SDCC_NEWTYPEFLOW
7007         * src/SDCCast.h: changed prototype of decorateType()
7008         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7009         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7010         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7011         see feature request #877103
7012         * src/SDCCval.c: updated call of decorateType()
7013         (valBitwise): fixed bug #882876
7014         (valMinus): added promotion
7015         (valLogicAndOr): result is unsigned
7016         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7017         * src/SDCCsymt.c (computeType),
7018         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7019         must not cause an unsigned operation
7020         * src/pic/glue (pic14emitRegularMap),
7021         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7022
7023 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7024
7025         * src/pic/pcode.c (PCodeID): commented out left over debug code
7026
7027 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7028
7029         * support/valdiag/tests/overflow.c: added shift tests
7030         * src/pic/device.c,
7031         * src/pic/gen.c,
7032         * src/pic/gen.h,
7033         * src/pic/glue.c,
7034         * src/pic/main.c,
7035         * src/pic/pcode.c,
7036         * src/pic/pcode.h,
7037         * src/pic/pcodepeep.c,
7038         * src/pic/pcoderegs.c,
7039         * src/pic/ralloc.c,
7040         * src/pic/ralloc.h: applied patch from Slade Rich;
7041         added support for multiple code pages and multiple RAM banks on the
7042         PIC 14 port. The ASM files now no longer simply assume all the
7043         code / RAM are in the same page / bank. This means the linker can
7044         safely allocate code/RAM of separate ASM files to different pages/banks.
7045         * doc/sdccman.lyx: added Slade's tips
7046         * src/mcs51/peeph.def: fixed bug #880768
7047
7048 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7049
7050         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7051         * src/SDCCast.c (decorateType): fixed bug #880197
7052
7053 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7054
7055         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7056         getopt.h.
7057
7058         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7059         strtof is not part of C89 and isn't included with Mac OS X.
7060
7061 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7062
7063         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7064         shiftL2Left2Result): fixed bug #879326
7065         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7066         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7067         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7068         address fetch for clr instruction
7069         * device/lib/hc08/_mulint.c: created optimized assembly version
7070         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7071
7072 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7073
7074         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7075         proposed in FR #877103
7076
7077 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7078
7079         * src/SDCCval.c (cheapestVal): added missing checks
7080         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7081         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7082
7083 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7084
7085         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7086         equal operands
7087
7088 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7089
7090         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7091         loaded with the linker search paths (-L arguments) and the libraries
7092         to be linked with the current source (-l arguments). Changes
7093         currently will affect only the pic16 port.
7094         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7095         include path the port specific paths and port specific libraries,
7096         * gplink command now contains the $3 argument,
7097         * src/pic16/device.h,
7098         * src/pic16/device.c,: structure PIC_device is made public and
7099         renamed to PIC16_device, the same for variable Pics which is renamed
7100         to Pics16. Updated all references to them.
7101         * src/pic16/glue.c (pic16glue): corrected bug with code
7102         initialization which bypassed the variable initializations block.
7103
7104         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7105         COMPILE_FLAGS and added the --nostdinc option
7106
7107 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7108
7109         * device/include/mc68hc908jb8.h: Register defs for another member
7110         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7111
7112 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7113
7114         Documenting changes from previous commits.
7115         * configure.in (version 1.56),
7116         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7117         when generating output files to configure the pic16 library,
7118         but now I've commented it out, since gputils aren't installed in the
7119         SF compile farm, so library won't compile
7120
7121         * device/lib/Makefile.in (version 1.56): initially I've added in
7122         target 'all' the prerequestive 'model-pic16' so it compiled the
7123         pic16 library, but now I've commented it out for the same reasons
7124         above,
7125         * added targets 'model-pic16' and 'objects-pic16' to compile the
7126         library
7127         * added target 'port-specific-objects-pic16' to handle the
7128         generated libraries and copy them into the build/ directory
7129         * added target 'clean-intermediate-pic16' to clean intermediate
7130         files into pic16 directory
7131         * in target 'installdirs' added line to create directory pic16 in
7132         the installation path
7133
7134         * device/include/Makefile.in (version 1.11): in target 'install'
7135         added lines to copy all header files to installation path,
7136         * in target 'installdirs' added line create directory for pic16
7137         headers in the installation path
7138
7139 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7140
7141         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7142          a function call
7143
7144 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7145
7146         * configure,
7147         * device/lib/configure.in,
7148         * device/lib/configure: fixed for autoconf 2.57
7149
7150 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7151
7152         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7153         option so that it actually works. Made it specific to the z80, since
7154         the gbz80 doesn't have these kinds of I/O ports.
7155
7156 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         * device/include/z180.h,
7159         * device/lib/_memcpy.c,
7160         * device/lib/_memmove.c,
7161         * device/lib/_mulint.c,
7162         * device/lib/ser_ir.c,
7163         * device/lib/ser_ir_cts_rts.c,
7164         * device/lib/_strcmp.c,
7165         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7166         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7167         portmode; added deprecation warning for bank= and protmode= forms.
7168         Also, guard against buffer overflow.
7169         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7170
7171 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7172
7173         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7174         changed interrupt vector table generation to only emit declared vectors.
7175         * device/include/Makefile.in: added missing backslash
7176         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7177
7178 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7179
7180         Mainly changes to support compilation of the device libraries
7181         * src/pic16/device.c: stack is allocated via symbol and not
7182         via literal number. The symbol is placed in the corresponding
7183         position of the data ram
7184         * (pic16_dump_section): relocatable and absolute uninitialized
7185         data are now emitted in sorted order to reduce section naming,
7186         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7187         weren't marked as being in the access bank,
7188
7189 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7190
7191         Added portion of GNU PIC Library under the directory
7192         device/include/pic16 and device/lib/pic16. These files
7193         contain the declarations of SFRs for the PIC18Fxx2 devices.
7194         The directory is initialized via configure from toplevel.
7195
7196 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7197
7198         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7199         the spilllocations to be compared correctly
7200
7201 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7202
7203         * src/SDCCast.c (decorateType): fixed bug introduced today
7204
7205 2004-01-12  Borut Razem <borut.razem AT siol.net>
7206
7207         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7208         doc/sdccman.lyx: upper case pragmas are deprecated
7209
7210 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7211
7212         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7213         in simpler and even better code
7214
7215 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7216
7217         * src/SDCCicode.c (operandOperation): fixed bug #874819
7218         * src/SDCCast.c (decorateType): fixed
7219         char foo (unsigned long ul) { return ul > 0; }
7220
7221 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7222
7223         * doc/sdccman.lyx: Moved and added some sections, small changes
7224         all over. Telling LaTeX to be less strict with word spacing
7225         to better keep the right margin. Changed some notes about
7226         maintainance of the ports in section 3.2.1 - is it OK like this?
7227
7228 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7229
7230         SDCC source changes:
7231         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7232         convilong): modified to inform the pic16 port that builtin functions
7233         are external
7234
7235         PIC16 PORT specific changes:
7236         * src/pic16/device.c pic16_dump_equates() added,
7237         processor registers declared internally by the port are emitted in
7238         the translation as equates,
7239         * src/pic16/gen.c: inline code is passed unprocessed to the
7240         translation,
7241         * (pic16_popGetLit2): fnuction modified to take second operand as
7242         pCodeOp pointer and not as literal,
7243         * (popRegFromIdx): prefixed with pic16_,
7244         * (pic16_popCombine2): modified to receive already allocated pCode
7245         operands,
7246         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7247         * (genFunction): initializes local stack frame and pushes on stack
7248         all the registers used by this function,
7249         * (genEndFunction): restores all registers from stack and restores
7250         stack frame,
7251         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7252         improvements,
7253         * (pic16glue): changed the program startup sequence,
7254         * added new dbName code 'A' for functions placed in absolute section
7255         * src/pic16/main.c: added function attribute _naked,
7256         * added pragma 'code' to place a fnuction at an absolute address,
7257         * added command line arguments --debug-ralloc and --pcode-verbose,
7258         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7259         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7260         * (pic16_newpCodeOpLit2): modified to take the second operand as
7261         pCodeOp pointer,
7262         * (pic16_printpBlock): modified to emit each function in a separate
7263         section,
7264         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7265         UPPER for immediate operands,
7266         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7267         instruction,
7268         * src/pic16/peeph.def: all peepholes with movff are commented out,
7269         because there is a problem in the pcode peep optimizer,
7270         * src/pic16/ralloc.c: the register allocator can now reuse local
7271         function symbols for another function. This saves register usage.
7272         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7273
7274         Added file src/pic16/NOTES with information about program writing on
7275         the current port version.
7276
7277 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7278
7279         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7280         and peephole 252 (array access)
7281
7282 2004-01-09  Borut Razem <borut.razem AT siol.net>
7283
7284         * src/SDCCmain.c : fixed #872250: -l command line defined library
7285           files are scanned before standard library files
7286
7287 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7288
7289         * src/SDCCast.c (decorateType): fixed bug #874046
7290
7291 2004-01-09  Borut Razem <borut.razem AT siol.net>
7292
7293         * support/scripts/sdcc.nsi: remove previous installation
7294
7295 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7296
7297         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7298         bytes for last interrupt vector (mcs51)
7299         * sdcc.spec: fixed typo
7300
7301 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7302
7303         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7304         gen51Code): more efficient parameter receive for --model-large
7305         ("bug" #845294)
7306
7307 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7308
7309         * src/ds390/main.c,
7310         * src/z80/main.c: added missed needLinkerScript flags (more than
7311         one port structure defined in these file)
7312         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7313         bug #795325
7314
7315 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7316
7317         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7318         * src/port.h: added flag needLinkerScript in port->linker
7319         structure to inform whether to create a .lnk file or not,
7320         * src/avr/main.c,
7321         * src/ds390/main.c,
7322         * src/hc08/main.c,
7323         * src/mcs51/main.c,
7324         * src/pic/main.c,
7325         * src/pic16/main.c,
7326         * src/xa51/main.c,
7327         * src/z80/main.c: changed appropriately to configure
7328         needLinkerScript flag
7329         * src/pic/gen.c,
7330         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7331         * src/pic/glue.c: added variable udata_section_name to
7332         override default uninitialized data segment definition for
7333         devices only with SHAREBANK memory (reported from Erik Epetrich)
7334         * (pic14emitOverlay): modified to emit a commented overlay segment
7335         directive when no overlay data exist
7336         * (picglue): modified to emit uninitialized data segment
7337         according to udata_section_name
7338         * src/pic/main.c (_pic14_parseOptions): added command line
7339         options --udata-section-name=[name] to override default
7340         udata definition name
7341         * modified _linkCmd and _asmCmd to include compiler passed
7342         arguments via -W option
7343         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7344         object file from '.rel' to '.o' in port->linker structure,
7345         changed size of fptr from 2 to 3 in port structure
7346
7347 2004-01-07  Borut Razem <borut.razem AT siol.net>
7348
7349         * support/scripts/sdcc.nsi: update PATH
7350         * support/scripts/sdcc.ico: craeted
7351
7352 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7353
7354         * device/include/Makefile.in: fix install
7355         * doc/Makefile: fix install
7356
7357 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7358
7359         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7360         in bug #860505
7361         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7362         how the function variable allocation summary is displayed; also
7363         include information about variables allocated to the overlay
7364         segment
7365
7366 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7367
7368         * as/mcs51/lkmain.c: Help about -Y option
7369         * as/mcs51/lkarea.c: Fixed gcc warnings
7370
7371 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7372
7373         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7374         fixed warning
7375         * support/valdiag/tests/overflow.c: added
7376         * src/SDCCast.c (decorateType),
7377         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7378         LEFT_OP (left shift)
7379
7380 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7381
7382         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7383         (default behaviour).
7384
7385 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7386
7387         A python script to validate compiler diagnostic messages. It can be
7388         used to verify that sdcc complains about bad c source code and
7389         gives a good location of the error.
7390         * support/valdiag/Makefile,
7391         * support/valdiag/valdiag.py,
7392         * support/valdiag/tests/*
7393
7394 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7395
7396         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7397         * src/SDCCsymt.c (newEnumType),
7398         * src/SDCCsymt.h
7399         * support/Util/SDCCerr.c,
7400         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7401         enum related bugs.
7402         * support/regression/tests/enum.c: added test for enum values that
7403         require at least 2 bytes of storage.
7404
7405 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7406
7407         * src/common.h: added ifndef/define/endif macros
7408         around the header file.
7409         Bug reported from Jesus Calvino-Fraga
7410
7411 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7412
7413         * sdcc.spec: updated
7414         * device/include/Makefile.in: don't install CVS directories
7415         * device/lib/Makefile.in: added removal of CVS directories after install
7416         * doc/Makefile: fixed install, added local_icons
7417         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7418         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7419         * src/ds390/gen.c (genRightShift): fixed bug #870788
7420         * src/SDCCast.c (decorateType): fixed bug #870781
7421
7422 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7423
7424         PIC16 port related changes:
7425         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7426         added variable stackPos,
7427
7428         * gen.c: genCall, assignResultValue: added support for
7429         pushing/retrieving function parameters to/from stack,
7430         genFunction,genEndFunction: setup stack frame for the
7431         generated function,
7432         genAddrOf: will be changed according to bug 863624
7433
7434         * added files genutils.c and genutils.h which contain gen*
7435         debugged and optimised functions extracted from gen.c
7436
7437         * glue.c: added variable 'externs' which holds extern symbols,
7438         pic16emitRegularMap: is modified to properly handle relocatable
7439          symbols under the new scheme,
7440         pic16createInterruptVect: is modified
7441         pic16printPublics: is modified to emit 'global' assembler directives,
7442         added pic16_printExterns to print extern symbols,
7443         pic16glue: initializes stack/frame pointer in the beginning of
7444         the assembly output. Temporary hack, will be corrected later,
7445         because gplink yet does not support stack and SDCC does not
7446         yet support a type of crt0.o object to create the final binary.
7447
7448         * Removed many lines that contain 8051 legacy code.
7449         * The code is finally placed under a 'code' directive.
7450         * Added port specific options.
7451
7452         * _process_pragma: simplified since now we do not need *special*
7453         include file to define SFR registers. But a separate header
7454         will be needed. This will be developed later.
7455         * _pic16_parseOptions: added, parses port specific options:
7456         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7457         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7458         --preplace-udata-with=
7459
7460         * _pic16_setDefaultOptions: modified to initialize section names,
7461         but hack is temporarly out of order since it needs improvement.
7462         * _pic16_genAssemblerPreamble: configuration words are emitted by
7463         their address instead of their name. This part is incomplete and
7464         supports only the 18Fxx2 devices. Other devices will emit an error
7465         during assembly since they do not contain the same set of config
7466         registers
7467         * _pic16_genIVT: is modified,
7468
7469         * pcode.c: added definitions for some hardware registers that are needed
7470         for stack support
7471         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7472         All PCI entries are updated. Now LFSR is supported.
7473         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7474         * added pic16_newpCodeOpLit2 to support instructions with
7475         two literal arguments
7476         * pic16_pCode2str: corrected code that emits assembler instructions
7477         with two literal operands and those that have an access bit modifier
7478         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7479         this fixes a bug which caused some labels to be lost, when an
7480         assembler directive was added, i.e. banksel,
7481         * pic16_FixRegisterBanking: improved logic that causes the insertion
7482         of bank switching,
7483         * InlineFunction: functions that are called once, are not any more
7484         inlined. This can be a port option in the future,
7485
7486         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7487
7488         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7489         hold the corresponding uninitialized symbols,
7490         * pic16_allocProcessorRegister: registers have explicit marked the
7491         accessBank field,
7492         * pic16_allocInternalRegister: registers are explicit marked as
7493         not used,
7494         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7495         processing list, so bit registers were lost,
7496         *
7497
7498         * ralloc.h: added field 'accessBank' and original symbol operand
7499         in register definition,
7500         * removed the field isMapped from register definition,
7501
7502         ** Several functions have been removed from various sources:
7503         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7504         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7505         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7506         pic16_assignRelocatableRegisters
7507
7508         ** others have been introduced:
7509         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7510         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7511
7512 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7513
7514         * support/scripts/inc2h.pl: changed definition of BIT_AT
7515         to emit 'sbit at' instead of 'bit at'. This was a request.
7516
7517         PIC16 port related preliminary changes:
7518         * gen.c: prefixed function popRegFromString with
7519         pic16_ and all references to it corrected
7520         * pcode.c: all pic16_pc_* hardware registers prefixed
7521         with underscore (_),
7522         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7523         * ralloc.c: newReg(): when register is REG_SFR then
7524         set address to rIdx,
7525         pic16_allocProcessorRegister(): marks register wasUsed=0
7526         pic16_writeUsedRegs(): added a call to assign processor
7527         registers via pic16_assignFixedRegisters
7528
7529 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7530
7531         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7532         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7533         variables in unused register banks.  Also the SSEG is placed
7534         wherever there is enough space for it, and IDATA can be anywhere
7535         in internal RAM.  For now compile using -Wl-Y[stack_size].
7536         The mem file is different for this option as well, since it
7537         makes no sense of talking about DSEG lenght.
7538
7539 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7540
7541         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7542         in certain cases, e.g. when ROM assignment, patch provided
7543         from Albert den Haan.
7544
7545 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7546
7547         Many signedness and type propagation fixes:
7548         * src/SDCCicode.c: made geniCodeCast() static
7549         replaced SPEC_ by IS_ (cosmetic)
7550         (operandOperation): fixed div and mod operation
7551         (usualBinaryConversions): added support for promotion of char
7552         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7553         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7554         (geniCodeAdd): an array index will stay unsigned, even if promoted
7555         from char to int
7556         (geniCodeArray): ditto
7557         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7558         * src/SDCCsymt.c (computeType): added more support for char;
7559         promotion of char is selectable by promoteCharToInt, fixed signedness
7560         for all cases
7561         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7562         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7563         * src/SDCCval (val*): replaced signedness calculation by
7564         computeType()
7565         rearranged if-branches (cosmetic)
7566         (valShift): added warning W_SHIFT_CHANGED
7567         (valCompare): fixed problem with different types
7568         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7569         * support/regression/tests/literalop.c: added many cases
7570         * support/regression/tests/ast_constant_folding.c: changed finally to
7571         'unsigned int'
7572         * .version: new year, new version: 2.3.7
7573         * src/SDCCmain.c (main): applied patch #866468
7574         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7575         provided by Scott Bronson
7576         * doc/sdccman.lyx: updated documentation for sdcdb
7577         updated and added chapter tips
7578
7579 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7580
7581         * src/SDCCsymt.h: missing from yesterday's commits
7582
7583 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7584
7585         * src/SDCC.y (struct_or_union_specifier),
7586         * support/Util/SDCCerr.c,
7587         * support/Util/SDCCerr.h: verify that struct & union tags are used
7588         as declared.
7589
7590 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7591
7592         * src/SDCCglobl.h: missing from yesterday's commits
7593
7594 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7595
7596         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7597         sft_attributes, struct_declaration, parameter_declaration,
7598         type_name, start_block, declaration_list),
7599         * src/SDCC.lex (check_type): support redefinition of typedef names
7600
7601 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7602
7603         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7604         aligned xdata arrays. Erik helped me with the if clause.
7605
7606 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7607
7608         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7609         warning
7610
7611 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7612
7613         * src/SDCCast.h,
7614         * src/SDCCast.c (newAst_),
7615         * src/SDCCicode.h,
7616         * src/SDCCicode.c (ast2iCode, newiCode),
7617         * src/SDCCglobl.h,
7618         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7619         expr, statement, expression_statement, selection_statement,
7620         iteration_statement, expr_opt, jump_statement): foundation for tracking
7621         sequence points
7622         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7623         point code too)
7624
7625 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7626
7627         * support/Util/SDCCerr.c,
7628         * src/SDCCast.h,
7629         * src/SDCCast.c (createCase, createDefault, decorateType),
7630         * src/SDCClabel.c (labelUnreach),
7631         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7632         to error messages.
7633         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7634         (with thanks to Stas Sergeev)
7635         * device/include/time.h,
7636         * device/lib/time.c (CheckTime): suppress unreachable code warning
7637
7638 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7639
7640         * src/SDCCast.c (createIvalCharPtr),
7641         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7642         bug #753752)
7643         * support/regression/tests/nullstring.c: tests for these two bugs
7644
7645 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7646
7647         * support/Util/SDCCerr.h,
7648         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7649         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7650         about storage class and 'at' used inside struct or union
7651         * src/SDCCBBlock.c (iCodeFromeBBlock),
7652         * src/SDCCcse.c (ifxOptimize),
7653         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7654         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7655         printIval, emitStaticSeg, emitOverlay),
7656         * src/SDCClabel.c (deleteIfx),
7657         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7658         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7659         gatherAutoInit, processParms),
7660         * support/Util/SDCCerr.h,
7661         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7662         reporting for post-parse errors.
7663
7664 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7665
7666         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7667         implicit casts via union; they don't work on big endian systems
7668         (possible fix for bug #861138)
7669
7670 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7671
7672         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7673         * src/mcs51/main.c: fixed the fix for bug #737001
7674
7675 2003-12-15  Borut Razem <borut.razem AT siol.net>
7676
7677         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7678
7679 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7680
7681         * support/makebin/makebin.c: put output in binary mode
7682
7683 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7684
7685         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7686         xdata and data memory on startup. Set the environment variable
7687         SDCC_NOGENRAMCLEAR to disable this.
7688         * src/mcs51/peephole.def,
7689         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7690         (allows non-interrupt and interrupt code to safely compete for a resource
7691         without the non-interrupt code having to disable interrupts)
7692
7693 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7694
7695         * src/SDCCicode.c (geniCodeAdd),
7696         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7697         with valFromType if type might be a pointer and host is big endian).
7698         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7699         types, not just integer types.
7700         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7701         multiply defined with mismatching "at" address.
7702
7703 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7704
7705         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7706         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7707         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7708         with embedded nulls (fixed bug #753752)
7709
7710 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7711
7712         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7713         Apparently this did not see much testing (endless loop)
7714
7715 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7716
7717         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7718
7719 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7720
7721         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7722         gracefully handle NULL memmap pointers
7723
7724 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7725
7726         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7727         instead of deleting the iCode when an operand is volatile
7728         * src/z80/gen.c (genDummyRead),
7729         * src/mcs51/gen.c (genDummyRead),
7730         * src/ds390/gen.c (genDummyRead),
7731         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7732         not just IC_RIGHT
7733         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7734         * src/SDCC.y: fixed bug #850420
7735
7736 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7737
7738         Applied z80 i/o port patch from Peter Townson and fixed some operators
7739         to better handle operands in A register.
7740         * device/include/z180.h
7741         * src/SDCC.y
7742         * src/SDCCglue.c
7743         * src/z80/gen.c
7744         * src/z80/gen.h
7745         * src/z80/main.c
7746         * src/z80/peeph-z80.def
7747         * src/z80/peeph.def
7748         * src/z80/z80.h
7749
7750 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7751
7752         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7753
7754 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7755
7756         * device/lib/hc08/_mullong.c: Removed extra #endif
7757
7758 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7759
7760         * sim/ucsim/hc08.src/inst.cc,
7761         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7762         carries from x to h
7763         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7764         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7765         * device/include/stdarg.h: fixed varargs for hc08
7766         * device/lib/Makefile.in,
7767         * device/lib/hc08/Makefile,
7768         * device/lib/hc08/_mulint.c,
7769         * device/lib/hc08/_mullong.c: fixed some endian problems
7770
7771 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7772
7773         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7774         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7775         * device/lib/_gptrget.c,
7776         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7777
7778 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7779
7780         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7781         * src/SDCCast.c (astErrors): fixed bug #846007
7782         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7783
7784 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7785
7786         * src/SDCCast.c (decorateType): disabled a transformation I added in
7787         revision 1.188 (access to fields of a structure at an absolute address);
7788         it breaks with bitfields, extern declarations, and gcse analysis.
7789         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7790         could be assigned through a pointer, so don't complain.
7791         * src/SDCCast.c (astErrors),
7792         * src/SDCCast.h,
7793         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7794
7795 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7796
7797         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7798         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7799         output of __config directives, since gpasm now supports them
7800         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7801         pre-processor macro, i.e. -DMCU=p18f452
7802         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7803         and modified to handle 'cast' icode similarly to '=' icode
7804         * src/pic16/device.h (typedef struct PIC_device): added field
7805         'extMIface' to indicate that chip has external memory interface
7806         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7807         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7808         18F8720
7809
7810 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7811
7812         * src/SDCC.y (pointer): fixed bug #846006
7813         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7814         * src/SDCCast.c (decorateType): fixed bug #846009
7815         * src/ds390/peeph.def,
7816         * src/ds390/gen.c (genAnd, genOr),
7817         * src/mcs51/peeph.def,
7818         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7819
7820 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7821
7822         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7823         * src/SDCCdflow.c
7824         * src/SDCCcse.c
7825         * src/SDCCcse.h
7826         * src/SDCCBBlock.h
7827         * src/SDCCBBlock.c
7828
7829 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7830
7831         fixed bug #845089
7832         * src/SDCCbitv.h,
7833         * src/SDCCbitv.c: added function to free a bitvector
7834         * src/SDCClrange.h,
7835         * src/SDCClrange.c: added function to recompute the liveranges
7836         * src/avr/ralloc.c,
7837         * src/ds390/ralloc.c,
7838         * src/hc08/ralloc.c,
7839         * src/mcs51/ralloc.c,
7840         * src/pic/ralloc.c,
7841         * src/pic16/ralloc.c,
7842         * src/xa51/ralloc.c,
7843         * src/z80/ralloc.c: recompute the liveranges after register packing
7844
7845 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7846
7847         * src/SDCCloop.c (newInduction): fixed bug #845630
7848
7849 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7850
7851         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7852         inadvertantly left behind from my 2003-11-12 change
7853
7854 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7855
7856         Updated headers I neglected to commit yesterday.
7857         * src/SDCClrange.h,
7858         * src/SDCCicode.h
7859
7860 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7861
7862         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7863         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7864         * src/SDCCopt.c (eBBlockFromiCode),
7865         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7866         the creation of the key hash table from the sequencing so it can be used
7867         earlier (for some GCSE bug fixes still pending)
7868
7869 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7870
7871         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7872         * support/regression/tests/addsub.c: testing genPlus shortcut
7873
7874 2003-11-15  Borut Razem <borut.razem AT siol.net>
7875
7876         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7877
7878 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7879
7880         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7881         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7882         ordering is immaterial.
7883         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7884
7885 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7886
7887         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7888         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7889         (SIGSEV) of bug #840381
7890         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7891         unlink new file before rename if new and old filenames are the same)
7892
7893 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7894
7895         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7896         uninitialized variables) for the mcs51. Set environment variable
7897         SDCC_GENRAMCLEAR to test.
7898         xdata initialization slightly shorter
7899
7900 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7901
7902         * src/SDCCsymt.h,
7903         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7904         #838241 & 780691 (basicly the same bug)
7905         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7906         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7907
7908 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7909
7910         * src/SDCCmain.c (linkEdit): "fix" #834252
7911
7912 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7913
7914         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7915         * src/SDCCast.h,
7916         * src/SDCC.y: fixed bug #819403
7917
7918 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7919
7920         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7921         the reentrant attribute.
7922         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7923         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7924         simulation
7925         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7926         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7927         erroneously reduced to a literal.
7928         * src/hc08/ralloc.c (packRegisters, rematStr),
7929         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7930         some cases
7931
7932 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7933
7934         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7935         * doc/sdccman.lyx: changed from 'article' to 'book'
7936         * doc/Makefile: readded test_suite_spec and cdbfileformat
7937
7938 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7939
7940         * device/include/stdlib.h: include malloc.h to comply with ANSI
7941         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7942
7943 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7944
7945         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7946         * doc/clean.mk: also remove *.out files
7947         * doc/sdccman.lyx: some additions, larger top/bottom margins
7948
7949 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7950
7951         * src/SDCC.y: fixed bug #837365
7952         * support/regression/tests/bitopcse.c
7953         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7954         a symbol (might be valop instead)
7955         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7956         * device/lib/clean.mk: added hc08 to the cleaning list
7957
7958 2003-11-04  Borut Razem <borut.razem AT siol.net>
7959
7960         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7961           made 2003-11-04
7962         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7963           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7964           malloc is declared in standard stdlib.h
7965
7966 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7967
7968         * device/lib/hc08/Makefile: need to clean .rel not .o files
7969         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7970
7971 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7972
7973         * src/port.h,
7974         * src/hc08/main.c,
7975         * src/mcs51/main.c,
7976         * src/ds390/main.c,
7977         * src/z80/main.c,
7978         * src/avr/main.c,
7979         * src/pic/main.c,
7980         * src/pic16/main.c,
7981         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
7982         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
7983         tests (which uses the port's oclsExpense function)
7984         * src/SDCC.y,
7985         * src/SDCCast.c,
7986         * src/SDCCicode.c,
7987         * src/hc08/gen.c,
7988         * src/ds390/gen.c,
7989         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
7990
7991 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7992
7993         * src/SDCCcse.c (ifxOptimize),
7994         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
7995         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
7996         deleting the IFX iCode.
7997         * src/hc08/ralloc.c: reduced unneeded slocs
7998         * src/hc08/gen.c: fixed bug in asmopToBoolean
7999
8000 2003-11-04  Borut Razem <borut.razem AT siol.net>
8001
8002         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8003           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8004           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8005           transferred to configure
8006
8007 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8008
8009         Use headers defined in the C[++] standards:
8010         * sim/ucsim/gui.src/serio.src/fileio.cc
8011         * sim/ucsim/gui.src/serio.src/frontend.cc
8012         * sim/ucsim/gui.src/serio.src/main.cc
8013         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8014         * support/Util/NewAlloc.c
8015         * as/hc08/lklibr.c
8016         * as/mcs51/lklibr.c
8017         * as/z80/aslist.c
8018         * as/z80/assym.c
8019
8020 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8021
8022         * Added MSVC projects for hc08 assembler and linker:
8023         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8024         /as/hc08/link_hc08.dsp
8025
8026 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8027
8028         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8029
8030 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8031
8032         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8033
8034 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8035
8036         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8037
8038 2003-10-31  Borut Razem <borut.razem AT siol.net>
8039
8040         * support/cpp2/cpplib.h,
8041           support/cpp2/cpplib.c,
8042           support/cpp2/cpplex.c,
8043           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8044           to switch _asm block preprocessing on / off. Default is
8045           #pragma preproc_asm +
8046
8047 2003-10-31  Borut Razem <borut.razem AT siol.net>
8048
8049         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8050           when outputting comment blocks (when executed with -C option) and
8051           _asm (SDCPP specific) blocks
8052
8053 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8054
8055         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8056
8057 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8058
8059         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8060
8061 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8062
8063         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8064         * src/SDCCast.c (decorateType): fixed bug #832664
8065
8066 2003-10-31  Borut Razem <borut.razem AT siol.net>
8067
8068         * support\cpp2\cpplex.c: fixed for SDCPP:
8069           comments(when executed with -C option) and _asm blocks
8070           were included even if they where in skipped #if block.
8071           Applied solution from GCC cpp 3.3.2
8072
8073 2003-10-31  Borut Razem <borut.razem AT siol.net>
8074
8075         * src/SDCC.lex: sdcc now understands both formats:
8076           '# <line_number> <file_name>' and
8077           '#line <line_number> <file_name>'
8078         * support/cpp2/cppmain.c: sdcpp now generates the standard
8079           '# <line_number> <file_name>' instead of former
8080           '#line <line_number> <file_name>'
8081
8082 2003-10-30  Borut Razem <borut.razem AT siol.net>
8083
8084         * support/cpp2/cpphash.h,
8085         * support/cpp2/cpplib.h
8086         * support/cpp2/cpplex.c,
8087         * support/cpp2/cppmain.c,
8088         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8089
8090 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8091
8092         Fixed a number of problems revealed by bug #827883.
8093         * src/SDCCloop.c (loopInvariants): Spill location of the
8094         result operand should be recomputed if extracted from
8095         a loop. Also, don't extract assignments of an iTemp
8096         from a literal.
8097         * src/SDCCast.c (isConformingBody): loop reversal should
8098         not occur if the control variable is involved with a
8099         relational operator.
8100
8101 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8102
8103         * .version: bumped to 2.3.6 to reflect the big improvements
8104         made by Erik and Klaus. Thanks!
8105
8106 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8107
8108         Replaced the livrange code.
8109         * src/SDCClrange.c: added new LR code
8110         * src/SDCCloop.c,
8111         * src/SDCCBBlock.h: removed remainig parts from old LR code
8112         * src/ds390/ralloc.c,
8113         * src/ds390/gen.c: minor fixes to make it work with new code
8114
8115 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8116
8117         * as/hc08/asm.h,
8118         * as/hc08/lkrloc.c,
8119         * src/hc08/gen.c,
8120         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8121         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8122         (tweaked fix for bug #818696)
8123
8124 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8125
8126         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8127
8128 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8129
8130         * src/SDCCmain.c,
8131         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8132         * src/mcs51/gen.c (gencjneshort),
8133         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8134         more efficient (per Scott Bronson's suggestion)
8135
8136 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8137
8138         Extended the semantics of the critical keyword to include
8139         individual statements. See RFE #827755 and #799831
8140         * src/SDCC.y
8141         * src/SDCCicode.c
8142         * src/SDCCopt.c
8143         * src/SDCCast.c
8144         * support/Util/SDCCerr.c
8145         * support/Util/SDCCerr.h
8146         * src/mcs51/gen.c
8147         * src/ds390/gen.c
8148         * src/hc08/gen.c
8149
8150 2003-10-19  Borut Razem <borut.razem AT siol.net>
8151
8152         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8153
8154 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8155
8156         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8157         Fixed bug #818696
8158         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8159         and predecrement operand is displayed
8160
8161 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8162
8163         * src/SDCCval.c (valMinus): fixed bug #826041
8164
8165 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8166
8167         Some hc08 related updates that I missed earlier
8168         * sim/ucsim/stypes.h
8169         * support/regression/ports/hc08/spec.mk
8170
8171 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8172
8173         New target "hc08" for the Motorola 68hc08 family of micros
8174
8175         * configure
8176         * configure.in
8177         * Makefile
8178         * src/hc08/*
8179         * src/SDCCmain.c
8180         * src/port.h
8181         * sim/ucsim/hc08.src/*
8182         * sim/ucsim/configure.in
8183         * src/ucsim/configure
8184         * sim/ucsim/packages_in.mk
8185         * as/hc08/*
8186         * as/Makefile
8187         * device/include/mc68hc908qy.h
8188         * device/lib/hc08/*
8189         * device/lib/Makefile.in
8190         * support/regression/ports/hc08/*
8191         * support/regression/Makefile
8192
8193 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8194
8195         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8196         regression test
8197         * src/ds390/gen.c (genCast): fixed bug #821957
8198
8199 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8200
8201         * device/lib/logf.c: "fixed" overlay bug
8202         * support/regression/ports/host/spec.mk: added m library
8203         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8204         * support/regression/tests/float_trans: added (for Eric)
8205
8206 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8207
8208         * src/mcs51/gen.c (genCpl): fixed bug
8209         http://sf.net/mailarchive/message.php?msg_id=6263915
8210
8211 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8212
8213         * src/SDCCast.c (decorateType): added extended constant folding
8214         * src/SDCCsymt.c (computeType): cleanup
8215         * src/SDCCval.c (valShift): minor optimization
8216         * support/regression/tests/ast_constant_folding.c: added
8217
8218 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8219
8220         * src/SDCCmain.c: removed some unintended changes
8221
8222 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8223
8224         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8225         * src/z80/gen.c: fixed part of bug #817589
8226         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8227
8228 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8229
8230         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8231         * src/SDCCcflow.c
8232         * src/SDCCcse.c
8233         * src/SDCCdflow.c
8234         * src/SDCClabel.c
8235         * src/SDCClrange.c
8236         * src/SDCCmem.c
8237         * src/SDCCopt.c
8238         * src/SDCCpeeph.c
8239         * src/SDCCset.c
8240         * src/avr/ralloc.c
8241         * src/ds390/ralloc.c
8242         * src/izt/ralloc.c
8243         * src/mcs51/ralloc.c
8244         * src/pic/ralloc.c
8245         * src/pic16/ralloc.c
8246         * src/xa51/ralloc.c
8247         * src/z80/ralloc.c
8248         * src/z80/gen.c: removed unused label "release:"
8249
8250 2003-10-06  Borut Razem <borut.razem AT siol.net>
8251
8252         * src/SDCC.lex: removed definition of unused variables
8253           save_optimize and save_options
8254
8255 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8256
8257         * clean.mk: removed '=' in "-maxdepth=1"
8258         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8259         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8260
8261 2003-10-06  Borut Razem <borut.razem AT siol.net>
8262
8263         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8264           my_unput() replaced by unput()
8265
8266 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8267
8268         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8269         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8270         type-punned pointer will break strict-aliasing rules"
8271         Old LR behaviour is again default; Klaus' LR can be choosen by
8272         defining the environment variable LRKLAUS
8273         * src/SDCCBBlock.h
8274         * src/SDCCloop.c
8275         * src/SDCClrange.c
8276         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8277         * clean.mk: fixed removal of files in bin/CVS/
8278         * device/lib/clean.mk: fixed removal of directories small and large
8279         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8280         * src/SDCCicode.c,
8281         * src/SDCCval.c: removed superflous test for pedantic
8282
8283 2003-10-05  Borut Razem <borut.razem AT siol.net>
8284
8285         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8286           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8287           message "unmatched #pragma SAVE and #pragma RESTORE"
8288
8289 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8290
8291         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8292           assembly, critical functions, atomic, nojtbound)
8293
8294 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8295
8296         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8297         * src/SDCCBBlock.h
8298         * src/SDCCloop.c
8299         * src/SDCCloop.h
8300         * src/SDCClrange.c
8301
8302 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8303
8304         * src/z80/gen.h,
8305         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8306         * src/mcs51/gen.h
8307         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8308         * src/ds390/gen.h
8309         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8310         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8311         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8312
8313 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8314
8315         * src/z80/gen.c (genRet): fixed bug #524753
8316         * src/z80/gen.c (genCast): fixed internal error on cast from
8317         pointer to long
8318         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8319         fix for bug #477835 to the z80
8320         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8321         for tracking iCodes in the peephole optimizer for z80
8322
8323 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8324
8325         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8326         the other part of bug #814548
8327         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8328
8329 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8330
8331         * src/SDCCcse.c: fixed part of bug #814548
8332
8333 2003-09-28  Borut Razem <borut.razem AT siol.net>
8334
8335         * src/asm.c: rewrite of printILine() to use temporary file instead
8336           a pipe
8337         * src/xa51/main.c: commented out declaration of int rewinds
8338
8339 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8340
8341         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8342
8343 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8344
8345         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8346         * src/asm.c (printILine): Fixed bug #811015
8347
8348 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8349
8350         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8351         freeing.
8352
8353 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8354
8355         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8356         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8357         to correctly handle general case of AOP_PAIRPTR
8358         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8359
8360 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8361
8362         * src/mcs51/ralloc.c (fillGaps),
8363         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8364         register positioning bug)
8365
8366 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8367
8368         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8369
8370 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8371
8372         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8373         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8374         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8375         (ralloc doesn't intentionally do this now, but perhaps later)
8376         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8377         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8378         register positioning bugs (Fixed bug #762602 and #795325)
8379         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8380         (Fixed bug #808779)
8381         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8382         lines that --i-code-in-asm generates
8383
8384 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8385
8386         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8387         trying to fclose a FILE* that was already closed.
8388
8389 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8390
8391         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8392         of const struct should be treated as if const themselves)
8393
8394 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8395
8396         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8397
8398 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8399
8400         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8401         Unix (/n) and DOS (/r/n) line terminations.
8402
8403 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8404
8405         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8406         bug #613775
8407
8408 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8409
8410         * src/mcs51/gen.c (genFunction, genEndFunction),
8411         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8412         and restore of EA so that stack offsets to parameters are
8413         correct when using both critical and reentrant/stack-auto.
8414         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8415         size (can be triggered in error if sloc is shared between
8416         different sized objects)
8417         * device/include/float.h: fixed macros to explicitly use
8418         unsigned long where needed
8419
8420 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8421
8422         Feature req. 799831: added code to allow nesting of critical functions
8423         * src/mcs51/gen.c (genFunction, genEndFunction)
8424         * src/ds390/gen.c (genFunction, genEndFunction)
8425
8426 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8427
8428         * src/SDCCsymt.c (sclsFromPtr),
8429         * src/SDCCsymt.h,
8430         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8431         support for standard C idiom of memory mapped variables; for
8432         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8433         to xdata int at 0x1234 tempvar = 1.
8434         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8435         provided by Akiya ISHIDA
8436
8437 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8438
8439         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8440         * src/SDCCval.c (constVal): added reduction from int to char
8441         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8442         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8443         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8444         to ignore the sign
8445         * support/regression/tests/shifts.c: fixed
8446
8447 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8448
8449         * src/z80/gen.c (genXor): Fixed bug #805445
8450
8451 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8452
8453         Fixed bug #621531 (const & volatile confusion in the type chain).
8454         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8455         refer to the const or volatile state of the pointer itself.
8456
8457         * src/SDCCast.c
8458         * src/SDCCglue.c
8459         * src/SDCCicode.c
8460         * src/SDCCsymt.c
8461         * src/SDCCval.c
8462         * src/SDCC.y
8463         * src/SDCCsymt.h
8464         * src/pic/gen.c
8465         * src/pic/ralloc.c
8466         * src/pic16/gen.c
8467         * src/pic16/ralloc.c
8468         * support/regression/tests/const.c
8469
8470 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8471
8472         When checking for duplicated modules, use absolute paths
8473         instead of relative paths.  Files changed:
8474
8475         * as/mcs51/lklib.c
8476         * link/z80/lklib.c
8477
8478 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8479
8480         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8481
8482 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8483
8484         * device/include/string.h: added size_t typedef, changed
8485         prototypes to use size_t, eliminated separate reentrant and
8486         non-reentrant declarations, added _memmove declaration
8487         * device/lib/_memcpy.c: changed to use size_t instead of int,
8488         changed /4 to >>2 to avoid division library call
8489         * device/lib/_memcmp.c,
8490         * device/lib/_memset.c,
8491         * device/lib/_strncat.c,
8492         * device/lib/_strncpy.c,
8493         * device/lib/_strncmp.c: changed to use size_t instead of int
8494         * device/lib/_memmove.c: new file (fixed bug #772294)
8495         * device/lib/Makefile.in: added _memmove.c
8496         * device/lib/z80/asm_strings.s: fixed bug #772290
8497         * support/regression/tests/bitfields.c: attempt to fix host assertion
8498         failure on amd64-unknown-linux2.2
8499
8500 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8501
8502         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8503         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8504         * as/z80/asmain.c (main): fixed bug #801766
8505
8506 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8507
8508         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8509         compilers
8510
8511 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8512
8513         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8514         reported in bug #800609
8515
8516 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8517
8518         * Top header beautifications in src/pic16 directory:
8519           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8520           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8521           pcoderegs.h, ralloc.c, ralloc.h
8522         * main.c: added top header and GPL license notice
8523         * pcode.c: fixed the if-conditional warning
8524
8525 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8526
8527         * device/lib/_mullong.c: replaced int by short for gcc
8528
8529 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8530
8531         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8532         and JUMPTABLE iCodes properly now (worked by accident before)
8533         * src/mcs51/gen.c (leftRightUseAcc),
8534         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8535         iCode properly now. Use getSize instead of nRegs since a & b
8536         aren't part of the nRegs tally.
8537
8538 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8539
8540         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8541         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8542           before instructions that use the _STATUS register
8543
8544 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8545
8546         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8547         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8548         fetching of the pointer
8549         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8550         copied from genNearPointerSet()
8551         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8552         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8553         If they pop r0/r1 they must be called in the opposite order than aopOp().
8554         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8555         (resp. --stack-auto), prepared for --xstack
8556
8557 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8558
8559         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8560
8561 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8562
8563         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8564         these ports have their own __sdcc_external_start()
8565
8566 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8567
8568         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8569         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8570         type for bits was changed. It resulted in bit variables becoming
8571         global, which is not permitted in PIC 14 assembly output.
8572
8573 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8574
8575         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8576
8577 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8578
8579         Z80 and MCS51 linkers complaint if a public symbol is defined
8580         in more than one library module:
8581
8582         * as/mcs51/lklib.c
8583         * link/z80/lklib.c
8584         * as/mcs51/Makefile.in
8585
8586 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8587
8588         A few small changes that speed up the peephole optimizer.
8589
8590         * src/SDCCpeeph.c
8591
8592 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8593
8594         Try to make the peephole optimizer smarter by maintaining
8595         an association between the assembly source code and the
8596         iCodes that originated them. Put this information to use
8597         with a new peephole rule condition "notVolatile" so that
8598         the rules can be aggressive yet still safe.
8599
8600         * src/SDCCpeeph.c
8601         * src/SDCCpeeph.h
8602         * src/mcs51/gen.c
8603         * src/mcs51/peeph.def
8604
8605 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8606
8607         Fixed bug #741761
8608
8609         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8610         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8611         if the left or right operand symbols have the accuse flag set.
8612
8613 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8614
8615         Changed the type of the result of the ! (NOT) operator to char;
8616         previously it returned the same type as the source. This allows
8617         us to eliminate all the genFloatNot functions (all of its target
8618         implementations were very buggy) since !float can use the same
8619         code as !long now.
8620
8621         * src/SDCCicode.c (ast2iCode): ! returns char
8622         * src/mcs51/gen.c (genNot, genNotFloat),
8623         * src/ds390/gen.c (genNot, genNotFloat),
8624         * src/z80/gen.c (genNot, genNotFloat),
8625         * src/pic/gen.c (genNot, genNotFloat),
8626         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8627
8628 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8629
8630         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8631         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8632            during interrupts. Ensure WSAVE is located at a shared bank address.
8633         2. Fixed page selection in some places
8634         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8635            the registers name strings.
8636         4. Fixed "signed / unsigned compare" compiler warnings.
8637         5. The PIC port manages its own allocation of the general purpose
8638            registers, but makes no attempt to reuse them. As a result when
8639            compiling it soon runs out of general purpose registers. Some
8640            additional code was added to the files pcode.c and device.c to walk
8641            through the function call tree and rename the registers so that they
8642            get reused.
8643
8644         * src/pic/device.c
8645         * src/pic/gen.c
8646         * src/pic/glue.c
8647         * src/pic/pcode.c
8648         * src/pic/pcode.h
8649         * src/pic/ralloc.c
8650         * src/pic/ralloc.h
8651         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8652         genPlus() & genMinus() when the result is the same as left or right
8653
8654 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8655
8656         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8657
8658 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8659
8660         Made bitfield a distinct type from bit so that bitfields
8661         convert as per ANSI C and bits retain their traditional
8662         boolean style behaviour. Implemented bitfield support in
8663         the z80 port.
8664
8665         * src/SDCCsymt.h,
8666         * src/SDCCsymt.c,
8667         * src/SDCCast.c,
8668         * src/cdbFile.c,
8669         * src/mcs51/gen.c,
8670         * src/ds390/gen.c: bit v bitfield split
8671         * src/z80/gen.c: New support for bitfields
8672         * support/regression/tests/bitfields.c: reenabled z80,
8673         added more tests
8674
8675 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8676
8677         Rules 246.x, 247.x relate to bitfields, the others speed up
8678         access to xdata mapped I/O devices.
8679
8680         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8681
8682 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8683
8684         Cleaned up genPackBits and genUnpackBits and added two helper
8685         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8686         for literal assignments in genPackBits (thanks to Frieder for
8687         reminding me).
8688
8689         * src/mcs51/gen.c
8690         * src/ds390/gen.c
8691
8692 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8693
8694         Fixed bug #748310 (pointer to function type mishandled when the
8695         function name is omitted). Also fixed a SIGSEGV when a function
8696         attribute (reentrant, etc) is used on a non-function or on a
8697         function but misplaced before the parameter list.
8698
8699         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8700         bug #748310
8701         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8702         * support/Util/SDCCerr.h,
8703         * support/Util/SDCCerr.c: Added func attr misuse error msg
8704
8705 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8706
8707         Fixed bug #787649 by anonymous
8708         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8709         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8710
8711 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8712
8713         Fixed numerous bitfield problems.
8714
8715         * src/SDCC.y: More bitfield related error checking
8716         * src/SDCCsymt.h,
8717         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8718         * support/Util/SDCCerr.h,
8719         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8720         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8721         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8722         * support/regression/tests/bitfields.c: tests added
8723
8724 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8725
8726         Made the constant following the "interrupt" keyword optional. If
8727         omitted, the function will not automatically be given an entry
8728         in the interrupt vector table (similar to #pragma NOIV, but
8729         less syntacticly kludgy). The interrupt number is also now
8730         range checked. Also fixed a bug in the high order bit example
8731         in the manual.
8732
8733         * src/SDCC.y
8734         * src/SDCCmem.c
8735         * src/SDCCglue.c
8736         * src/SDCCsymt.h
8737         * support/Util/SDCCerr.c
8738         * support/Util/SDCCerr.h
8739         * doc/sdccman.lyx
8740
8741 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8742
8743         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8744         * src/SDCCicode.c (operandOperation): rewritten some ops
8745         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8746         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8747         other type
8748         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8749         be re-activated by defining REDUCE_LITERALS)
8750         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8751         unsigned, but are signed by default
8752         * src/SDCCval.c (constVal): rearranged
8753         * src/SDCCval.c (valMod): preliminary fix
8754         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8755         * support/regression/literalop.c: added, work in progress
8756
8757 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8758
8759         Generate warnings for useless declarations like "char data;"
8760         that don't do what new users expect.
8761
8762         * src/SDCC.y
8763         * support/Util/SDCCerr.h
8764         * support/Util/SDCCerr.c
8765
8766 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8767
8768         * src/SDCCval.c (valMult): fix overflow detection of negative int
8769
8770 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8771
8772         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8773
8774         Changes to support big endian targets:
8775
8776         * src/ports.h
8777         * src/SDCCglue.c
8778         * src/avr/main.c
8779         * src/ds390/main.c
8780         * src/izt/i186.c
8781         * src/mcs51/main.c
8782         * src/pic/main.c
8783         * src/pic16/main.c
8784         * src/xa51/main.c
8785         * src/z80/main.c
8786
8787 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8788
8789         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8790         * device/lib/time.c: fixed warning "integer overflow in expression"
8791
8792 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8793
8794         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8795         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8796         constants are unsigned; added recognition of "u" flag for unsigned
8797         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8798         * src/SDCCval.c (valDiv, valMod): fixed signdness
8799         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8800         signedness of modulo, left and right shift
8801         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8802         * support/Util/SDCCerr.h: added warning W_INT_OVL
8803         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8804         * src/SDCCast.c (ast_print): improved output of constants
8805
8806 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8807
8808         Fixed some warnings when building with MSVC:
8809
8810         * as\mcs51\asdata.c
8811         * as\z80\asdata.c
8812         * as\mcs51\asm.h
8813         * as\z80\asm.h
8814         * link\z80\aslink.h
8815         * link\z80\lkdata.c
8816         * link\z80\lkeval.c
8817         * link\z80\lkgb.c
8818         * link\z80\lkihx.c
8819         * link\z80\lks19.c
8820         * link\z80\lksym.c
8821         * support\cpp2\cpplib.c
8822         * src\ds390\gen.c
8823         * src\mcs51\gen.c
8824
8825 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8826
8827         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8828
8829 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8830
8831         * support\librarian\clean.mk: Do not remove Makefile.
8832         * support\librarian\Makefile: added.
8833
8834 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8835
8836         Added librarian to MSVC build:
8837         * all.dsp
8838         * sdcc.dsw
8839         * support\librarian\librarian.dsp
8840
8841         'configure' not needed for librarian, removed:
8842         * support\librarian\configure
8843         * support\librarian\configure.in
8844         * support\librarian\config_in.h
8845         * support\librarian\Makefile.in
8846
8847         Hopefully these ones built the librarian and the rest of sdcc properly:
8848         * Makefile
8849         * Makefile.common.in
8850
8851         Messed up 'configure', so revert to previous version:
8852         * configure
8853         * configure.in
8854
8855 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8856
8857         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8858         there, while the mantissa of a double is "only" 53 bits wide.
8859
8860 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8861
8862         Adding sdcclib to the build.  MSVC project coming soon.
8863         Files added/changed:
8864
8865         * support\librarian\clean.mk
8866         * support\librarian\configure
8867         * support\librarian\configure.in
8868         * support\librarian\config_in.h
8869         * support\librarian\Makefile.bcc
8870         * support\librarian\Makefile.in
8871         * support\librarian\sdcclib.c
8872         * Makefile.bcc
8873         * Makefile
8874         * Makefile.common.in
8875         * configure
8876         * configure.in
8877
8878 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8879
8880         Linker now complaints if linked modules have conflicting options, for
8881         example, one compiled using --model-large and another one compiled with
8882         --model-small.  The following files were modified:
8883
8884         * as\mcs51\asdata.c
8885         * as\mcs51\aslink.h
8886         * as\mcs51\asm.h
8887         * as\mcs51\asmain.c
8888         * as\mcs51\asout.c
8889         * as\mcs51\i51pst.c
8890         * as\mcs51\lkdata.c
8891         * as\mcs51\lklibr.c
8892         * as\mcs51\lkmain.c
8893         * as\z80\asdata.c
8894         * as\z80\asm.h
8895         * as\z80\asmain.c
8896         * as\z80\asout.c
8897         * as\z80\z80pst.c
8898         * link\z80\aslink.h
8899         * link\z80\lkdata.c
8900         * link\z80\lklibr.c
8901         * link\z80\lkmain.c
8902         * src\SDCCglue.c
8903
8904 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8905
8906         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8907         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8908
8909 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8910
8911         * src/z80/mappings.i: fix _mul[us][int,long] entries
8912
8913 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8914
8915         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8916
8917 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8918
8919         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8920         * support/regression/tests/bitopcse.c: added
8921         fixed warning:
8922         * src/avr/gen.c:
8923         * src/pic/gen.c:
8924         * src/pic16/gen.c:
8925         * src/z80/gen.c:
8926         * src/xa51/gen.c:
8927
8928 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8929
8930         added support for new library format to z80, gbz80 linkers:
8931         *link/z80/aslink.h
8932         *link/z80/lklex.c
8933         *link/z80/lklib.c
8934         *link/z80/lklist.c
8935
8936 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8937
8938         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8939         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8940
8941 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8942
8943         added DUMMY_READ_VOLATILE:
8944         * src/SDCC.y:
8945         * src/avr/gen.c:
8946         * src/xa51/gen.c:
8947         * src/z80/gen.c:
8948         * src/pic/gen.c:
8949         * src/pic16/gen.c:
8950         * src/mcs51/gen.c:
8951         * src/ds390/gen.c:
8952         * src/SDCCcse.c (algebraicOpts): many improvements
8953         * src/SDCCcse.h: removed algebraicOpts()
8954         * src/SDCCicode.c (picDummyRead): added
8955
8956 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8957
8958         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8959         "Insufficient space in data memory".
8960
8961 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8962
8963         * src/mcs51/gen.c: fixed bug #771358
8964         * src/z80/gen.c: fixed bug #759087
8965
8966 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8967
8968         * src/pic16/glue.c: minor cleanup by Vangelis
8969
8970 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8971
8972         * device/include/regc515c.h: fixed #758477
8973         * device/lib/_gptrget.c: saving some cycles in generic pointer get
8974         * device/lib/_gptrput.c: saved a few bytes
8975         * my tab spacing is 8, yours too?)
8976         * device/lib/_ser.c: process RX bytes earlier than TX bytes
8977         * device/lib/serial.c: process RX bytes earlier than TX bytes
8978         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
8979
8980 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8981
8982         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
8983
8984 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8985
8986     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
8987
8988 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
8989
8990         * device/lib/Makefile.in: bad fix, reverted to 1.43
8991
8992 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
8993
8994         * device/lib/Makefile.in: added missing z80 object files
8995
8996 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
8997
8998         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
8999         pic16 progress by Vangelis:
9000         * src/SDCCglobl.h:
9001         * src/SDCCmain.c:
9002         * src/pic/Makefile:
9003         * src/pic:
9004         * pic/Makefile:
9005         * pic16/device.c:
9006         * pic16/device.h:
9007         * pic16/gen.c:
9008         * pic16/gen.h:
9009         * pic16/genarith.c:
9010         * pic16/glue.c:
9011         * pic16/main.c:
9012         * pic16/pcode.c:
9013         * pic16/pcode.h:
9014         * pic16/pcodepeep.c:
9015         * pic16/peeph.def:
9016
9017 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9018
9019     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9020
9021 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9022
9023     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9024     added gbz80 build to MSVC project.
9025     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9026     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9027     from 8051 stuff and setup so it links using a .lnk file.
9028
9029 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9030
9031     * support/librarian/sdcclib.c: sdcc librarian.
9032     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9033     with sdcclib.
9034
9035 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9036
9037     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9038
9039 2003-07-02  Borut Razem <borut.razem AT siol.net>
9040
9041         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9042         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9043         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9044         src/xa51/main.c, src/z80/main.c:
9045         virtualization of glue() function: each port has it's own glue function,
9046         which is accessed by do_glue function pointer in PORT.general structure
9047
9048 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9049
9050         * DS800C400 fun, improved ROM interface and tinibios.
9051
9052 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9053
9054         * More support for DS80C400. Now includes beginning of interface to ROM.
9055
9056 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9057
9058         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9059
9060 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9061
9062         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9063
9064 2003-06-19  Borut Razem <borut.razem AT siol.net>
9065
9066         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9067
9068 2003-06-19  Borut Razem <borut.razem AT siol.net>
9069
9070         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9071         fixed Z80 port - crt0.o: cannot open.
9072
9073 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9074
9075         * support/Util/MySystem.c (merge_command): revert bad fix
9076
9077 2003-06-18  Borut Razem <borut.razem AT siol.net>
9078
9079         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9080
9081 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9082
9083         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9084         option --use-stdout sends errors to stdout instead of stderr.
9085
9086 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9087
9088         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9089
9090 2003-06-15  Borut Razem <borut.razem AT siol.net>
9091
9092         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9093         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9094         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9095         fixed width array of pointers replaced with sets;
9096         multiple include and lib paths ared transferred to preprocessor and linker
9097         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9098         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9099         fixed width array of pointers
9100         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9101         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9102         fixupPath(), getPathDifference()
9103         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9104         fixed width array of pointers
9105
9106 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9107
9108         * src/pic16/ralloc.c: fix warnings
9109         * src/pic16/pcode.c: fix warning
9110
9111 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9112
9113          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9114         know all the details, but essentially this set of changes enable
9115         the pic16 port to generate movff instructions and generate assembler
9116         directives,
9117         * src/SDCCmain.c:
9118         * src/pic16/gen.c:
9119         * src/pic16/glue.c:
9120         * src/pic16/pcode.c:
9121         * src/pic16/device.c:
9122         * src/pic16/main.c:
9123         * src/pic16/pcode.h:
9124         * src/pic16/pcoderegs.c:
9125         * src/pic16/ralloc.c:
9126         * src/pic16/ralloc.h:
9127
9128 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9129
9130         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9131         added option --vc, so sdcc errors and warnings are compatible with
9132         Microsoft Visual Studio.
9133
9134 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9135
9136         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9137           device/lib/libfloat.lib: added atof function.
9138
9139 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9140
9141         * doc/sdccman.lyx: updated to Lyx 1.3
9142         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9143         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9144         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9145
9146 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9147
9148         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9149
9150 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9151
9152         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9153           additions to the "related tools/documentation" section
9154
9155 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9156
9157         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9158
9159 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9160
9161         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9162         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9163
9164 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9165
9166         * doc/sdccman.lyx: fix double dash and other minor things
9167         * doc/Makefile: fix double dash
9168
9169 2003-05-28  Karl Bongers(patches from Martin Helmling)
9170         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9171           condition and ignore commands.
9172
9173 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9174
9175         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9176           is in parts still quite out of date, I did changes as far as I felt makes sense
9177           for a non-native english speaker.
9178           Please feel free to add to the manual or to correct my changes.
9179         * doc/Makefile: undid touching the date of intermediate tex files.
9180
9181 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9182
9183         * doc/sdccman.lyx: Manual has an index now
9184
9185 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9186
9187         Finalize muluint/mulsint and mululong/mulslong merging:
9188         * device/lib/_mulint.c
9189         * device/lib/_mullong.c
9190         * device/lib/gbz80/mul.s
9191         * device/lib/gbz80/stubs.s
9192         * device/lib/z80/mul.s
9193         * device/lib/z80/stubs.s
9194         * src/SDCCsymt.c (initCSupport)
9195
9196 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9197
9198         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9199         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9200           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9201           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9202           instead of /Zm500.
9203
9204 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9205
9206         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9207           the regression tests I'm not brave enough to enable 245.b, 245.c
9208         * doc/sdccman.lyx: added latex preamble for hyperref package.
9209           Using pdflatex this will give you a hyperlinked pdf file with
9210           bookmarks. (prepend '%' before /usepackage if this breaks something)
9211
9212 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9213
9214          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9215
9216 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9217
9218         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9219
9220 2003-05-21    <johan AT balder>
9221
9222         * src/SDCCglue.c (printIval): fixed bug #739934
9223
9224 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9225
9226         Applied patch from bug 737905 (renamed yylineo to mylineno):
9227         * src/altlex.c
9228         * src/SDCCast.c
9229         * src/SDCglobl.h
9230         * src/SDCC.lex
9231         * src/SDCCsymt.c
9232         * src/SDCCval.c
9233         * src/pic16/pcode.c: Cleaned warnings
9234         * src/pic16/pcodeflow.c: Cleaned warnings
9235         * src/pic16/pcoderegs.c: Cleaned warnings
9236
9237 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9238
9239         * src/pic16/pcode.c: Cleaned warnings
9240         * src/pic16/pcodepeep.c: Cleaned warnings
9241         * src/pic16/ralloc.c: Cleaned warnings
9242
9243 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9244
9245         * doc/sdccman.lyx: fixed bug 739745
9246         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9247
9248 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9249
9250         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9251         it can be defined with CFLAGS when running configure
9252         * src/SDCCmain.c: fixed compiling + linking with object files
9253
9254 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9255
9256         * configure.in: configure for pic16 port,
9257             added --disable-pic16-port
9258         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9259         * src/SDCCmain.c: linkOptions is changed to set *,
9260             added if/endif conditional macros to remove options help
9261             messages from optionsTable when a port is not configured, added
9262             support for the PIc16 port in the ports table, when executing
9263             the compiler with no port specified on command line, a default
9264             port is selected with the new macro DEFAULT_PORT which is
9265             defined in port.h, in setDefaultOptions() linkOptions is removed
9266             from initialization assignment, since now it is a set,
9267             parseCmdLine uses setParseWithComma for linkOptions, in
9268             linkEdit() linkOptions are accessed with new function indexSet()
9269             which returns the i'th item of a set variable. See SDCCset.c, in
9270             linkEdit() when calling buildCmdLine(), added linkOptions as
9271             last argument. Now users can pass arguments to gplink via the
9272             -Wl option, main() uses pic16glue() to glue up pic16 programs
9273         * src/SDCCpeeph.c: various changes to support pic16
9274         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9275             return the i'th item of the set
9276         * src/SDCCset.h: added function prototype for indexSet()
9277         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9278         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9279         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9280             added macro DEFAULT_PORT
9281         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9282         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9283             generated
9284         * src/pic16/glue.c: commented out some error producing lines
9285         * src/pic16/main.c: __config directives are commented out to stop
9286             gpasm complaining and test the linkage with gplink, _linkCmd and
9287             _asmCmd changed to be more gplink and gpasm friendly
9288         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9289             produced an error when parsed, peep rule 12 is added to utilize
9290             movff, but it is commented out since the pCode does not support
9291             yet a command with 2 address arguments
9292
9293 2003-05-18    <johan AT balder>
9294
9295         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9296         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9297 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9298
9299         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9300   Added feature to script commands from file.
9301
9302 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9303
9304         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9305         * src/SDCCutil.c: include ctype.h for win32
9306
9307 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9308
9309         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9310
9311 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9312
9313         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9314   Fixed so you can set breakpoints prior to run, run does not stop
9315   on entry now.  Add tbreak.  Other enhancements and fixes for use
9316   with ddd.
9317
9318 2003-05-12  Borut Razem <borut.razem AT siol.net>
9319
9320         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9321
9322 2003-05-11  Borut Razem <borut.razem AT siol.net>
9323
9324         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9325         the path of bin directory, so that PATH is the only env. variable, which has to be set
9326         in case of standard installation.
9327         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9328         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9329         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9330
9331 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9332
9333         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9334         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9335         temp files are in the port dir; clean the gen/test directory when
9336         generating new test.c
9337         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9338         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9339         * support/regression/tests/zeropad.c: added
9340
9341 2003-05-09    <johan AT balder>
9342
9343         * src/SDCCglue.c: fixed bug #597940
9344
9345 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9346
9347         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9348   cache sfr, optimize next,step, fix off by one sourceline,
9349   support ddd list function.
9350         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9351
9352 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9353
9354         * support/regression/HTMLgen.py: added compare_s2f()
9355         * support/regression/Makefile: redo 1.27
9356         * support/regression/generate-cases.py: redo 1.5
9357
9358 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9359
9360         * support/regression/tests/float.c: workaround 33 bit hex constant
9361         * support/regression/tests/simplefloat.c: fix division for host
9362
9363 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9364
9365         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9366         that tame's the PIC's over-aggressive optimizer.
9367
9368 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9369
9370          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9371          support for MSVC.
9372
9373 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9374
9375         Initial support for DS80C400. "Hello world" runs on TINIm400
9376         (with polled I/O).
9377
9378 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9379
9380          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9381          * Some notes on ddd usage added in debugger/README
9382          Martin Helmling adding more features and fixes for ddd GUI debugger.
9383          Code added for nexti, stepi, up, down, and other adjustments.
9384
9385 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9386
9387         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9388         * src/pic/peeph.def Added two rules to optimize carry manipulation
9389         * src/pic/* removed debug printfs
9390
9391 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9392
9393         * debugger/mcs51/cmd.c: added header newalloc.h
9394
9395 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9396
9397         * as/Makefile: new EXEEXT
9398         * as/z80/Makefile: remove trailing slash of BUILDIR
9399         * as/z80/clean.mk: new EXEEXT
9400         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9401         * support/cpp2/Makefile.in: new EXEEXT
9402         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9403
9404 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9405
9406         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9407         EXEEXT was introduced to fix all related problems with targets
9408         "clean", "install" and "uninstall"; a couple of further flaws
9409         especially with "clean" have been fixed too
9410         * as/mcs51/Makefile.in
9411         * as/mcs51/clean.mk
9412         * as/z80/Makefile
9413         * Makefile
9414         * clean.mk
9415         * debugger/mcs51/Makefile.in
9416         * debugger/mcs51/clean.mk
9417         * link/z80/Makefile
9418         * link/z80/Makefile.in
9419         * link/z80/clean.mk
9420         * link/Makefile
9421         * packihx/Makefile.in
9422         * packihx/clean.mk
9423         * sim/ucsim/Makefile
9424         * sim/ucsim/clean.mk
9425         * sim/ucsim/avr.src/Makefile.in
9426         * sim/ucsim/avr.src/clean.mk
9427         * sim/ucsim/s51.src/Makefile.in
9428         * sim/ucsim/s51.src/clean.mk
9429         * sim/ucsim/xa.src/Makefile.in
9430         * sim/ucsim/xa.src/clean.mk
9431         * sim/ucsim/z80.src/Makefile.in
9432         * sim/ucsim/z80.src/clean.mk
9433         * sim/ucsim/main_in.mk
9434         * sim/ucsim/packages_in.mk
9435         * sim/ucsim/gui.src/Makefile.in
9436         * sim/ucsim/gui.src/serio.src/Makefile.in
9437         * sim/ucsim/gui.src/serio.src/clean.mk
9438         * src/Makefile.in
9439         * src/clean.mk
9440         * support/cpp2/Makefile.in
9441         * support/cpp2/clean.mk
9442         * support/makebin/Makefile
9443         * support/makebin/clean.mk
9444         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9445         * doc/sdccman.lyx: --program-suffix no longer needed
9446
9447 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9448
9449          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9450          Martin Helmling added support for ddd GUI debugger.
9451          Code added to display assembly, set variables, and other commands
9452          to interface to ddd.
9453
9454 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9455
9456         * as/Makefile: fix target clean
9457         * as/clean.mk: fix target clean
9458         * as/z80/clean.mk: fix target clean
9459
9460 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9461
9462         * Makefile.common.in: added  AT EXEEXT AT
9463         * configure.in: removed all mingw32 stuff
9464         * configure: rebuilt from configure.in
9465         * doc/sdccman.lyx: updated section "installation"
9466         * support/scripts/sdcc_mingw32: adapted to configure
9467         * support/scripts/sdcc_cygwin_mingw32: added
9468
9469 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9470
9471         * src/pic Added object file support for the PIC port
9472         * src/pic Applied patch from Craig Franklin (this started the object file support)
9473         * src/regression Updated the PIC regression tests for object files
9474
9475 2003-04-20  Borut Razem <borut.razem AT siol.net>
9476
9477         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9478           lklex.c: In function `getfid':
9479           lklex.c:203: warning: array subscript has type `char'
9480         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9481           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9482         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9483           stack handling macros
9484
9485 2003-04-19  Borut Razem <borut.razem AT siol.net>
9486
9487         * "handling space characters in file path" task:
9488         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9489         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9490         * support/Util/MySystem.h: make it self-sufficient
9491         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9492           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9493           handling space characters in file path
9494         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9495           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9496         * support/Util/MySystem.c: handling space characters in executable's path
9497
9498 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9499
9500         * as/z80/Makefile: fix permanent rebuild of z80
9501         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9502         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9503
9504 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9505
9506         * src/SDCCopt.c: add special case optimization to replace modulo by
9507           a power of two with a bitwise AND.
9508
9509 2003-04-18    <johan AT balder>
9510
9511         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9512
9513 2003-04-17    <johan AT balder>
9514
9515         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9516         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9517
9518 2003-04-13  Borut Razem <borut.razem AT siol.net>
9519
9520         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9521         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9522           fixed mingw problem in adl_NORMALIZE_PATH
9523
9524 2003-04-12  Borut Razem <borut.razem AT siol.net>
9525
9526         * fixed "#pragma SAVE/RESTORE can not be nested":
9527         * src/SDCC.lex: reworked pragma handling functions
9528         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9529         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9530
9531 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9532
9533         * src/SDCCutil.c (pathEquivalent): defined but not used
9534         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9535         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9536         * configure: rebuilt from configure.in
9537         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9538         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9539         * device/include/Makefile.in: replace sdcc_datadir
9540         * device/lib/Makefile.in: replace sdcc_datadir
9541         * Makefile.common.in: add LDFLAGS from configure
9542         * packihx/Makefile.in: use LDFLAGS
9543         * src/Makefile.in: use LDFLAGS
9544         * support/cpp2/Makefile.in: add LDFLAGS from configure
9545         * support/makebin/Makefile: use LDFLAGS
9546         * .version: bumped version number to 2.3.5
9547
9548 2003-04-12  Borut Razem <borut.razem AT siol.net>
9549
9550         * completed "different paths" task:
9551         * src/SDCCmacro.c: fixed bug in handling quotes
9552         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9553         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9554
9555 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9556
9557         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9558
9559 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9560
9561         * ds390/gen.c ds390/peeph.def: fix bug 706781
9562
9563 2003-04-11  Borut Razem <borut.razem AT siol.net>
9564
9565         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9566
9567 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9568
9569         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9570         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9571          set - this bit used to not be set...).
9572         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9573           bad code in PIC Port
9574         * src/regression/and2.c added to test bug 609268
9575         * src/regression/Makefile added and2.c to regression test
9576
9577
9578 2003-04-08    <johan AT CP255758-A>
9579
9580         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9581         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9582         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9583
9584 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9585
9586         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9587         fix bug #487815
9588         * support/cpp2/Makefile.in: fix bug #487815
9589         * configure: rebuilt from configure.in
9590         * Makefile.common.in: docdir changed, new path suffixes
9591         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9592         * sdcc_vc_in.h: reflect changes from sdccconf.h
9593         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9594         * src/SDCCutil.h: remove BINDIR hack
9595         * doc/sdccman.lyx: update new path hierarchy
9596
9597 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9598
9599         * src/SDCCpeeph.c: added okToRemoveSLOC test
9600
9601 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9602
9603         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9604
9605 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9606
9607         * src/SDCCpeeph.c: added labelIsReturnOnly test
9608         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9609
9610 2003-04-05    <johan AT balder>
9611
9612         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9613         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9614         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9615         * src/SDCCast.c: fixed a warning
9616         * src/SDCCast.h: fixed a warning
9617         * src/SDCCicode.c (operandFromAst): fixed a warning
9618
9619 2003-04-04    <johan AT balder>
9620
9621         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9622         * src/SDCCast.c (decorateType): fixed bug #715076
9623         * src/SDCC.y: fixed bug #702907
9624
9625 2003-04-03    <johan AT balder>
9626
9627         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9628         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9629         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9630         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9631         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9632
9633 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9634
9635         * _decdptr.c: fix return values
9636         * _gptrget.c: fix return values
9637         * _gptrgetc.c: fix return values
9638         * _gptrput.c: fix return values
9639         * _mulint.c: fix return values
9640         * as/z80/Makefile: fix 'make -j' problem
9641
9642 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9643
9644         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9645         * configure.in: big cleanup, updated to autoconf 2.5x
9646         * configure: rebuilt from configure.in
9647         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9648         * sdcc_vc_in.h: reflect changes from sdccconf.h
9649         * doc/Makefile: fixed a flaw in "make install"
9650
9651 2003-04-02    <johan AT balder>
9652
9653         * src/ds390/gen.c (genCmp): no comments
9654         * src/mcs51/gen.c (genCmp): no comments
9655         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9656         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9657
9658 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9659
9660         * support/regression/generate-cases.py: place generated file in given sub directory
9661         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9662         * support/regression/Makefile: improvements for 'make -j';
9663         side effect: it's simpler and faster now
9664
9665 2003-03-31  Borut Razem <borut.razem AT siol.net>
9666
9667         * src/z80/main.c: link-{port} and as-{port} defined without path
9668         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9669
9670 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9671
9672         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9673
9674 2003-03-30  Borut Razem <borut.razem AT siol.net>
9675
9676         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9677           changed type of list parameter to set
9678         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9679         * src/port.h: changed type of do_assemble() parameter to set
9680         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9681           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9682           definition of "cppoutfilename" macro with NULL value in preProcess()
9683         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9684         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9685         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9686           replaced with set *binPathSet
9687         * shash_add() deallocates the item, if allready exsists, before adding the new one
9688         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9689
9690 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9691
9692         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9693           a nested for loop bug in the PIC port
9694         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9695           for loops
9696
9697 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9698
9699         * support/Util/dbuf.h: remove C++ stuff to make it portable
9700
9701 2003-03-28  Borut Razem <borut.razem AT siol.net>
9702
9703         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9704           literal strings in stringLiteral()
9705         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9706         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9707           to the project
9708
9709 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9710
9711         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9712
9713 2003-03-26    <johan AT balder>
9714
9715         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9716         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9717         * src/SDCCast.c (decorateType): fixed " -v < 3"
9718
9719 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9720
9721         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9722         Added Lenny Story's debug infrastructure changes:
9723         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9724         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9725         * src/cdbFile.c: added
9726         * src/SDCCdebug.c: added
9727         * src/SDCCdebug.h: added
9728         * src/SDCCast.c (createFunction)
9729         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9730         * src/SDCCmain.c (parseCmdLine, main)
9731         * src/SDCCmem.c (redoStackOffsets)
9732         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9733         * src/SDCCsymt.h
9734         * src/common.h
9735         * src/avr/gen.c (genAVRCode)
9736         * src/ds390/gen.c (gen390Code)
9737         * src/mcs51/gen.c (gen51Code)
9738         * src/pic/gen.c (genpic14Code)
9739         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9740         * src/xa51/gen.c (genXA51Code)
9741         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9742
9743 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9744
9745         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9746         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9747
9748 2003-03-22    <johan AT balder>
9749
9750         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9751
9752 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9753
9754         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9755         * doc/cdbfileformat.lyx: added, written by Lenny Story
9756         * doc/Makefile: added cdbfileformat.lyx
9757         * doc/clean.mk: added cdbfileformat.lyx
9758
9759 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9760
9761         * src/mcs51/peeph.def: fix bug #705773
9762
9763 2003-03-20    <johan AT balder>
9764
9765         An sfr/sbit can have an "at #" AND an initializer
9766         * src/SDCCsymt.c (checkSClass):
9767         * src/SDCCmem.c (allocGlobal):
9768         * src/SDCCmem.c (allocLocal):
9769         * src/SDCCast.c (createBlock):
9770
9771 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9772
9773         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9774
9775 2003-03-16    <johan AT balder>
9776
9777         Undid the hackup of const and volatile, the problem is much bigger
9778         * src/SDCC.y:1.65
9779         * src/SDCCast.c:1.171
9780         * src/SDCCglue.c:1.138
9781         * src/SDCCicode.c:1.146
9782         * src/SDCCsymt.c:1.150
9783         * src/SDCCval.c:1.65
9784
9785 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9786
9787         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9788         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9789
9790 2003-03-13    <johan AT balder>
9791
9792         Hackup const and volatile modifiers in type chains a bit:
9793         * src/SDCC.y:1.63
9794         * src/SDCCast.c:1.169
9795         * src/SDCCglue.c:1.136
9796         * src/SDCCicode.c:1.143
9797         * src/SDCCsymt.c1.146
9798         * src/SDCCsymt.h1.59
9799         * src/SDCCval.c:1.63
9800
9801 2003-03-12    <johan AT balder>
9802
9803         * src/SDCCBBlock.h: more LRH debugging junk
9804         * src/SDCCcflow.h: more LRH debugging junk
9805         * src/SDCCloop.c: more LRH debugging junk
9806         * src/SDCC.y (struct_declaration): fixed bug #697590
9807         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9808         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9809         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9810
9811 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9812         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9813         test function names must now match exactly).
9814         * src/SDCCcse.c: added special case in findCheaperOp to allow
9815         extending a short integer. Makes less awful code for bug 700121 test case.
9816
9817 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9818
9819         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9820         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9821
9822 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9823
9824         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9825         actually called (operandsNotEqual() was called for all
9826         operandsNotEqualX tests).
9827
9828 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9829
9830         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9831         with shorter literals. Fixes bug 700121.
9832
9833 2003-03-11    <johan AT balder>
9834
9835         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9836
9837 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9838
9839         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9840         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9841
9842 2003-03-10  Borut Razem <borut.razem AT siol.net>
9843
9844         * src/SDCCmain.c: pipe preprocessor's output
9845         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9846         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9847         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9848         which closes all pipes in pipeSet set
9849         * src/SDCCset.c: free deleted item in function deleteSetItem()
9850         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9851         moved from z80 to src subproject
9852         * .version: increased version number to 2.3.4
9853
9854 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9855
9856         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9857         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9858         * support/regression/ports/xa51/spec.mk: fix typo
9859
9860 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9861
9862         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9863
9864 2003-03-09  Borut Razem <borut.razem AT siol.net>
9865
9866         * src/SDCCmain.c: pipe preprocessor's output
9867         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9868         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9869         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9870         which closes all pipes in pipeSet set
9871         * src/SDCCset.c: free deleted item in function deleteSetItem()
9872         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9873         moved from z80 to src subproject
9874
9875 2003-03-09  Borut Razem <borut.razem AT siol.net>
9876
9877         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9878         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9879         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9880         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9881         * src/SDCCglobl.h: unification of WIN32 native definitions
9882
9883 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9884
9885         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9886
9887 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9888
9889         * src/configure.in:   check for endianess (even while cross-compiling)
9890         * src/configure:      check for endianess (even while cross-compiling)
9891         * src/configure_in.h: check for endianess (even while cross-compiling)
9892         * src/avr/gen.c:        remove old endianess stuff
9893         * src/mcs51/gen.c:      remove old endianess stuff
9894         * src/ds390/gen.c:      remove old endianess stuff
9895         * src/pic/gen.c:        remove old endianess stuff
9896         * src/pic/genarith.c:   remove old endianess stuff
9897         * src/pic/glue.c:       fix endianess check
9898         * src/pic16/gen.c:      remove old endianess stuff
9899         * src/pic16/genarith.c: remove old endianess stuff
9900         * src/pic16/glue.c:     fix endianess check
9901         * src/xa51/gen.c:       remove old endianess stuff
9902         * src/z80/gen.c:        fix endianess check
9903         * src/SDCCglue.c:       fix endianess check
9904         * src/ds390/peeph.def: fix bug 700036
9905
9906 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9907
9908         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9909         * src/configure: find appropriate data-types on host for SDCC's int and long
9910         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9911         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9912         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9913
9914 2003-03-07    <johan AT balder>
9915
9916         Just a big NOOP:
9917                 some minor cleanups before the big shot
9918                 OP_DEFS and OP_USES now use Kevin's protection
9919                 new option --nolabelopt
9920
9921         * src/SDCCBBlock.c:
9922         * src/SDCCast.c,:
9923         * src/SDCCcflow.c:
9924         * src/SDCCcse.c:
9925         * src/SDCCicode.c:
9926         * src/SDCCicode.h:
9927         * src/SDCClabel.c:
9928         * src/SDCCloop.c:
9929         * src/SDCCmain.c:
9930         * src/ds390/ralloc.c:
9931         * src/mcs51/ralloc.c:
9932         * src/pic/ralloc.c:
9933         * src/xa51/ralloc.c:
9934         * src/z80/ralloc.c:
9935
9936 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9937
9938         * src/pic/pcode.c (get_op): fix 64 bit warnings
9939         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9940         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9941         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9942         * support/regression/tests/malloc.c: fix 64 bit warnings
9943
9944 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9945
9946         * src/mcs51/gen.c (genMinus): fixed bug 696436
9947
9948 2003-03-02  Borut Razem <borut.razem AT siol.net>
9949
9950         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9951
9952 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9953
9954         * configure.in: test for mkstemp
9955         * sdccconf_in.h: add HAVE_MKSTEMP
9956
9957 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9958
9959         * device/include/ctype.h: removed warning while using --stack-auto
9960         * device/include/malloc.h: removed warning while using --stack-auto
9961         * device/include/string.h: removed warning while using --stack-auto
9962
9963 2003-02-23  Borut Razem <borut.razem AT siol.net>
9964
9965         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9966         because NDEBUG is defined (see man assert)
9967         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9968
9969 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9970
9971         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9972         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
9973
9974 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9975
9976         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
9977         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
9978
9979 2003-02-18    <johan AT balder>
9980
9981         * as/mcs51/asmain.c (asmbl): module can start with a digit
9982         * as/z80/asmain.c (asmbl): module can start with a digit
9983
9984 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
9985
9986         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
9987         * src/asm.c: fix pipe() for Mingw32
9988
9989 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
9990
9991         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
9992         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
9993         make -V work again; --c1mode reads now from stdin
9994         * doc/sdccman.lyx: added --c1mode
9995         * support/Util/SDCCerr.c: new messages for c1 mode
9996         * support/Util/SDCCerr.h: new messages for c1 mode
9997         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
9998
9999 2003-02-15    <johan AT balder>
10000
10001         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10002
10003 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10004
10005         * doc/sdccman.lyx: Environment variables, -o and other minor things
10006
10007 2003-02-14    <johan AT balder>
10008
10009         * src/xa51/main.c: before anyone really tries to use it :)
10010
10011         * Install doc's in share/sdcc/doc
10012         * removed some obsolete files
10013         * Do a proper make distclean and uninstall
10014         M Makefile.common.in
10015         R sdccbuild.sh
10016         M as/Makefile
10017         M device/include/Makefile.in
10018         M device/lib/Makefile.in
10019         M doc/sdccman.lyx
10020         M link/Makefile
10021         M sim/ucsim/doc/Makefile.in
10022         M src/clean.mk
10023         R src/avr/peeph.rul
10024         R src/xa51/peeph.rul
10025         M support/cpp2/Makefile.in
10026         M support/makebin/Makefile
10027
10028
10029 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10030
10031         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10032
10033 2003-02-10  Borut Razem <borut.razem AT siol.net>
10034
10035         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10036         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10037         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10038         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10039         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10040         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10041         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10042         src/z80/Makefile.bcc: Borland Makefile cleanup
10043         * as/z80/Makefile.bcc: Added Borland Makefile
10044         * support/cpp2/borland.h: Removed
10045
10046 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10047
10048         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10049         * src/SDCC.lex: new pragma NOIV
10050         * src/SDCCglobl.h: new pragma NOIV
10051         * src/SDCCmem.c: new pragma NOIV
10052
10053 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10054
10055         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10056
10057 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10058
10059         * src/SDCCmain.c: signal handling is switched off by --debug
10060         * doc/Makefile: small fix for install; use clean.mk again
10061         * doc/clean.mk: clean *.pdf and *.html too
10062
10063 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10064
10065         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10066         * device/lib/printfl.c: fix a ds390 bug by making it portable
10067         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10068         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10069         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10070         * debugger/mcs51/cmd.c: converted multi-line string literals
10071         * sim/ucsim/globals.cc: converted multi-line string literals
10072         * src/SDCCmain.c: introduced signal handler to remove temp files
10073         * doc/Makefile: small tweaks, implement clean
10074         * doc: removed generated files
10075
10076 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10077
10078         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10079         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10080         Address Record is not correctly generated for DS390."
10081
10082 2003-02-02  Borut Razem <borut.razem AT siol.net>
10083
10084         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10085         * as/mcs51/asm.h: fixed compilation with Borland C
10086         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10087         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10088         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10089         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10090         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10091         src/z80/Makefile.bcc: delete $(LIB) only if exist
10092         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10093
10094 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10095
10096         * device/include/malloc.h: introduced NULL
10097         * device/include/string.h: introduced NULL
10098         * device/include/stdlib.h: introduced NULL
10099         * device/lib/_memcpy.c: removed NULL
10100         * device/lib/_strcat.c: removed NULL
10101         * device/lib/_strchr.c: removed NULL
10102         * device/lib/_strcmp.c: removed NULL
10103         * device/lib/_strcpy.c: removed NULL
10104         * device/lib/_strcspn.c: removed NULL
10105         * device/lib/_strlen.c: removed NULL
10106         * device/lib/_strncat.c: removed NULL
10107         * device/lib/_strncmp.c: removed NULL
10108         * device/lib/_strncpy.c: removed NULL
10109         * device/lib/_strpbrk.c: removed NULL
10110         * device/lib/_strrchr.c: removed NULL
10111         * device/lib/_strspn.c: removed NULL
10112         * device/lib/_strstr.c: removed NULL
10113         * device/lib/_strtok.c: removed NULL
10114         * device/lib/malloc.c: removed NULL, include own header
10115
10116 2003-02-02    <johan AT balder>
10117
10118         * 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
10119         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10120         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10121         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10122         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10123         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10124
10125 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10126
10127         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10128         area 'DATA'"
10129
10130 2003-02-01    <johan AT balder>
10131
10132         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10133
10134 2003-01-31    <johan AT CP255758-A>
10135
10136         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10137
10138 2003-01-30    <johan AT balder>
10139
10140         * src/SDCCBBlock.c: automatic bug detection
10141         * src/SDCCicode.c: automatic bug detection
10142
10143 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10144
10145         * src/SDCCglobl.h:   now --xram-size 0 works
10146         * src/SDCCmain.c:    now --xram-size 0 works
10147
10148 2003-01-29    <johan AT balder>
10149
10150         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10151
10152 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10153
10154         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10155         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10156         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10157         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10158         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10159         * src/SDCCmain.c:    Added options --xram-size and --code-size
10160
10161 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10162
10163         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10164         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10165
10166 2003-01-27    <johan AT balder>
10167
10168         * src/SDCC.y: fixed bug #613764
10169
10170 2003-01-26    <johan AT balder>
10171
10172         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10173         * src/SDCCsymt.h: fixed bug #673374
10174         * src/SDCCglue.c: fixed bug #661910
10175         * src/SDCCast.c: fixed bug #458099 and 673374
10176
10177 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10178
10179         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10180         * as/mcs51/strcmpi.h: added
10181         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10182         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10183         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10184         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10185         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10186         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10187         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10188         * as/mcs51/Makefile.aslink: new module strcmpi
10189         * as/mcs51/Makefile.asx8051: new module strcmpi
10190         * as/mcs51/Makefil.bcc: new module strcmpi
10191         * as/mcs51/Makefile.in: new module strcmpi
10192         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10193
10194 2003-01-26    <johan AT balder>
10195
10196         * src/SDCCglue.c: reverted back to 1.124
10197         * src/SDCCast.c: reverted back to 1.156
10198         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10199
10200 2003-01-25    <johan AT balder>
10201
10202         * src/SDCCglue.c: A better fix for bug #661910
10203         * src/SDCCast.c: A better fix for bug #661910
10204         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10205
10206 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10207
10208         * src/Makefile.in: remove spawn.o
10209         * src/SDCCmain.c: remove spawn.h
10210         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10211         * src/spawn.c: removed
10212         * src/spawn.h: removed
10213         * support/regression/ports/ds390/spec.mk: link with -r
10214
10215 2003-01-24    <johan AT CP255758-A>
10216
10217         * src/ds390/gen.c (aopOp): fixed bug #667458
10218         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10219         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10220         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10221
10222 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10223
10224         * src/mcs51/peeph.def: better assembler identation by Frieder
10225         * src/mcs51/gen.c: better assembler identation by Frieder
10226
10227 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10228
10229         * as/z80/string.h: removed for gcc 3.2
10230         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10231         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10232
10233 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10234
10235         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10236         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10237         * support/regression/Makefile: separate temp files for ports
10238         * support/regression/generate-cases.py: separate temp files for ports
10239         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10240         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10241
10242 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10243
10244         * moved tinitalk to device/examples/ds390
10245
10246 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10247
10248         * as/mcs51/lkmem.c: rflag is for DS390
10249         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10250         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10251                          (linkEdit): move mem- and map-files the same way as ihx-files
10252         * src/z80/main.c (_setDefaultOptions): removed --generic
10253         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10254         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10255         * src/pic/glue.c (picglue): --c1mode works again
10256         * src/pic16/glue.c (pic16glue): --c1mode works again
10257         * src/asm.c (printCLine): fix #660034
10258
10259 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10260
10261         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10262         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10263         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10264         * as/mcs51/lkmem (summary): better fix for sp problem
10265         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10266         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10267         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10268                                               remove --stack-after-data
10269
10270 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10271
10272         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10273         * src/SDCCutil.c (join): ugly bug: missing '\0'
10274         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10275
10276 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10277
10278         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10279         * src/port.h: typo
10280         * src/pic/main.c (_asmCmd): gpasm supports -o
10281         * src/z80/main.c: more general macros
10282         * device/lib/Makefile.in: remove intermediate files
10283
10284 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10285
10286         * .version: Bumped version number to 2.3.3
10287         * src/SDCCBBlock.c: new option -o
10288         * src/SDCCglobl.h: new option -o
10289         * src/SDCCglue.c: new option -o
10290         * src/SDCCmain.c: new option -o
10291         * src/asm.c: new option -o
10292         * src/ds390/main.c: new option -o
10293         * src/pic/glue.c: new option -o
10294         * src/pic/pcode.c: new option -o
10295         * src/pic/ralloc.c: new option -o
10296         * src/pic16/glue.c: new option -o
10297         * src/pic16/pcode.c: new option -o
10298         * src/pic16/ralloc.c: new option -o
10299         * src/z80/main.c: new option -o
10300         * device/lib/Makefile.in: use -o
10301         * support/regression/ports/ds390/spec.mk: use -o
10302         * support/regression/ports/gbz80/spec.mk: use -o
10303         * support/regression/ports/mcs51/spec.mk: use -o
10304         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10305         * support/regression/ports/z80/spec.mk: use -o
10306         * support/regression/ports/ucz80/spec.mk: use -o
10307         * support/regression/ports/xa51/spec.mk: use -o
10308         * support/regression/fwk/lib/timeout.c: fix usage string
10309
10310 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10311         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10312
10313 2003-01-07    <johan AT balder>
10314
10315         * src/SDCCast.c (decorateType): fixed bug #600035
10316
10317 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10318         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10319         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10320         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10321         * src/pic/pcode.c: outcommented unused variable to remove warnings
10322         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10323
10324 2003-01-06    <karl AT turbobit.com>
10325         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10326    regression tests.
10327
10328 2003-01-06    <johan AT balder>
10329
10330         * src/SDCCicode.c: fixed array add
10331
10332 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10333         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10334         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10335
10336 2003-01-04    <johan AT balder>
10337
10338         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10339
10340 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10341         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10342
10343 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10344         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10345         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10346
10347 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10348         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10349
10350 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10351         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10352
10353 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10354         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10355
10356 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10357
10358     * in \sdcc\as\mcs51\ changed these files in order to create an
10359     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10360     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10361     following files to include the previous two files: aslink.dsp,
10362     Makefile.aslink, Makefile.bcc, and Makefile.in.
10363
10364     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10365     .adb instead of .cdb
10366
10367 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10368
10369         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10370         value from option --iram-size.
10371
10372 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10373
10374         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10375         dram[] array.
10376
10377 2002-09-18    <wiml AT hhhh.org>
10378
10379         * SDCClrange.h: exposed setFromRange() and setToRange()
10380         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10381           packRegsForAccUse() (bug 542397)
10382         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10383           multiple times and emitting the fetch operations more than once
10384           added aopGetUsesAcc() function to allow binary operators to
10385           fetch their operands in the correct order; made genMinus() emit
10386           compact code for X = LITERAL - Y
10387
10388 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10389         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10390         sprintf() in line 1267.
10391
10392 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10393         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10394         like ports.
10395
10396 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10397         Changes to aslink (All the changes are marked with 'JCF'):
10398
10399         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10400         summary().
10401
10402         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10403         area BSEG.  Also moves, if possible, the DATA area down into the internal
10404         ram so more space is available.
10405
10406         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10407         sflag.
10408
10409         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10410         not bytes.  Function summary() which creates a memory usage summary
10411         file with extension .mem.  Reports of overlaping stack and small stack
10412         size.  If the space for the stack is less than 16 bytes aslink trows a
10413         warning.
10414
10415         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10416         the 8051.  Option 'y' for memory summary output file.
10417
10418         Changes to sdcc (All the changes are marked with 'JCF'):
10419
10420         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10421
10422         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10423         overlaying area for it (uses RegBankUsed[4]).
10424
10425         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10426         bank zero as used by default.  By default aslink locates the stack
10427         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10428         the creation of the .mem file.  Delegates the allocation of data area
10429         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10430         the begining of the stack area to aslink.
10431
10432         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10433         glue() in SDCCglue.c creates an area for it.
10434
10435 2002-09-03  Borut Razem <borut.razem AT siol.net>
10436         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10437         sdcc/src/pic/glue.c:
10438         introduced atexit() handler for teporay files removal in case of
10439         errors, assertions, ...
10440
10441 2002-08-29  Borut Razem <borut.razem AT siol.net>
10442         * sdcc/support/cpp2/auto-host_vc_in.h:
10443         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10444         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10445         Maybe there is a similar problem with BORLANDC? It should be checked!
10446
10447         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10448         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10449         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10450         was not executed, and the compiler (cl) launched a warning:
10451         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10452
10453 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10454         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10455
10456 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10457         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10458
10459         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10460           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10461           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10462           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10463           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10464           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10465           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10466         - added Release configuration in VS projects
10467         - review of compiler an linker options
10468         - VC .exe files are generated in bin_vc directory, not to interfere
10469           with binaries generated from other projects (cygwin, mingw, bcc ...)
10470
10471         * sdcc/src/yacc.dsp: added
10472
10473         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10474         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10475         and insert the version number definitions from .version
10476
10477         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10478
10479         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10480         added - genarate auto-host.h using auto-host_vc_in.h as template
10481
10482         * sdcc/sdcc_vc.h,
10483         removed from CVS, generated automatically
10484
10485 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10486         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10487
10488 2002-08-11  Borut Razem <borut.razem AT siol.net>
10489         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10490
10491 2002-08-10  Borut Razem <borut.razem AT siol.net>
10492         * src/SDCCmain.c (main):
10493         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10494         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10495         The consequence was that some temporary files were not removed.
10496
10497         * src/SDCCglue.c:
10498         unification of code in functions tempfilename() and tempfile():
10499         function tempnam() is defined in Visual Studio 6.0 and .NET
10500
10501         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10502
10503         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10504           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10505         - removed compiler command line option /WX: Treats all warnings as errors
10506         - update a list of source files, included into the project
10507
10508         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10509           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10510         changed project type to Generic Project so that can be correcly converted to VS.NET project
10511
10512         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10513
10514         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10515
10516         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10517
10518         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10519         added return 0 statements after assert() to make compiler happy
10520
10521         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10522         added newline in the def file to keep MSC compiler satisfied
10523
10524         * sdcc/src/z80/gen.c:
10525         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10526           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10527         - solved MSC error in function aopDump()
10528
10529         * sdcc_vc.h: define PREFIX as "\\sdcc"
10530
10531 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10532         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10533
10534 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10535         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10536         - Rewrote the register banking algorithm.
10537         - Added pCode live-range analysis to registers (for now, only non-used and
10538         singly-used registers optimized away)
10539
10540         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10541
10542         * 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.
10543
10544 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10545         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10546
10547 2002-04-22  Michael Hope  <michaelh AT vroom>
10548
10549         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10550
10551         * configure.in (DD_COPT): Added include support required for gbdk.
10552
10553         * .version: Bumped version number just to increase it.
10554
10555         * src/SDCCmain.c: Added -nostdinc to the default options.
10556
10557 2002-04-15  Michael Hope  <michaelh AT vroom>
10558
10559         * device/lib/z80/printf.c (sprintf): Added.
10560
10561         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10562
10563         * src/z80/peeph.def: Added transpose redundent load rule.
10564
10565         * src/z80/main.c: Added force callee saves for jaune.
10566
10567         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10568
10569         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10570
10571 2002-03-28  Johan Knol  <johan AT balder>
10572
10573         * src/SDCCval.c: fixed bug #532436
10574
10575 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10576         * /src/port.h:
10577         Added "char *Processor" field to the port structure.
10578
10579         * /src/SDCCmain.c:
10580         Added -p option. Allows port dependent processor to be specified.
10581
10582         * all ports:
10583         Initialized the new field char *Processor field to NULL in all ports
10584
10585         * /src/pic/*:
10586         Compiler generated registers for interrupt context saving
10587         were not getting allocated.
10588
10589 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10590
10591         * /src/SDCCast.c:
10592         Fixed left shift. Will promote the left side of a left shift
10593         if a) left shifting more than size of operand or b) when assigned
10594         to something size > size of left side
10595
10596 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10597         * src/pic/*
10598         tons of changes. Register allocation has been
10599         rewritten. Added customization for the various PICs. Flow
10600         analysis is restructured. ...
10601
10602         * src/pic/device.h:
10603         Added
10604
10605         * src/pic/device.c:
10606         Added. device.c is a PIC port hack to accomodate variations
10607         in PIC devices.
10608
10609 2002-03-13  Michael Hope  <michaelh AT vroom>
10610
10611         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10612
10613 2002-03-04  johanknol  <johanknol AT manik>
10614
10615         * /src/SDCCval.c: fixed
10616
10617         const unsigned char arr[][2] = { { 0, 1 } };
10618         t18.c:1: error: Initializer element is not constant
10619
10620 2002-03-04  bela  <bela AT manik>
10621
10622         * /device/include/mcs51reg.h:
10623         ds89c420 register definition update
10624
10625 2002-03-03    <johan AT FRIJA>
10626
10627         * support/Util/SDCCerr.c: did something, but don't no why anymore
10628
10629         * support/regression/tests/bug-524691.c: made it a little less shy
10630
10631         * src/SDCCast.c (decorateType): fixed bug #524697
10632
10633         * src/SDCCast.c: made some lineno improvements
10634
10635         * src/SDCCval.c (getNelements): changed warning to error
10636
10637         * src/SDCCglue.c (printIvalArray): changed warning to error
10638
10639         * src/SDCCicode.c: fixed a warning for mingw
10640
10641         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10642
10643         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10644
10645 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10646
10647         * src/ds390/peeph.def:
10648         Added some more peephole rules
10649
10650         * src/ds390/gen.c: Various fixes & enhancements
10651
10652         * src/SDCClrange.c, src/SDCClrange.h:
10653         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10654
10655         * src/ds390/ralloc.c:
10656         various fixes & enhancements (ds390) specific
10657
10658         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10659         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10660         from rallocs.
10661
10662         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10663
10664 2002-03-02    <johan AT FRIJA>
10665
10666         * src/SDCCast.c (decorateType): fixed bug #524708
10667
10668         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10669
10670         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10671
10672 2002-03-01  Michael Hope  <michaelh AT vroom>
10673
10674         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10675
10676         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10677
10678 2002-03-01    <johan AT FRIJA>
10679
10680         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10681
10682         * src/SDCCast.c (decorateType): fixed bug #524209
10683
10684         * src/SDCCval.c (valNot): fixed bug #524195
10685
10686 2002-02-26    <johan AT balder>
10687
10688         * src/xa51/gen.c: fixed a warning
10689
10690         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10691
10692         * src/SDCCast.c (decorateType): fixed bug #522534
10693
10694 2002-02-23    <johan AT balder>
10695
10696         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10697
10698 2002-02-22    <johan AT balder>
10699
10700         * src/SDCCast.c: fixed bug #514865
10701
10702         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10703
10704 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10705
10706         * sdcc/src/SDCCloop.c:
10707         Previous fix was not good. basic blocks that have "break" or "return" are
10708         not really partof a loop , but live ranges used in these blocks should
10709         be live thru the entire loop, so set partOfLoop but don't add them to
10710         loop region
10711
10712 2002-02-21    <johan AT FRIJA>
10713
10714         * src/SDCCcse.c: fixed bug #514308
10715
10716 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10717
10718         * src/SDCCloop.c:
10719         Fixed BUG #519583. If a conditional block ended in a return/break
10720         statement inside a loop, it was not being considered part of the loop.
10721
10722         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10723
10724 2002-02-10  Karl Bongers <karl AT turbobit.com>
10725
10726         * debugger/*:
10727         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10728         with lots of comments and notes.
10729
10730         * device/examples/test2.c:
10731         Fix bug, "red" variable not being initialized(compiler complained).
10732
10733         * device/examples/Makefile, examples/test3.c:
10734         Add Makefile in device/examples folder, compiles test3.c
10735         for use as a multiple module SDCDB test case.
10736
10737         * sim/ucsim/cmd.src/cmdset.cc:
10738         Took out debug printfs in ucsim "next" command.
10739
10740         * sim/ucsim/xa.src:
10741         Karl and Johan start ucsim XA support.  Most dissassembly working,
10742         about 75% emulation done(plenty of work remaining).
10743
10744         * sim/ucsim/z80.src:
10745         Add Z80 support to ucsim, add test-ucz80 regression test,
10746         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10747         Notice z80 compiler fails on examples/test3.c/crc code.
10748
10749 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10750
10751         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10752         Added support for --parms-in-bank1
10753
10754         * src/ds390/peeph.def:
10755         added a few more peephole optimzations
10756
10757         * src/ds390/main.c:
10758         1) added __builtin_inp & __builtin_outp used to read in data of given length
10759            from a memory mapped port
10760         2) added __builtin_memcmp
10761         3) added __builtin_swapw swap bytes of a short
10762
10763         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10764         1) handle multiple send & receives from register bank1
10765         2) ralloc can now allocate DPTR1 to some liveRanges
10766
10767         * src/SDCCsymt.c, src/SDCCsymt.h:
10768         changes to handle multiple sends & receives
10769
10770         * src/SDCCptropt.h:
10771         added some pointer arithmetic optimization
10772
10773         * src/SDCCptropt.c:
10774         added some pointer arithmetic optimizations but not stable yet so not
10775         called from anywhere (will get this working shortly)
10776
10777         * src/SDCCopt.c: fixed for multiple sends & receives
10778
10779         * src/SDCCmain.c:
10780         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10781         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10782            set preprocessor defines (depending on options)
10783
10784         * src/SDCCicode.c, src/SDCCicode.h:
10785         changes made to handle multiple sends & receives
10786
10787         * src/SDCCglobl.h:
10788         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10789
10790         * src/SDCCcse.c, src/SDCCcse.h:
10791         added function findbackward def (to be used in upcoming optimization)
10792
10793         * src/SDCCcflow.c, src/SDCCcflow.h:
10794         added function returnAtEnd - to determine if a basic block terminates with
10795         a RETURN iCode
10796
10797         * src/SDCCast.c, src/SDCCast.h:
10798         added option parms-in-bank1
10799
10800         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10801         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10802         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10803         adjusted for --parms-in-bank1 option
10804
10805         * device/include/string.h:
10806         donot redefine "reentrant" keyword
10807
10808         * device/include/ds80c390.h: Added some more SFRs
10809
10810 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10811
10812         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10813
10814 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10815
10816         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10817
10818 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10819
10820         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10821
10822 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10823
10824         * Added --xram-movc option
10825
10826 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10827
10828         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10829
10830 2002-01-11  Johan Knol
10831
10832         * Added math lib of Jesus Calvino-Fraga
10833
10834 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10835
10836         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10837         * support/regression/Makefile: new target test-mcs51-stack-auto
10838         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10839
10840 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10841
10842         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10843
10844 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10845
10846         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10847
10848 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10849
10850         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10851
10852         * src/SDCCglue.h: add definition for printIvalChar()
10853
10854 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10855
10856         * src/SDCCast.c: fix #498138 by Johan
10857
10858         * src/SDCCglue.c: fix #498138 by Johan
10859
10860 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10861
10862         * support/regression/Makefile: fix clean
10863
10864         * support/regression/ports/ds390/support.c: fix transmission of last character
10865
10866 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10867
10868         * /sdcc/src/ds390/gen.c:
10869         a) improved computing address of stack variable
10870         b) took out some #if 0 code
10871         c) improved parmBytes adjustment
10872         d) improved genPlusIncr & genMinusIncr
10873         e) genCmp could generate bad code (when left assigned to DPTR)
10874         f) Fixed bug in hasInc
10875
10876         * /sdcc/src/ds390/ralloc.c:
10877         a) packRegsForSupport could mess up live information (Fixed)
10878         b) packRegsDPTRuse could be incorrect for left & right shift
10879
10880         * /sdcc/src/mcs51/ralloc.c:
10881         packRegsForSupport could mess up the live information (Fixed)
10882
10883         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10884
10885         * /sdcc/src/SDCCast.c:
10886         can reverse a loop even if function call is present as long
10887         as the loop control variable is local & is not passed as parameter
10888
10889 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10890
10891         * /sdcc/ChangeLog: *** empty log message ***
10892
10893         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10894         More builtin function additions for TININative
10895
10896         * /sdcc/src/ds390/ralloc.c:
10897         Had broken the regression testsuite
10898
10899         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10900
10901         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10902         Added funcattr hasStackParms will be set for reentrant functions when there
10903         are paramteres on the stack, this helps in minimizing frame pointer generation
10904         typeFromStr can handle function pointers now
10905
10906         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10907         *** empty log message ***
10908
10909 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10910
10911         * /src/ds390/gen.c, /src/ds390/main.c:
10912         More builtin function additions for TININative
10913
10914         * /src/ds390/ralloc.c:
10915         Had broken the regression testsuite
10916
10917         * /src/SDCCast.c: Fixed a bug in dumptree
10918
10919         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10920         Added funcattr hasStackParms will be set for reentrant functions when there
10921         are paramteres on the stack, this helps in minimizing frame pointer generation
10922         typeFromStr can handle function pointers now
10923
10924         * /doc/builtins.txt, /doc/TININative.txt:
10925         *** empty log message ***
10926
10927
10928 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10929
10930         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10931         ALPHA version for -mTININative
10932
10933         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10934         updated to reflect changes in the port structure
10935
10936         * /src/port.h:
10937         added function do_assemble (similar to do_link) if non-null this function
10938         will be called to do assembly (-mTININative) requires a multi command
10939         assembly
10940         added function genAssemblerEnd will be called to generate assembler Epilogue
10941
10942         * /src/SDCCsymt.c:
10943         added _JavaNative to debug info printing
10944
10945         * /src/SDCCmain.c: added option --tini-libid
10946         added port->do_assemble function (-mTININative) has a multi command assemble
10947
10948         * /src/SDCCglue.c: Disabled "constExpr" check
10949         added port->genAssemblerEnd function
10950
10951         * /src/SDCCglobl.h: Added option --tini-libid value
10952
10953         * /src/SDCCast.h:
10954         tookout optimizeCompare from the header (has no external references)
10955
10956         * /src/SDCCast.c: made one more function "static"
10957
10958 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10959
10960         * src/z80/mappings.i: Added z80asm support.
10961
10962         * src/z80/main.c: Added z80asm support on --asm=z80asm
10963
10964         * src/z80/gen.c: Fixed asm portability issues.
10965
10966         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10967
10968         * src/SDCCglue.c (printExterns): Added global/extern split.
10969
10970 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10971
10972         * support/regression/Makefile: added test for mcs51 model large
10973
10974         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
10975
10976         * support/regression/ports/gbz80/spec.mk: added -mgbz80
10977
10978 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
10979
10980         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
10981
10982 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
10983
10984         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
10985
10986         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
10987
10988 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
10989
10990         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
10991
10992         * support/regression/tests/simplefloat.c: Port to mcs51.
10993
10994 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
10995         * support/regression/tests/bug-485362.c: Added.
10996
10997         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
10998
10999         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11000
11001         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11002
11003         * src/z80/gen.c (aopDump): Added a dump function.
11004
11005 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11006         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11007
11008         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11009
11010         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11011
11012         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11013
11014         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11015
11016         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11017
11018         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11019
11020         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11021
11022         * support/regression/ports/ds390/support.c: Use tinibios.
11023
11024         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11025
11026 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11027
11028         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11029         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11030
11031         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11032
11033         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11034
11035 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11036
11037         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11038
11039         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11040         (packRegsForIYUse): Created and optimised.
11041
11042 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11043
11044         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11045 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11046
11047         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11048
11049         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11050
11051         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11052
11053 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11054
11055         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11056
11057         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11058
11059 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11060
11061         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11062
11063         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11064
11065         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11066
11067 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11068
11069         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11070         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11071         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11072
11073         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11074
11075         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11076         (genNotFloat): Added.
11077         (genUminusFloat): Added.
11078
11079         * device/lib/z80/Makefile: Added floating pt stubs.
11080
11081         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11082
11083         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11084
11085         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11086
11087 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11088
11089         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11090
11091         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11092
11093         * sdcc/support/regression/Makefile: Add port ds390.
11094
11095         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11096
11097         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11098
11099         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11100
11101         * sdcc/support/regression/ports/ds390/support.c: Added.
11102
11103         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11104
11105         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11106
11107         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11108
11109 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11110
11111         * device/include/malloc.h: Added z80 and gbz80 support.
11112
11113         * device/lib/gbz80/heap.s: Added.
11114
11115         * device/lib/z80/heap.s: Added.
11116
11117         * device/lib/malloc.c: Added z80 and gbz80 support.
11118
11119         * support/regression/tests/malloc.c (testMalloc): Added.
11120
11121         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11122
11123         * support/regression/tests/bug-478094.c: Added.
11124
11125         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11126
11127 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11128
11129         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11130
11131         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11132
11133         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11134
11135         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11136
11137         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11138
11139 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11140
11141         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11142
11143 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11144
11145         * support/regression/tests/bug-477927.c: Added.
11146
11147         * src/z80/peeph.def: Added minor rules.
11148
11149         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11150
11151         * src/z80/peeph.def: Added jump optimisation modification.
11152
11153 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11154
11155         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11156
11157 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11158
11159         * support/regression/tests/funptrs.c: Added.
11160
11161 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11162
11163         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11164
11165 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11166
11167         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11168
11169         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11170
11171         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11172         (movLeft2ResultLong): Created.
11173
11174         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11175         (joinPushes): Added.  Joins two char pushes into a word push.
11176
11177 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11178
11179         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11180
11181         * support/makebin/Makefile (install): Added creation of dest dir.
11182
11183 2001-10-24 Karl Bongers <karl AT turbobit.com>
11184
11185         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11186
11187 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11188
11189         * src/z80/ralloc.c: Turned off faulty pack for one use.
11190
11191         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11192
11193         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11194
11195 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11196
11197         * support/regression/Makefile: Improved clean
11198
11199         * support/regression/ports/gbz80/spec.mk: Added clean
11200
11201         * support/regression/ports/host/spec.mk: Added clean
11202
11203         * support/regression/ports/z80/spec.mk: Added clean
11204
11205         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11206
11207         * support/regression/ports/mcs51/timeout.c: little improvements
11208
11209 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11210
11211         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11212
11213         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11214
11215         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11216
11217 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11218
11219         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11220
11221         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11222
11223 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11224         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11225
11226         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11227
11228         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11229
11230         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11231
11232         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11233
11234         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11235
11236         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11237
11238         * support/regression/tests/longor.c: Added.
11239
11240 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11241
11242         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11243
11244         * as/mcs51/aslink.h: define PATH_MAX
11245
11246         * as/mcs51/asm.h: define PATH_MAX
11247
11248         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11249
11250         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11251
11252         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11253
11254         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11255
11256         * src/SDCCglobl.h: define PATH_MAX
11257
11258         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11259
11260         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11261
11262 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11263
11264         * src/z80/gen.c (gencjneshort): Fixed
11265
11266         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11267
11268 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11269
11270         * support/regression/tests/bug-469671.c: Added.
11271
11272         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11273
11274 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11275
11276         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11277
11278         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11279
11280 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11281
11282         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11283
11284         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11285
11286         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11287
11288         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11289
11290         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11291
11292         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11293
11294         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11295
11296 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11297
11298         * 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.
11299
11300         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11301
11302         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11303
11304 2001-10-07    <johan AT FRIJA>
11305
11306         * device/lib/gets.c (gets): fixed the return value.
11307
11308 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11309         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11310
11311         * 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.
11312
11313         * 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.
11314
11315         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11316
11317         * src/pic/gen.c: Removed Safe_strdup.
11318
11319         * configure.in: Added option to enable libgc support.
11320
11321         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11322         (bitVectUnion): Optimised.
11323         (bitVectIntersect): Optimised.
11324         (bitVectBitsInCommon): Optimised.
11325         (bitVectCplAnd): Optimised.
11326
11327         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11328
11329 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11330
11331         * src/SDCCmain.c: distinguish between assembler debug and plain options
11332
11333         * src/avr/main.c:   remove standard assembler options
11334
11335         * src/ds390/main.c: remove standard assembler options
11336
11337         * src/mcs51/main.c: remove standard assembler options
11338
11339         * src/port.h: removed "PENDING" comment
11340
11341 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11342
11343         * src/device/lib/_mulint.c  : new, with assember functions
11344
11345         * src/device/lib/_mullong.c : new, with assember functions
11346
11347         * src/device/lib/_divuint.c : with assember functions
11348
11349         * src/device/lib/_divsint.c : with assember functions
11350
11351         * src/device/lib/_divulong.c: with assember functions
11352
11353         * src/device/lib/_divslong.c: with assember functions
11354
11355         * src/device/lib/_moduint.c : with assember functions
11356
11357         * src/device/lib/_modsint.c : with assember functions
11358
11359         * src/device/lib/_modulong.c: with assember functions
11360
11361         * src/device/lib/_modslong.c: with assember functions
11362
11363         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11364
11365         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11366
11367         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11368                                       replaced _mululong.c and _mulslong.c by _mullong.c
11369
11370 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11371
11372         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11373
11374 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11375
11376         * src/SDCCglue.c: test, if win32api is available for MINGW
11377
11378 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11379
11380         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11381         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11382         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11383         * support/regression/ports/host/spec.mk: removed GENERIC
11384         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11385         * support/regression/ports/z80/spec.mk: removed GENERIC
11386
11387 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11388
11389         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11390
11391         * support/regression/tests/bug-467035.c: Created.
11392
11393 2001-10-01    <johan AT FRIJA>
11394
11395         * src/SDCC.y: fixed bug #466586 part 1
11396
11397 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11398
11399         * SDCCicode.c: z80 has no generic pointers
11400         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11401
11402 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11403
11404         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11405
11406 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11407
11408         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11409
11410         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11411
11412 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11413
11414         * configure.in: Fixed up so that ucsim is only configured once.
11415
11416         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11417
11418         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11419         (getPathDifference): As above.
11420
11421         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11422
11423         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11424
11425 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11426         * .version: Updated to 2.3.1
11427
11428         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11429         Added copyright header.
11430
11431         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11432         (assemble): Added support for macro based assembler commands.
11433         (linkEdit): Added support for macro based linker commands.
11434         (preProcess): Changed the pre-processor to use macros.
11435         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11436         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11437
11438         * device/lib/z80/crt0.s: Added module name for debugging.
11439
11440 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11441
11442         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11443
11444         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11445
11446         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11447
11448         * src/Makefile.in: Added SDCCmacro and SDCCutil
11449
11450 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11451
11452         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11453
11454 2001-09-16    <johan AT FRIJA>
11455
11456         * 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.
11457
11458 2001-09-15    <johan AT FRIJA>
11459
11460         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11461         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11462
11463 2001-09-11    <johan AT FRIJA>
11464
11465         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11466
11467 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11468
11469         * support/regression/tests/bug-460444.c: Added test case.
11470
11471         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11472         (genCast): Added justification for all of the asserts.
11473
11474 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11475
11476         * support/regression/support.c: _xdata replaced by xdata
11477
11478         * support/regression/spec.mk: removed _generic
11479
11480 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11481
11482         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11483
11484         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11485         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11486
11487         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11488
11489         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11490
11491         * support/regression/tests/bug-460010.c: Added test case.
11492
11493         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11494
11495 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11496
11497         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11498
11499         * support/regression/testfwk.c: removed workaround for bug #436344
11500
11501         * support/regression/tests/bp.c: use less memory with mcs51
11502
11503         * support/regression/tests/bug-441448.c: use less memory
11504
11505         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11506
11507         * support/regression/collate-results.py: typo
11508
11509 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11510
11511         * support/regression/tests/fetchoverlap.c: Added new test case.
11512
11513         * support/regression/tests/bp.c: Added new test case.
11514
11515         * support/regression/tests/bug-448984.c: Added new test case.
11516
11517         * support/regression/tests/pow2shifts.c: Added new test case.
11518
11519         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11520         (genlshTwo): Fixed right shift for count > 8.
11521
11522         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11523
11524 2001-09-08    <johan AT FRIJA>
11525
11526         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11527
11528 2001-09-07    <johan AT FRIJA>
11529
11530         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11531
11532         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11533
11534 2001-09-06    <johan AT FRIJA>
11535
11536         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11537         * bernhard noted me at this: "() equals to (void)" (1.38)
11538
11539 2001-09-05    <johan AT FRIJA>
11540
11541         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11542
11543 2001-09-04    <johan AT FRIJA>
11544
11545         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11546
11547
11548 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11549
11550         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11551
11552 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11553
11554         * link/z80/aslink.h: Fixed path for PATH_MAX
11555
11556 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11557
11558         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11559
11560         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11561
11562         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11563
11564         * 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.
11565
11566 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11567
11568         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11569         (genCmp): Fixed up genCmp for the GB with longs.
11570
11571         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11572
11573         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11574
11575         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11576
11577         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11578
11579 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11580
11581         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11582
11583 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11584
11585         * 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.
11586
11587         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11588
11589 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11590
11591         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11592
11593         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11594
11595 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11596
11597   * sim/ucsim/configure:    little improvement of Cygwin-detection
11598   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11599   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11600   * support/regression/tests/bug-221100.c: small changes for mcs51
11601   * support/regression/tests/bug-221168.c: small changes for mcs51
11602   * support/regression/tests/bug-227710.c: small changes for mcs51
11603   * support/regression/tests/staticinit.c: small changes for mcs51
11604   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11605   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11606   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11607
11608 $Revision$