* CVSROOT: removed the CVS left-over
[fw/sdcc] / ChangeLog
1 2006-06-10 Borut Razem <borut.razem AT siol.net>
2
3         * CVSROOT: removed the CVS left-over
4
5 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
6
7         * as/hc08/asmain.c (asexit),
8         * as/hc08/lkmain.c (lkexit),
9         * as/mcs51/asmain.c (asexit),
10         * as/mcs51/lkmain.c (lkexit),
11         * src/SDCCglue.c (DEFSETFUNC),
12         * src/SDCCmain.c (linkEdit, assemble),
13         * support/librarian/sdcclib.c (AddRel),
14           replaced unlink() by standard C remove()
15         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
16         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
17           gatherImplicitVariables): new, added to fix bug 608752,
18           (createFunction): added gatherImplicitVariables()
19         * src/SDCCast.h: added createRMW prototype
20         * src/SDCCsymt.h (struct symbol): added infertype
21         * support/regression/tests/bug608752.c: new, added
22
23 2006-06-10 Raphael Neider <rneider AT web.de>
24
25         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
26           multibyte dummy reads (fixes #1503234)
27
28 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
29
30         * device/include/mcs51/compiler.h: new, added header file to enable
31           creating common sfr definition header files for different compilers
32
33 2006-06-05 Raphael Neider <rneider AT web.de>
34
35         * src/pic16/{pcode.h,genarith.c}:
36           introduced pCodeOp combining any two pCodeOps (previously only
37           two register operands could be combined), removed pcop2 from
38           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
39         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
40         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
41           rewritten to use new PO_TWO_OPS
42         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
43         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
44           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
45           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
46           (pic16_get_op): embraced return arg to allow #define return(x),
47             added new case for combined opcodes
48           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
49           (pic16_pCode2str,pic16_getRegFrompCodeOp,
50            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
51
52 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
53
54         * src/SDCCval.c (checkConstantRange): added
55         * src/SDCCval.h: added checkConstantRange
56         * support/Util/SDCCerr.c,
57         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
58         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
59         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
60         * src/SDCCast.c (decorateType): added checkConstantRange,
61         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
62         can be emitted with the correct always true/false warning,
63         added optimization for double '!';
64         result of decorateType() must be assigned back to the tree, because
65         decorateType() can change the tree
66         * src/SDCCicode.c (geniCodeLogic),
67         (geniCodeAssign): replaced new checkConstantRange, added warnings,
68         (checkConstantRange): removed, it was only a fragment which never
69         emitted a warning
70         * src/SDCCsymt.c (computeType): fixed promotion for
71         "-1 < (unsigned bit) b"
72         * src/pic/ralloc.c (packRegsForAssign),
73         * src/pic16/ralloc.c (packRegsForAssign),
74         * src/hc08/ralloc.c (packRegsForAssign),
75         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
76         from mcs51
77         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
78         * support/regression/tests/constantRange.c: added
79         * support/valdiag/tests/constantRange.c: added
80         * support/valdiag/valdiag.py: added -DPORT_HOST=1
81
82 2006-06-02 Borut Razem <borut.razem AT siol.net>
83
84         * support/regression/ports/pic16/support.c: increase stack size
85           to 255 bytes
86         * support/regression/Makefile.in: sort tests by name so that the
87           resutlts can be compared on different machines / platforms
88
89 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
90
91         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
92         * src/ds390/gen.c (emitLabel): new, added,
93           (genDjnz): fixed stack overflow bug,
94           (throughout): cosmetic changes to sync with mcs51/gen.c,
95           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
96         * src/mcs51/gen.c (genEndFunction): small optimization,
97           (throughout): cosmetic changes to sync with ds390/gen.c
98
99 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
100
101         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
102           (_print_format): fixed printing pointers
103         * src/mcs51/gen.c (emitLabel, movb): new, added,
104           (genAssign): small optimization,
105           (genDjnz): fixed stack overflow bug,
106           (throughout): replaced sprintf with SNPRINTF,
107           replaced mcs51_regWithIdx with REG_WITH_INDEX,
108           replaced emitcode("mov", "b,...") with MOVB(...),
109           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
110           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
111         * src/mcs51/peeph.def: added rules 140 and 264
112         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
113           so they may get optimized into registers
114
115 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
116
117         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
118           immediately when encountered,
119           (printUsage): always use stderr even on windows
120
121 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
122
123         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
124         (processParms): fixed bug #1247551
125         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
126         parseCmdLine, main): print '--version' to stdout,
127         print 'help' to stdout if --help is given,
128         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
129         arguments are given; fixed --help
130
131 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
132
133         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
134         * support/regression/tests/bug-1493710.c: added
135
136 2006-05-27 Borut Razem <borut.razem AT siol.net>
137
138         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
139           static instead auto
140         * support/regression/ports/pic16/support.c: increase stack size
141           from default 64 bytes to 128 bytes
142         * support/regression/tests/staticinit.c,
143           support/regression/tests/float.c: regression tests fully enabled
144           for pic16 port by putting the initialized data arrays into the code
145           section
146         * support/regression/ports/pic16/spec.mk: don't link default libraries.
147           This was changed by mistake in the previous version.
148
149 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
150
151         * src/pic16/gen.c (genFunction, genEndFunction): some
152         beautifications, fixed bug with falsely restoring FSR2 in large
153         stack model, thanks to Beau E. Cox for reporting the bug
154
155 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
156
157         * debugger/mcs51/break.c,
158         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
159           use %p to print pointers, made address variables unsigned
160         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
161         * debugger/mcs51/symtab.c (parseSymbol): must return something
162         * src/mcs51/gen.c (aopForSym): small optimization,
163            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
164           (freeAsmop): added missing break,
165           (aopPut): removed parameter bvolatile, determine it inside the function,
166           (saveRegisters, unsaveRegisters): small optimization,
167           (genIpush): removed pointless check,
168           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
169           replaced sprintf with SNPRINTF,
170           replaced strcpy with strncpyz,
171           updated aopPut calls,
172           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
173         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
174
175 2006-05-24 Borut Razem <borut.razem AT siol.net>
176
177         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
178           modification of test for the pic16 port, put the array to the code
179           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
180
181 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
182
183         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
184         * support/Util/pstdint.h: added
185
186 2006-05-22 Borut Razem <borut.razem AT siol.net>
187
188         * src/regression/Makefile: removed bool2.c test, added -q linker option
189         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
190           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
191           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
192           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
193           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
194           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
195           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
196           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
197           define SUPPORT_BIT_TYPES 0, removed unused bit variables
198
199 2006-05-22 Raphael Neider <rneider AT web.de>
200
201         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
202           bug #1492360 (problematic due to generic pointers, see code)
203
204 2006-05-22 Borut Razem <borut.razem AT siol.net>
205
206         * support/regression/ports/pic16/specs.mk: removed stack size linker
207           directive
208         * support/regression/tests/array.c,
209           support/regression/tests/bitopcse.c,
210           support/regression/tests/bug-908454.c,
211           support/regression/tests/malloc.c: modified for pic16 regression test
212         * support/regression/tests/bitfields.c:
213           pic16 - excluded bitfileds of size > 8
214         * support/regression/tests/bp.c: pic16 - reduced data size
215         * support/regression/tests/bug-221100.c: pic16 - reduced data size
216         * support/regression/tests/bug-460010.c:
217           pic16 - used the absolute address the fits in memory
218         * support/regression/tests/bug-716242.c:
219           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
220         * support/regression/tests/float.c:
221           pic16 - excluded - data size too big
222         * support/regression/tests/onebyte.c:
223           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
224         * support/regression/tests/shifts.c:
225           pic16 - function names probably have to differ in first X characters
226           (gpasm limitation?)
227         * support/regression/tests/staticinit.c:
228           pic16 - excluded some tests due error: no target memory available for
229           section ".idata"
230
231 2006-05-22 Borut Razem <borut.razem AT siol.net>
232
233         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
234           second try. Thanks Stas Sergeev once more.
235
236 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
237
238         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
239           (genLeftShift, genRightShift): fixed bug 1491627
240         * src/hc08/peeph.def (rules 7, 8.x): added
241         * support/regression/tests/shifts.c (ShiftLeftByParam,
242           ShiftRightByParam, testShiftByParam): added to test variable shifting
243
244 2006-05-20 Raphael Neider <rneider AT web.de>
245
246         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
247         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
248           (allocReg): add only new registers to dynAllocRegs,
249           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
250             #1489055, #1445850, and probably #1483693
251
252 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
253
254         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
255         bug in for-loop that didn't emit the last of CONFIG and ID registers
256
257 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
258
259         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
260           with offset
261         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
262           1489016, 1434401 and 1490124
263         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
264           1489016, 1434401 and 1490124
265
266 2006-05-17 Borut Razem <borut.razem AT siol.net>
267
268         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
269           thanks Stas Sergeev
270
271 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
272
273         * device/include/mcs51/P89c51RD2.h,
274         * device/include/mcs51/P89LPC901.h,
275         * device/include/mcs51/P89LPC922.h,
276         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
277
278 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
279
280         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
281         to fix missing stack pragma in compiled binary object file,
282
283 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
284
285         * support/packihx/configure.in,
286         * support/packihx/configure: removed warning, autoconf >= 2.5x can
287         determine sizeof basic types even while cross compiling
288
289 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
290
291         * src/avr/gen.c (aopop),
292         * src/ds390/gen.c (aopOp),
293         * src/hc08/gen.c (aopOp),
294         * src/mcs51/gen.c (aopop),
295         * src/pic16/gen.c (pic16_aopOp),
296         * src/pic/gen.c (aopOp),
297         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
298         if size of operand is smaller than spill location
299
300 2006-05-12 Borut Razem <borut.razem AT siol.net>
301
302         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
303           have to have CR/LF line endings even if they are checked out on *nix
304           or on WIN32 in cygwin binmode
305
306 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
307
308         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
309         * device/include/ds80c390.h: added sfr16 definitions
310         * src/ds390/gen.c,
311         * src/ds390/gen.h,
312         * src/ds390/main.c,
313         * src/ds390/ralloc.c,
314         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
315           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
316           bit returning functions
317         * support/regression/tests/sfr16.c: enabled test on ds390
318
319 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
320
321         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
322         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
323
324 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
325
326         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
327         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
328           (cl_address_space constructor): removed expensive initialization,
329           (cl_address_space::get_cell): extended for late initialization,
330           (cl_address_space::*): use late initialization,
331           (cl_address_decoder::activate): removed expensive initialization,
332           This reduced regression test running time by 25%
333
334 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
335
336         * packihx/,
337         * configure.in,
338         * configure,
339         * sdcc.dsw,
340         * Makefile.bcc,
341         * Makefile.in,
342         * support/packihx/Makefile.in,
343         * support/packihx/clean.mk,
344         * support/packihx/Makefile.bcc,
345         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
346
347 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
348
349         * src/SDCCval.c (valNot): fix for regression test failure
350           of not.c on big endian hosts
351
352 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
353
354         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
355
356 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
357
358         * device/lib/mcs51/Makefile.in: changed string comparison operator
359           to = for POSIX compliance; == is bash extension
360
361 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
362
363         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
364           kosmonaut_pirx
365
366 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
367
368         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
369         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
370         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
371         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
372         bug report #1478657,
373
374 2006-05-05 Borut Razem <borut.razem AT siol.net>
375
376         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
377           making the html
378
379 2006-05-02 Borut Razem <borut.razem AT siol.net>
380
381         * doc/Makefile.in: removed *.ind dependency since there is no rule to
382           create *.ind, which made make to fail if invoked with -j 2
383
384 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
385
386         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
387           Hubert Sack for patch 1479782
388
389 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
390
391         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
392
393 2006-05-01 Raphael Neider <rneider AT web.de>
394
395         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
396           (create_pic): store only prefix-free device name,
397           (init_pic): check for device names with "16" prefix,
398           (list_valid_pics),
399         * src/pic/device.h (struct PIC_device),
400         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
401             stored device name,
402         * device/include/pic/pic12f{635,675,629,683}.h,
403         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
404         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
405         * device/include/pic/pic16f505.h,
406         * device/lib/pic/libdev/pic16f505.c: removed
407         * device/include/pic/pic14devices.txt: added support for pic12f
408             devices, removed unsupported non 16-bit devices
409             [above changes provided by patch from Zik Saleeba]
410         * src/pic/*, src/pic16/*, device/include/pic16/*,
411           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
412
413 2006-05-01 Borut Razem <borut.razem AT siol.net>
414
415         * configure.in, configure, doc/Makefile.in:
416           sync with nightly build makefile - latex, dvipdf and dvips
417           not needed any more
418
419 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
420
421         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
422         in the library source
423
424 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
425
426         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
427
428 2006-04-28 Raphael Neider <rneider AT web.de>
429
430         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
431         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
432           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
433         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
434
435 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
436
437         * device/lib/pic/libdev/Makefile.in,
438         * device/lib/hc08/Makefile.in,
439         * device/lib/gbz80/Makefile.in,
440         * device/lib/z80/Makefile.in,
441         * device/lib/ds390/Makefile.in,
442         * device/lib/ds400/Makefile.in: added srcdir to include search path,
443         thanks to Borut for the bug report
444         * configure.in,
445         * configure: always create doc/Makefile independent from --enable-doc
446         * Makefile.in: always install from directory doc independent from
447         --enable-doc
448         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
449         removed
450         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
451         * doc/Makefile.in: install *.txt if present
452         * device/include/Makefile.in (install): added installation of pic/*.inc
453         and pic/*.txt files again, they were erroneously removed
454
455 2006-04-28 Raphael Neider <rneider AT web.de>
456
457         * src/pic/{gen.c,main.h,pcode.c},
458         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
459             concerning signedness with casts
460
461 2006-04-28 Raphael Neider <rneider AT web.de>
462
463         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
464             definition of an interrupt handler,
465         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
466             interrupt handler stuff from picglue() to separate routine,
467           (picglue): enabled definition of intr handlers in files w/o main()
468
469 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
470
471         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
472           compilation with MSVC 2005 Express Edition (VC8)
473
474 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
475
476         * device/lib/Makefile: fixed build of gbz80 lib
477
478 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
479
480         * support/regression/tests/bug-460010.c,
481         * support/regression/tests/bug-524691.c,
482         * support/regression/tests/bug-716242.c: removed conditional defines
483           that are already in testfwk.h
484
485 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
486
487         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
488           (AccAXRsh1): added, shift right by 1,
489           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
490            AccAXLrl1
491         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
492
493 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
494
495         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
496         remove cast to same type
497         * src/SDCCast.c (decorateType): fix for RFE 1475742,
498         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
499         * as/z80/Makefile,
500         * link/z80/Makefile: removed, they have moved to
501         Makefile.in files
502         * configure,
503         * configure.in: replaced duplicate message about ucsim by missing sdcpp
504         * install-sh: fix bug #1204398 by setting umask 0022
505         * device/lib/Makefile: separate build of z80 and gbz80 lib
506
507 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
508
509         Enabled VPATH feature: changed nearly all Makefiles (149 files).
510         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
511
512         One basic decision: e.g. src/clean.mk includes further files. In order
513         to make this work there are two solutions:
514         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
515           run configure on them. This way they can use
516           'include $(srcdir)/port-clean.mk'
517         - always include clean.mk by the Makefile at the same level. To avoid
518           that `make clean` tries to include and build Makefile.dep the
519           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
520           implemented, because now even `make uninstall` doesn't create
521           Makefile.in. clean.mk could be eliminated by pasting it in
522           Makefile.in.
523
524         * debugger/mcs51/Makefile.in: build own objects from library sources
525         (SLIB, SDCC) in current directory
526
527         * configure, configure.in: renamed --disable-device-lib-build in
528         --disable-device-lib; added --enable-doc, the required tools are
529         searched by configure; added result message; the toolchain for the
530         belonging ports are now only built, if the port is enabled.
531
532         * support/regression/*: all output is written in directory gen, because
533         the fwk and ports directories don't livet in the build tree using vpath
534
535         * doc/sdccman.lyx: renamed --disable-device-lib-build to
536         --disable-device-lib, added --enable-doc, added section VPATH
537
538         * sim/ucsim/configure.in,
539         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
540         z80 are enabled by default
541
542 2006-04-24 Raphael Neider <rneider AT web.de>
543
544         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
545             to config word, "pic14_"-prefixed some extern functions
546           (pic14_emitConfigWord): emit __config directive(s) if assignment to
547             config word has been found
548         * src/pic/device.h: added prototypes
549         * src/pic/pcode.c: added "pic14_"-prefix where needed
550         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
551             fixup
552         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
553             words,
554           (pic14emitRegularMap): ignore config words,
555           (pic14createInterruptVect): moved generating __config directives away
556           (picglue): have __config directives emitted
557
558 2006-04-24 Borut Razem <borut.razem AT siol.net>
559
560         * doc/Makefile: sync with nightly build makefile
561
562 2006-04-24 Raphael Neider <rneider AT web.de>
563
564         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
565             registers that have not been assigned proper liveranges,
566             fixes #1469504 and #1474602,
567           (pCodeRegOptimizeRegUsage): fixed typo in comment
568
569 2006-04-24 Borut Razem <borut.razem AT siol.net>
570
571         * device/examples/main8051.c: deleted - it was removed from CVS
572           24.mar.2000 and after that modified 18.feb.2001, so it reappered
573           after the transition to Subversion
574         * src/SDCCalloc.h: deleted - it was removed  from CVS
575           3.feb.2001 and after that modified 18.feb.2001, so it reappered
576           after the transition to Subversion
577         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
578           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
579           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
580           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
581
582 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
583
584         * as/asx8051.dsp: added mcs51/strcmpi.h
585         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
586         * as/hc08/aslink.h: updated lnksect prototype
587         * as/hc08/asm.h,
588         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
589         * as/hc08/asmain.c,
590         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
591           (newdot): handle A_ABS
592         * as/hc08/asout.c,
593         * as/mcs51/asout.c (outarea): output address
594         * as/hc08/lkaomf51.c,
595         * as/mcs51/lkaomf51.c: disabled unused array UsageType
596         * as/hc08/m08pst.c,
597         * as/mcs51/i51pst.c,
598         * as/z80/z80pst.c: "ABS" is not A_OVR
599         * as/hc08/lkarea.c (newarea): read a_addr,
600           (lnkarea): added codemap array, sort absolute areas to the front,
601            combine all GSINITx/GSFINAL,
602           (find_empty_space, allocate_space): new functions,
603           (lnksect): return next address, handle absolute sections
604         * as/mcs51/lkarea.c (newarea): read a_addr,
605           lnksect2 prototype changed,
606           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
607           (find_empty_space, allocate_space): new, factored out of lnksect2,
608           (lnksect2): return next address, handle absolute sections
609         * as/hc08/lkhead.c,
610         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
611         * as/hc08/lklibr.c (addfile, fndsym),
612         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
613           index out of range and detect both '\' and '/'
614         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
615         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
616           regression tests (ds390 cannot return bool yet)
617         * doc/sdccman.lyx: changed version number, document changed --no-peep,
618           document critical interrupts on z80, document changed SDCC define
619         * src/asm.c (_asxxxx_mapping): fixed .org directive,
620           (_a390_mapping): added .org directive
621         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
622           (genMultOneByte): fixed warnings
623         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
624           ones
625         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
626         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
627           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
628         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
629         * src/pic16/main.c: removed newReg prototype
630         * src/pic16/pcode.c,
631         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
632           warnings
633         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
634           ones
635         * src/pic16/ralloc.c
636         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
637           to fix warnings
638         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
639           from short to PIC_OPTYPE
640         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
641         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
642           optype from short to PIC_OPTYPE
643         * src/port.h: made int_size unsigned to fix warnings
644         * src/SDCC.y: fixed warning on MSVC
645         * src/SDCCicode.c (getArraySizePtr): return unsigned int
646         * src/SDCCopt.c (convertToFcall): fixed warnings
647         * src/SDCCsymt.h: removed double prototype for genSymName
648         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
649           offset int to fix warnings
650
651 2006-04-22 Borut Razem <borut.razem AT siol.net>
652
653         * doc/sdccman.lyx, */Makefile, */Makefile.in:
654           references to CVS replaced with Subversion
655
656 2006-04-21 Borut Razem <borut.razem AT siol.net>
657
658         * doc/sdccman.lyx, */Makefile, */Makefile.in:
659           references to CVS replaced with Subversion
660
661 2006-04-19 Borut Razem <borut.razem AT siol.net>
662
663         * src/version.awk: adapted for svn
664         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
665           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
666           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
667           /binutils-avr/etc/*.vi, *.jin: removed all properties
668           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
669
670 2006-04-19 Borut Razem <borut.razem AT siol.net>
671
672         * CVS to Subversion migration completed
673
674 2006-04-18 Borut Razem <borut.razem AT siol.net>
675
676         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
677           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
678
679 2006-04-17 Borut Razem <borut.razem AT siol.net>
680
681         * device/include/Makefile.in: added pic/*.inc to the installation
682
683 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
684
685         * support/regression/collate-results.py: fixed output in case of
686         a valdiag error
687         * support/regression/generate-cases.py: fixed splitting of pathnames
688         with dots
689         * as/hc08/lklibr.c (addfile),
690         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
691
692 2006-04-11 Raphael Neider <rneider AT web.de>
693
694         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
695         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
696         * src/pic16/pcode.c (assignValnums): fixed #1460578
697
698 2006-04-11 Raphael Neider <rneider AT web.de>
699
700         * device/lib/pic/libdev/*.c,
701         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
702           fixes #1468739, enables compilation in --std-c99 mode
703         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
704
705 2006-04-11 Raphael Neider <rneider AT web.de>
706
707         * src/pic/device.c (find_device): removed debug output
708           (list_valid_pics): enabled verbose listing of supported devices
709         * device/include/stdbool.h: define bool as char for pic14/16 as well
710
711 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
712
713         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
714
715 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
716
717         * .version: bumped version to 2.5.6
718         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
719
720 2006-04-06 Raphael Neider <rneider AT web.de>
721
722         * .version: bumped version to 2.5.6 (pic14 ABI changed)
723         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
724         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
725           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
726             pic14_constructAbsMap
727           (pic14printPublics): declare absolute global symbols as global
728           (pic14createInterruptVect),
729         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
730           (newReg): assume new registers unused, use correct name in
731             hashtable (reg->name instead of name), more debugLog output
732         * src/pic/device.h (PIC_device): added fields for verbose output
733         * src/pic/device.c: moved device definition to pic14devices.txt,
734             added routines for runtime parsing of pic14devices.txt,
735             added support for second config word
736         * src/pic/main.c (_process_pragma): removed #pragma maxram,
737           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
738           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
739           (_pic14_parseOptions): moved pCodeInitRegisters here
740           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
741         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
742           (pCodeInitRegisters): rewrapped comments, perpared new approach to
743             handling the pseudo stack
744         * device/lib/Makefile.in: ignore failures in objects-pic16,
745         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
746         * device/lib/pic/NEWS: document new dependency on picXXX.lib
747         * device/lib/pic/Makefile.subdir,
748         * device/lib/pic16/Makefile.subdir: improved clean rules
749         * device/lib/pic/libdev/: NEW, pic14 device libraries
750         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
751         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
752         * device/include/Makefile.in: create subdir and install pic14 headers
753         * device/include/pic/p16f_common.inc: removed unused declarations
754         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
755             PICs from inc2h.pl v1.6,
756             replaced BIT_AT macros with struct declarations
757         * device/include/pic/pic14devices.txt: definition of supported devices,
758             all above improvements contributed by Zik Saleeba, thanks
759         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
760         * support/scripts/sdcc.nsi: also install pic14 device libraries and
761             headers
762
763 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
764
765         * device/include/mcs51/c8051f410.h: added interrupt numbers,
766         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
767           thanks to Charles Olds
768
769 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
770
771         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
772
773 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
774
775         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
776         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
777         * support/regression/bug1464657.c: added, new test
778
779 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
780
781         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
782           version number
783
784 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
785
786         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
787           --no-peep and --peep-file <file> are used don't use default rules but
788           do use the <file>
789
790 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
791
792         * src/mcs51/gen.c (genCall): fixed bug 1457608
793
794 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
795
796         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
797         changes seem to cause (trigger?) problems with the build system.
798
799 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
800
801         * src/SDCCpeeph.c (operandsLiteral): new, added,
802           (callFuncByName): inserted operandsLiteral
803         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
804
805 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
806
807         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
808         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
809
810 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
811
812         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
813           implemented patch 1120823 Thanks to Willy De la Court (normal
814           interrupts need an interrupt number now if they are made critical),
815           and enabled nesting of critical functions though not for gbz80
816           (genCritical, genEndCritical): added functions
817           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
818         * src/z80/mappings.i: added "ei" to all mappings
819
820 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
821
822         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
823         submitted by the Debian SDCC maintainer Aurelien Jarno:
824         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
825         archive with gcc 4.1 on mips and wrote the patch"
826
827 2006-03-16 Raphael Neider <rneider AT web.de>
828
829         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
830           the left operand is shorter than the result (c* = lit-c* + int),
831           fixes bug #1450796
832         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
833           OP_SYMBOL
834
835 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
836
837         * src/.version: increased version number to 2.5.5
838         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
839         linking is done manually in pic16 port's _linkEdit,
840         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
841         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
842         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
843         allocate asmop as AOP_ACC,
844         (aopForRemat): added parameter 'bool result' in function declaration,
845         (pic16_aopGet): return AOP_ACC when accessing WREG,
846         (pic16_popGetTempReg): minor modification,
847         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
848         'pic16_allocWithIdx',
849         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
850         calling function in absolute addresses,
851         (genAssign): take into account AOP_ACC asmop,
852         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
853         * src/pic16/pcoderegs.c: some debug functions and lines added,
854         * src/pic16/ralloc.c (decodeRegType): added but commented out,
855         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
856         register too,
857         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
858         call to allocReg, not by manually allocating a new one,
859         (pic16_assignRegisters): now before going through the register
860         allocating functions mark all registers as free. This eliminates some
861         side effects resulting from peephole parser done earlier in the backbone
862
863 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
864
865         * src/SDCCicode.c (geniCodeLogic),
866         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
867
868 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
869
870         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
871           (genSend): bugfix, do not allocate and free twice,
872           (shiftRLong): handle partially overlapping aops
873         * support/regression/tests/bitopcse.c: fixed warning redefined idata
874
875 2006-03-08 Borut Razem <borut.razem AT siol.net>
876
877         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
878           for pic16
879
880 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
881
882         * support/regression/tests/bug1409955.c: new, added
883         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
884         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
885           (aopForSym, aopOp): increment asmop.allocated if reused,
886           (freeAsmop): decrement asmop.allocated and check for zero instead of
887           using asmop.freed,
888           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
889           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
890            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
891            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
892            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
893            genSignedRightShift, genRightShift, genDataPointerGet,
894            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
895            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
896             in reverse order from allocation,
897           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
898             added swappedLR to keep track
899         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
900           pdata & code for GCC, z80, gbz80 & hc08
901         * support/regression/tests/zeropad.c: moved defines to testfwk.h
902
903 2006-03-08 Raphael Neider <rneider AT web.de>
904
905         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
906
907 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
908
909         * device/include/mcs51/c8051f410.h: new SiLabs mcu
910         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
911         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
912
913 2006-03-06 Borut Razem <borut.razem AT siol.net>
914
915         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
916           made the linker quiet
917
918 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
919
920         * src/pic16/gen.c (genPcall): fixed bug #1443644
921         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
922         which dumps before the function entry point a data byte which represents
923         the number of the local variables used by the specified function, added
924         'xinst' for initial support for Extended Instruction Support,
925         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
926         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
927         port->fun_prefix anymore (may change later),
928         (genFunction, genEndFunction): do not store/restore local registers for
929         _main (this should take care the --main-return command line option in
930         the future),
931         (genOr): removed some legacy pic-port instructions,
932         * src/pic16/genarith.c (genAddLit): re-enabled old code because
933         performing operations with SFR's causes data to be written more than
934         once to each SFR. Perhaps SFRs should be handled in special cases...
935         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
936         pcode.h
937         * src/pic16/main.c (_process_pragma): stack bound checking did not take
938         into account for stack starting position,
939         (struct OPTIONS pic16_optionsTable): added command line argument
940         --extended or -y for Extended Instruction Support,
941         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
942         (deassignLRs): *** perhaps the most important change, old 'for' code
943         (commented out for reference), didn't account for some registers which
944         were left marked 'not free' after a pointer operation. The change
945         reduces register usage a lot in some cases
946
947 2006-03-04 Borut Razem <borut.razem AT siol.net>
948
949         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
950           _clean
951         * support/regression/tests/bug-524697.c: decreased array size for
952           mcs51 to fit into the internal RAM
953         * support/regression/Makefile.in: a little bit more verbose
954
955 2006-03-03 Borut Razem <borut.razem AT siol.net>
956
957         * support/regression/fwk/lib/testfwk.c,
958           support/regression/fwk/include/testfwk.h: introduced function
959           _prints(), nonrecursive _printn(), call _initEmu() from main()
960         * support/regression/ports/gbz80/support.asm,
961           support/regression/ports/ucz80/support.asm,
962           support/regression/ports/z80/support.asm,
963           support/regression/ports/ds390/support.c,
964           support/regression/ports/hc08/support.c,
965           support/regression/ports/host/support.c,
966           support/regression/ports/mcs51/support.c,
967           support/regression/ports/xa51/support.c: added empty _initEmu()
968           function
969         * support/regression/ports/pic16/gpsim.cmd,
970           support/regression/ports/pic16/spec.mk,
971           support/regression/ports/pic16/support.c,
972           support/regression/Makefile.in: added pic16 regression test
973
974 2006-03-01 Raphael Neider <rneider AT web.de>
975
976         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
977           genConstPointerGet): use safe way of generating MOVFF to cover
978             literals as well as registers, fixes bug #1440527
979         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
980             dereference
981           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
982             more correctly, fixes bug #1232186
983           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
984         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
985             gplink guess the correct processor in more cases, applied patch
986             from Till Riedel attached to and fixing bug #1436552
987
988 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
989
990         * support/regression/tests/array.c: added, contains check for #1434401
991         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
992
993 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
994
995         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
996         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
997         * device/include/mcs51/c8051f326.h,
998         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
999         * device/include/mcs51/c8051f000.h,
1000         * device/include/mcs51/c8051f018.h,
1001         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1002           PCON_IDLE,PCON_STOP and added sfr16 definitions
1003
1004 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1005
1006         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1007           genGetWord): fixed bug 1409955
1008
1009 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1010
1011         * device/include/hc08/mc68hc908gp32.h,
1012         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1013
1014 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1015
1016         * src/SDCCast.c (constExprValue): return NULL if not a value
1017         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1018         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1019         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1020
1021 2006-02-13 Borut Razem <borut.razem AT siol.net>
1022
1023         * src/regression/ptrarg.c: added, fails due to bug #1430967
1024         * src/regression/Makefile: ptrarg.c added, ...
1025
1026 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1027
1028         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1029         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1030
1031 2006-02-11 Borut Razem <borut.razem AT siol.net>
1032
1033         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1034           print "Processor: xxx" message to stdout only if --verbose
1035
1036 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1037
1038         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1039         * support/regression/tests/bug1426356.c: added
1040         * support/regression/tests/bitfields.c: removed 2 tests
1041
1042 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1043
1044         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1045         * device/include/mcs51/c8051f330.h,
1046         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1047           PCON_IDLE,PCON_STOP and added sfr16 definitions
1048         * device/lib/_divsint.c,
1049         * device/lib/_divuint.c,
1050         * device/lib/_divulong.c,
1051         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1052           register bank bug for small stackauto
1053
1054 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1055
1056         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1057
1058 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1059
1060         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1061         * all.dsp: corrected several bin paths
1062         * device/include/mcs51/c8051f120.h,
1063         * device/include/mcs51/c8051f300.h,
1064         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1065           to PCON_IDLE,PCON_STOP
1066         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1067         * device/lib/printf_large.c (output_float): fixed bug 1388703
1068         * support/regression/tests/bug1057979.c: added test for bug 1388703
1069
1070 2006-02-08 Raphael Neider <rneider AT web.de>
1071
1072         * src/pic/pcode.c (pciTRIS): fixed typo,
1073           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1074           (LinkFlow): fixed handling of flows that end in a call,
1075           (ReuseReg): perform safety check earlier
1076         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1077             to work with flows at the beginning of a pBlock,
1078             fixes #1426557 (Symbol not previously defined),
1079           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1080             usage information
1081           (RemoveUnusedRegisters): update register usage info
1082         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1083             created, reuse existing ones instead
1084         * src/pic/gen.c (genPcall): fixed #1424719
1085
1086 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1087
1088         * link/z80/lkmain.c,
1089         * link/z80/lklex.c,
1090         * link/z80/lkdata.c,
1091         * link/z80/aslink.h: fixed build on current cygwin:
1092         replaced getline() by lk_getline()
1093
1094 2006-02-01 Borut Razem <borut.razem AT siol.net>
1095
1096         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1097           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1098           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1099           src/regression/bool1.c, src/regression/bool2.c,
1100           src/regression/bool3.c, src/regression/call1.c,
1101           src/regression/compare.c, src/regression/compare10.c,
1102           src/regression/compare2.c, src/regression/compare3.c,
1103           src/regression/compare4.c, src/regression/compare5.c,
1104           src/regression/compare6.c, src/regression/compare7.c,
1105           src/regression/compare8.c, src/regression/compare9.c,
1106           src/regression/configword.c, src/regression/for.c,
1107           src/regression/inline.c, src/regression/mult1.c,
1108           src/regression/nestfor.c, src/regression/or1.c,
1109           src/regression/pointer1.c, src/regression/ptrfunc.c,
1110           src/regression/rotate1.c, src/regression/rotate2.c,
1111           src/regression/rotate3.c, src/regression/rotate4.c,
1112           src/regression/rotate5.c, src/regression/rotate6.c,
1113           src/regression/rotate7.c, src/regression/string1.c,
1114           src/regression/struct1.c, src/regression/sub.c,
1115           src/regression/sub2.c, src/regression/switch1.c,
1116           src/regression/while.c, src/regression/xor.c,
1117           src/regression/create_stc, src/regression/simulate,
1118           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1119           regression tests
1120         * src/regression/gpsim_assert.h: added
1121
1122 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1123
1124         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1125         ((void (code *) (void)) 0) ();
1126         * as/hc08/aslex.c,
1127         * as/hc08/aslink.h,
1128         * as/hc08/asm.h,
1129         * as/hc08/asmain.c,
1130         * as/hc08/lkdata.c,
1131         * as/hc08/lklex.c,
1132         * as/hc08/lkmain.c,
1133         * as/mcs51/aslex.c,
1134         * as/mcs51/aslink.h,
1135         * as/mcs51/asm.h,
1136         * as/mcs51/asmain.c,
1137         * as/mcs51/lkdata.c,
1138         * as/mcs51/lklex.c,
1139         * as/mcs51/lkmain.c,
1140         * as/z80/aslex.c,
1141         * as/z80/asm.h,
1142         * as/z80/asmain.c: fixed build on current cygwin:
1143         replaced getline() by as_getline()
1144
1145 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1146
1147         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1148         declarator in the symbol chain
1149         * src/SDCCsymt.h,
1150         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1151         parameter list for function pointers
1152         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1153         * support/regression/tests/bug-716242.c: added
1154
1155 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1156
1157         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1158         offset if possible
1159         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1160
1161 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1162
1163         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1164         inifinitely recurseable, added static
1165         * support/regression/tests/bug-1408066.c: added
1166
1167 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1168
1169         * src/SDCCicode.h,
1170         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1171         renamed, added possibility to create "postLoopLbl"-labels
1172         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1173         newiTempLoopHeaderLabel
1174         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1175         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1176         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1177         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1178         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1179         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1180         (basicInduction): fixed bug #136564, made static,
1181         (loopInduction): changed parameter of basicInduction, made static,
1182         (addPostLoopBlock): added
1183         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1184         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1185         findLoopEndSeq
1186         * support/regression/tests/bug-136564.c: added
1187         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1188         --std-sdcc99 to LIBSDCCFLAGS
1189
1190 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1191
1192         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1193         while loop
1194         * support/regression/tests/bug-1406131.c: added
1195
1196 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1197
1198         * src/SDCCast.c (decorateType): fix promotion of unary minus
1199         * src/SDCCsymt.c (computeType): beautified
1200         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1201         (valUnaryPM, valComplement): fix sign and promotion,
1202         (valNot): ANSI: result type is int (SDCC: unsigned char)
1203         * support/regression/tests/uminus.c: speedup by removing superflous
1204         test case 'int'
1205         * support/regression/tests/onebyte.c: added promotion and signedness
1206         tests for unary minus
1207         * support/regressions/tests/bug-477927.c: disable warning about
1208         uninitialized variables
1209         * support/regression/tests/not.c: added
1210
1211 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1212
1213         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1214         * src/mcs51/gen.c (gen51Code): show final register usage after
1215         fillGaps in asm with --i-code-in-asm
1216         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1217         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1218         incUsed, rliveClear, adjustIChain): made static,
1219         (setFromRange): excluded because it's unused,
1220         (findPrevUseSym, markWholeLoop): added,
1221         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1222         through all branches of predecessors enables sdcc to emit the warning
1223         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1224         (rlivePoint): made static, added parameter emitWarnings which is only
1225         true during the first run out of two,
1226         (findRecursiveSucc, findRecursivePred): removed,
1227         (computeLiveRanges): made static, added parameter emitWarnings,
1228         (dumpIcRlive): added for debugging only
1229         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1230         removed prototype of setFromRange()
1231         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1232         in call of computeLiveRanges()
1233         * support/regression/tests/bug-895992.c: added
1234         * support/regression/tests/bug-971834.c: added
1235         * support/valdiag/tests/bug-895992.c: added
1236         * support/valdiag/tests/bug-971834.c: added
1237
1238 2005-12-18 Raphael Neider <rneider AT web.de>
1239
1240         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1241           (genUnpackBits): improved code for direct operands,
1242           (genPackBits): improved code for literal assignment to bitfields
1243             and for direct destination operands (no FSR indirection),
1244             prevented redundant AND, fixes #1362800,
1245           (AccLsh): added parameter to disable masking of the result
1246         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1247           skip instructions with side-effects (like incfsz),
1248           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1249         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1250         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1251           fixes #1375263
1252
1253 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1254
1255         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1256         volatile variables as spill location
1257
1258 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1259
1260         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1261         replacing literals
1262         * support/regression/tests/bug-1376320.c: added
1263
1264 2005-12-08 Raphael Neider <rneider AT web.de>
1265
1266         * src/pic/device.c: renamed is_shared to pic14_is_shared
1267         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1268         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1269           (is_valid_identifier): added for above workaround
1270
1271 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1272
1273         * device/lib/Makefile.in: fixed to enable port-specific-objects
1274         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1275           char, thanks Hubert Sack
1276         * doc/sdccman.lyx: documented --xstack-loc,
1277           elaborated a bit more on interrupts and pitfalls,
1278           removed "setjmp/longjmp unsupported",
1279           documented some unsupported C99 features
1280         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1281         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1282           if, thanks Hubert Sack
1283         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1284         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1285           make make_library
1286         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1287           regression tests can report resource usage (rfe 700441)
1288         * support/regression/collate-results.py: report resource usage
1289         * support/regression/ports/ds390/spec.mk,
1290         * support/regression/ports/hc08/spec.mk,
1291         * support/regression/ports/mcs51/spec.mk,
1292         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1293         * support/regression/ports/ds390/uCsim.cmd,
1294         * support/regression/ports/hc08/uCsim.cmd,
1295         * support/regression/ports/mcs51/uCsim.cmd,
1296         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1297         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1298           library, use the default one
1299         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1300           building the library
1301
1302 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1303
1304         * config.dsp: added dependency on .version and configure_vc.awk
1305         * device/include/setjmp.h: updated for --stack-auto and --xstack
1306         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1307         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1308         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1309         * device/lib/libsdcc.lib: added _setjmp
1310         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1311           (decorateType): fixed bug 1372851,
1312           (optimizeGetHbit): fixed warning
1313         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1314           array initialisation
1315         * support/regression/tests/bug1057979.c: added test for bug 1358192
1316         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1317
1318 2005-12-03 Borut Razem <borut.razem AT siol.net>
1319
1320         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1321           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1322
1323 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1324
1325         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1326         createIval): implement symbol independant "flexible array member",
1327         (createIvalCharPtr): implemented flexible array initialisation with a
1328         string
1329         * src/SDCCsymt.c (copyStruct): removed,
1330         (getSize): fixed misleading comment,
1331         (getAllocSize): removed, the additional allocation size is now in
1332         sym->flexArrayLength,
1333         (checkStructFlexArray): new, syntax checks for flexible array members,
1334         (compStructSize): added syntax checks for "flexible array members"
1335         (copyStruct): removed,
1336         (copyLinkChain): removed inefficient fix for bug 770487
1337         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1338         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1339         symbol->flexArrayLength
1340         * src/SDCCerr.c,
1341         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1342         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1343         * support/regression/tests/structflexarray.c: added
1344         * support/valdiag/tests/structflexiblearray.c: added
1345
1346 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1347
1348         * src/SDCCast.c (decorateType): fixed bug 1368489
1349         * support/Util/SDCCerr.c,
1350         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1351
1352 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1353
1354         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1355           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1356
1357 2005-11-27 Borut Razem <borut.razem AT siol.net>
1358
1359         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1360           support/cpp2/mkdeps.h: added command line option
1361           -obj-ext=<extension> to SDCPP to define object file externion, used
1362           for generation of make dependencies (-M)
1363         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1364
1365 2005-11-26 Borut Razem <borut.razem AT siol.net>
1366
1367         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1368           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1369           added pic and pic16 libraries
1370
1371 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1372
1373         * device/include/float.h: Corrected typo in prototype of __fsgt
1374
1375 2005-11-25 Borut Razem <borut.razem AT siol.net>
1376
1377         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1378           added creation of model-mcs51-stack-auto libraries
1379
1380 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1381
1382         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1383         and fields-list too
1384         * src/SDCCast.c (createIvalArray): removed obsolete comment
1385
1386 2005-11-24 Borut Razem <borut.razem AT siol.net>
1387
1388         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1389           added missing device/lib/mcs51/crt*.asm sources
1390
1391 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1392
1393         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1394
1395 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1396
1397         * device/lib/_fs2schar.c,
1398         * device/lib/_fs2sint.c,
1399         * device/lib/_fs2slong.c: optimized inline asm
1400
1401 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1402
1403         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1404           Better handling of floats between -1.0 and 0.0.
1405
1406 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1407
1408         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1409           (the missing "if"s prohibited removal of redundant labels)
1410
1411 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1412
1413         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1414           Properly convert floats between -1.0 and 0.0 to long, int, and char
1415           types (max integer value of negative floats tends to zero).
1416         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1417           Removed changes made so to work properly with floats between
1418           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1419           and _fs2char.c
1420
1421 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1422
1423         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1424         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1425         (genCast) cosmetic change
1426         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1427         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1428         from mcs51
1429         * support/regression/tests/bitfields (testSignedBitfields): added
1430
1431 2005-11-18 Borut Razem <borut.razem AT siol.net>
1432
1433         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1434         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1435           introduced SILENT option to make building of pic16 libraries less
1436
1437 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1438
1439         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1440           Now they work properly with floats between -1.0 and 0.0
1441         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1442
1443 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1444
1445         * src/SDCCicode.c (printOperand): added missing else
1446
1447 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1448
1449         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1450         reformatted for better readability
1451         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1452         signed bitfields
1453
1454 2005-11-17 Borut Razem <borut.razem AT siol.net>
1455
1456         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1457           introduced SILENT option to make building of pic16 libraries less
1458           verbose - used for nightly snapshot build
1459         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1460           available on Win32 platforms.
1461         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1462           medium, large, pic and pic16
1463
1464 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1465
1466         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1467           printf("%f"...) sets fraction to zero.
1468
1469 2005-11-16 Raphael Neider <rneider AT web.de>
1470
1471         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1472           fixes #1357221
1473         * src/pic/gen.c (genIfx): implemented for CARRY bit
1474         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1475           to generic pointers, fixes #1357332,
1476           (pic16_movLit2f): NEW,
1477           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1478
1479 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1480
1481         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1482
1483 2005-11-11 Raphael Neider <rneider AT web.de>
1484
1485         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1486         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1487           compute pointer's type from operand,
1488           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1489           improved single bit reads, fixes bug #1353379
1490
1491 2005-11-09 Borut Razem <borut.razem AT siol.net>
1492
1493         * support/scripts/sdcc.nsi: added lib/pic to the package
1494
1495 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1496
1497         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1498
1499 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1500
1501         * support/regression/tests/bug1348008.c: added
1502         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1503         * support/regression/tests/bug1337835.c: updated comment
1504
1505 2005-11-06 Borut Razem <borut.razem AT siol.net>
1506
1507         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1508           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1509           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1510           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1511           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1512           dynamic construction of cl_error_class and derivates - 2.nd try
1513
1514 2005-11-05 Borut Razem <borut.razem AT siol.net>
1515
1516         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1517           bug, which caused Bus Errors on sparc solaris
1518
1519 2005-11-04 Borut Razem <borut.razem AT siol.net>
1520
1521         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1522           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1523           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1524           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1525           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1526           and derivates to resolve the initialization problem on OSX
1527
1528 2005-11-02 Borut Razem <borut.razem AT siol.net>
1529
1530         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1531           corrected typo - #include <winsock2.h>
1532
1533 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1534
1535         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1536           (_asxxxx_mapping): added org directive for future enhancements
1537
1538 2005-11-01 Borut Razem <borut.razem AT siol.net>
1539
1540         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1541           enabled sockets on WIN32
1542         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1543
1544 2005-10-31 Borut Razem <borut.razem AT siol.net>
1545
1546         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1547           WIN32 backslash path delimiters should be escaped when used in C strings
1548         * support/regression/tests/bitfields.c: exclude failing assertions for
1549           __CYGWIN32__ and __MINGW32__ hosts
1550
1551 2005-10-30 Borut Razem <borut.razem AT siol.net>
1552
1553         * src/SDCCutil.c: corrected double comparison typo
1554
1555 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1556
1557         * device/lib/medium/Makefile: added for new memory model medium
1558         * device/include/asm/mcs51/features.h: updated for medium/pdata
1559         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1560           added Multiply & Accumulate sbit's and MAC0_PAGE define
1561         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1562         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1563         * device/lib/_mullong.c: update for medium model
1564         * device/lib/incl.mk: added medium model
1565         * doc/sdccman.lyx: documented medium model
1566         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1567         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1568         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1569         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1570           (allocParms): set SCLS and OCLS to pdata for medium model
1571         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1572           for pdata,
1573           (powof2): return <0 if not power of 2
1574         * src/avr/gen.c (genBitWise): use updated powof2
1575         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1576           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1577           (shiftLLeftOrResult): use B if necessary
1578         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1579         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1580         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1581         * support/regression/Makefile.in: added test-mcs51-medium
1582         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1583
1584 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1585
1586         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1587         specifier unsigned
1588         * device/lib/time.c (mktime): fixed bug 1334315
1589
1590 2005-10-28 Raphael Neider <rneider AT web.de>
1591
1592         * device/include/pic/p16f_common.inc: added common declarations
1593         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1594
1595 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1596
1597         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1598           (aopPutUsesAcc): added to predict accumulator use,
1599           (assignResultValue): save acc if necessary,
1600           (genMinusDec): store result if indirectly addressed,
1601           (genDivOneByte):  save acc if necessary,
1602           (movLeft2Result): bugfix if left already in acc,
1603           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1604             attention to accumulator use (esp. pdata),
1605           (genReceive): receive pdata correctly
1606         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1607         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1608
1609 2005-10-27 Raphael Neider <rneider AT web.de>
1610
1611         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1612
1613 2005-10-27 Raphael Neider <rneider AT web.de>
1614
1615         * .version: changed version to 2.5.4
1616         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1617         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1618           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1619             arithmetics support routines
1620         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1621         * device/lib/Makefile.in: also create installdir for pic
1622
1623         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1624           pic14 port as well
1625         * src/pic/device.c (dump_sfr): rewritten to delegate register
1626           placement to the linker (use `extern sym' rather than sym EQU addr),
1627           (validAddress): fixed to check last specified address
1628         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1629           (popGetLit): truncate literal value to 8 bit,
1630           (popGet): moved assert to more appropriate place
1631           (popGetExternal): create pCode operand from and mark the according
1632             symbol as being `extern'
1633           (popGetAddr): added sanity check on immediate's offset, provide
1634             GPOINTER tag on demand
1635           (aopPut): fixed for immediates,
1636           (mov2w_op): move operand's address or contents to WREG (depending on
1637             operand type), safer variant of mov2w,
1638           (movwf,call_libraryfunc): NEW, handy abbreviations,
1639           (get_argument_pcop,get_return_val_pcop,pass_argument,
1640           get_returnvalue): interface for accessing function parameters and
1641             return values,
1642           (assignResultValuei,genRet): use new parameter/return value interface
1643           (pic14_getDataSize): back to old version handling generic pointers,
1644           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1645             provided implementation and/or fixed old one,
1646           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1647             calls, removed legacy 8051 reference code
1648           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1649           (loadSignToC): NEW, move the operands sign bit to CARRY,
1650           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1651             genRightShiftSigned, accepts negative shift counts,
1652           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1653           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1654             generic pointers, __data pointers and __code pointers,
1655           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1656             and signed bitfields, limit bitfields to 8 bit,
1657           (genDataPointerGet): fixed number of bytes read,
1658           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1659           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1660             pointers to constant data are no longer assumed to point to __code
1661             space, removed invalid pointer types,
1662           (bitpatternFromVal): retrieve the PICs representation of an integer
1663             or float literal,
1664           (genDataPointerSet): fixed assigning to po_immediate operands,
1665           (genGenPointerSet): implemented as library call,
1666           (genIfx): fixed incorrect condition,
1667           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1668             provide GPOINTER tag according to destination's storage class,
1669           (genCast): added code to handle casting to generic pointers, added
1670             sign-/zero extension of the result
1671           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1672         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1673         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1674           extend the result
1675         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1676           address/register resides in the shared banks
1677           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1678             put all variables into separate sections (have the linker arrange
1679             them)
1680           (picglue): put init code and interrupt handlers in separate sections
1681         * src/pic/main.c: added port specific options table, modified to PORT
1682           structure to make GPOINTERs 3 byte, added pic14_options
1683           (_pic14_do_link): private linking routine (update paths to libraries,
1684             add libsdcc.lib by default)
1685         * src/pic/main.h: declare pic14_options
1686         * src/pic/pcode.c: fixed instructions i/o relations,
1687           (RegCond): reverted to correct version,
1688           (newpCodeOpLit): truncate literals to 8 bit,
1689           (genericPrint): added debug output,
1690           (getRegFromInstruction): fixed for various operand types, simplified
1691           (BuildFlow): fixed broken handling of isntructions with labels
1692           (LinkFlow): start at last instruction in flow (skip trailing comments),
1693             pass the flow on to the next instruction after CALL
1694           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1695           (insertPCodeInstruction): fixed inserting after a skip instruction,
1696           (DoBankSelect): fixed for labeled instructions
1697           (OptimizepBlock): honor --nopeep switch
1698           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1699         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1700         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1701           (pCodeOptime2pCodes): allow disabling this optimization via
1702             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1703             but is still buggy), started implementation of a dataflow based
1704             pCode optimization (CSE + dead code elimination)
1705           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1706         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1707           names are independant of the stack location and therefore portable across
1708           devices
1709
1710 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1711
1712         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1713           (selectSpil): fixed bug 1337835 by not spilling bit variables
1714         * support/regression/tests/bug1337835.c: added test for this bug
1715         * src/mcs51/peeph.def: restart after rule 3.c,
1716           addded rules 263.x to optimize loading constants
1717
1718 2005-10-26 Raphael Neider <rneider AT web.de>
1719
1720         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1721         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1722           (genAssign): emit warning when casting literals to generic pointer
1723             type, also applies when taking the address of a fixed variable,
1724           (genCast): improved casting to generic pointers
1725         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1726           extern variables, added verbose error message
1727         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1728
1729 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1730
1731         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1732         carry must be complemented too
1733         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1734         could be emitted by genMinus
1735         * src/SDCCval.c (constVal): fixed bug 1305065
1736
1737 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1738
1739         * src/SDCCast.c (addCast): added promotion for bit variables
1740         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1741         promotion casts + optimisation
1742         (optimizeGetWord): fix warning 'i' might be used uninitialized
1743         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1744         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1745
1746 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1747
1748         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1749         all chars are promoted to int; promotion should be handled in SDCCast.c
1750
1751 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1752
1753         * device/lib/_strcmp.c: Fixed bug 1326457
1754
1755 2005-10-11 Raphael Neider <rneider AT web.de>
1756
1757         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1758         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1759
1760 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1761
1762         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1763         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1764
1765 2005-10-04 Raphael Neider <rneider AT web.de>
1766
1767         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1768           device/lib/pic16/pics.all: added pic18f1320
1769         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1770
1771 2005-09-30 Raphael Neider <rneider AT web.de>
1772
1773         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1774         * src/pic16/devices.inc: NEW, provides device descriptions
1775         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1776
1777 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1778
1779         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1780           GETHBIT
1781
1782 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1783
1784         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1785           documented Any Order Bit, Higher Order Byte and Higher Order Word
1786         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1787         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1788           (optimizeGetAbit): new, to get any bit, not only the high bit,
1789           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1790           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1791           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1792           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1793             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1794             GETABIT, GETBYTE, GETWORD: decorate them,
1795           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1796           (ast_print): added GETABIT, GETBYTE, GETWORD
1797         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1798         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1799           (geniCodeBinary): new generic binary icode,
1800           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1801         * src/port.h: updated comment for PORT.hasExtBitOp
1802         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1803           (genGetByte): new, to get a single byte,
1804           (genGetWord): new, to get a word from a long,
1805           (gen51Code): added GETABIT, GETBYTE, GETWORD
1806         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1807
1808 2005-09-23 Raphael Neider <rneider AT web.de>
1809
1810         * configure.in, configure: have device/lib/pic configured
1811         * device/lib/Makefile.in: added model-pic14
1812         * device/lib/clean.mk: added pic/ to clean rule
1813         * device/lib/pic: added rudimentary pic14 library providing support
1814           functions for multiplication/division/generic pointer access
1815         * src/SDCCopt.c (convilong): mark support functions as extern
1816           for pic14 port as well
1817         * src/pic/gen.c (genMult): added assertions,
1818           (genpic14Code): emit warning on unhandled iCodes
1819         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1820         * src/pic/pcode.c (pCodeOpCopy),
1821         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1822           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1823           SFR_REGISTER}), made safe for future extensions
1824         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1825           instructions even if preceeded by SKIP instructions (also remove
1826           them); removed unused code
1827         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1828           prevents leaving parts of the structure uninitialized after copying
1829
1830 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1831
1832         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1833           ago by me
1834         * support/regression/tests/addsub.c: added test for the bug
1835
1836 2005-09-21 Raphael Neider <rneider AT web.de>
1837
1838         * device/include/pic16/pic18f1220.h,
1839           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1840         * device/lib/pic16/Makefile.rules: added missing opening paren
1841         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1842           are provided in genutils.c,
1843           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1844           operand/result sizes,
1845           (genCmp): assert on NULL pointers first, then check deref'ed values
1846         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1847           result size
1848
1849 2005-09-18 Raphael Neider <rneider AT web.de>
1850
1851         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1852           as these are now unused,
1853           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1854         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1855           local, avoids uninitialized pointer dereference on r->name
1856         * src/pic16/ralloc.c (newReg): fixed indentation
1857
1858 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1859
1860         * src/SDCCval.c (constVal): fixed bug 730366
1861         * support/Util/SDCCerr.c,
1862         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1863
1864 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1865
1866         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1867
1868 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1869
1870         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1871
1872 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1873
1874         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1875           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1876         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1877           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1878         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1879         * packihx/packihx.c (hexDigit): made c unsigned char
1880         * as/mcs51/lklibr.c (fndsym),
1881         * link/z80/lkgb.c (gb),
1882         * link/z80/lklibr.c (fndsym),
1883         * link/z80/lkrloc.c (relr),
1884         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1885         * src/SDCC.lex (checkCurrFile, process_pragma),
1886         * src/SDCCglue.c (spacesToUnderscores),
1887         * src/SDCCmain.c (setParseWithComma, processFile),
1888         * src/asm.c (tvsprintf, printCLine),
1889         * src/avr/gen.c (emitcode, aopPut),
1890         * src/ds390/gen.c (emitcode),
1891         * src/hc08/gen.c (emitcode, emitinline),
1892         * src/mcs51/gen.c (emitcode, genInline),
1893         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1894           tokenizeLineNode),
1895         * src/pic/ralloc.c (debugLog),
1896         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1897           tokenizeLineNode),
1898         * src/pic16/ralloc.c (debugLog),
1899         * src/z80/main.c (_process_pragma):
1900            made all ctype.h function calls safe
1901         * src/SDCCopt.c: include math.h for fabs
1902         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1903           and used them throughout the code to make ctype.h function calls safe
1904         * src/ds390/main.c (asmLineNodeFromLineNode),
1905         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1906         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1907            unsigned char*
1908         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1909           (newpCodeAsmDir): made ctype.h function calls safe
1910         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1911           pic16_emitcode):  made lbp unsigned char*
1912         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1913           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1914         * src/xa51/gen.c (emitcode),
1915         * src/z80/gen.c (_emit2): made lbp unsigned char*
1916         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1917            char*
1918
1919 2005-09-05 Raphael Neider <rneider AT web.de>
1920
1921         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1922           access bank splitpoint
1923
1924 2005-09-05 Raphael Neider <rneider AT web.de>
1925
1926         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1927
1928 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1929
1930         * .version: changed to version 2.5.3
1931         * doc/sdccman.lyx: changed version to 2.5.3,
1932           documented --codeseg and --constseg and pragma codeseg and constseg,
1933           documented bit parameters (reentrant) and bit returning
1934         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1935            currFunc->recvSize, but is this ok for all ports?
1936           (ast2iCode): result of ~ on unsigned char must be cast to int for
1937            bool to work
1938         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1939           function pointers in bit space
1940         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1941           (processFuncArgs): call port.reg_parm() with reentrancy info
1942         * src/port.h,
1943         * src/avr/main.c,
1944         * src/ds390/main.c,
1945         * src/hc08/main.c,
1946         * src/pic/main.c,
1947         * src/pic16/main.c,
1948         * src/xa51/main.c,
1949         * src/z80/main.c: port.reg_parm prototype extended with
1950           "bool reentrant" parameter
1951         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1952           options.stackAuto for allocating bit register parameters
1953         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1954           (genSend): set BitBankUsed if it is,
1955           (selectRegBank): factored out of genCall for use in genPcall,
1956           (genCall): removed redundant dtype assignmen, use selectRegBank,
1957           (genPcall): handle returning in Carry properly, save in F0 if needed,
1958           (genReceive): handle bit register parameters
1959         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1960           (mcs51_assignRegisters): enable bit registers for all reentrant
1961            functions and don't set BitBankUsed unconditionally
1962         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1963         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1964         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1965
1966 2005-08-27 Borut Razem <borut.razem AT siol.net>
1967
1968         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1969         ppc-osx (Darwin) does not support -u option. It seems that it is
1970         supported only on Linux - GNU cp
1971
1972 2005-08-25 Borut Razem <borut.razem AT siol.net>
1973
1974         * sim/ucsim/gui.src/serio.src/Makefile.in,
1975           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1976           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1977           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1978           install and strip, since the strip at /usr/ccs/bin should be used
1979           on solaris
1980
1981 2005-08-24 Borut Razem <borut.razem AT siol.net>
1982
1983         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
1984
1985 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
1986
1987         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
1988         ffffffffu
1989
1990 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
1991
1992         * as/mcs51/aslink.h: completed lkrloc.c prototypes
1993         * as/mcs51/lkmain.c (link_main): fixed warning
1994         * device/include/stdbool.h: ds390 has no advanced bit support yet
1995         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
1996         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
1997         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
1998           and updated their macros
1999         * src/SDCCval.c (constVal): updated comment for renamed b_long
2000
2001 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2002
2003         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2004         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2005           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2006           (oprio): set priority for '['
2007         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2008            and adb_24_bit
2009         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2010         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2011         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2012         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2013           added overlayable BIT_BANK area
2014         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2015           (summary2): explain 'T' in legenda
2016         * as/mcs51/lkrloc.c: replaced old K&R style,
2017           (relr): added R_BIT processing,
2018           (errmsg): added "Bit-addressable relocation error",
2019           (adb_bit): added for converting from byte- to bit-addressable space,
2020           (adb_24_bit): added for converting from byte- to bit-addressable space
2021         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2022            used in reentrant functions now even as return value
2023         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2024         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2025           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2026         * src/SDCCglobl.h: added indicator BitBankUsed
2027         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2028            the bit registers b0-b7
2029         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2030           (geniCodeCast): fixed bug 1263853,
2031           (geniCodeLogicAndOr): put result in bool or char,
2032           (geniCodeReceive): added parameter func for accessing the return type,
2033           (geniCodeFunctionBody): pass func to geniCodeReceive
2034         * src/SDCCmain.c: added indicator BitBankUsed
2035         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2036         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2037           (checkSClass): don't put automatic bool/bit on stack,
2038           (checkFunction): removed check on function cannot return bit
2039         * src/SDCCsymt.h: added newBoolLink prototype
2040         * src/mcs51/gen.c (rb1regs): added bit registers,
2041           (movc): created for assigning to carry,
2042           (pushReg, popReg): created for pushing registers,
2043           (sameRegs): check both AOP_REG and AOP_CRY types,
2044           (aopOp): handle bit registers,
2045           (aopPut): optimization no self-assign,
2046           (saveRegisters): push reg->base (bits) only once for bit registers,
2047            and use pushReg,
2048           (unsaveRegisters): pop reg->base only once and use popReg,
2049           (assignResultValue): added parameter func and return in carry for bits,
2050           (genIpush): optimization no reload in A if not changed,
2051           (genSend): bit parameters in reentrant functions are passed in bit
2052            registers by first assigning to bits in B, then save registers and
2053            copy B to bits,
2054           (genCall): handle returning in Carry properly, save it in F0 if needed,
2055           (genPcall): updated assignResultValue call, this is not safe yet for bit
2056            returning function !!!
2057           (genFunction): don't generate equ's for bit registers and use pushReg,
2058           (genEndFunction): take care of bit returning functions and use popReg,
2059           (genRet): return bit in Carry,
2060           (genIfx): optimize bit registers and other directly addressable bits,
2061           (genReceive): updated assignResultValue call
2062         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2063           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2064            registers when using stack-auto
2065         * src/mcs51/ralloc.c (_G): added allBitregs,
2066           (regs8051): added the bit registers,
2067           (createStackSpil): use macro IS_BIT,
2068           (getRegBit): added to allocate a bit register, else spill,
2069           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2070           (updateRegUsage): factored out to ease stepping while debugging,
2071           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2072            also allocate bit registers,
2073           (fillGaps): handle bit registers,
2074           (findAllBitregs): added to create bit vector with all bit registers,
2075           (mcs51_allBitregs): returns this bit vector,
2076           (mcs51_assignRegisters): when using stack-auto use bit registers for
2077            passing parameters and creating local variables
2078         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2079
2080 2005-08-22 Borut Razem <borut.razem AT siol.net>
2081
2082         * device/lib/Makefile.in: replaced find option -or with -o
2083           to make it run on solaris
2084
2085 2005-08-22 Raphael Neider <rneider AT web.de>
2086
2087         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2088           fixes #1265442 (crash on Solaris)
2089
2090 2005-08-20 Borut Razem <borut.razem AT siol.net>
2091
2092         * configure, configure.in: added tests for libsocket and libnsl libraries,
2093           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2094           from support/regression/Makefile.in
2095         * support/regression/Makefile.in: added
2096         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2097         * sim/ucsim/libtool: regenerated on sparc-solaris
2098         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2099           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2100           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2101           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2102           sparc-solaris, which doesn't use GNU ld linker
2103         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2104         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2105
2106 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2107
2108         * src/mcs51/peeph.def: updated comments
2109
2110 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2111
2112         * device/lib/_gptrget.c,
2113         * device/lib/_gptrput.c: slightly shorter
2114         * doc/sdccman.lyx: incremented version
2115         * src/mcs51/peeph.def: moved peephole comments to the line of first
2116           change to better keep line correlation, reanimated 186.e
2117         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2118
2119 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2120
2121         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2122           David Saxton with quotes around file name.
2123
2124 2005-08-15 Borut Razem <borut.razem AT siol.net>
2125
2126         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2127           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2128           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2129           make tests run on x86_64 platform
2130
2131 2005-08-13 Raphael Neider <rneider AT web.de>
2132
2133         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2134           as it might be executed DURING a build (parallel make is wonderful)
2135
2136 2005-08-13 Raphael Neider <rneider AT web.de>
2137
2138         * device/lib/Makefile.in (port-specific-objects-pic16):
2139           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2140         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2141           dependency
2142         * device/lib/pic16/Makefile.rules: build subdirs before creating
2143           the library, removed builddir rule, create $(builddir) early in
2144           recurse rule, use empty recurse rule for leaf directories
2145         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2146           mkdir errors (race condition), removed duplicate suffix "hex"
2147           from clean rules
2148         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2149         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2150           prevents mkdir -p from aborting on Alpha
2151
2152 2005-08-12 Raphael Neider <rneider AT web.de>
2153
2154         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2155           db-statements in order to allow for arrays of pointers in code
2156           sections to be placed without interspersed 0-padding, fixes
2157           bug #1256215
2158         * (emitStatistics): fixed division by zero for pic18f1220
2159         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2160           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2161         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2162         * (pic16_pCodeConstString): keep track of already emitted string
2163           literals to prevent "duplicate definitions of symbol _str_NR"
2164         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2165           debug message
2166         * device/lib/Makefile.in: ignore failing PIC16 library builds
2167         * device/lib/pic16/Makefile: do not build if gputils are missing
2168         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2169
2170 2005-08-10 Raphael Neider <rneider AT web.de>
2171
2172         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2173           my last commit)
2174
2175 2005-08-10 Raphael Neider <rneider AT web.de>
2176
2177         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2178           Rokas' patch to add the new fixed point type "__fixed16x16"
2179         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2180           functions for __fixed16x16 arithmetics
2181         * device/lib/pic16: reimplemented the build system to support
2182           a separate build directory, better handling of libio (create
2183           the library in a separate subdir for each architecture) and
2184           easier configuration (centralized in Makefile.common)
2185
2186 2005-08-07 Raphael Neider <rneider AT web.de>
2187
2188         * src/pic16/gen.c (genrshTwo): fixed sign extension
2189         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2190         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2191           added T0CONbits
2192         * device/include/pic16/pic18f4220.h: NEW, header for
2193           pic18f4220 and pic18f4320
2194         * device/include/pic16/pic18fregs.h: added new devices,
2195           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2196         * device/include/pic16/signal.h: resolved name clashes
2197           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2198           to also allow testing for interrupt enable bits, added
2199           comments on how to use the macros
2200         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2201         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2202           register definitions for the devices
2203         * device/lib/pic16/pics.all: added new devices
2204         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2205           allocated memory
2206         * device/lib/pic16/libc/stdlib/memfree: do not count
2207           the block header as free memory
2208         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2209           simplified and added missing end-of-blocklist-marker
2210           (reported by Peter Onion, fixes #1252814)
2211         * (_mergeHeapBlock): fixed loop condition
2212         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2213           len==0, restructured code
2214         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2215           up a bit, reduced bitfield accesses, prevent endless loops
2216           in case of heap corruption
2217         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2218           "unreferenced arguments/must return a value" warnings
2219         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2220           replaced BAUDREG with SPBRG
2221         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2222           device/lib/pic16/debug/gstack/gstack.c: replaced
2223           _naked, _asm, _endasm with __naked, __asm, __endasm
2224
2225 2005-08-05 Raphael Neider <rneider AT web.de>
2226
2227         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2228           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2229
2230 2005-08-05 Borut Razem <borut.razem AT siol.net>
2231
2232         * device/lib/Makefile.in: added missing ';'
2233         * configure: removed ^M characters
2234
2235 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2236
2237         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2238           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2239           License
2240
2241 2005-08-04 Borut Razem <borut.razem AT siol.net>
2242
2243         * configure.in: pic16 libraries build 2nd try - enable running
2244           configure in device/lib/pic16
2245         * configure: regenerated from configure.in
2246         * device/lib/Makefile.in: create $(PORT)/bin directory
2247
2248 2005-08-03 Raphael Neider <rneider AT web.de>
2249
2250         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2251           to get/set values via pointers
2252         * (genUnpackBits,genPackBits): changed detection of
2253           ptr->bitfield vs. sym.bitfield, fixed access via generic
2254           pointers, removed dead (wrong) code for multibyte bitfields
2255         * (genNearPointerGet, genGenPointerGet): removed useless code,
2256           fixed bitfield detection, fixes #1250594
2257         * (genNearPointerSet): removed useless code
2258         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2259           and introduced macro pic16_emitpcode that conditionally emits
2260           the origin of the following pCode (useful for debugging SDCC)
2261         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2262         * (createDefmap): fixed handling of LFSR for --optimize-df
2263
2264 2005-08-02 Borut Razem <borut.razem AT siol.net>
2265
2266         * device/lib/Makefile.in: pic16 libraries build enabled since
2267           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2268
2269 2005-08-02 Raphael Neider <rneider AT web.de>
2270
2271         * src/pic16/gen.c (genPackBits): removed deprecated warning
2272         * (genGenPointerSet): fixed bitfield detection
2273
2274 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2275
2276         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2277
2278 2005-07-31 Raphael Neider <rneider AT web.de>
2279
2280         * device/lib/pic16/libdev/pic18f458.c,
2281           device/include/pic16/pic18f458.h: added missing T0CONbits
2282
2283 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2284
2285         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2286
2287 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2288
2289         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2290
2291 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2292
2293         * device/include/mcs51/at89c51ed2.h: added.
2294
2295 2005-07-23 Raphael Neider <rneider AT web.de>
2296
2297         * src/pic/gen.h: added emitpcode macro for debugging
2298         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2299           and replace by macro adding debug information on demand
2300         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2301         * (gencjne): tried to fix; replaced with correct (slower) code
2302         * (gen{Unp,P}ackBits): fixed single bit access
2303         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2304         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2305           previous instruction
2306         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2307           register has to be handled with care (forbidding movement
2308           of assignments/uses, removing assignments completely, ...)
2309         * (pCodeOptime2pCodes): make use of regIsSpecial
2310         * added lots of debugging output (commented out)
2311         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2312           from being reused as result UNLESS it is known to work
2313
2314 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2315
2316         * support/Util/dbuf.h: include <stddef.h> for size_t
2317         * .version: changed to version 2.5.2
2318
2319 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2320
2321         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2322
2323 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2324
2325         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2326           (genModOneByte): removed needless psha/pula
2327
2328 2005-07-22 Raphael Neider <rneider AT web.de>
2329
2330         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2331           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2332         * src/pic/gen.c (resolveIfx): do not "invent" labels
2333         * (genSkipc): changed to positive logic
2334         * (genSkipCond): removed as no longer needed
2335         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2336           backport from PIC16
2337         * (genLeftShift): check operands are in different registers
2338         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2339           INCF does not update CARRY...
2340         * src/pic/main.c: fixed _linkCmd
2341         * src/pic/pcode.c (unlinkpCode): added inactive code
2342         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2343           alive (do not assign result and operand overlapping registers)
2344
2345 2005-07-22 Raphael Neider <rneider AT web.de>
2346
2347         * src/pic/device.c (dump_sfr): replaced register declaration with
2348           call to emitSymbolToFile() to avoid duplicate symbols
2349         * (assignRelocatableRegisters): do not declare external symbols
2350         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2351           right (take size of type, not etype)
2352         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2353         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2354         * (packRegsForAccUse): disabled assignment of WREG as
2355           the result reg to prevent occurence of just fixed #1235003,
2356           fixes #1242954
2357         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2358           symbols (avoids duplicate symbols in .asm file)
2359         * (pic14emitRegularMap): use emitSymbolToFile()
2360         * src/pic/gen.c (aopOp): fixed spillLocation handling
2361         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2362         * (genDataPointerSet): removed unneccessary variables/output
2363
2364 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2365
2366         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2367         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2368
2369 2005-07-21 Raphael Neider <rneider AT web.de>
2370
2371         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2372           architecture cannot handle them efficiently, fixes bug #1235003
2373         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2374           check for empty sets before using them (fixes bug #1232190)
2375
2376 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2377
2378         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2379           (lnksect2): generate warnings for memory overlap
2380         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2381           constseg to set the name of these segments so you can instruct the linker
2382           to place them in banks
2383         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2384         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2385           added code_seg and const_seg to options
2386         * src/SDCCglue.c (emitMaps): use options.const_seg,
2387           (createInterruptVect): put interrupt vectors in segment HOME,
2388           (glue): put HOME before static segment and put the main glue in HOME,
2389           (glue): use options.code_seg
2390         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2391         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2392           these segments so you can instruct the linker to place them in banks
2393           (linkEdit): use code_loc for HOME segment which should be the first
2394           segment in code memory now
2395         * src/SDCCmem.c: fixed more stuff like bug 1238386
2396         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2397           (changePointer): don't change function pointers to code pointers for
2398           banked functions,
2399           (compareType): added exceptional check for banked function pointers
2400         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2401         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2402           after static in code memory
2403         * src/mcs51/gen.c: added aopLiteralLong prototype,
2404           (aopForSym): use getSize for functions,
2405           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2406           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2407           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2408           the segment,
2409           (genPcall): use call for literal function pointers and generate banked
2410           calls over the one trampoline so there's only one place for the user to
2411           modify according to his/hers hardware,
2412           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2413           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2414         * src/mcs51/main.c: added keyword banked,
2415           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2416         * support/Util/SDCCerr.c,
2417         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2418           needed for passing the bank and address to the trampoline
2419         * device/lib/mcs51/crtbank.asm: added for bankswitching
2420         * device/lib/mcs51/Makefile: added crtbank
2421
2422 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2423
2424         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2425           for fields at offset 0 of a struct or union as reported
2426           on 2005-07-07 in the developer mailing list.
2427
2428 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2429
2430         * src/SDCCmem.c: fixed bug 1238386
2431
2432 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2433
2434         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2435           (patch #1144962), added peephole 300, enabled 259.x
2436         * doc/sdccman.lyx: removed screenshot and provided link instead
2437
2438 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2439
2440         * doc/sdccman.lyx: added section about debugging with ddd
2441         * doc/figures/ddd_example.eps: screenshot of debugging session
2442
2443 2005-07-04 Raphael Neider <rneider AT web.de>
2444
2445         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2446           like CODE pointers, fixes #1115683
2447         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2448           call, fixes bugs #1232211, #1228110,
2449           fixed wrong casts to pCodeFlow from pCodeInstructions
2450
2451 2005-07-04 Raphael Neider <rneider AT web.de>
2452
2453         * src/pic/gen.c (popGet): changed assert to allow for
2454           bit operands
2455         * (popGetAddr): changed signature to provide
2456           an additional index, patched all call sites
2457         * (genCmpEq): handle literal-like operands correctly
2458         * (genAddrOf): added sanity checks on __code/__data pointers
2459         * (genAssign): added handling of symbols from __code section
2460         * (gencjne): do not generate code for comparisons whose result
2461           is neither stored nor used, fixes bug #1171114
2462         * (AccLsh, AccRsh): operate on operand instead of WREG
2463         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2464           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2465           by known count
2466         * rewrote complete shift-by-literal logic, commented unused
2467           functions out
2468         * (genConstPointerGet): get multiple bytes (if result size > 1),
2469           fixed handling of non-immediate addresses
2470         * (genPointerGet): handle CODE pointers like CONST pointers
2471         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2472         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2473           operand is to be treated as a literal or not
2474         * (mov2w,genPcall,genCmpEq),
2475           src/pic/genarith.c: use aop_isLitLike() to decide between
2476           literal/register contents
2477         * (addSign): added missing offset
2478         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2479           only emit comment in debug-mode,
2480           use {aop,op}_isLitLike throughout the file
2481         * src/pic/glue.c: fix initializers for pointers (work in progress)
2482         * src/pic/pcode.c (get_op): honor index on _const symbols
2483         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2484         * (dumppBlock): added pCode size estimation
2485         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2486           check for IS_SYMOP before OP_SYMBOL'ing
2487         * fixed indentation, compacted switch-statements
2488         * (allocReg): find free register and allocate it instead of
2489           allocating new registers all the time
2490         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2491           registers as its operands (necessary only for multibyte GETs)
2492
2493 2005-07-01 Raphael Neider <rneider AT web.de>
2494
2495         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2496           debugging .asm-output macros FENTRY + FEXIT
2497         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2498           way... I wonder...
2499         * (emitpComment): NEW, printf to pCode
2500         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2501           offset handling
2502         * (popGetAddr): NEW, variant of popGet to access an immediates
2503           high(er) bytes instead of the n'th byte of memory they reference,
2504           replaced popGet with popGetAddr where neccessary
2505         * (genDataPointerGet): reactivated and fixed implementation
2506         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2507           accesses
2508         * (genDataPointerSet): fixed multibyte assignments
2509         * (genpic14Code): fixed --i-code-in-asm handling
2510         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2511         * (genPlus): fixed index-out-of-bounds error
2512         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2513         * src/pic/ralloc.c: added debugging output macro FENTRY2
2514         * (spillThis): fixed indentation, enbraced for-body for clarity
2515         * (rematStr): commented out as now unused
2516         * (regTypeNum): commented out special spill case (overwrites
2517           arbitrary values)
2518         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2519
2520 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2521
2522         * doc/sdccman.lyx: documented sfr16/sfr32,
2523           added example for using storage class with function pointers
2524         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2525
2526 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2527
2528         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2529         * device/lib/_itoa.c,
2530         * device/lib/_ltoa.c: optimized codesize
2531         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2532           but don't know how to suppress the double warning.
2533         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2534         * support/Util/SDCCerr.c,
2535         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2536
2537 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2538
2539         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2540           fixed old K&R prototypes
2541         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2542         * device/lib/_gptrget.c,
2543         * device/lib/_gptrgetc.c,
2544         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2545           also new versions for small generic pointers and banked generic pointers
2546         * src/port.h: added const_name
2547         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2548         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2549         * src/SDCCcse.c (findPrevIc): check all associative operators
2550         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2551         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2552         * src/SDCCmem.c: updated comments,
2553           set far-space to 0 for pdata, results in optimized code
2554         * src/SDCCmem.h: added macro CONST_NAME
2555         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2556           moving the info into the highest bits, see also gptrget/gptrput
2557         * src/src.dsp: added sdcc.ico to project files
2558         * src/avr/gen.c (genCast): fixed bug 0x%d
2559         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2560         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2561           relation between ptr_type and DCL_TYPE,
2562           (genCast): fixed bug 0x%d
2563         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2564           (CODE)" for const_name
2565         * src/hc08/gen.c (genCast): fixed bug 0x%d
2566         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2567           (hc08_port): added "CONST (CODE)" for const_name
2568         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2569           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2570           between ptr_type and DCL_TYPE,
2571           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2572           operand* and took AOP() inside function so sfr-ness can be checked,
2573           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2574           new prototype,
2575           (genFunction, genEndFunction): optimized stack setup,
2576           (genMinus): optimized for literals with ending zeroes (in bytes),
2577           (genCast): fixed bug 0x%d
2578         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2579           (mcs51_port): added "CONST (CODE)" for const_name
2580         * src/mcs51/peeph.def: made rule 226 more generic
2581         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2582         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2583         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2584         * src/z80/main.c (z80_port): added NULL for const_name,
2585           (gbz80_port): added NULL for const_name
2586         * support/regression/tests/bug663539.c,
2587         * support/regression/tests/sfr16.c: new tests
2588
2589 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2590
2591         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2592
2593 2005-06-24 Raphael Neider <rneider AT web.de>
2594
2595         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2596           corrected typos...
2597         * device/include/pic16/signal.h: added USBIF
2598           and SIG_USB
2599
2600 2005-06-24 Raphael Neider <rneider AT web.de>
2601
2602         * device/lib/pic16/libdev/pic18f2455.c,
2603           device/include/pic16/pic18f2455.h: NEW
2604         * device/include/pic16/pic18fregs.h,
2605           device/lib/pic16/pics.all,
2606           src/pic16/device.c: added 18f2455
2607         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2608           device/include/pic16/{pic18f[68][567].h,usart.h}:
2609           replaced MULTIPLE_USARTS define with more relaible
2610           compatibility sfrs (for USART access)
2611
2612 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2613
2614         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2615           and the output asm file line is printed on two lines.
2616
2617 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2618
2619         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2620           BGT, BLE, BHI, and BLS instructions
2621         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2622           genCmpEq): removed
2623         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2624           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2625           fixes bug #1216342
2626         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2627
2628 2005-06-15 Raphael Neider <rneider AT web.de>
2629
2630         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2631         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2632         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2633           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2634           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2635
2636 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2637
2638         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2639           Marcel Telka in bug #1215704
2640
2641 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2642
2643         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2644           located in shared memory bank.
2645
2646 2005-05-31 Raphael Neider <rneider AT web.de>
2647
2648         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2649           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2650           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2651
2652 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2653
2654         * device/lib/_strncpy.c: fixed the fix
2655
2656 2005-05-26 Raphael Neider <rneider AT web.de>
2657
2658         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2659           initializers with \0, bug #1208187
2660         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2661           intializers with \0, bug #1208187
2662
2663 2005-05-26 Raphael Neider <rneider AT web.de>
2664
2665         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2666           initializers with \0, bug #1208187
2667         * src/pic16/main.c (_process_pragma): added sanity checks
2668           for stack position and size, emit warnings when appropriate
2669
2670 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2671
2672         * device/lib/_strncpy.c: fixed not filling with \0
2673
2674 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2675
2676         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2677           createFunction),
2678         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2679           compound_statement),
2680         * src/SDCCsymt.h,
2681         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2682
2683 2005-05-24 Raphael Neider <rneider AT web.de>
2684
2685         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2686
2687 2005-05-24 Raphael Neider <rneider AT web.de>
2688
2689         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2690           TRISE definitions, closes bug #1162453
2691
2692 2005-05-22 Raphael Neider <rneider AT web.de>
2693
2694         * src/pic16/main.c (_process_pragma): check for missing
2695           arguments to pragmas code and udata
2696         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2697           consistency fixes to match other headers (thanks to Jim Paris)
2698         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2699
2700 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2701
2702         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2703
2704 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2705
2706         * support/regression/tests/bug1198642.c: new test
2707         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2708         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2709         * support/scripts/resource.h,
2710         * support/scripts/resource.rc,
2711         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2712         * support/scripts/sdcc.ico: added 32x32 icon
2713
2714 2005-05-18 Raphael Neider <rneider AT web.de>
2715
2716         * device/lib/pic16/libdev/pic18f*.c,
2717         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2718           keywords to "__sfr" and "__at (X)"
2719         * device/include/pic16/pic18fregs.h: added pic18f4520
2720         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2721           #1203088 (MPLAB compatibility)
2722
2723 2005-05-17 Raphael Neider <rneider AT web.de>
2724
2725         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2726         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2727         * device/lib/pic16/pics.all: added new devices
2728         * src/pic16/device.c: added support for pic18f4520
2729
2730 2005-05-16 Raphael Neider <rneider AT web.de>
2731         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2732         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2733         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2734           convenience function for bit access
2735
2736 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2737
2738         * device/lib/printf_large.c: fixed bug 1193299
2739         * support/regression/tests/bug1057979.c: added test %3.3s
2740
2741 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2742
2743         * device/include/mcs51/8051.h,
2744         * device/include/mcs51/8052.h: made parseable with lint
2745         * device/include/mcs51/lint.h: added include file for (sp)lint
2746         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2747         * doc/cdbfileformat.lyx,
2748         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2749
2750 2005-05-14 Raphael Neider <rneider AT web.de>
2751
2752         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2753         * device/lib/pic16/libc/stdlib/itoa.c (new)
2754         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2755         * device/lib/pic16/libio/Makefile: exclude subdir according to
2756           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2757         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2758         * src/pic16/gen.c (genFunction): prevent annoying warning
2759         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2760           nameclashes on BeOS
2761         * support/cpp2/cppmain.c (cpp_output_string): new
2762         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2763           fixes bug 1116802
2764
2765 2005-05-13 Borut Razem <borut.razem AT siol.net>
2766
2767         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2768
2769 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2770
2771         * .version: changed to version 2.5.1; back to bleeding edge development
2772
2773 2005-05-11 Borut Razem <borut.razem AT siol.net>
2774
2775         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2776           generate PDF version 1.3 documents
2777
2778 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2779
2780         * .version: changed to version 2.5.0
2781
2782 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2783
2784         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2785
2786 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2787
2788         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2789         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2790         well as many smaller updates.
2791         * .version: changed to version 2.5.0-pre1
2792
2793 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2794
2795         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2796
2797 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2798
2799         * support/regression/tests/bug1185672.c: added
2800         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2801           bug 1185672
2802         * src/mcs51/gen.c (genCall): added comments, made it look safer
2803         * src/mcs51/gen.c (genEndFunction): simplified
2804
2805 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2806
2807         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2808
2809 2005-04-14 Borut Razem <borut.razem AT siol.net>
2810
2811         * fixed bug 1045046 - SIGSEGV with really simple code?:
2812           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2813           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2814
2815 2005-04-14 Borut Razem <borut.razem AT siol.net>
2816
2817         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2818           src/pic16/device.h: temporarily disabled experimental #inline pragma
2819           for 2.5.0 release
2820
2821 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2822
2823         * device/include/z80/stdio.h,
2824         * device/include/z80/string.h: removed these highly incomplete files so
2825           SDCC can use the default ones in device/include/
2826
2827 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2828
2829         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2830         gcc warning.
2831         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2832         fix sdcpp warnings.
2833
2834 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2835
2836         * device/include/malloc.h: removed redundant __reentrant prototypes
2837         * device/lib/_mullong.c: added working xstack variant in asm (C version
2838           doesn't pass regression tests)
2839         * device/lib/bpx.c: used __data and made bpx char for mcs51
2840         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2841           (createFunction): fixed bug with xstackPtr
2842         * src/SDCCcse.c: corrected comments
2843         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2844           (killDeadCode, eBBlockFromiCode): removed unused code
2845         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2846           corrected comments
2847         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2848           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2849           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2850           (genModOneByte): fixed warning in MSVC
2851         * src/mcs51/main.c (): added comments
2852         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2853
2854 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2855
2856         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2857
2858 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2859
2860         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2861
2862 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2863
2864         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2865         characters arrays of larger size than the declared one.
2866
2867 2005-04-10 Borut Razem <borut.razem AT siol.net>
2868
2869         * src/pic/gen.c (genInline),
2870           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2871           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2872           (findNextInstruction), (findPrevInstruction),
2873           (findInstructionUsingLabel),
2874           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2875         * src/pic/pcode.c (findLabel): added missing '\n'
2876         * src/src.dsp: added SDCCdwarf2.c to the project
2877
2878 2005-04-09 Borut Razem <borut.razem AT siol.net>
2879
2880         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2881
2882 2005-04-08 Raphael Neider <rneider AT web.de>
2883
2884         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2885           into the chain after a given one) and mergeDefmapSymbols (combine
2886           defmap entries for each symbol per pcode)
2887         * (createDefmap): have defmap entries merged in the end
2888         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2889           a symbol before replacing one access type's symbol, merge symbols in
2890           the end (replacement symbol might already have an entry)
2891         * (assignValnums): keep reference to written WREG intact
2892
2893 2005-04-08 Raphael Neider <rneider AT web.de>
2894
2895         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2896           Alpha)
2897
2898 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2899
2900         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2901         bytes
2902
2903 2005-04-07 Raphael Neider <rneider AT web.de>
2904
2905         * device/include/pic16/usart.h: added compatibility defines for
2906           devices with more than one USART
2907         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2908
2909 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2910
2911         * device/lib/Makefile.in: updated for port specific include
2912
2913 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2914
2915         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2916
2917 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2918
2919         * device/include/8051.h,
2920         * device/include/8052.h,
2921         * device/include/at89S8252.h,
2922         * device/include/at89c55.h,
2923         * device/include/at89x051.h,
2924         * device/include/at89x51.h,
2925         * device/include/at89x52.h,
2926         * device/include/mcs51reg.h,
2927         * device/include/reg51.h,
2928         * device/include/reg764.h,
2929         * device/include/regc515c.h,
2930         * device/include/sab80515.h: (re)moved these 12 files
2931         * device/include/mcs51/8051.h,
2932         * device/include/mcs51/8052.h,
2933         * device/include/mcs51/at89S8252.h,
2934         * device/include/mcs51/at89c55.h,
2935         * device/include/mcs51/at89x051.h,
2936         * device/include/mcs51/at89x51.h,
2937         * device/include/mcs51/at89x52.h,
2938         * device/include/mcs51/mcs51reg.h,
2939         * device/include/mcs51/reg51.h,
2940         * device/include/mcs51/reg764.h,
2941         * device/include/mcs51/regc515c.h,
2942         * device/include/mcs51/sab80515.h: and added them here
2943
2944 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2945
2946         * device/include/stdarg.h: changed SDCC specific keywords to double
2947           underlined form.
2948         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2949           mcs51 and ds390.
2950         * device/include/hc08/mc68hc908gp32.h,
2951         * device/include/hc08/mc68hc908jb8.h,
2952         * device/include/hc08/mc68hc908jkjl.h,
2953         * device/include/hc08/mc68hc908qy.h: fixed comments
2954         * device/include/mcs51/README: updated
2955         * device/include/mcs51/c8051f120.h: added PINRSF
2956         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2957         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2958           amidst code. Also inline is not supported.
2959
2960 2005-04-06 Raphael Neider <rneider AT web.de>
2961
2962         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2963         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2964           callers stack/frame pointers
2965
2966 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2967
2968         * device/include/pic16/usart.h: added, missing in previous commit,
2969         * device/include/pic16/adc.h: fixed typo,
2970         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2971         commit,
2972         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2973         <p18fxxx.inc>
2974         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2975         uninitialized because a bug appears with gplink
2976         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2977         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2978         complains for unrecognised option
2979
2980 2005-04-05 Raphael Neider <rneider AT web.de>
2981
2982         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
2983           structs as well (using memcpy)
2984         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
2985           on ISRs (GOTO has no label)
2986         * src/pic16/device.h: added OF_OPTIMIZE_DF
2987         * src/pic16/main.c: added compiler switch --optimize-df to enable the
2988           new data flow analysis/optimization
2989         * src/pic16/pcode.c: added (prototypes for and implementation of)
2990           dataflow analysis functions, fixed pCodeInstructions' inCond and
2991           outCond values, made RCALL a branch instruction
2992         * (pic16_unlinkpCode): keep C line if possible
2993         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
2994           C line moved if possible
2995         * (pic16_getRegFrompCodeOp): NEW, improved version of...
2996         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
2997           to use new pic16_getRegFrompCodeOp (works for more SFRs)
2998         * (pic16_BuildFlow): fixed skip instructions with label (did not start
2999           new flow)
3000         * (pic16_getJumptabpCode): NEW, needed in...
3001         * (LinkFlow): fixed handling of jumptables, calls and conditional
3002           branches
3003         * (pic16_InsertCommentAfter): NEW
3004         * (pic16_pCodeReplace): made verbose and flow preserving
3005         * (AnalyzeFlow): added call to data flow analysis
3006         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3007         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3008         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3009
3010 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3011
3012         * src/SDCCast.c (decorateType): fixed bug #1105626
3013
3014 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3015
3016         * device/include/asm/pic16/features.h,
3017         * pic18f*.h headers,
3018         * device/include/pic16/adc.h,
3019         * device/include/pic16/delay.h,
3020         * device/include/pic16/i2c.h,
3021         * device/include/pic16/malloc.h,
3022         * device/include/pic16/stdio.h,
3023         * device/include/pic16/stdlib.h,
3024         * device/include/pic16/string.h,
3025         * device/lib/pic16/libc/stdio/printf_tiny.c,
3026         * device/lib/pic16/libc/stdio/printf_small.c,
3027         * device/lib/pic16/libc/stdio/strmgpsim.c,
3028         * device/lib/pic16/libc/stdio/strmmssp.c,
3029         * device/lib/pic16/libc/stdio/strmusart.c,
3030         * device/lib/pic16/libc/stdio/vfprintf.c,
3031         * device/lib/pic16/libc/stdlib/ltoa.c,
3032         * device/lib/pic16/libc/stdlib/putchar.c,
3033         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3034         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3035         * device/lib/pic16/libc/stdlib/memchrram.c,
3036         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3037         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3038         * device/lib/pic16/libio/adc/adcbusy.c,
3039         * device/lib/pic16/libio/adc/adcread.c,
3040         * device/lib/pic16/libio/adc/adcsetch.c,
3041         * device/lib/pic16/libio/usart/ubaud.c,
3042         * device/lib/pic16/libio/usart/ubusy.c,
3043         * device/lib/pic16/libio/usart/udrdy.c,
3044         * device/lib/pic16/libio/usart/uopen.c,
3045         * device/lib/pic16/libio/usart/uputc.c,
3046         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3047         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3048         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3049         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3050         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3051         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3052         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3053         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3054         specific keywords to double underlined form,
3055         * device/lib/pic16/libc/Makefile.rules,
3056         * device/lib/pic16/libsdcc/Makefile.rules,
3057         * device/lib/pic16/libm/Makefile,
3058         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3059         to compile with C standard set in Makefile.common
3060         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3061         rand.c and crc.c in compilation process,
3062         * device/lib/pic16/libsdcc/int/divuint.c,
3063         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3064         `c' from signed to unsigned,
3065         * device/lib/pic16/startup/crt0.c,
3066         * device/lib/pic16/startup/crt0i.c,
3067         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3068         keywords to double underlined form, bug fixes in _do_cinit function
3069         which prevented the correct initialization of the .idata segment,
3070         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3071         core to enter a infinite loop
3072         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3073
3074 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3075
3076         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3077
3078 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3079
3080         * device/include/Makefile.in: add support for hc08 subdirectory
3081         * device/include/hc08/: new subdirectory
3082         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3083         Lucas Loizaga, thanks!
3084         * device/include/hc08/mc68hc908qy.h,
3085         * device/include/hc08/mc68hc908gp32.h,
3086         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3087         their own directory. Changed internal macro names to use the compiler
3088         reserved namespace. Changed SDCC specific keywords to double
3089         underlined form.
3090         * device/include/math.h,
3091         * device/include/malloc.h,
3092         * device/include/stdarg.h,
3093         * device/include/stdbool.h
3094         * device/include/string.h,
3095         * device/include/tinibios.h,
3096         * device/include/ds400rom.h,
3097         * device/include/8051.h,
3098         * device/include/8052.h,
3099         * device/include/80c51xa.h,
3100         * device/include/at89c55.h,
3101         * device/include/at89S8252.h,
3102         * device/include/at89x51.h,
3103         * device/include/at89x52.h,
3104         * device/include/ds80c390.h,
3105         * device/include/reg764.h,
3106         * device/include/regc515c.h,
3107         * device/include/sab80515.h,
3108         * device/include/mcs51/c8051f000.h,
3109         * device/include/mcs51/c8051f018.h,
3110         * device/include/mcs51/c8051f020.h,
3111         * device/include/mcs51/c8051f040.h,
3112         * device/include/mcs51/c8051f060.h,
3113         * device/include/mcs51/c8051f120.h,
3114         * device/include/mcs51/c8051f300.h,
3115         * device/include/mcs51/c8051f310.h,
3116         * device/include/mcs51/c8051f320.h,
3117         * device/include/mcs51/c8051f330.h,
3118         * device/include/mcs51/c8051f350.h,
3119         * device/include/z180.h: Changed SDCC specific keywords to double
3120         underlined form.
3121
3122 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3123
3124         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3125         18F4455,
3126         * (pic16_assignConfigWordValue): disable testing of configuration
3127         register value with config mask,
3128         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3129         function with port->fun_prefix,
3130         * (genFunction): when generating a naked interrupt function never
3131         create an absolute segment placed in interrupt vector address, place
3132         the actual interrupt function at IVA instead, when an interrupt
3133         function is generated with unspecified interrupt then do not create
3134         the absolute section,
3135         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3136         code for generating a call to generic pointer get/put function with
3137         a call to function pic16_callGenericPointer(),
3138         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3139         the call to the generic pointer get/put functions with prefixing the
3140         function name with port->fun_prefix,
3141         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3142         * src/pic16/main.c (_process_pragma): prefix function with
3143         port->fun_prefix,
3144         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3145         calling assembler, old 18Fxxxx macro is deprecated,
3146         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3147         PC_ASMDIR in while condition,
3148         * (findInstruction): add PC_ASMDIR in while condition,
3149         * (buildCallTree): prefix main with port->fun_prefix,
3150         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3151         identifier for variable with banked access in instructions BTFSS,
3152         BTFSC, BCF, BSF, BTG
3153         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3154         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3155         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3156         perform optimization when enviroment variable NO_REG_OPT is set,
3157         * (insideLRBlock): NEW, return 1 if register is inside an
3158         INF_LOCALREGS block,
3159         * (RemoveRegFromLRBlock): remove a register that is completely
3160         eliminated by register optimization, but it is still left in local
3161         register store/restore in/from stack block,
3162         * (Remove2pcodes): after removing register, check to see if it
3163         should be removed from local register store/restore in/from stack
3164         block,
3165         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3166         DUMMY_READ_VOLATILE,
3167
3168         * device/include/pic16/adc.h: minor prototype modifications and
3169         update,
3170         * device/include/pic16/malloc.h: added GPL notice various
3171         modifications,
3172         * device/include/pic16/stdint.h: NEW, standard header for ints
3173         * device/include/pic16/delay.h: NEW, header for delay functions,
3174         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3175         delay1mtcy,
3176         * device/include/pic16/signal.h: NEW, header providing helper macros
3177         for implementing signal handlers,
3178         * device/include/pic16/stdio.h: added prototypes for functions,
3179         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3180         prototypes for stdin and stdout, added macro PUTCHAR to
3181         automatically implement putchar function prototype,
3182         * device/include/pic16/usart.h: modified and updated USART library,
3183         * device/lib/pic16/libio/adc/,
3184         * device/lib/pic16/libio/i2c: some modifications to improve library
3185         performance,
3186         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3187         family of functions,
3188         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3189         family of functions and other sources,
3190         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3191         of the PIC18Fxx[28] devices,
3192         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3193         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3194         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3195         _do_cinit function, because the previous failed when local variables
3196         where not placed in the same memory bank,
3197         * device/lib/pic16/libsdcc/char/: various modifications to improve
3198         library performance,
3199         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3200         information on the new functions of the c library and more...
3201
3202 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3203
3204         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3205
3206 2005-03-26 Raphael Neider <rneider AT web.de>
3207
3208         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3209           if condition == CARRY)
3210         * (genCmp): adapted to new genSkipc semantics
3211         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3212           on rIfx (genCmp was broken)
3213
3214 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3215
3216         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3217         * src/z80/main.c (_keywords[]),
3218         * src/SDCCglobal.h (struct options),
3219         * src/SDCC.y,
3220         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3221         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3222         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3223         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3224         always available in leading double underscore form. The C99 support is
3225         mostly missing, but it's a start.
3226         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3227         reserved identifier "__data".
3228
3229 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3230
3231         * src/mcs51/peeph.def: fixed bug 1170013
3232
3233 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3234
3235         * device/include/mcs51reg.h: fixed bug 842007
3236
3237 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3238
3239         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3240         last time.
3241
3242 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3243
3244         * src/port.h (struct PORT),
3245         * src/avr/ralloc.c (avr_assignRegisters),
3246         * src/avr/main.c,
3247         * src/ds390/ralloc.c (ds390_assignRegisters),
3248         * src/ds390/main.c,
3249         * src/hc08/ralloc.c (hc08_assignRegisters),
3250         * src/hc08/main.c,
3251         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3252         * src/mcs51/main.c,
3253         * src/pic/ralloc.c (pic14_assignRegisters),
3254         * src/pic/main.c,
3255         * src/pic16/ralloc.c (pic16_assignRegisters),
3256         * src/pic16/main.c,
3257         * src/xa51/ralloc.c (xa51_assignRegisters),
3258         * src/xa51/main.c,
3259         * src/z80/ralloc.c (z80_assignRegisters),
3260         * src/z80/ralloc.h,
3261         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3262         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3263         * src/SDCCcse.h,
3264         * src/SDCCdflow.c (computeDataFlow),
3265         * src/SDCCdflow.h,
3266         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3267         * src/SDCCloop.h,
3268         * src/SDCCcflow.c (*),
3269         * src/SDCCcflow.h,
3270         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3271         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3272         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3273         immedDom() returning wrong block; probably fixes bug #1160833)
3274
3275 2005-03-20 Borut Razem <borut.razem AT siol.net>
3276
3277         * support/scripts/inc2h.pl: WIN32 port
3278
3279 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3280
3281         * device/lib/makefile.in: added abs.c and labs.c
3282
3283 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3284
3285         * device/include/stdint.h: added
3286         * device/lib/abs.c: added
3287         * device/lib/labs.c: added
3288         * device/include/stdlib.h: added abs() and labs() prototypes
3289         * device/lib/libsdcc.lib: added abs and labs
3290         * device/include/float.h,
3291         * device/lib/_fsmul.c,
3292         * device/lib/printf_fast.c,
3293         * device/lib/printf_tiny.c: updated comments
3294
3295 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3296
3297         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3298         bug #1164313
3299
3300 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3301
3302         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3303         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3304
3305 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3306
3307         * device/lib/printf_large.c: removed inline assembly for portability and
3308           readability. Use printf_fast if speed or size are more important.
3309         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3310         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3311
3312 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3313
3314         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3315         prevent compiler warning
3316
3317 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3318
3319         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3320         moved to level 0 and declared as static. Also they are explicit
3321         placed in access bank. This was necessery because some times they
3322         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3323         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3324         optimizations. Currently only compare to unsigned char is implemented,
3325         * src/pic16/gen.c: added fReturnIdx array,
3326         * (struct resolvedIfx) is moved to gen.h and made public,
3327         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3328         * (aopForSym): added an optimization to directly store in stack of
3329         the operand of a SEND iCode,
3330         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3331         but as registers instead (AOP_REG) using the fReturnIdx array,
3332         * (pic16_freeAsmop): remove the freed register from the
3333         _G.sregsAlloc field,
3334         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3335         a compare of 'WREG',
3336         * (pic16_popGetTempRegCond): changed function prototype, now
3337         function takes also a bitVector argument v which holds the current
3338         set of registers that are allocated for stack access by aopForSym,
3339         registers allocated in aopForSym for accessing stack symbols are not
3340         any more part of the functions usedRegs field,
3341         * (genCall): some times aopOp is called for a stack variable to be
3342         send, aopForSym might perform the push, if this is true make sure
3343         that genCall doesn't push the variable twice by testing _G.resDirect,
3344         * (genFunction): changed testing for unspecified interrupt number
3345         from 256 to INTNO_UNSPEC,
3346         * modified selection scheme of frame pointer generation. Previously
3347         if function did use local registers a frame pointer was generated,
3348         now a frame pointer is generated only if function has arguments
3349         (that need PLUSW2 register access), or has stack arguments, or the
3350         compiler is not instructed to omit the frame pointer,
3351         * (genEndFunction): before restoring local registers that were saved
3352         in the function preamble, also restore the registers that *might*
3353         have been allocated for stack access,
3354         * (genRet): removed some old comments,
3355         * (genCmp, the active (RN's) version): added a call to the
3356         pic16_genCmp_special function to perform the compare with a more
3357         robust and optimized way,
3358         * (genInline): a feature has been added in inline code generation,
3359         which allows a wildcard variable substitution when writing inline
3360         assembly. Code is incomplete and experimental therefore undocumented,
3361         * (genCast): changed order of aopOp for result and right to allow
3362         aopForSym to directly load the result if possible,
3363         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3364         perform an optimized compare on some selected special occasions,
3365         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3366         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3367         generate an IVT any more,
3368         * src/pic16/main.c (pic16_optionsTable): added command line option
3369         --optimize-cmp,
3370         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3371         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3372         macros,
3373         * src/pic16/NOTES: Raphael Neider added in list of active developers
3374         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3375         jumptable_end to prevent bug #,
3376         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3377         inCond and outCond fields,
3378         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3379         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3380         turn off register spilling,
3381         * (packRegsForOneUse): synced with other ports' versions although it
3382         is not used currently,
3383         * (pic16_packRegisters): added an optimization while reading
3384         structure bitfields, some registers may be saved (malloc code is
3385         decreased by 80 bytes)
3386
3387 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3388
3389         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3390         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3391         this can be optimized more?
3392
3393 2005-03-10 Raphael Neider <rneider AT web.de>
3394
3395         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3396           genNearPointerGet): (hopefully) fixed access to bitfields via
3397           pointers (p->bitN = x; and x = p->bitN; failed)
3398
3399 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3400
3401         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3402
3403 2005-03-09 Raphael Neider <rneider AT web.de>
3404
3405         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3406
3407 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3408
3409         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3410         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3411           (regTypeNum): set REG_BIT type if necessary
3412         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3413         * support/regression/tests/critical.c: check bug 1144613
3414
3415 2005-03-02 Raphael Neider <rneider AT web.de>
3416
3417         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3418
3419 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3420
3421         * src/avr/ralloc.c (serialRegAssign),
3422         * src/ds390/ralloc.c (serialRegAssign),
3423         * src/hc08/ralloc.c (serialRegAssign),
3424         * src/mcs51/ralloc.c (serialRegAssign),
3425         * src/pic/ralloc.c (serialRegAssign),
3426         * src/pic16/ralloc.c (serialRegAssign),
3427         * src/xa51/ralloc.c (serialRegAssign),
3428         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3429
3430 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3431
3432         * src/SDCCast.c (decorateType): fixed bug 1124787
3433
3434 2005-02-20 Hubert Sack <sack AT digiplan.de>
3435         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3436
3437         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3438         patch #1121755
3439
3440 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3441
3442         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3443         to keep the correct label reference count when adding/removing references
3444         to labels. A peephole file using this is appended to patch #1144962.
3445
3446 2005-02-14 Raphael Neider <rneider AT web.de>
3447
3448         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3449         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3450         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3451           retrievals of result operand's value on assignment
3452
3453 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3454
3455         * device/include/pic16/string.h: modified prototype for memccpy()
3456         to memccpy(void *, void *, char, size_t)
3457         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3458         check whether to omit frame pointer or not,
3459         * (genInline): convert all occurences of "\n" to LF in inline
3460         assembler blocks, this helps formatting the inline text,
3461         * (pic16_loadFSR0): modified prototype,
3462         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3463         removed some 8051 legacy code,
3464         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3465         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3466         before allocating temporary registers in functions,
3467
3468 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3469
3470         * support/regression/tests/bitvars.c: corrected the "fix"
3471
3472 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3473
3474         * support/regression/tests/bitvars.c,
3475         * support/regression/tests/bitwise.c,
3476         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3477
3478 2005-02-10 Raphael Neider <rneider AT web.de>
3479
3480         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3481           different size for Alpha
3482         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3483
3484 2005-02-09 Raphael Neider <rneider AT web.de>
3485
3486         * src/SDCC.lex(doPragma) : save and restore warning options as well
3487           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3488         * have #pragma less_pedantic set the errorlevel to WARNING
3489           (fixes #1117001)
3490         * (cloneOptimize) : fixed wrong malloc's size
3491         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3492           facilitate correct handling of #pragma (save|restore)
3493
3494 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3495
3496         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3497
3498 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3499
3500         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3501
3502 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3503
3504         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3505
3506 2005-02-02 Raphael Neider <rneider AT web.de>
3507
3508         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3509         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3510         * (pic16_storeForReturn): fixed to allow returning function pointers
3511         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3512         * device/include/pic16/{stddef.h,stdbool.h}: added
3513
3514 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3515
3516         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3517
3518 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3519
3520         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3521         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3522          appeared to be required
3523
3524 2005-01-31 Borut Razem <borut.razem AT siol.net>
3525
3526         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3527           include/mcs51 and include/z80 directories to the package
3528
3529 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3530
3531         * src/hc08/gen.c (genFunction): fixed bug #1112752
3532
3533 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3534
3535         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3536
3537 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3538
3539         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3540
3541 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3542
3543         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3544
3545 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3546
3547         * device/include/c8051fxxx.h: removed these 6 files
3548         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3549
3550 2005-01-26 Raphael Neider <rneider AT web.de>
3551
3552         * src/pic16/gen.c (genAssign): fixed assignment from longs
3553           in codespace (were cut to three bytes)
3554         * (genDummyRead): implemented (except for CODESPACE...),
3555           fixed bug #1108575
3556         * src/pic16/glue.c (emitStatistics): beautified
3557         * device/lib/pic16/libm/Makefile: added include path
3558
3559 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3560
3561         * src/z80/gen.c (aopPut): fixed bug #1103902
3562
3563 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3564
3565         * device/lib/expf.c: fixed bug #1095792
3566
3567 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3568
3569         * device/lib/pic16/libm: added Math library sources
3570
3571 2005-01-24 Raphael Neider <rneider AT web.de>
3572
3573         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3574           to enable upcast to pCodeOpReg2 (there is no type tag to
3575           differenciate the two and pic16_popGet2p cast into PCOR2)
3576         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3577           (sizeof(sectNames) changed to sizeof(sectName))
3578           Both patches fix segfaults under MinGW.
3579
3580 2005-01-23 Raphael Neider <rneider AT web.de>
3581
3582         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3583           Safe_[mc]?alloc()'ed variables
3584         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3585           of (byte sized) temporaries (assign them to WREG for now)
3586         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3587           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3588           this might fix SIGSEGVs on MinGW...
3589         * src/SDCCopt.c (killDeadCode): restored original behaviour
3590           (volatile operands might get thrown away though)
3591
3592 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3593
3594         * src/pic16/gen.c: fixed bug #1106975,
3595         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3596         pointer update, INTCON is saved, global interrupts are disabled and
3597         restored after updateing TOS.
3598         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3599         * added function attribute 'shadowregs' to take advantage of shadow
3600         registers,
3601         * added function attribute 'wparam' as an alternative to the wparam
3602         pragma,
3603         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3604         user declares a non-ISR function as 'shadowregs',
3605         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3606
3607 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3608
3609         * .version: bumped version number to 2.4.8
3610         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3611         pic16 port,
3612         * device/lib/pic16/libio/i2c/: I2C module support library,
3613         * device/include/pic16/i2c.h: I2C support library header,
3614         * device/lib/pic16/libc/stdio/: standard IO support sources,
3615         * (printf_small.c): printf_small() source, supports float print,
3616         * (printf_tiny.c): printf_tiny() source, does not support floats,
3617         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3618         enable global optimizations for entire library source, other
3619         Makefiles in the source tree are also modified to reflect this,
3620         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3621         function,
3622         * doc/sdccman.lyx: updated to reflect new changes,
3623         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3624         sym->onStack if-case,
3625         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3626         sbit, idata, _idata, xdata, _xdata,
3627         * added pragma library, to link an external library, (see doc),
3628         * removed command line options, --pomit-config-words, --pomit-ivt,
3629         --pleave-reset-vector,
3630         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3631         when calling assembler to reflect memory model used, also define
3632         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3633         reflect stack model used,
3634         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3635         on stack return NULL,
3636
3637 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3638
3639         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3640           of the operands is volatile. Fixes #1020220
3641
3642 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3643
3644         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3645         * (OptimizeRegUsage): make sure that there is really no other flow where
3646           the first pCode is used
3647
3648 2005-01-22 Raphael Neider <rneider AT web.de>
3649
3650         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3651           to fix #1106967 (pCode->seq are not set up correctly)
3652
3653 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3654
3655         * src/SDCCglue.c (glue): make sure code area is declared before the
3656         static initialization area.
3657
3658 2005-01-21 Raphael Neider <rneider AT web.de>
3659
3660         * device/lib/Makefile.in: fixed test for pic16 install dir
3661         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3662           optimizations
3663         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3664           added --optimize-goto compiler switch and pragma wparam documentation
3665         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3666         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3667           and PRODH closing bug #1071770 (peephole optimizer)
3668
3669 2005-01-19 Raphael Neider <rneider AT web.de>
3670
3671         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3672           cmdLine buffers (used when calling sdcpp...) are large enough
3673           (MAX_PATH=256 truncates arguments leading to system halts when
3674           used in MinGW...)
3675         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3676         * (genUminus): rewritten to for efficiency
3677         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3678           used uninitialized in some cases)
3679         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3680           copy the third byte from the int -- now assumes 0x80 (data memory)
3681         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3682           operands (genAddLit expects the iCode's operands to swapped as
3683           well), fixed leftover bytes (crashed for short left operands)
3684         * (pic16_genMinusDec): performance improvements, removed false
3685           PIC14 emitSKPNCs
3686         * (pic16_genMinus): fixed to cope with differently sized operands
3687         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3688           for --obanksel > 1
3689         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3690         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3691           new banksel optimization
3692         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3693           analysis for temporary registers (segfaults...)
3694         * src/pic16/peeph.def: added rule
3695
3696 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3697
3698         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3699         which converts a float number to its ASCII representation
3700         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3701         functions to convert the fractional and integer part of a float to ASCII,
3702         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3703         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3704         ram
3705         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3706         _STATMEM macros,
3707         * device/include/pic16/adc.h: added GPL info,
3708         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3709         a pCodeOp as tested operand,
3710         * (genNearPointerGet): optimized bit testing, does not use
3711         intermediate register for bit value, test directly instead with
3712         BTFSS, BTFSC, works only for single bits,
3713         * (genpic16Code): dump the name of the iCode in the asm,
3714         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3715         renamed to pic16_decodeOp,
3716         * (serialRegAssign): do not allocate a temporary register for iCode
3717         sequences that test a single bit for 1/0
3718
3719 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3720
3721         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3722         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3723         access stack and frame pointers. They are initially assigned to
3724         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3725         accessing SFRs. Updated all occurences of modification of stack or
3726         frame pointer in gen.c and pcode.c,
3727         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3728         assigning of a literal value to pointers,
3729         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3730         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3731         selected
3732
3733 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3734
3735         * doc/sdccman.lyx: update documentation about stack pragma, added
3736         some info for stack memory models
3737
3738 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3739
3740         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3741
3742 2005-01-08 Raphael Neider <rneider AT web.de>
3743
3744         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3745           udata sections to fix bug #1097823
3746
3747 2005-01-05 Raphael Neider <rneider AT web.de>
3748
3749         * src/pic16/gen.c (genGenericShift): added handling of differently
3750           sized left operand and result
3751
3752 2005-01-04 Raphael Neider <rneider AT web.de>
3753
3754         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3755         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3756           to hold the condition bit)
3757         * added new version of genCmp (old code available via #define)
3758         * added new version of genShiftLeft/genShiftRight in a generic
3759           way, now supports shifting by negative values
3760         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3761           shiftCount (expected by genGenericShift)
3762         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3763         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3764           dump
3765         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3766           is an invalid literal too...)
3767
3768 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3769
3770         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3771         from Raphael Neider,
3772         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3773         for 8-bit literals. This fixes some literal operands which are sign
3774         extended to 16-bits ints when instruction needs only 8-bits.
3775
3776 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3777
3778         * device/lib/logf.c: added mcs51 assembly version
3779         * device/lib/expf.c: added mcs51 assembly version
3780         * device/lib/_logexpf.c: new shared asm code for expf and logf
3781         * device/include/math.h: add defines for assembly math library
3782         * device/lib/Makefile.in: build new _logexpf.c
3783         * device/lib/libfloat.lib: use new _logexpf.c
3784
3785 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3786
3787         * src/pic/device.c
3788         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3789           device types which have less than 0x7f registers.
3790
3791 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3792
3793         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3794
3795 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3796
3797         * device/lib/printf_fast.c: only build on supported arch.
3798         * device/lib/printf_tiny.c: only build on supported arch.
3799         * device/lib/printf_fast_f.c: only build if asm float lib
3800         * device/lib/_fsget1arg.c: only build if asm float lib
3801         * device/lib/_fsget2args.c: only build if asm float lib
3802         * device/lib/_fsnormalize.c: only build if asm float lib
3803         * device/lib/_fsreturnval.c: only build if asm float lib
3804         * device/lib/_fsrshift.c: only build if asm float lib
3805         * device/lib/_fsswapargs.c: only build if asm float lib
3806         * device/include/stdio.h: don't provide print_fast,
3807           print_fast_f, print_tiny prototypes if --xstack used
3808
3809 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3810
3811         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3812         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3813           to the SOURCES
3814
3815 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3816
3817         * device/lib/printf_fast_f.c: same as printf_fast, but
3818           with floating point enabled
3819         * device/lib/printf_fast.c: minor tweaks
3820         * device/include/stdio.h: add printf_fast_f
3821
3822 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3823
3824         * src/SDCCmain.c: make --float-reent default for mcs51
3825         * device/lib/_fsadd.c: added mcs51 assembly version
3826         * device/lib/_fssub.c: added mcs51 assembly version
3827         * device/lib/_fsmul.c: added mcs51 assembly version
3828         * device/lib/_fsdiv.c: added mcs51 assembly version
3829         * device/lib/_fseq.c: added mcs51 assembly version
3830         * device/lib/_fsneq.c: added mcs51 assembly version
3831         * device/lib/_fsgt.c: added mcs51 assembly version
3832         * device/lib/_fslt.c: added mcs51 assembly version
3833         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3834         * device/lib/Makefile.in: add _fscmp to build
3835         * device/lib/libfloat.lib: add _fscmp to build
3836
3837 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3838
3839         * device/lib/_fs2slong.c: added mcs51 assembly version
3840         * device/lib/_fs2sint.c: added mcs51 assembly version
3841         * device/lib/_fs2schar.c: added mcs51 assembly version
3842         * device/lib/_fs2ulong.c: added mcs51 assembly version
3843         * device/lib/_fs2uint.c: added mcs51 assembly version
3844         * device/lib/_fs2uchar.c: added mcs51 assembly version
3845         * device/lib/_slong2fs.c: added mcs51 assembly version
3846         * device/lib/_sint2fs.c: added mcs51 assembly version
3847         * device/lib/_schar2fs.c: added mcs51 assembly version
3848         * device/lib/_ulong2fs.c: added mcs51 assembly version
3849         * device/lib/_uint2fs.c: added mcs51 assembly version
3850         * device/lib/_uchar2fs.c: added mcs51 assembly version
3851         * device/include/float.h: added #define to select asm vs c
3852
3853 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3854
3855         * device/lib/printf_fast.c: improvements to float output
3856         * device/include/float.h: add defines for assembly float library
3857         * device/lib/_fsget1arg.c: receive 1 float arg
3858         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3859         * device/lib/_fsnormalize.c: normalize a float
3860         * device/lib/_fsreturnval.c: return float, various helper routines
3861         * device/lib/_fsrshift.c: right shift a float's mantissa
3862         * device/lib/_fsswapargs.c: swap 2 floats
3863         * device/lib/Makefile.in: build these 6 new files for mcs51
3864         * device/lib/libfloat.lib: add these 6 files to the library
3865
3866 2004-12-26 Borut Razem <borut.razem AT siol.net>
3867
3868         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3869           built by gcc 3.4.2
3870
3871 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3872
3873         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3874           and fully reentrant and register bank neutral.
3875         * device/lib/printf_fast.c: added float (not enabled by default),
3876           added compact/slower integer (also not enabled by default),
3877           improved size/speed of fast integer code, other minor changes
3878         * device/include/stdio.h, device/lib/Makefile.in,
3879           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3880
3881 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3882
3883         * src/pic16/pcode.c: declaring variables other than at the start of a
3884           block is not supported in C by VC6.
3885
3886 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3887
3888         * applied a previous patch from Raphael Neider that wasn't included
3889         in the previous commits, which fixes infinite loops within jumptable
3890         improvements,
3891         * made some fixes that previous patches introduced
3892
3893 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3894
3895         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3896         that fixes an issue with AOP_PCODE asmop's offset,
3897         * (pic16_popCopyReg): update instance field too,
3898         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3899         function of pic port,
3900         * (genCmp, genAnd, genAssign),
3901         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3902
3903 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3904
3905         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3906         variables initial values to idata section,
3907         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3908         variables in some functions. This utilizes parmBytes field of iCode
3909         structure to hold the offset of the variable in stack. (might be
3910         able to use the stack field too?)
3911         * applied patch from Raphael Neider # ### , # ###
3912         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3913         variable initial values in idata section,
3914         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3915         for static variables with initial value
3916         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3917         applied fix in while loop from Raphael Neider.
3918
3919 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3920
3921         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3922         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3923         * src/ds390/ralloc.c (serialRegAssign): spill bits
3924         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3925         * support/Util/SDCCerr.c,
3926         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3927         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3928         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3929
3930 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3931
3932         * device/include/sdcc-lib.h: inserted LGPL, added includes
3933           asm/ds390/features.h and asm/mcs51/features.h
3934         * device/include/asm/default/features.h,
3935         * device/include/asm/gbz80/features.h,
3936         * device/include/asm/z80/features.h: added empty _AUTOMEM
3937           and _STATMEM
3938         * device/include/asm/ds390/features.h,
3939         * device/include/asm/mcs51/features.h: added files with defines for
3940           _AUTOMEM and _STATMEM indicating automatic and static storage class
3941         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3942         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3943         * src/SDCCicode.c (geniCodeCast),
3944         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3945         * src/SDCCloop.c (loopInduction): removed unused variable lr
3946         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3947           to convertToFcall to include char modulo (RFE 1065037), added check
3948           if left operand is unsigned and use abs of literal value
3949         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3950           as it doesn't work after conversion from peephole.def to peephole.rul
3951         * src/mcs51/gen.c (toBoolean): added check for size,
3952           (genModOneByte): optimized code for signed char modulo a literal
3953           power of 2 (thanks to Hubert Sack),
3954           (genRRC): removed unnecessary "clr c",
3955           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3956         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3957           jump optimization,
3958           swapped rules 256.c and 256.d,
3959           extended 256.d by using new multiple checks (thanks Erik),
3960           added rules 256.e and 256.f,
3961           updated rule 261.a and 261.b to new generated code
3962         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3963
3964 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3965
3966         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3967           induction related bugs, including first part of bug #1074377
3968
3969 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3970
3971         * applied patch from bug-report #1076292,
3972         * applied patches for genAnd and Goto-optimizations for Raphael
3973         Neider,
3974         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3975         dump a less iCode information,
3976         * src/pic16/device.h (pic16_options_t): added field debgen,
3977         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3978         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3979         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3980         puclic,
3981         * (various functions): added macros FENTRY and FENTRY2 to functions,
3982         to emit function prologue,
3983         * (various functions): fixed indentation,
3984         * (genNearPointerGet): fixed loading of FSR0,
3985         * (genPackBits): applied patch from Raphael Neider to fix updating
3986         of FSR0 and touching only the modified bits,
3987         * src/pic16/genarith.c (various functions): added macros FENTRY to
3988         emit function prologue in comments,
3989         * src/pic16/pcode.h: added functions debugf2, debugf3,
3990         * src/pic16/ralloc.c: partial fix for packForPush caused
3991         segmentation fault,
3992
3993 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3994
3995         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
3996           <stsp AT users.sourceforge.net> with reversed byte order
3997         * support/regression/tests/rotate.c: added (ds390 skips some tests)
3998
3999 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4000
4001         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4002           bug #1074377
4003         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4004         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4005
4006 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4007
4008         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4009
4010 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4011
4012         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4013           conditions,
4014           (setFromConditionArgs): friendly operand parser for peephole rules,
4015           (operandBaseName, operandsNotRelated): new peephole condition
4016           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4017           architecture specific register naming into account, handles n-way
4018           comparisons, and supports quoted literals
4019         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4020
4021 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4022
4023         * src/mcs51/peeph.def: fixed bug #1076940
4024
4025 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4026
4027         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4028
4029 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4030
4031         Adding support for replacing ljmps with sjmps in jumptables
4032         generated for switch statements. For now you need to set the
4033         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4034         Now 4 algorithms for mcs51 jumptable generation are used:
4035         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4036         addresses loaded pc-relative for up to 112 cases and stack-pushing
4037         target addresses loaded with offset from dptr for up to 256 cases.
4038
4039         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4040         * src/mcs51/main.c: adapted constants for switch table generation
4041         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4042
4043 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4044
4045         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4046         * support/regression/tests/bug1057979.c: added test for bug 1073386
4047
4048 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4049
4050         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4051         compilers
4052
4053 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4054
4055         * src/pic16/device.h,
4056         * src/pic16/genarith.c,
4057         * src/pic16/glue.c,
4058         * src/pic16/main.c,
4059         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4060
4061 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4062
4063         Large cummulative patch for pic16 port.
4064         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4065         to call when a stack overflow occurs,
4066         * (malloc.h): added CVS Id tag,
4067         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4068         variable,
4069         * added libc directory. The current version of LibC contains string
4070         functions, ctype functions and macros and some functions of the
4071         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4072         be extensively tested in the future. Standard disclaimer here.
4073         Library is not automatically build yet. But one can build it by
4074         invoking 'make' inside the libc directory.
4075         * added ADC library under libio. Preliminary version yet.
4076
4077         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4078         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4079         aopForRemat() now and not by pic16_aopOp(),
4080         * (pic16_popGetTempReg): removed warning messgae when allocating
4081         temporary registers, its a buggy feature and will be removed,
4082         * (pic16_popGet): set register instance field in AOP_CRY,
4083         * (pic16_outBitC): fixed for results in size greater than 1,
4084         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4085         * (pic16_storeForReturn): optimized return of 0,
4086         * (genCmp): experimental code for new genCmp which uses PIC18's
4087         special compare&skip instructions. Initial tests fail some times
4088         with variables grater than 1 byte in size, so new code is disabled,
4089         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4090         a single bit,
4091         * (genCast): began a fix to optimize the casting of a bit to another
4092         bit, now assigning a bitfield to another bitfield will fail, sorry,
4093         * src/pic16/main.c: disabled the use of lr-support feature,
4094         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4095         * added some function prototypes, added function _debugf prototype,
4096         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4097         bits with offset (case PO_GPR_BIT),
4098         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4099         command line,
4100         * (isBankInstruction): modified to return 0 for no banking instruction,
4101         and 1 for banking instruction,
4102         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4103         caused stop processing pCodes after a inline assembly block,
4104         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4105         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4106         registers when it shouldn't,
4107         * src/pic16/ralloc.c (allocReg): add preliminary support for
4108         supporting a limited set of temporary registers,
4109
4110 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4111
4112         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4113           genDataPointerSet): ensure assignments always copy in MSB to LSB
4114           order,
4115           (loadRegFromAop): recognize CLRH optimization,
4116           (genFunction): optimize RECEIVE iCodes in reentrant functions
4117
4118 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4119
4120         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4121           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4122           selected.
4123         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4124         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4125           contiguous with data
4126
4127 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4128
4129         * device/lib/_gptrget.c (_gptrget),
4130         * device/lib/_gptrgetc.c (_gptrgetc),
4131         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4132           instead of sjmp to ret
4133         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4134           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4135
4136 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4137
4138         * .version: bumped version to 2.4.7
4139         * device/lib/_gptrget.c (_gptrget): is now _naked
4140         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4141         * device/lib/_gptrput.c (_gptrput): is now _naked
4142         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4143           (createFunction): fixed xstack
4144         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4145         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4146           or bit either,
4147           (geniCodeCritical): store original interrupt state in an iTemp bit
4148           var unless stack-auto
4149         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4150         * src/SDCCmain.c (setIncludePath): added include/target to search path
4151         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4152         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4153           prototype,
4154           (processFuncArgs): put bit vars in bit area
4155         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4156           unsaveRBank): fixed xstack,
4157           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4158           (genFunction, genEndFunction): fixed xstack,
4159           (genAssign): optimization don't walk backwards through mem
4160         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4161         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4162         * support/regression/Makefile: also make library (for stack-auto) when
4163           making "all" and added "test-mcs51-xstack-auto"
4164         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4165         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4166         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4167         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4168         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4169           make-library by MAKE_LIBRARY
4170         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4171           regression tests for xstack
4172         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4173         * support/regression/tests/critical.c: test for critical on mcs51
4174
4175 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4176
4177         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4178           built version of sdcc instead of installed version
4179
4180 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4181
4182         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4183         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4184           vprintf.c now
4185         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4186         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4187           WARNING: remove device/lib/build/z80/printf.o by hand when
4188           updating from previous build!
4189         * device/lib/z80/printf.c: updated comment
4190         * support/regression/tests/bug1057979.c: test all ports now
4191         * support/regression/tests/bug1065458.c: file added
4192
4193 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4194
4195         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4196           *_start and *_end symbols for static functions
4197
4198 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4199
4200         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4201           and search crt0.o in all library paths,
4202           (setIncludePath): proper handling of --nostdinc,
4203           (setLibPath): proper handling of --nostdlib
4204         * support/regression/Makefile,
4205         * support/regression/ports/ds390/spec.mk,
4206         * support/regression/ports/gbz80/spec.mk,
4207         * support/regression/ports/hc08/spec.mk,
4208         * support/regression/ports/mcs51/spec.mk,
4209         * support/regression/ports/mcs51-large/spec.mk,
4210         * support/regression/ports/mcs51-stack-auto/spec.mk,
4211         * support/regression/ports/z80/spec.mk: use include and lib files from
4212           built version of sdcc instead of installed version
4213         * doc/sdccman.lyx: fixed typo in --nostdinc
4214
4215 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4216
4217         * src/pic/pcode.c,
4218         * src/pic/device.c,
4219         * src/pic/ralloc.c,
4220         * src/pic/gen.c : added support to generate code for struct bit fields.
4221
4222 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4223
4224         * as/xa51/xa_version.h,
4225         * device/include/errno.h,
4226         * device/include/regc515c.h,
4227         * device/lib/_itoa.c,
4228         * device/lib/_ltoa.c,
4229         * device/lib/ser_ir_cts_rts.c,
4230         * sim/ucsim/xa.src/glob.cc,
4231         * sim/ucsim/xa.src/inst_gen.cc,
4232         * sim/ucsim/xa.src/xa_bit.cc,
4233         * sim/ucsim/xa.src/xa_sfr.cc,
4234         * sim/ucsim/z80.src/inst_dd.cc,
4235         * sim/ucsim/z80.src/inst_fdcb.cc,
4236         * support/scripts/keil2sdcc.pl,
4237         * src/pic16/pic16.dsp,
4238         * src/pic16/pic16a.dsp: corrected cvs line endings
4239         * device/lib/printf_large.c: fixed bug 1057979
4240         * src/pic16/gen.c: fixed non-C standard code
4241         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4242         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4243         * support/regression/ports/mcs51/support.c: reload T1 asap
4244         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4245           pdata use and clear idata startup behaviour
4246         * support/regression/tests/bug1057979.c: added
4247
4248 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4249
4250         * device/examples/ds390/ow390/ad26.h,
4251         * device/examples/ds390/ow390/cnt1d.h,
4252         * device/examples/ds390/ow390/crcutil.c,
4253         * device/examples/ds390/ow390/ownet.h,
4254         * device/examples/ds390/ow390/owsesu.c,
4255         * device/examples/ds390/ow390/swt12.h,
4256         * device/examples/ds390/ow390/swtoper.c,
4257         * device/examples/ds390/ow390/temp10.h,
4258         * device/examples/ds390/ow390/thermodl.c,
4259         * device/examples/ds390/tinitalk/tinitalk.dsp,
4260         * device/examples/ds390/tinitalk/tinitalk.dsw,
4261         * device/examples/mcs51/clock/hw.h,
4262         * device/examples/mcs51/simple2/go.bat,
4263         * device/examples/serialcomm/windows/serial.h,
4264         * device/examples/xa51/dummy.c,
4265         * device/examples/xa51/hello.c,
4266         * device/include/80c51xa.h,
4267         * device/include/at89x051.h: corrected cvs line endings
4268
4269 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4270
4271         * src/pic16/main.c (options): added command line --gstack, to trace
4272         stack over/under flows,
4273         * added pragma 'wparam' to allow passing first byte of function
4274         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4275         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4276         call to __gstack_test function and sets up the symbol as extern,
4277         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4278         * popaop): added call to pic16_testStackOverflow,
4279         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4280         wparamList list,
4281         * (genCall, genPcall): now all parameters are passed via stack
4282         except in functions that are pass to wparam pragma in which WREG is
4283         used too,
4284         * (genPcall): REENTRANT flag is checked to see if variable prototype
4285         contains reentrant keyword, don't call a non-reentrant function, via
4286         a reentrant function pointer or vice versa, functions are never
4287         passed via WREG,
4288         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4289         D.Winkler,
4290         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4291         SIGSEGV when accessing a NULL register stucture,
4292         * (pic16_printGPointerType): modified to handle UPPER modifier for
4293         function initializers, changed prototype of function to simpler one,
4294         * (pic16_printIvalFuncPtr): check to see if function is already
4295         added in externs list,
4296         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4297         optimized a move from W to SFR with a move to the same register
4298         later after a CALL,
4299         * device/lib/pic16/debug: NEW directory, contains debug features
4300         which are enabled when linking with libdebug.lib, currently command
4301         line option --gstack enables stack pointer tracing for over/under
4302         flow, corresponding sources are in debug/gstack
4303
4304 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4305
4306         * doc/sdccman.lyx: updated SDCC version,
4307         * (PIC16 port): update list of command line options,
4308         * src/pic16/device.h (structure pic16_options_t): added field gstack
4309         to enable stack overflow tracing on push/pops,
4310         * src/pic16/device.c (statistics structure): added statistics
4311         structure,
4312         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4313         pic16_dump_int_registers): increase statistics counters for each
4314         * variable which is encountered
4315         * (pic16_dump_usection): emit each .udata variable to its own udata
4316         section,
4317         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4318         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4319         parameters via stack, otherwise use old scheme,
4320         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4321         assembler output file,
4322         * src/pic16/main.c: added command line options --gstack to enable
4323         push/pop tracing for stack overflow,
4324         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4325         instructions): added size of each instruction,
4326         * (pic16_countInstruction): estimate size of instructions in
4327         the_pFile list, inline assembly blocks are not counted,
4328         * (pic16_FixRegisterBanking): trace previous register usage, when
4329         banksel optimizations is greater than 0, don't emit a redudant
4330         banksel directive,
4331
4332 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4333
4334         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4335         * src/pic16/ralloc.c : applied same fix for pic16.
4336         * src/pic/gen.c : tidied it up a little.
4337
4338 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4339
4340         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4341         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4342
4343 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4344
4345         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4346
4347 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4348
4349         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4350         non-reentrant function __modsint in the interrupt function (thus
4351         corrupting math operations during serial I/O)
4352         * device/lib/ser_ir.c: as above, changed buffersize
4353         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4354         256.c,d for zeroing
4355         * doc/Makefile: added option -t for rsync
4356
4357 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4358
4359         * src/SDCCast.h (struct ast),
4360         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4361
4362 2004-10-20 Borut Razem <borut.razem AT siol.net>
4363
4364         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4365         package
4366
4367 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4368
4369         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4370         makefile targets,
4371         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4372         support functions to replace long sequences of MOVFF's from access
4373         bank registers to stack and vice versa,
4374         * src/pic16/device.h: added new field opt_flags, where optimization
4375         flags can be set to enable certain features,
4376         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4377         * pBlock, (genFunction, genEndFunction): surroung loop for
4378         saving/loading used registers in stack with PC_INFO pCodes,
4379         INF_LREGS. Code in between can then be optimized by pCode optimizer
4380         to support function calls,
4381         * (genDataPointerSet): fixed bug which loaded float fields in
4382         structures with corrupt data,
4383         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4384         in a standard way debug info on stderr. Feature used for developing
4385         and debugging only,
4386         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4387         obsolete chunks of code,
4388         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4389         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4390         * pic16/src/pcode.c (pic16_newpCodeInfo,
4391         * (pic16_newpCodeOpLocalRegs),
4392         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4393         feature,
4394         * (pic16_pCodeConstString): printing of the initial value of a
4395         symbol as a comment is inhibited since parsing was already done by
4396         copyStr and output is corrupt,
4397         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4398
4399 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4400
4401         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4402
4403 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4404
4405         * as/mcs51/lkarea.c: removed old K&R style,
4406           (lnksect): changed check on boundary error,
4407           (lnksect2): changed check on boundary error,
4408           (lnksect2): extend XSTK to end of page if size = 1
4409         * as/mcs51/lkmain.c: removed old K&R style,
4410           (Areas51): create l_IRAM symbol
4411         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4412         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4413           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4414         * device/lib/_mullong.c: added version to be compiled with xstack
4415         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4416         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4417         * device/lib/mcs51/crtxstack.asm: fixed comment
4418         * src/SDCCglue.c: maxInterrupts defaults to 0,
4419           (emitMaps): added pdata,
4420           (createInterruptVect): (re)moved default,
4421           (glue): added pdata,
4422           (glue): moved __start__xstack to XSTK with default size 1
4423         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4424           and options.float_rent when options.stackAuto is set,
4425           (linkEdit): only write XDATA_NAME if provided on command line
4426         * src/SDCCmem.h,
4427         * src/SDCCmem.c: added pdata
4428         * src/port.h: added pdata_name to PORT
4429         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4430           (saveRegisters, unsaveRegisters): removed usage of B,
4431           (genMinus): fixed accumulator clash,
4432           (genJumpTab): added comment, this needs another look
4433         * src/mcs51/gen.c: added check for "B in use" paranoia,
4434           added pushB() and popB()
4435         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4436           chance
4437         * src/avr/main.c,
4438         * src/ds390/main.c,
4439         * src/hc08/main.c,
4440         * src/mcs51/main.c,
4441         * src/pic/main.c,
4442         * src/pic16/main.c,
4443         * src/xa51/main.c,
4444         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4445           added PSEG (PAG,XDATA) or NULL to port specifier
4446         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4447         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4448           (_mcs51_genInitStartup): removed __start__xstack equ,
4449           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4450         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4451         * src/z80/gen.c (_rleAppend): fixed warnings
4452         * support/regression/tests/zeropad.c: added pdata test
4453         * .version: bumped to 2.4.6
4454
4455 2004-10-17 Borut Razem <borut.razem AT siol.net>
4456
4457         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4458         as a part of nightly build
4459
4460 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4461
4462         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4463         WREG holds the first byte function parameters,
4464         * (aopForSym): take special case for symbols which are in FARSPACE
4465         but in CODESPACE too,
4466         * (assignResultValue): modified to take into account _G.useWreg,
4467         * (genCall): don't use wreg for parameter passing when function is
4468         declared as reentrant, too, added optimization INCF to stack
4469         pointer when stack parameter count is 1,
4470         * (genFunction, genEndFunction): refurnished and fixed to not using
4471         wreg for passing parameters when function has varargs or is
4472         reentrant, fixed bug with symbol name compare for generating
4473         functions in absolute address,
4474         * (pic16_storeForReturn): refurnished,
4475         * (genCmp): began writing a new version of the function, not ready
4476         yet, therefore it is disabled,
4477         * (genAssign): do not read code memory when assigning a function to
4478         a pointer function,
4479         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4480         array of characters, not pointer,
4481         * (pic16initialComments): in debug mode emit an .ident directive for
4482         the assembler,
4483         * (_process_pragma): emit a new warning type (internal to pic16)
4484         when setting stack to default length, emit a similar warning when
4485         placing a function at absolute address and address is not word aligned
4486         * (_pic16_parseOptions): added 'return TRUE' statement,
4487         * (_pic16_linkEdit): if compiling a source, then add the source's
4488         file object, first in the list of objects to link,
4489
4490 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4491
4492         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4493         * src/pic/main.c : removed VC warning.
4494         * src/pic/gen.c : changed comment.
4495
4496 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4497
4498         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4499         reference to a deprecated symbol _GPTRREG was causing failure to
4500         link. Thanks G. M. Gallant for the info.
4501
4502 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4503
4504         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4505         comments for Bugs item #954788.
4506
4507 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4508
4509         * src/pic16/device.c (pic16_dump_gsection,
4510         * pic16_groupRegistersInSection): handle symbols declared to be in
4511         access bank differently,
4512         * src/pic16/gen.c (struct _G): added field resDirect,
4513         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4514         send values read from stack directly to result and don't allocate
4515         temporary values,
4516         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4517         same registers,
4518         * (pic16_sameRegsOfs): NEW,
4519         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4520         free because they were not allocated from temporary pool,
4521         * pic16_popRegFromString): workaround to fix a problem with
4522         allocating variables twice or never,
4523         * (genGenPointerGet): using PRODL instead of FSR0H,
4524         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4525         instead of FSR0H,
4526         * (genAssign): take advantage of the _G.resDirect flag,
4527         * (genCast): around line 11844, use mov2f instead of directly
4528         MOVFF'ing between operands to account for literal values,
4529         * src/pic16/genutils.c: some new debug functions for gpsim have been
4530         added,
4531         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4532         float with integer part only,
4533         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4534         place variables in access bank
4535         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4536         updated sources to reflect recent changes in gen.c
4537
4538 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4539
4540         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4541         sources that searched for headers in installation path, now the
4542         device/include/pic16 is used,
4543         * src/pic16/glue.c (pic16glue),
4544         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4545         .line directives if not in debug mode, this suppresses assembler's
4546         warnings for ignored directives
4547
4548 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4549
4550         * src/port.h: made reset_regparms prototype void parameter explicit.
4551         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4552         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4553         * doc/sdccman.lyx: documented warning disabling and how to use
4554           printf_large to make it print floats.
4555         * device/include/stdbool.h: NEW
4556         * device/lib/_atof.c,
4557         * device/lib/_divuint.c,
4558         * device/lib/_divulong.c,
4559         * device/lib/expf.c,
4560         * device/lib/printf_large.c,
4561         * device/lib/sincosf.c,
4562         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4563         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4564           a completely reentrant lib.
4565
4566 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4567
4568         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4569         * device/include/pic16/stdio.h: fixed bug with colon
4570
4571 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4572
4573         * device/include/pic16/stdio.h,
4574         * device/include/pic16/stdlib.h,
4575         * device/include/pic16/math.h: NEW
4576         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4577         declared as _naked to reduce overhead
4578         * device/lib/Makefile.in (target port-specific-objects-pic16):
4579         changed * to *.* so to ignore the CVS directory,
4580         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4581         stacked variables back in stack,
4582         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4583         corruption
4584
4585 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4586
4587         * .version: bumped version number to 2.4.5
4588         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4589         * support/Util/SDCCerr.c (messages structure): added entry for
4590         W_POSSBUG2
4591
4592         Large cumulative patch for pic16 port and libraries.
4593         * device/include/pic16/sdcc-lib.h,
4594         * device/include/pic16/stdarg.h,
4595         * device/include/asm/pic16/features.h,
4596         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4597         * device/include/pic16/float.h: changes reentrant keyword with
4598         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4599         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4600         updated target build-libraries to include objects from gptr,
4601         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4602         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4603         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4604         all function headings,
4605         * src/SDCCmain.c: added global parameter userIncDirsSet,
4606         * (parseCmdLine): when option -I is encountered add directory to
4607         userIncDirsSet too,
4608         * src/version.awk: added space between control and long,
4609         * src/pic16/NOTES: added some notes for the port,
4610         * src/pic16/gen.c: added prototype for mov2fp function,
4611         * (fReturnpic16[]): properly named return value registers,
4612         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4613         * (aopForSym): added code to handle symbols with onStack flag set,
4614         symbols onStack are allocated PTRSIZE bytes,
4615         * (aopFreeAsmop): handles special case where asmops are stack objects,
4616         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4617         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4618         added argument lock to trace flaws in allocating temporary registers
4619         when developing port,
4620         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4621         * (pic16_popRegFromString): reenabled allocating a direct register
4622         from string,
4623         * (assignResultValue): various beautifications,
4624         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4625         referenced function argument,
4626         * (genIpush): reenabled to allow stacked arguments, handles only
4627         ic->parmPush iCodes,
4628         * (genCall, genPcall): major changes to allow for variable argument
4629         functions, fixed a bug with falsely restoring stack pointer after
4630         returning from call,
4631         * (genFunction): pending code for critical function,
4632         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4633         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4634         * (genNearPointerGet): fixed bug with indirect reading, was always
4635         reading from INDF0
4636         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4637         pointers,
4638         * (genAddrOf): rewrote code to take address of a stacked function parameter
4639         * (genCast): fixed casting to generic pointer type,
4640         * src/pic16/gen.h: added AOP_STA,
4641         * (struct asmop): added field stk,
4642         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4643         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4644         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4645         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4646         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4647         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4648         generic pointers,
4649         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4650         and library paths,
4651         * (pic16_port structure): generic pointer size is set to 3,
4652         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4653         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4654         compiler warning,
4655         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4656         operand is an iTemp,
4657
4658 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4659
4660         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4661         * debugger/mcs51/simi.c: addapt new syntax of s51
4662
4663 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4664
4665         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4666         * src/pic16/pcode.c: commented out some calls to free() in order to
4667         fix bug #989576,
4668
4669 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4670
4671         * src/SDCCicode.h,
4672         * src/SDCCicode.c (isiCodeInFunctionCall),
4673         * src/avr/ralloc.c (selectSpil),
4674         * src/pic/ralloc.c (selectSpil),
4675         * src/pic16/ralloc.c (selectSpil),
4676         * src/ds390/ralloc.c (selectSpil),
4677         * src/hc08/ralloc.c (selectSpil),
4678         * src/xa51/ralloc.c (selectSpil),
4679         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4680         stack in the middle of a function call sequence (fixes bug #1020268)
4681         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4682         costs associated with the minimum switch case.
4683
4684 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4685
4686         * src/SDCC.lex: fixed bug #1030549
4687
4688 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4689
4690         * src/SDCCcse.h (struct cseDef),
4691         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4692         over a function call if the CSE is derived from a symbol whose
4693         address has been taken (fixes bug #1029883)
4694         * support/regression/tests/bug-1029883: a new regression test for
4695         this bug
4696
4697 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4698
4699         * src/hc08/gen.c (emitinline): fixed bug #1029778
4700         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4701         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4702         and starts toward RFE #905167)
4703
4704 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4705
4706         * src/pic16/gen.c (mov2f): New function to move an operand to
4707         another without considering if it is a literal or a register,
4708         * (pic16_sameRegs): don't check if they are both AOP_REG,
4709         * (AccRsh): removed andmask=0 lines,
4710         * (genLeftShift): duplicated to be improved in future versions,
4711         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4712         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4713         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4714         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4715         * (insertBankSwitch): fixed inserting banksel directives algorithm
4716         for instructions that follow a skip instruction, this fixes a report
4717         for broken subtraction code generation,
4718         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4719         iCode is a left op, just in case result and right share the same
4720         registers
4721
4722 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4723
4724         * src/hc08/main.c,
4725         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4726         preservation of HX
4727         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4728         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4729         on 2004-09-12; it was buggy
4730
4731 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4732
4733         * src/SDCCsymt.h: removed RESULT_CHECK
4734         * src/SDCCast.c,
4735         * src/SDCCglue.c,
4736         * src/SDCCval.c,
4737         * src/pic/glue.c,
4738         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4739
4740 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4741
4742         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4743         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4744         configuration values no more rejected by compiler, they are assigned
4745         to configuration registers with a warning message instead,
4746         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4747         the for-loop so last conf register is emitted too,
4748         * (_pic16_initPaths): link library libsdcc.lib by default,
4749         * (_hasNativeMulFor): modified test for multiplication according to
4750         Raphael Neider's remarks. Integer multiplication is also done with
4751         support functions,
4752         * device/include/pic16/pic18fregs.h: corrected type error in while
4753         testing and including 18f6720 header file
4754
4755 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4756
4757         * src/pic16/device.h (pic16_options): removed field use_crt,
4758         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4759         until an optimization to handle single bits is added,
4760         * (pic16_loadFSR0): moved before genUnpackBits,
4761         * (genAnd): some white lines removed,
4762         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4763         leave_reset flags in pic16_options when using crt modules,
4764
4765 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4766
4767         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4768           for bugs 898889 & 979599. Also used some safer print instructions.
4769
4770 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4771
4772         * src/pic16/device.h (pic16_options_t): added field use_crt,
4773         crt_name, no_crt,
4774         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4775         catch a probable future bug,
4776         * src/pic16/gen.c: aopIdx function commented out,
4777         * (genAssign): commented out old code which used aopIdx,
4778         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4779         code, added if conditionals to take into account the --use-crt
4780         command line options,
4781         * src/pic16/main.c (pic16_optionsTable): added new command line
4782         options, --use-crt= and --no-crt,
4783         * (_pic16_linkEdit): now the proper crt object is added in the
4784         linker command line except than when --no-crt is specified,
4785         * src/pic16/pcode.c,
4786         * src/pic16/pcode.h: added some structures and functions for a new
4787         optimization scheme to compansate for instruction overhead between
4788         same iCodes, this scheme is currently under development and is not
4789         working in any way,
4790         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4791         to && operator,
4792         * device/lib/pic16/startup/crt0i.c,
4793         * device/lib/pic16/startup/crt0iz.c: added global char variable
4794         __uflags to force the generation of an idata section
4795
4796 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4797
4798         * doc/Makefile,
4799         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4800         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4801
4802 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4803
4804         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4805         Frieder) and clarified the default code optimization mode
4806
4807 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4808
4809         * src/SDCC.lex (doPragma, process_pragma),
4810         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4811         "opt_code_size", and "opt_code_balanced"
4812         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4813         regrouped options by category, added support for category headers
4814         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4815         and "--opt-code-size"
4816         * doc/sdccman.lyx: documented these new options and pragmas
4817         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4818         preference into account
4819
4820 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4821
4822         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4823           geniCodePreDec): Fixed bug 904237 by generating a warning
4824         * src/SDCCerr.h,
4825         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4826
4827 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4828
4829         * src/pic/device.c : When no max ram set validate full memory range.
4830         * src/pic/pcode.c,
4831         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4832
4833 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4834
4835         * device/lib/_gptrget.c,
4836         * device/lib/_gptrput.c: updated comment
4837         * device/lib/calloc.c,
4838         * device/lib/free.c,
4839         * device/lib/malloc.c,
4840         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4841         * src/SDCCcse.c (cseBBlock),
4842         * src/SDCCicode.c (printOperand, geniCodeArray),
4843         * src/SDCCicode.h (struct operand): fixed bug 868103
4844         * support/regression/tests/bug-868103.c: added
4845         * src/SDCCast.c (searchLitOp),
4846         * src/SDCCcse.h (struct cseDef),
4847         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4848         * src/SDCCicode.h (struct operand),
4849         * src/SDCCsymt.h (struct sym_link),
4850         * src/avr/gen.c (hasInc),
4851         * src/ds390/gen.c (hasInc),
4852         * src/hc08/gen.c (genPlusIncr, hasInc),
4853         * src/mcs51/gen.c (hasInc),
4854         * src/pic16/glue.c (pic16_printIvalChar),
4855         * src/pic16/ralloc.c (regWithIdx),
4856         * src/xa51/gen.c (hasInc) : removed warnings
4857         * src/SDCCast.c (createBlock): added comment ???
4858         * src/hc08/ralloc.c: updated comments
4859
4860 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4861
4862         * doc/sdccman.lyx: updated section on switch statements, added
4863         section about semaphore locking
4864         * doc/Makefile: added option -info for latex2html
4865         * device/lib/_gptrget.c,
4866         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4867
4868 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4869
4870         * src/pic/device.h,
4871         * src/pic/device.c,
4872         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4873          maxram is less than 0x100.
4874
4875 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4876
4877         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4878
4879 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4880
4881         * src/port.h,
4882         * src/mcs51/main.c,
4883         * src/ds390/main.c,
4884         * src/z80/main.c,
4885         * src/hc08/main.c,
4886         * src/pic/main.c,
4887         * src/pic16/main.c,
4888         * src/avr/main.c,
4889         * src/xa51/main.c
4890         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4891         a jump table is the best form for a switch statement, including
4892         automatic insertion of missing cases to make the case range
4893         continuous. Developed in collaboration with Frieder Ferlemann.
4894
4895 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4896
4897         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4898         accumulator result if it needs sign extension
4899
4900 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4901
4902         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4903
4904 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4905
4906         * device/lib/gbz80/printf.c,
4907         * device/lib/z80/printf.c: removed define for NULL
4908
4909 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4910
4911         * as/xa51/xa_link.c,
4912         * device/examples/ds390/ow390/ad26.c,
4913         * device/examples/ds390/ow390/cnt1d.c,
4914         * device/examples/ds390/ow390/counter.c,
4915         * device/examples/ds390/ow390/ds2480.h,
4916         * device/examples/ds390/ow390/ds2480ut.c,
4917         * device/examples/ds390/ow390/findtype.c,
4918         * device/examples/ds390/ow390/gethumd.c,
4919         * device/examples/ds390/ow390/owllu.c,
4920         * device/examples/ds390/ow390/ownetu.c,
4921         * device/examples/ds390/ow390/swt12.c,
4922         * device/examples/ds390/ow390/swtloop.c,
4923         * device/examples/ds390/ow390/temp.c,
4924         * device/examples/ds390/ow390/temp10.c,
4925         * device/examples/ds390/ow390/thermo21.c,
4926         * device/examples/ds390/ow390/tinilnk.c,
4927         * device/examples/ds390/ow390/tstfind.c,
4928         * device/examples/serialcomm/windows/serial.cpp,
4929         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4930         * device/include/reg51.h: fixed line endings for cvs
4931
4932 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4933
4934         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4935         packRegsForAccUse, packRegisters): new accumulator register
4936         packing algorithm
4937         * support/regression/ports/hc08/support.c (_putchar): suppress
4938         warning of unused variable
4939         * src/SDCCicode.c: added SWAP entry to codeTable
4940
4941 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4942
4943         * device/lib/sprintf.c: forgot to add this file before previous commit
4944
4945 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4946
4947         * src/pic16/gen.c (genPackBits): added operand right in function
4948         parameters, load result directly if p_type is POINTER (that is
4949         called by genNearPointerSet)
4950         * (genUnPackBits): added operand left in function parameters,
4951         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4952         FSR0 if accessing bitfields,
4953
4954 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4955
4956         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4957           _print_format; updated printf, sprintf, vsprintf
4958         * device/include/asm/default/features.h: corrected comment/define
4959         * device/lib/Makefile.in: added sprintf.c
4960         * device/lib/libsdcc.lib: added sprintf module
4961         * device/lib/printf_large.c,
4962         * device/lib/vprintf.c,
4963         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4964           into these 3 files
4965         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4966         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4967         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4968           hc08 test
4969         * support/regression/tests/zeropad.c: define idata as data for hc08
4970
4971 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4972
4973         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4974         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4975         labels are referenced at least once (even if a reference is not found)
4976         * src/hc08/gen.c (emitcode): set isComment flag for comments
4977         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4978         loads), rules 6a..6b (optimize jumps to return)
4979
4980 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4981
4982         * device/lib/acosf.c (acosf),
4983         * device/lib/asinf.c (asinf),
4984         * device/lib/atanf.c (atanf),
4985         * device/lib/ceilf.c (ceilf),
4986         * device/lib/cosf.c (cosf),
4987         * device/lib/coshf.c (coshf),
4988         * device/lib/cotf.c (cotf),
4989         * device/lib/fabsf.c (fabsf),
4990         * device/lib/floorf.c (floorf),
4991         * device/lib/log10f.c (log10f),
4992         * device/lib/logf.c (logf),
4993         * device/lib/sinf.c (sinf),
4994         * device/lib/sinhf.c (sinhf),
4995         * device/lib/sqrtf.c (sqrtf),
4996         * device/lib/tanf.c (tanf),
4997         * device/lib/tanhf.c (tanhf),
4998         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
4999         replaced all instances of "reentrant" in the library functions
5000         defined in math.h with this macro.
5001         * support/regression/tests/float_trans.c: reenabled test for hc08
5002
5003 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5004
5005         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5006         erroneously deleted
5007
5008 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5009
5010         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5011         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5012         multi-byte volatile operands are used
5013         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5014         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5015         initialization to area GSINIT0 so that it would always precede
5016         any static initializers in GSINIT
5017         * support/regression/tests/zeropad.c: fixed idata define for hc08
5018         * support/regression/tests/bug-927659.c,
5019         * support/regression/tests/float_trans.c: disabled tests for hc08
5020         pending missing library routines
5021         * .version: increased version number to 2.4.4 - hc08 port now passes
5022         regression tests
5023
5024
5025 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5026
5027         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5028         * Makefile.common.in,
5029         * as/Makefile,
5030         * as/hc08/Makefile.in,
5031         * as/mcs51/Makefile.in,
5032         * as/z80/Makefile.in,
5033         * debugger/mcs51/Makefile.in,
5034         * device/include/Makefile.in,
5035         * device/lib/Makefile.in,
5036         * doc/Makefile,
5037         * link/Makefile,
5038         * link/z80/Makefile.in,
5039         * packihx/Makefile.in,
5040         * sim/ucsim/main_in.mk,
5041         * sim/ucsim/avr.src/Makefile.in,
5042         * sim/ucsim/doc/Makefile.in,
5043         * sim/ucsim/gui.src/serio.src/Makefile.in,
5044         * sim/ucsim/hc08.src/Makefile.in,
5045         * sim/ucsim/s51.src/Makefile.in,
5046         * sim/ucsim/xa.src/Makefile.in,
5047         * sim/ucsim/z80.src/Makefile.in,
5048         * src/Makefile.in,
5049         * support/cpp2/Makefile.in,
5050         * support/librarian/Makefile,
5051         * support/makebin/Makefile: added DESTDIR to the install path proposed
5052         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5053         * doc/sdccman.lyx: added DESTDIR documentation
5054
5055 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5056
5057         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5058         instruction for interrupt handlers, use fast returns when returning
5059         from high priority interrupts
5060
5061 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5062
5063         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5064         code generation
5065         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5066         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5067         bugs, ported much of Bernhard's code from mcs51
5068         * src/mcs51/gen.c (genSend),
5069         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5070         than one when calling a reentrant function
5071         * device/lib/_mullong.c: defined an alternate struct layout for big
5072         endian ports (hc08)
5073
5074 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5075
5076         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5077         test
5078
5079 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5080
5081         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5082         are sane and complete before asking the port its prefered parameter
5083         passing method (fixes bug #1017633)
5084         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5085         and _ret3
5086
5087 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5088
5089         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5090         problem in bitfields >= 8 bits.
5091
5092 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5093
5094         * src/SDCCsymt.c: undid changes that were not meant to be committed
5095
5096 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5097
5098         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5099
5100 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5101
5102         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5103           copied and wrong bit got inverted
5104
5105 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5106
5107         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5108         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5109         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5110         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5111         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5112         assignments to bitfields at known addresses
5113         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5114         reads from bitfields at known addresses
5115         * src/hc08/ralloc.c (packRegisters),
5116         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5117         genhc08Code): optimize pointer get values used as conditionals
5118         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5119         and branch
5120
5121 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5122
5123         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5124         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5125         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5126         as conditionals
5127
5128 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5129
5130         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5131
5132 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5133
5134         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5135         related problems
5136
5137 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5138
5139         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5140
5141 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5142
5143         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5144         mcs51 port
5145
5146 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5147
5148         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5149
5150 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5151
5152         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5153         cases use more compact code.
5154
5155 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5156
5157         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5158
5159 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5160
5161         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5162
5163 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5164
5165         * src/SDCCsymt.h,
5166         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5167         parameter of changePointer() from symbol* to sym_link*
5168         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5169         * src/SDCCsymt.c (compareType): void* type is castable to other
5170         pointers, but not necesarily an exact match.
5171         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5172         is no longer blindly treated as an exact match.
5173         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5174
5175 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5176
5177         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5178
5179 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5180
5181         * src/pic/gen.c,
5182         * src/pic/pcode.c,
5183         * src/pic/ralloc.h,
5184         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5185
5186 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5187
5188         * src/pic/device.c,
5189         * src/pic/device.h,
5190         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5191
5192 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5193
5194         * src/mcs51/gen.c (emitcode): fixed bug #992819
5195
5196 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5197
5198         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5199           there's no need to make it worse
5200
5201 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5202
5203         * src/mcs51/ralloc.c (deassignLR),
5204         * src/ds390/ralloc.c (deassignLR),
5205         * src/hc08/ralloc.c (deassignLR),
5206         * src/z80/ralloc.c (deassignLR),
5207         * src/pic/ralloc.c (deassignLR),
5208         * src/pic16/ralloc.c (deassignLR),
5209         * src/avr/ralloc.c (deassignLR),
5210         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5211         rlivePoint): fixed another part of bug #971834
5212
5213 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5214
5215         * src/z80/main.c: enabled "critical" keyword
5216         * src/z80/mappings.i,
5217         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5218         functions (fixes bug #979646)
5219         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5220
5221 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5222
5223         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5224           such as c:\mydir.
5225
5226 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5227
5228         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5229           doesn't disable too much optimizations
5230
5231 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5232
5233         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5234
5235 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5236
5237         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5238
5239 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5240
5241         * src/pic/gen.c tidied up tabs
5242         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5243         * src/pic/main.c tidied up tabs
5244         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5245         * src/pic/pcoderegs.c tidied up tabs
5246         * src/pic/ralloc.c tidied up tabs
5247
5248 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5249
5250         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5251         to S_FIXED for pic16 port and when symbol is not in level 0,
5252         allocate for S_REGISTER storage class and pic16 port, too,
5253         * src/pic16/device.h: prototype for checkSym,
5254         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5255         * (pic16_assignConfigWordValue): test the value and the mask to
5256         validate that the value is suitable for the configuration word,
5257         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5258         collect extern declared symbols, don't emit symbol twice, check
5259         first if symbol is in publics set first,
5260         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5261         * added command line '--fstack' which enables an experimental
5262         feature for stack access, too buggy to be used yet...
5263         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5264         * (pic16_allocDirReg): when register has storage class S_REGISTER
5265         allocate in pic16_dynAccessRegs,
5266         * device/include/pic16/pic18f????.h: modified configuration word
5267         naming convention, words started as CONFIG0H but should be CONFIG1H
5268
5269 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5270
5271         * device/include/mcs51reg.h: fixed bug 970993
5272
5273 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5274
5275         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5276         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5277         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5278         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5279         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5280         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5281           error/warning numbers,
5282           added function setWarningDisabled()
5283         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5284         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5285           _memcmp.c _memmove.c calloc.c realloc.c free.c
5286         * support/regression/tests/malloc.c: added tests for new functionality
5287         * support/regression/tests/zeropad.c: added tests for truncated initializers
5288           and initialized char arrays starting with '\x0'
5289         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5290
5291 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5292
5293         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5294
5295 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5296
5297         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5298         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5299         peephole 177.e. Thanks to anonymous
5300
5301 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5302
5303         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5304         function isn't used in the source but referenced as a
5305         variable initializer then declare it as extern in .asm file
5306
5307 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5308
5309         * .version: increased version number to 2.4.3
5310
5311         Adding version extension according to ChangeLog CVS revision
5312         * src/Makefile.in (target all): added dependency 'version.h'
5313         * (rule version.h): added rule to create version.h from ChangeLog,
5314         * (rule dep): added dependency version.h,
5315         * src/version.awk: AWK script to create version.h
5316         * src/SDCCdwarf2.c (dwWriteModule),
5317         * src/SDCCglue.c (initialComments),
5318         * src/SDCCmain.c (printVersionInfo): modified to write after
5319         version string the version extension number,
5320         * src/SDCCutil.c: included "version.h"
5321         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5322         number,
5323         * src/SDCCutil.h: added prototype for getBuildNumber
5324
5325         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5326         includeDirsSet, too,
5327         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5328         const char [] is found in function prototype...
5329
5330         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5331         moving to WREG with source is already in WREG,
5332         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5333         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5334         * (aopForSym): stack'ed symbols are partially supported, added
5335         if-clause to support symbols in FARSPACE,
5336         * (sameRegs): added test for AOP_ACC to see if registers are same,
5337         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5338         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5339         * (pic16_popRegFromString): will not allocate a new register if it
5340         doesn't find one by name, bug may have introduced...
5341         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5342         * (genIpush): revived to use pic16 port's stack,
5343         * (genAddrOf): added incomplete case for stack'ed operand,
5344         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5345         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5346         can handle multibyte operands,
5347         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5348         * (pic16initialComments): added message for MPLAB compatibility
5349         mode enabled,
5350         * src/pic16/main.h: prototype for pic16_mplab_comp,
5351         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5352         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5353         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5354         because of increased complexity of procedure,
5355         * (_process_pragma): stack pragma changed to format 'stack pos len',
5356         emit symbol '_stack_end' to conform with gplink,
5357         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5358         to search for register,
5359         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5360         PO_GPR_REGISTER,
5361         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5362         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5363         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5364         case for PO_GPR_REGISTER,
5365         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5366         dies, the new era is ahead !...
5367         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5368         pic16_dynInternalRegs,
5369         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5370         * (pic16_allocDirReg): minor optimizations and bug fixes,
5371         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5372
5373         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5374         load stack and frame pointer with address of 'stack_end' symbol
5375
5376 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5377
5378         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5379         without source code but only variable initializers
5380
5381 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5382
5383         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5384         external are not declared as extern to reduce overhead while linking
5385
5386 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5387
5388         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5389
5390 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5391
5392         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5393           Yee Keat for the patch
5394         * src/SDCCast.c (decorateType): fixed bug #979599
5395         * src/ds390/gen.h: removed local fReturnSizeDS390
5396         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5397         * src/ds390/gen.c (genAnd, genOr, genXor),
5398         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5399
5400 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5401
5402         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5403         add relFilesSet to $3, manipulate $2 to handle linking of object
5404         files without source files in command line,
5405         * device/include/pic16 (all headers): added ID location macros,
5406         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5407         entries for ID location bytes,
5408         * (pic16_assignIdByteValue): NEW,
5409         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5410         added field dumpcalltree to pic16_options_t,
5411         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5412         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5413         emitting rFalseIfx label after check_carry label,
5414         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5415         pic16_emitDIRegs), NEW
5416         * (pic16glue): dump .calltree file when option --calltree found,
5417         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5418         * (_pic16_genAssemblerPreamble): emit ID locations after
5419         configuration registers,
5420         * (pic16_linkCmd): modifications of the link command,
5421         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5422         * (pic16_pCodeInitRegisters): don't init stack registers,
5423         * (pic16_findPrevInstruction): fixed bug,
5424         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5425         bug with immediate registers,
5426         * (buildCallTree): traces stack push and pop,
5427         * (pct2): dump also stack usage for each function,
5428         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5429         * (pic16_allocDirReg): various modifications,
5430         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5431         fixed to 1,
5432
5433 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5434
5435         * src/pic16/pcode.c: removed buggy double colon
5436
5437 2004-07-01 Borut Razem <borut.razem AT siol.net>
5438
5439         * support/scripts/sdcc.nsi: added include/pic16 to setup
5440
5441 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5442
5443         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5444         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5445         target 'clean',
5446         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5447         specific command line arguments. Also added sample lkr script
5448         for placing a variable at a specific memory bank.
5449         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5450         at a specific memory bank,
5451         * (pic16_dump_isection): fixed bug which caused string literals to
5452         be omitted when dumping idata section,
5453         * (pic16_groupRegistersInSection): added code to handle registers
5454         in specific memory banks,
5455         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5456         public, all references are renamed too,
5457         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5458         AOP_DPTR2,
5459         * (pic16_storeForReturn): added case to handle when dest is WREG,
5460         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5461         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5462         pic16_rel_udata, check to see if that register is marked as being
5463         a member of a specific memory bank,
5464         * (pic16_printIvalCharPtr): added code to add string literals either
5465         to code or the idata sections,
5466         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5467         also accept the 'udata' pragma,
5468         * src/pic16/main.h: new structure types sectName and sectSym
5469         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5470         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5471         * (pic16_findPrevInstruction): fixed, it returned nothing,
5472         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5473         instruction combinations,
5474         * (pic16_FixRegisterBanking): heavily reorganised,
5475         * (pic16_AnalyzeBanking): if generating banksel directives is
5476         disabled, then don't call FixRegisterBanking at all,
5477         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5478         completely removed,
5479         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5480
5481 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5482
5483         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5484         Phuah Yee Keat <yk.phuah AT nestac.com>
5485
5486 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5487
5488         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5489         correctly the IVT even if it is relocated to some other location
5490
5491 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5492
5493         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5494         * device/include/pic16/pic18f2220.h: NEW,
5495         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5496         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5497         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5498         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5499         nodefaultlibs, ivt_loc is the location of the interrupt vector
5500         table, and nodefaultlibs signs that default libraries should not be
5501         linked in link stage,
5502         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5503         according to --ivt-loc argument,
5504         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5505         when pragma stack is found,
5506
5507 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5508
5509         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5510         256 (range check), 257 (do while), 258.a-f (bit banging
5511         f.e. on 3-wire SPI bus)
5512
5513 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5514
5515         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5516         variables used exclusively within a loop
5517
5518 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5519
5520         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5521
5522 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5523
5524         * src/SDCClrange.c (computeClash): fixed bug #971834
5525
5526 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5527
5528         * src/mcs51/gen.c (genCmp): fixed bug #975903
5529         * src/hc08/gen.c (operandsEqu),
5530         * src/ds390/gen.c (operandsEqu),
5531         * src/z80/gen.c (operandsEqu),
5532         * src/pic/gen.c (operandsEqu),
5533         * src/pic16/gen.c (operandsEqu),
5534         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5535         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5536
5537 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5538
5539         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5540
5541 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5542
5543         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5544         default case in switch statement,
5545         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5546         to eliminate problem with initialisation of pointers, but problem
5547         still exists,
5548         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5549         * (emitStaticSegment): removed various lines emitting debug info,
5550         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5551         added processor registers for utilizing EEPROM,
5552         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5553         configurable and set 8
5554
5555 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5556
5557         * .version: increased version number to 2.4.2,
5558
5559         Cumulative patch for pic16 port
5560         * src/pic16/device.c: changed scheme to dump initial values for
5561         variables in idata segment, all print_idata* functions were removed,
5562         now the pic16_printIval* will be called,
5563         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5564         * _pic16_printPointerType, pic16_printPointerType,
5565         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5566         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5567         NEW, similar to the respective functions in SDCCglue.c,
5568         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5569         way, emitting hex bytes,
5570         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5571
5572 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5573
5574         * src/avr/ralloc.c (serialRegAssign),
5575         * src/xa51/ralloc.c (serialRegAssign),
5576         * src/pic/ralloc.c (serialRegAssign),
5577         * src/pic16/ralloc.c (serialRegAssign),
5578         * src/hc08/ralloc.c (serialRegAssign),
5579         * src/z80/ralloc.c (serialRegAssign),
5580         * src/ds390/ralloc.c (serialRegAssign),
5581         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5582
5583 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5584
5585         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5586         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5587
5588 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5589
5590         Cumulative patch for pic16 port:
5591         * src/pic16/device.h (typedef PIC16_device) modified fields for
5592         defining microcontrollers,
5593         * src/pic16/device.c: added new info for all devices in Pics16 array,
5594         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5595         to be optimised out by the pCode optimiser,
5596         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5597         specially, bug reported by G.M. Gallant,
5598         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5599         as force'd so that cannot be optimised out by pCode optimiser,
5600         * src/pic16/pcode.c,
5601         * src/pic16/pcodepeeph.c,
5602         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5603         they are disabled by default, but can be enabled explicit with
5604         command argument --denable-peeps, for testing,
5605         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5606         --pomit-ivt in COMPILE_FLAGS
5607
5608 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5609
5610         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5611           compilation on MSVC
5612
5613 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5614
5615         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5616
5617 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5618
5619         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5620         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5621
5622 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5623
5624         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5625         would only assign 0x300001 register.
5626
5627 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5628
5629         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5630         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5631
5632 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5633
5634         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5635         for ds80c400
5636         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5637         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5638         added peephole 254 (left shift), 255 (jump table)
5639
5640 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5641
5642         * device/lib/Makefile.in: removed comment line with model-pic16,
5643         * (target port-specific-objects-pic16): the libraries and objects
5644         are copied to the build directory form the device/lib/pic16/bin
5645         directory
5646
5647         Cumulative patch concerning pic16 port:
5648         * library directory has been re-organized,
5649         * added support for PIC18F1220,
5650         * added headers and library sources for chips 18f1220,18f6520,
5651         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5652
5653         * configuration registers setting has changed, now each supported
5654         device has a complete description of the registers it uses,
5655         * all initialisations are moved to idata sections, these section
5656         can be absolute or relocatable,
5657         * fixed initialisation of codespace variables,
5658         * fixed warning about PCLATU and gpsim,
5659         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5660         * (genAssign): use table reads when assigning from variables in codespace,
5661         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5662         char/int variables placed in codespace,
5663         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5664         registers set in .asm file, no need for --pomit-config-words anymore,
5665         * (pic16glue): some 8051 legacy segments are commented out
5666         (to be removed completely),
5667         * added support for alternative assembler and linker with --asm=
5668         and --link= command line arguments,
5669         * peepholes are disabled automatically in the port, no need to
5670         specify on command line,
5671         * port supports natively char/int/long multiplication, but converts
5672         all divisions to support functions,
5673         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5674         to the file set in variable $2,
5675         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5676         strings in ASCII format and not in hex,
5677         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5678         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5679         allocate proper register if iCodes aren't temporary,
5680
5681 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5682
5683         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5684
5685 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5686
5687         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5688         is commented out
5689
5690 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5691
5692         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5693         computed address is reused
5694         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5695         multi-byte bitfields
5696
5697 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5698
5699         * src/z80/gen.c: (genArrayInit): must check for pointers too
5700
5701 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5702
5703         * support/regression/tests/zeropad.c: never meant to commit the
5704           nestedstruct test: removed, added check for GCC version
5705
5706 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5707
5708         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5709         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5710         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5711           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5712           bugs 928906 and 954082 half-empty initializers
5713         * src/SDCCsymt.h,
5714         * src/SDCCsymt.c (getAllocSize): added for above fix
5715         * src/z80/gen.c (genArrayInit): fixed bug 741044
5716         * support/regression/tests/zeropad.c: added tests
5717
5718 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5719
5720         * src/pic16/device.c (pic16_dump_section): corrected bug which
5721         caused some symbols of the libraries to be misplaced
5722
5723 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5724
5725         * src/pic16/glue.c,
5726         * src/pic16/ralloc.h,
5727         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5728         to fix conflict with pic port
5729
5730 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5731
5732         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5733         externs configuration variables,
5734         * src/pic16/ralloc.h,
5735         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5736         prototype in header, commented out some debug messages
5737
5738 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5739
5740         * src/pic16/glue.c,
5741         * src/pic16/main.c,
5742         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5743         for gpasm COFF object generation. Thanks to D. Hawkins for
5744         his patch info
5745
5746 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5747
5748         * src/ds390/main.c,
5749         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5750         Brock for spotting this)
5751         * src/ds390/gen.c (genEndFunction),
5752         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5753         interrupt handler and critical. Disable push/pop optimizations when
5754         peephole optimizations disabled.
5755
5756 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5757
5758         Updated pic16 library sources and headers.
5759         * device/lib/pic16/pic18f*/ ,
5760         * device/include/pic16/*.h: modified to handle structured SFR
5761         definitions
5762
5763 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5764
5765         * src/port.h (PORT structure): added hook initPaths, now each
5766         port can declare its own default search paths,
5767         which can been seen with the --print-search-dirs option,
5768         see pic16 port for example,
5769         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5770         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5771         * (doPrintSearchDirs): NEW, replaces in a central manner the
5772         printing of search dirs which was split in set*Paths functions,
5773         * (main): added call to port->initPaths and doPrintSearchDirs,
5774         * src/avr/main.c,
5775         * src/ds390/main.c,
5776         * src/hc08/main.c,
5777         * src/izt/i186.c,
5778         * src/izt/tlcs900h.c,
5779         * src/mcs51/main.c,
5780         * src/pic/main.c,
5781         * src/pic16/main.c: modified port structures to reflect addition of
5782         initPaths hook,
5783
5784         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5785         * (pic16_dump_section): for registers in same address reserve memory once,
5786         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5787         to no_banksel,
5788         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5789         result is greater in size than right or left,
5790         * (pic16_genUMult8X8_8): there are some cases where the result can
5791         be 16 bits size, so handle these,
5792         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5793         * (pic16_outBitC): modified to emit pcodes,
5794         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5795         or not,
5796         * (genDivOneByte): implemented algorithm to divide 8-bits,
5797         * (genCmp): uncommented goto, but issues still exist,
5798         * (genAnd): fixed a bug with variables >8bits,
5799         * (genPackBits): optimization added that uses BCF/BSF to change a
5800         single bit,
5801         * (genAssign): fixed bug when assigning floating point literals,
5802         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5803         __sdcc_gsinit_startup label,
5804         * src/pic16/main.c (_pic16_init): removed search directory
5805         initialisations,
5806         * (_pic16_initPaths): NEW, used to initialise search directories,
5807         * (_hasNativeMulFor): support functions for all except char/int
5808         multiplication, and char division,
5809         * (PIC16_port struct): modified entry for native mul support,
5810         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5811         no_banksel option,
5812         * (buildCallTree): call to register_usage is ifdef'ed out,
5813
5814 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5815
5816         * device/include/string.h: applied Stas Sergeev's patch to make this
5817         header file compatible with the preprocessor -Wundef option
5818         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5819         failure (fixes bug #941458)
5820
5821 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5822
5823         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5824         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5825         that the variable, not the function, should be static
5826         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5827         to be consistent with non-literal case
5828
5829 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5830
5831         * src/SDCCast.c (isConformingBody): fixed bug #949967
5832         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5833         convilong): fixed bug #952086
5834
5835 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5836
5837         * src/SDCCmem.c (allocVariables): fixed bug #955321
5838
5839 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5840
5841         * src/hc08/main.c (_hc08_genAssemblerEnd),
5842         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5843         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5844         completely eliminated the use of a temporary file
5845         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5846         when more than one file linked
5847         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5848
5849 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5850
5851         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5852         which fixes bug #543481
5853         * support/regression/tests/bug-751703.c: fixed comments left from a
5854         cut and paste error
5855         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5856         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5857         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5858         scopes
5859         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5860         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5861         are now changed to underscores in moduleName
5862
5863 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5864
5865         * as/mcs51/lkmem.c: better fix for bug #954173
5866
5867 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5868         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5869
5870         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5871         * device/include/c8051f000.h,
5872         * device/include/c8051f120.h,
5873         * device/include/c8051f300.h,
5874         * device/include/c8051f310.h,
5875         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5876         PWM16) and detab'ed
5877
5878 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5879
5880         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5881         and mailing lists, doc'ed --no-peep-comments, removed reference
5882         to knoppix (newest version has no LyX/LaTeX), other minor changes
5883         * src/SDCCglue.c (glue): save 2 bytes stack space with
5884         option --main-return. The ljmp could probably be avoided too
5885
5886 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5887
5888         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5889
5890 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5891
5892         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5893         * src/SDCCopt.c (isLocalWithoutDef),
5894         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5895         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5896         (credit to Maarten Brock for patch #949363, on which this is based)
5897         * support/regression/tests/bug-751703.c: some test cases of extern used
5898         within inner scopes.
5899
5900 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5901
5902         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5903         SPEC_STRUCT
5904         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5905         struct definitions
5906         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5907         dwWriteLabel): fix to create valid debugger symbols even when
5908         the module name has non-alphanumeric symbols in it
5909         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5910         when a variable's allocation has been optimized away
5911
5912
5913 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5914
5915         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5916         * src/hc08/main.c,
5917         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5918         * src/mcs51/main.c,
5919         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5920         * src/ds390/main.c,
5921         * src/z80/gen.c (z80_emitDebuggerSymbol),
5922         * src/z80/main.c,
5923         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5924         * src/pic/main.c,
5925         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5926         * src/pic16/main.c,
5927         * src/avr/gen.c (avr_emitDebuggerSymbol),
5928         * src/avr/main.c,
5929         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5930         * src/xa51/main.c,
5931         * src/SDCCdebug.c (emitDebuggerSymbol),
5932         * src/SDCCdebug.h,
5933         * src/port.h: added a debugger struct to the port struct. Added a
5934         callback for defining debugger symbols
5935
5936         * src/SDCCast.c (createLabel),
5937         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5938         with isitmp = 1
5939         * src/SDCCicode.h,
5940         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5941         iCode back to the ast for the function
5942
5943         * src/hc08/ralloc.c (hc08_assignRegisters),
5944         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5945         unneeded fields from the regs struct.
5946         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5947         pushReg() & pullReg() functions instead of emitcode()
5948
5949         * src/hc08/gen.c (genLabel, genhc08Code),
5950         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5951
5952         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5953         debugger hooks
5954
5955         * src/hc08/gen.c (genEndFunction, genhc08Code),
5956         * src/hc08/gen.h,
5957         * src/mcs51/gen.c (genEndFunction, gen51Code),
5958         * src/mcs51/gen.h,
5959         * src/ds390/gen.c (genEndFunction, gen390Code),
5960         * src/ds390/gen.h,
5961         * src/z80/gen.c (genEndFunction, genZ80Code),
5962         * src/z80/gen.h,
5963         * src/z80/z80.h,
5964         * src/pic/gen.c (genEndFunction, genpic14Code),
5965         * src/pic/gen.h,
5966         * src/pic16/gen.c (genEndFunction, genpic16Code),
5967         * src/pic16/gen.h,
5968         * src/avr/gen.c (genEndFunction, genAVRCode),
5969         * src/avr/gen.h,
5970         * src/xa51/gen.c (genEndFunction, genXA51Code),
5971         * src/xa51/gen.h,
5972         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5973         specific code to cdbFile.c and out of the backend code generators
5974
5975         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5976         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5977         starting address is now 0
5978
5979         * as/hc08/asm.h,
5980         * as/hc08/m08pst.c,
5981         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5982         assembler directive for DWARF support
5983         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
5984
5985         * src/src.dsp,
5986         * src/Makefile.in,
5987         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
5988
5989 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5990
5991         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
5992         and inappropriate peephole optimization in jump tables
5993
5994 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5995
5996         * as/hc08/m08pst.c,
5997         * src/SDCCglue.c: sdccopt works for the hc08 port now
5998
5999 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6000
6001         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6002
6003 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6004
6005         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6006
6007 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6008
6009         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6010         rules
6011         * src/SDCCmain.c,
6012         * src/SDCCglobl.h,
6013         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6014         comments from the peephole optimizer replacement rules
6015         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6016         symbols
6017         * src/SDCCcse.c (updateSpillLocation),
6018         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6019         equivalents
6020         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6021         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6022         objects far pointers
6023
6024 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6025
6026         * src/SDCCsymt.h: a missing part of my last change
6027         * src/pic/ralloc.c (regTypeNum),
6028         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6029
6030 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6031
6032         * src/SDCCicode.h,
6033         * src/SDCCicode.c (aggrToPtrDclType),
6034         * src/SDCCptropt.h,
6035         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6036         ptrPseudoSymConvert),
6037         * src/pic/ralloc.c (regTypeNum),
6038         * src/pic16/ralloc.c (regTypeNum),
6039         * src/hc08/ralloc.c (regTypeNum),
6040         * src/ds390/ralloc.c (regTypeNum),
6041         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6042         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6043
6044 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6045
6046         * link/z80/lkmain.c (afile),
6047         * as/hc08/lkmain.c (afile),
6048         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6049         prevent a pointer problem when a filename has no directory and
6050         no extension specified.
6051
6052 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6053
6054         * link/z80/lkmain.c (afile): allow periods in directory names
6055         * link/z80/lkmain.c (afile),
6056         * as/mcs51/lkmain.c (afile),
6057         * as/hc08/lkmain.c (afile): allow linker script file to have an
6058         extension other than ".lnk"
6059         * link/z80/lklex.c (getfid),
6060         * link/z80/lkmain.c (parse),
6061         * as/mcs51/lklex.c (getfid),
6062         * as/mcs51/lkmain.c (parse),
6063         * as/hc08/lklex.c (getfid),
6064         * as/hc08/lkmain.c (parse): Support comments in the linker script
6065         file on lines by themselves and after filenames
6066
6067 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6068
6069         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6070
6071 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6072
6073         * src/z80/peeph-z80.def: removed some peephole rules that don't
6074         work with multibyte arithmetic (fixed bug #937126)
6075         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6076         to registers and not global variables
6077         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6078         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6079         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6080         checking for assignments not internally generated (fixed bug #931895)
6081         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6082         structure member (fixed bug #930072)
6083
6084 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6085
6086         * src/SDCCmain.c (linkEdit),
6087         * src/hc08/main.c (_hc08_parseOptions),
6088         * as/hc08/Makefile.in,
6089         * as/hc08/aslink.h,
6090         * as/hc08/asm.h,
6091         * as/hc08/m08pst.c,
6092         * as/hc08/lkrloc.c (relr, rele),
6093         * as/hc08/lkarea.c (lnkarea)
6094         * as/hc08/lkmain.c (afile, parse),
6095         * as/hc08/lkelf.c: support for ELF output
6096         * as/hc08/lks19.c (s19),
6097         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6098
6099 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6100
6101         * as/mcs51/lkihx.c: Fixed bug #899105.
6102
6103 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6104
6105         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6106         .dsp files from Unix to DOS.
6107
6108 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6109
6110         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6111         function pointers; we have been compliant for several months now.
6112         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6113         change that was accidently commented out
6114         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6115         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6116         bug #922319
6117
6118 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6119
6120         * src/hc08/gen.c: output of all of the internal debugging information
6121         is now controlled by the D() macro; it is disabled by default
6122
6123 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6126         harder to keep the same registers during a CAST iCode
6127         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6128         long via int can be done in a single cast, if the signedness is
6129         correct.
6130         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6131         putchar() in tinibios.c in ds390's library
6132
6133 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6134
6135         * src/SDCCast.c (decorateType): fixed bug #898889,
6136         cast result of a literal complement too
6137         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6138         fixed check for bitfields
6139
6140 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6141
6142         * src/SDCCicode.c (geniCodeLogic): made it static,
6143         (geniCodeLogicAndOr): added in order to fix bug #905492,
6144         (ast2iCode): fixed bug #905492
6145         * support/regression/tests/bug-905492.c: added
6146         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6147         (processParms): fixed bug #927659: don't copy parms, this will clear
6148         decorated flag
6149         * support/regression/tests/bug-927659.c: added
6150
6151 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6152
6153         * src/SDCCast.c (addCast): don't cast float to char
6154         * device/lib/libsdcc.lib: added _memmove
6155
6156 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6157
6158         * device/lib/large/Makefile: fixed parallel execution by
6159         replacing `make` by `$(MAKE)`
6160
6161 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6162
6163         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6164         offsets (fixes bug #923936)
6165
6166 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6167
6168         * device/lib/small/Makefile: fixed parallel execution by
6169         replacing `make` by `$(MAKE)`
6170
6171 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6172
6173         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6174
6175 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6176
6177         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6178         * src/regression/Makefile: Regression test was not running.
6179
6180 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6181
6182         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6183         complement if possible
6184         * src/SDCCval.c (valComplement),
6185         * src/SDCCicode.c (operandOperation): fixed complement of literal
6186         * support/regression/tests/onebyte.c (testComplement): added
6187
6188 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6189
6190         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6191         return an optimized tree; actually replace actParm with the new tree
6192         * src/SDCCast.h: added some parantheses to remove side effects
6193         * support/regression/tests/bug-920866.c
6194
6195 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6196         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6197         Bit operands were not being handled properly in the pic14 port.
6198         (now src/regression/add.c passes again).
6199
6200 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6201
6202         * src/SDCC.y (labeled_statement): case and default no longer require
6203         a following statement (RFE #893037)
6204
6205 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6206
6207         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6208         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6209         disabled (fixes bug #916294)
6210         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6211         "mov a,acc"; patch provided by Lenny Story
6212         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6213
6214 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6215
6216         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6217         functions
6218         * src/ds390/gen.c (genFunction, genEndFunction),
6219         * src/ds390/ralloc.c (ds390_assignRegisters),
6220         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6221         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6222         pushed if there are parameters passed on the stack. Also, a cleaner
6223         way to decide if r0/r1 should be pushed/popped. (Together they fix
6224         bug #918693)
6225
6226 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6227
6228         * doc/sdccman.lyx,
6229         * device/lib/mcs51/crtpagesfr.asm,
6230         * device/lib/mcs51/crtxinit.asm,
6231         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6232         to avoid confusion with Si Lab's SFRPAGE register.
6233
6234 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6235
6236         * src/SDCCglue.c (emitMaps): allow public sfr variables
6237         * src/SDCCglue.c (initialComments): include compiler build date
6238         with compiler version and put the timestamp of the generated
6239         assembly file on a serperate line to be less confusing.
6240         * src/port.h: added genInitStartup hook
6241         * src/avr/main.c,
6242         * src/ds390/main.c,
6243         * src/hc08/main.c,
6244         * src/pic/main.c,
6245         * src/pic16/main.c,
6246         * src/xa51/main.c,
6247         * src/z80/main.c: genInitStartup initialize as NULL (default to
6248         historical behaviour)
6249         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6250         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6251         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6252         library instead of hard coding it into the compiler.
6253         * support/regression/ports/mcs51-stack-auto/spec.mk,
6254         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6255         * device/lib/mcs51/Makefile,
6256         * device/lib/small/Makefile,
6257         * device/lib/large/Makefile,
6258         * device/lib/mcs51/crtpagesfr.asm,
6259         * device/lib/mcs51/crtstart.asm,
6260         * device/lib/mcs51/crtxclear.asm,
6261         * device/lib/mcs51/crtxinit.asm,
6262         * device/lib/mcs51/crtclear.asm,
6263         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6264         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6265         and into user configurable files.
6266         * device/lib/clean.mk: clean mcs51 directory too
6267         * support/regression/tests/longlit.c: added static to T1 declaration
6268         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6269         accesses in the initialization code
6270
6271 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6272
6273         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6274         OSCTRIMVAL as noted in bug #916008
6275
6276 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6277
6278         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6279         in loops with multiple exits (reported as incorrect registers
6280         used by Martin Helmling in Sdcc-user list)
6281
6282 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6283
6284         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6285         made ds390 register extensions look less like error messages
6286
6287 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6288
6289         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6290         reported by Adam Wozniak in Sdcc-user list
6291
6292 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6293
6294         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6295         arithmetic optimizations, added debug output
6296
6297 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6298
6299         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6300         * sdcc.spec: updated and split sdcc into 3 rpms
6301         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6302         needed for literals of LEFT_OP and '+'
6303         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6304         introduced RESULT_TYPE_NOPROM
6305         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6306         left shift
6307         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6308         limited promotion to int only for '*'
6309         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6310
6311 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6312
6313         * src/pic16/gen.c (genSkip),
6314         (genc16bit2lit), (gencjneshort): commented out
6315         (is_LitOp): new helper function, checks operand type
6316         (genCmpEq): rewritten
6317
6318 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6319
6320         * support/regression/tests/bug-908454.c: added
6321
6322 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6323
6324         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6325         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6326         (geniCodeCast): cosmetic, don't preserve bit storage class
6327         (geniCodeLeftShift): added promotion
6328         (geniCodeLogic): fixed regression
6329         * src/SDCCsymt.c (computeTypeOr): accept bits too
6330         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6331
6332 2004-03-07  Borut Razem <borut.razem AT siol.net>
6333
6334         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6335
6336 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6337
6338         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6339         version of pic16_genPackRegisters which does not check if ic is a
6340         CAST operator,
6341         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6342         function cause string1.c regression test fails
6343
6344 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6345
6346         * sim/ucsim/configure.in,
6347         * sim/ucsim/configure,
6348         * sim/ucsim/doc/Makefile.in: use docdir
6349         * src/SDCC.y: fixed sbit atrributes
6350         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6351         * src/SDCCast.c (decorateType): |^& need special promotion handling
6352         * src/SDCCast.h,
6353         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6354         * src/SDCCsymt.h (computeType),
6355         * src/SDCCicode.c: computeType() needs op
6356         * src/SDCCsymt.c (checkTypeSanity),
6357         * doc/sddman.lyx: "plain" bitfields are unsigned
6358         * src/SDCCsymt.c (computeTypeOr): added
6359         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6360         |^& ops
6361         * src/SDCCval.c (val*): computeType() needs op
6362         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6363         * support/regression/tests/onebyte.c: added tests for |^&
6364
6365 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6366
6367         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6368         for writing icode into asm output.
6369
6370 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6371
6372         * src/pic16/device.c: added some debug lines enabled
6373         with macro DEBUG_CHECK,
6374         * src/pic16/genarith.c: more debug in genPlus,
6375         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6376         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6377         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6378         * (aopForSym): onStack symbols are re-placed in data memspace,
6379         and onStack flag is cleared,
6380         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6381         copy temporary pcodeop,
6382         * (genPcall): added warning for not updating PCLATU,
6383         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6384         always true for pic16 port,
6385         * (genMultOneWord): NEW, supports integer multiplication,
6386         * (genMult): modified to call genMultOneWord,
6387         * (ifxForOp): added warning when return NULL,
6388         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6389         flag is set before call to operandFromSymbol for implicit
6390         added structures,
6391         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6392         options.intlong_rent are set by default,
6393         * (_hasNativeMulFor): modified to allow port generation of integer
6394         multiplication,
6395         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6396         set regtype to REG_SFR for all registers, restricting seting the
6397         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6398
6399 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6400
6401         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6402         more than 500 times in the regression tests
6403
6404 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6405
6406         * support/Util/SDCCerr.h,
6407         * support/Util/SDCCerr.c,
6408         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6409         enumerator_list),
6410         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6411         for symbol conflicts.
6412         * support/valdiags/tests/enum.c,
6413         * support/valdiags/tests/tentdecl.c,
6414         * support/valdiags/tests/struct.c: expect possible error messages
6415         referring to original symbol definitions.
6416         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6417         * src/SDCCsymt.h,
6418         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6419
6420 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6421
6422         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6423
6424 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6425
6426         * src/pic16/ralloc.c (newReg): fixed bug #908929
6427
6428 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6429
6430         * src/ds390/gen.c: added missing #include "main.h"
6431
6432 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6433
6434         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6435         checking if symbol is already in set,
6436         * src/pic16/device.h: prototype for checkAddSym,
6437         * src/pic16/gen.c: (_G): added entry interruptvector,
6438         * (assignResultValue): removed some commented out lines,
6439         * (genFunction): check for ISR via sym->type, absolute section for
6440         interrupt code is created via a new pBlock, the goto instruction is
6441         placed now correctly at the interrupt vector position, changed all
6442         references from ivec to _G.interruptvector,
6443         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6444         is the interrupt is a high priority one, same for return from ISR,
6445         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6446         externs to calls of checkAddSym,
6447         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6448         pic16_pcode_verbose flag is set,
6449         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6450         * src/pic16/pcoderegs.c: message about how many registers are saved
6451         will only be emitted if pic16_pcode_verbose flag is set,
6452
6453 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6454
6455         * src/ds390/ralloc.h,
6456         * src/ds390/ralloc.c (ds390_regWithIdx),
6457         * src/ds390/gen.c (emitcode),
6458         * src/ds390/main.h,
6459         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6460         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6461         ds390operandCompare, getRegsRead, getRegsWritten,
6462         initializeAsmLineNode): customized instruction size calculation for
6463         ds390, started basis for some register optimizations
6464         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6465         corresponding assembly output
6466         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6467         missing push/pop of r0/r1. Optimized push/pops
6468
6469 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6470
6471         * src/mcs51/main.c (instructionSize): fixed ACALL size
6472         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6473
6474 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6475
6476         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6477         the sorting of rlist with NULL elements
6478         * (print_idataType, print_idata): NEW to create idata sections
6479         * src/pic16/device.h: idataSymSet new variable
6480         * src/pic16/gen.c (genFunction): fixed some bugs in string
6481         comparing, improved the absolute section creation for ISRs,
6482         added FSR0L/FSR0H in registers that are saved in an ISR,
6483         * (genInline): fixed the processing of inline snippets,
6484         now they undergo no process by the peephole optimizer
6485         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6486         are placed in idataSymSet,
6487         * (pic16emitStaticSeg): extern symbols are added in externs,
6488         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6489         switching when aboslute variables are placed in access bank memory
6490         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6491         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6492         commented out with #if,
6493         * (pic16_packRegisters): reintroduce the check for CAST because some
6494         symbols are not correctly handled,
6495         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6496         pCodeInstruction instead of pCode,
6497         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6498         pCodeAsmDir definition,
6499         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6500         directive, then the argument directive is emitted without the leading
6501         tab, hack for inline labels which must be in the first column,
6502         * (compareLabel,pic16_findNextInstruction),
6503         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6504         * (insertBankSwitch): modified for the new pCodeAsmDir,
6505
6506 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6507         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6508
6509         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6510         instance,
6511         * (pushSide): commented out with #if,
6512         * (assignResultValue): fixed some typos in saving
6513         registers,
6514         * (genPcall): FIXED and sync'ed with genCall,
6515         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6516         * (genNearPointerGet): fixed to handle some more cases,
6517         implementation scheme via table reads,
6518         * (genConstPointerGet): modified to access code memory correct,
6519         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6520         and improved to handle some cases
6521         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6522         instead of "RETLW" for init data
6523         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6524         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6525         variables are placed in access bank memory (<0x80 and >=0xf80),
6526         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6527         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6528         TBLWT_POSTDEC,TBLWT_PREINC
6529         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6530         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6531         directives
6532         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6533         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6534         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6535         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6536
6537 2004-02-29  Borut Razem <borut.razem AT siol.net>
6538
6539         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6540         support/Util/findme.h, support/Util/system.h: enhance binary relative
6541         search for lib and include by using findProgramPath()
6542
6543 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6544
6545         * src/SDCCpeeph.h,
6546         * src/SDCCpeeph.c (pcDistance),
6547         * src/port.h,
6548         * src/mcs51/ralloc.h,
6549         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6550         * src/mcs51/main.h,
6551         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6552         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6553         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6554         size calculation port specific, started basis for some register
6555         optimizations
6556         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6557         missing push/pop of r0/r1. Optimized push/pops
6558         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6559         * device/lib/_modsint.c (_modsint),
6560         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6561         and stack version so regression tests pass
6562
6563 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6564
6565         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6566         * src/SDCCast.c (decorateType): catch another small optimization
6567         with '?' operator
6568         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6569         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6570         modified to finally use computeType() all over SDCC,
6571         see Feature Request #877103
6572         * src/SDCCval.h: cosmetic
6573         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6574         valCompare(); regression tested in muldiv.c
6575         * support/regression/tests/muldiv.c (testMod): mod sign follows
6576         dividend only
6577
6578 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6579
6580         * src/SDCCast.c (decorateType): fixed bug #902362
6581         * doc/INSTALL.txt: fixed install instructions for win32
6582
6583 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6584
6585         * device/include/Makefile.in (install): fixed by replacing spaces
6586         by tabs
6587         * doc/README.txt,
6588         * doc/INSTALL.txt: updated for release
6589         * doc/sdccman.lyx: added warning for --xstack being buggy
6590
6591 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6592
6593         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6594         to eliminate build warnings.
6595         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6596
6597 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6598            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6599
6600         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6601         removed -penable-stack, added comment for stack pragma, added
6602         warning for not initializing the stack/frame registers, removed
6603         comment at interrupts section
6604
6605         Stack is made permanent, there is no ability to disable stack usage.
6606         * src/pic16/device.h,
6607         * src/pic16/device.c: removed all references to USE_STACK macro,
6608         * src/pic16/device.c (pic16_dump_section): when no elements in
6609         rlist, free rlist before return,
6610         * (pic16_dump_int_registers): NEW, internal registers are a new set
6611         of general purpose registers reused by each function,
6612         * (checkAddReg): returns 1 if registers is added to set,
6613         * (pic16_groupRegistersInSection): when a registers is of type
6614         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6615         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6616         SRCASECMP macro is moved here from device.c
6617         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6618         PO_PCLATU, PO_PRODL, PO_PRODH,
6619         * (pic16_pCodeOpType, genMinus,
6620         changed compares to "a" register, with AOP_ACC,
6621         * (pic16_genPlus): fixed some bugs and indented properly,
6622         * (pic16_addSign): changed size to size+offset in the MOVWF
6623         instruction,
6624         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6625         multiply 8-bit operand by literal, result is 8-bit,
6626         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6627         multiply 2 8-bit operand, result is 8-bit,
6628         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6629         genUMult8X*_16,
6630         * src/pic16/gen.c: changed accUse to contain WREG only,
6631         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6632         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6633         true, do not use immediate addressing any more unless sym is a
6634         pointer in codespace,
6635         * (aopForRemat): do not use immediate addressing when symbol not in
6636         codespace and when symbol's address is requested,
6637         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6638         accUse size (= 1),
6639         * (aopGet): added case for AOP_ACC and don't return "accumulator
6640         bug" but WREG instead,
6641         * (popGetTempReg): pushes contents of temporary register in stack,
6642         * (popReleaseTempReg): pops contents of temporary register from
6643         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6644         * (pic16_popGet): separated case AOP_ACC to return register WREG
6645         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6646         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6647         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6648         the use of immediate pointers to certain cases only.
6649
6650         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6651         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6652         * (assignResultValue, genCall, genRet): modified to use the new
6653         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6654         genPcall is still broken,
6655         * (genFunction): added code to create 'A' type pBlocks when
6656         interrupt functions are generated, code not extensively tested yet,
6657         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6658         * (genEndFunction): modified so ISRs pop stored registers from stack,
6659         * (genMultOneByte): cleanup,
6660         * (AccRsh): added flag andmask, to and result with appropriate mask,
6661         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6662         * (genDataPointerGet): fixed and reenabled its use,
6663         * (genNearDataPointerGet): bugs fixed,
6664         * (genDataPointerSet): bugs fixed,
6665         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6666         pic16_DumpSymbol, pic16_DumpOp,
6667         * src/pic16/genutils.h: function prototypes for the above functions,
6668         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6669         pointers,
6670         * (pic16emitRegularMap): many many many improvements, but needs a
6671         major cleanup,
6672         * src/pic16/main.c: enable_stack in pic16_options is removed,
6673         * (_pic16_parseOptions): removed command line options -penable-stack,
6674         * (_process_pragma): emit stack symbol only when stack pragma is
6675         processed,
6676         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6677         redirected to FSR0L/FSR0H pair,
6678         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6679         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6680         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6681         for immediates,
6682         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6683         * (dumpPicOptype): NEW,
6684         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6685         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6686         with movff instruction,
6687         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6688         added pic16_int_regs, some packRegsFor* functions are commented out,
6689         because produce errors,
6690         * src/pic16/NOTES: minor modifications
6691
6692 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6693
6694         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6695         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6696         --pack-iram.
6697         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6698         * as/mcs51/lkaomf51.c: fixed bug #895763
6699
6700 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6701
6702         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6703
6704 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6705
6706         * doc/sdccman.lyx: added details about the HC08 storage classes and
6707         interrupts, fixed the register usage info for z80 & gbz80
6708
6709 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6710
6711         * doc/sdccman.lyx: added more pic16 port documentation
6712         * device/include/pic16/: added header pic18fregs.h
6713
6714 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6715
6716         * doc/sdccman.lyx: added Vangelis' contribution
6717
6718 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6719
6720         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6721         extend to the next CALL or PCALL, not just to the next CALL.
6722
6723 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6724
6725         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6726
6727 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6728
6729         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6730         bug #895752 and a better fix for bug #716790
6731
6732 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6733
6734         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6735
6736 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6737
6738         * doc/sdccman.lyx: minor changes, minor changed
6739
6740 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6741
6742         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6743         which can't handle SDCC_NEWONEBYTEOPS,
6744         (geniCodeMultiply): removed conversion from mult to shift for pic14
6745         and pic16
6746
6747 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6748
6749         * src/hc08/gen.h,
6750         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6751         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6752         thus fixing bug #895406
6753
6754 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6755
6756         * device/lib/_modsint.c,
6757         * device/lib/_modslong.c: sign follows divisor only
6758         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6759         signs or signedness can be ignored
6760         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6761         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6762         added optimization for IFX,
6763         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6764         arguments;
6765         reenabled optimization for IFX, which was removed on 2004-01-11
6766         * src/SDCCast.h: added return type IFX
6767         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6768         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6769         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6770         SDCC_OLDONEBYTEOPS selects the old behaviour
6771         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6772         changed again and commented promotion rule
6773         * src/SDCCval.c (valDiv): promotion no longer necessary
6774         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6775         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6776         rewritten
6777         * support/regression/tests/onebyte.c: added
6778
6779 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6780
6781         * gen.c (genInline): reverted to old code for assemnling inline
6782         code because of bug reported James Chadd
6783
6784 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6785
6786         * ralloc.h: missing declarations from previous patch,
6787         seems that patch for ralloc.h was never applied, fixed
6788
6789 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6790            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6791
6792         * pcode.c,
6793         * pcode.h,
6794         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6795         indirect addressing. Marked FSR0 as deprecated
6796         * gen.c (pointerCode): commented out, not needed now
6797         (pic16_popGet2p): new MOVFF helper function
6798         (genGenPointerGet),
6799         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6800         (shiftRLong): removed duplicate debugging info
6801
6802 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6803
6804         * src/ds390/gen.c (genNearPointerGet),
6805         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6806         optimization with bits, but not bitfields.
6807         * src/ds390/ralloc.c (packRegisters),
6808         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6809
6810 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6811
6812         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6813
6814 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6815
6816         * src/SDCCsymt.h,
6817         * src/SDCCicode.c (operandFromSymbol),
6818         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6819         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6820         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6821         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6822         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6823         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6824         bug #892038
6825         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6826         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6827         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6828         * src/SDCCsymt.c (newSymbol),
6829         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6830         enumerator_list),
6831         * src/SDCCval.h,
6832         * src/SDCCval.c (newiList): fixed bug #885705
6833
6834 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6835
6836         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6837         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6838
6839 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6840
6841         * device/include/c8051f120.h,
6842         * device/include/c8051f300.h,
6843         * device/include/c8051f310.h: added/updated header files for Silicon
6844         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6845         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6846         in new section Submitting patches
6847
6848 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6849
6850         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6851         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6852         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6853         genGenPointerSet),
6854         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6855         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6856         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6857         genGenPointerSet),
6858         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6859         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6860         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6861         genGenPointerSet),
6862         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6863         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6864         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6865         genGenPointerSet): fixed bug #892400
6866         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6867         to eliminate build warnings.
6868         * src/SDCCast.c (processParms),
6869         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6870         fixed bug 751859
6871         * support/valdiag/valdiag.py: added GCC to the list of defines active
6872         when compiling with gcc
6873
6874 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         * support/Util/SDCCerr.h,
6877         * support/Util/SDCCerr.c,
6878         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6879         with an incomplete type (fixed bug #883734)
6880         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6881
6882 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6883
6884         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6885
6886 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6887
6888         * src/SDCCast.c (decorateType),
6889         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6890         function pointer implementation
6891         * support/regression/tests/funptrs.c: added tests to verify both forms
6892         of function pointers work correctly. Added tests to verify parameters
6893         are passed in the correct order.
6894
6895 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6896
6897         * device.c (regCompare): registers are sorted by ascending
6898         address and increasing size,
6899         * main.c (_pic16_finaliseOptions): removed the declaration
6900         of compiler macro MCU. Now a macro of the format pic18fxxxx
6901         will be defined from the command line
6902
6903 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6904             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6905
6906         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6907         PCOP_RLCF was overwritten!
6908         * gen.c (genSkip): commented out calls to pic16_emitcode,
6909         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6910         * (genlshTwo),
6911         * (genRRC): added debugging info,
6912         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6913         overwritten while shifting,
6914         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6915         overwritten while shifting,
6916         * (AccLsh),
6917         * (AccRsh),
6918         * (shiftLLeftOrResult),
6919         * (shiftRLeftOrResult),
6920         * (shiftRLong),
6921         * (shiftLLong): Implemented with pic16_emitpcode
6922         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6923         * (genLeftShift): Fixed bug, operand for shift by variable always
6924         was "and"ed with 0x0f,
6925         * (genLeftShiftLiteral),
6926         * (genrshTwo),
6927         * (genRightShiftLiteral): added debugging info,
6928         * (genrshFour): added comment,
6929         * (genRightShift): determined signedness from operand "left"
6930         instead of "result"
6931
6932 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6933
6934         * src/SDCCicode.c (geniCodeParms),
6935         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6936         function pointers, fixed function pointer bugs #861242 and #861896
6937
6938 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6939
6940         * device/include/c8051f000.h,
6941         * device/include/c8051f120.h,
6942         * device/include/c8051f300.h: added header files for Silicon
6943         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6944
6945 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6946
6947         * src/SDCCast.c (processParams): added new type flow and restructured
6948         (gatherAutoInit): added new type flow
6949         (addCast): cosmetic changes
6950         (getLeftResultType): added new type flow for array indices, patch
6951         provided by Stas, see FR #877103
6952         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6953         array index patch by Stas
6954         * src/SDCCast.h: added prototype getResultTypeFromType()
6955         * src/SDCCval.h,
6956         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6957         * src/pic/glue.c (pic14emitStaticSeg),
6958         * src/pic16/glue.c (pic16emitStaticSeg),
6959         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6960         for initialization of symbols
6961         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6962         * support/Util/SDCCerr.h:
6963         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6964         * .version: bumped version number to 2.3.8
6965         * device/include/Makefile.in (install),
6966         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6967         avoid warnings
6968
6969 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6970
6971         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6972         Slade Rich fixed an optimization bug
6973         * src/pic/pcodepeep.c,
6974         * src/pic/pcoderegs.c
6975         * doc/Makefile (install): added test for directory
6976
6977 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6978
6979         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6980         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6981         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6982         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
6983         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
6984         * as/mcs51/asexpr.c (term),
6985         * as/hc08/asexpr.c (term): fixed bug #887146
6986
6987 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         * src/z80/gen.c (genMult): handle single byte result product
6990         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
6991         DUMMY_READ_VOLATILE (fixed bug #886367)
6992
6993 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
6994
6995         * support/regression/tests/libmullong.c: fixed logic, on little endian
6996         hosts we ended without a mullong_wrapper()
6997
6998 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6999
7000         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7001         virus/worm forged address usage.
7002
7003 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7004
7005         Fixed promotion, it should be done on AST level:
7006         * src/SDCCast.c (addCast): added promotion to int
7007         (decorateType): updated call to upCast()
7008         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7009         usualUnaryConversions()
7010
7011 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7012
7013         * support/regression/tests/literalop.c (mulWrapper): Added a
7014         wrapper to remove integer overflow warnings.
7015
7016         * support/regression/tests/float_trans.c: Made work on host.
7017
7018         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7019         location of sz80.
7020
7021         * support/regression/generate-cases.py (main): Changed from inline
7022         to a main method.
7023
7024         * doc/Makefile (install): Changed to depth first to get rid of
7025         missing directory install warning.
7026
7027         * as/Makefile (install-doc): Made work on Mac.
7028
7029 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7030
7031         * src/SDCCast.c: added an additional type flow in decorateType() of
7032         opposite direction, see feature request #860006; it's enabled at runtime
7033         by setting the environment variable SDCC_NEWTYPEFLOW
7034         * src/SDCCast.h: changed prototype of decorateType()
7035         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7036         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7037         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7038         see feature request #877103
7039         * src/SDCCval.c: updated call of decorateType()
7040         (valBitwise): fixed bug #882876
7041         (valMinus): added promotion
7042         (valLogicAndOr): result is unsigned
7043         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7044         * src/SDCCsymt.c (computeType),
7045         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7046         must not cause an unsigned operation
7047         * src/pic/glue (pic14emitRegularMap),
7048         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7049
7050 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7051
7052         * src/pic/pcode.c (PCodeID): commented out left over debug code
7053
7054 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7055
7056         * support/valdiag/tests/overflow.c: added shift tests
7057         * src/pic/device.c,
7058         * src/pic/gen.c,
7059         * src/pic/gen.h,
7060         * src/pic/glue.c,
7061         * src/pic/main.c,
7062         * src/pic/pcode.c,
7063         * src/pic/pcode.h,
7064         * src/pic/pcodepeep.c,
7065         * src/pic/pcoderegs.c,
7066         * src/pic/ralloc.c,
7067         * src/pic/ralloc.h: applied patch from Slade Rich;
7068         added support for multiple code pages and multiple RAM banks on the
7069         PIC 14 port. The ASM files now no longer simply assume all the
7070         code / RAM are in the same page / bank. This means the linker can
7071         safely allocate code/RAM of separate ASM files to different pages/banks.
7072         * doc/sdccman.lyx: added Slade's tips
7073         * src/mcs51/peeph.def: fixed bug #880768
7074
7075 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7076
7077         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7078         * src/SDCCast.c (decorateType): fixed bug #880197
7079
7080 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7081
7082         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7083         getopt.h.
7084
7085         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7086         strtof is not part of C89 and isn't included with Mac OS X.
7087
7088 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7089
7090         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7091         shiftL2Left2Result): fixed bug #879326
7092         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7093         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7094         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7095         address fetch for clr instruction
7096         * device/lib/hc08/_mulint.c: created optimized assembly version
7097         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7098
7099 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7100
7101         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7102         proposed in FR #877103
7103
7104 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7105
7106         * src/SDCCval.c (cheapestVal): added missing checks
7107         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7108         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7109
7110 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7111
7112         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7113         equal operands
7114
7115 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7116
7117         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7118         loaded with the linker search paths (-L arguments) and the libraries
7119         to be linked with the current source (-l arguments). Changes
7120         currently will affect only the pic16 port.
7121         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7122         include path the port specific paths and port specific libraries,
7123         * gplink command now contains the $3 argument,
7124         * src/pic16/device.h,
7125         * src/pic16/device.c,: structure PIC_device is made public and
7126         renamed to PIC16_device, the same for variable Pics which is renamed
7127         to Pics16. Updated all references to them.
7128         * src/pic16/glue.c (pic16glue): corrected bug with code
7129         initialization which bypassed the variable initializations block.
7130
7131         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7132         COMPILE_FLAGS and added the --nostdinc option
7133
7134 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7135
7136         * device/include/mc68hc908jb8.h: Register defs for another member
7137         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7138
7139 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7140
7141         Documenting changes from previous commits.
7142         * configure.in (version 1.56),
7143         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7144         when generating output files to configure the pic16 library,
7145         but now I've commented it out, since gputils aren't installed in the
7146         SF compile farm, so library won't compile
7147
7148         * device/lib/Makefile.in (version 1.56): initially I've added in
7149         target 'all' the prerequestive 'model-pic16' so it compiled the
7150         pic16 library, but now I've commented it out for the same reasons
7151         above,
7152         * added targets 'model-pic16' and 'objects-pic16' to compile the
7153         library
7154         * added target 'port-specific-objects-pic16' to handle the
7155         generated libraries and copy them into the build/ directory
7156         * added target 'clean-intermediate-pic16' to clean intermediate
7157         files into pic16 directory
7158         * in target 'installdirs' added line to create directory pic16 in
7159         the installation path
7160
7161         * device/include/Makefile.in (version 1.11): in target 'install'
7162         added lines to copy all header files to installation path,
7163         * in target 'installdirs' added line create directory for pic16
7164         headers in the installation path
7165
7166 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7167
7168         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7169          a function call
7170
7171 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7172
7173         * configure,
7174         * device/lib/configure.in,
7175         * device/lib/configure: fixed for autoconf 2.57
7176
7177 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7178
7179         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7180         option so that it actually works. Made it specific to the z80, since
7181         the gbz80 doesn't have these kinds of I/O ports.
7182
7183 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7184
7185         * device/include/z180.h,
7186         * device/lib/_memcpy.c,
7187         * device/lib/_memmove.c,
7188         * device/lib/_mulint.c,
7189         * device/lib/ser_ir.c,
7190         * device/lib/ser_ir_cts_rts.c,
7191         * device/lib/_strcmp.c,
7192         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7193         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7194         portmode; added deprecation warning for bank= and protmode= forms.
7195         Also, guard against buffer overflow.
7196         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7197
7198 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7199
7200         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7201         changed interrupt vector table generation to only emit declared vectors.
7202         * device/include/Makefile.in: added missing backslash
7203         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7204
7205 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7206
7207         Mainly changes to support compilation of the device libraries
7208         * src/pic16/device.c: stack is allocated via symbol and not
7209         via literal number. The symbol is placed in the corresponding
7210         position of the data ram
7211         * (pic16_dump_section): relocatable and absolute uninitialized
7212         data are now emitted in sorted order to reduce section naming,
7213         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7214         weren't marked as being in the access bank,
7215
7216 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7217
7218         Added portion of GNU PIC Library under the directory
7219         device/include/pic16 and device/lib/pic16. These files
7220         contain the declarations of SFRs for the PIC18Fxx2 devices.
7221         The directory is initialized via configure from toplevel.
7222
7223 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7224
7225         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7226         the spilllocations to be compared correctly
7227
7228 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7229
7230         * src/SDCCast.c (decorateType): fixed bug introduced today
7231
7232 2004-01-12  Borut Razem <borut.razem AT siol.net>
7233
7234         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7235         doc/sdccman.lyx: upper case pragmas are deprecated
7236
7237 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7238
7239         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7240         in simpler and even better code
7241
7242 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7243
7244         * src/SDCCicode.c (operandOperation): fixed bug #874819
7245         * src/SDCCast.c (decorateType): fixed
7246         char foo (unsigned long ul) { return ul > 0; }
7247
7248 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7249
7250         * doc/sdccman.lyx: Moved and added some sections, small changes
7251         all over. Telling LaTeX to be less strict with word spacing
7252         to better keep the right margin. Changed some notes about
7253         maintainance of the ports in section 3.2.1 - is it OK like this?
7254
7255 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7256
7257         SDCC source changes:
7258         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7259         convilong): modified to inform the pic16 port that builtin functions
7260         are external
7261
7262         PIC16 PORT specific changes:
7263         * src/pic16/device.c pic16_dump_equates() added,
7264         processor registers declared internally by the port are emitted in
7265         the translation as equates,
7266         * src/pic16/gen.c: inline code is passed unprocessed to the
7267         translation,
7268         * (pic16_popGetLit2): fnuction modified to take second operand as
7269         pCodeOp pointer and not as literal,
7270         * (popRegFromIdx): prefixed with pic16_,
7271         * (pic16_popCombine2): modified to receive already allocated pCode
7272         operands,
7273         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7274         * (genFunction): initializes local stack frame and pushes on stack
7275         all the registers used by this function,
7276         * (genEndFunction): restores all registers from stack and restores
7277         stack frame,
7278         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7279         improvements,
7280         * (pic16glue): changed the program startup sequence,
7281         * added new dbName code 'A' for functions placed in absolute section
7282         * src/pic16/main.c: added function attribute _naked,
7283         * added pragma 'code' to place a fnuction at an absolute address,
7284         * added command line arguments --debug-ralloc and --pcode-verbose,
7285         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7286         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7287         * (pic16_newpCodeOpLit2): modified to take the second operand as
7288         pCodeOp pointer,
7289         * (pic16_printpBlock): modified to emit each function in a separate
7290         section,
7291         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7292         UPPER for immediate operands,
7293         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7294         instruction,
7295         * src/pic16/peeph.def: all peepholes with movff are commented out,
7296         because there is a problem in the pcode peep optimizer,
7297         * src/pic16/ralloc.c: the register allocator can now reuse local
7298         function symbols for another function. This saves register usage.
7299         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7300
7301         Added file src/pic16/NOTES with information about program writing on
7302         the current port version.
7303
7304 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7305
7306         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7307         and peephole 252 (array access)
7308
7309 2004-01-09  Borut Razem <borut.razem AT siol.net>
7310
7311         * src/SDCCmain.c : fixed #872250: -l command line defined library
7312           files are scanned before standard library files
7313
7314 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7315
7316         * src/SDCCast.c (decorateType): fixed bug #874046
7317
7318 2004-01-09  Borut Razem <borut.razem AT siol.net>
7319
7320         * support/scripts/sdcc.nsi: remove previous installation
7321
7322 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7323
7324         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7325         bytes for last interrupt vector (mcs51)
7326         * sdcc.spec: fixed typo
7327
7328 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7329
7330         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7331         gen51Code): more efficient parameter receive for --model-large
7332         ("bug" #845294)
7333
7334 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7335
7336         * src/ds390/main.c,
7337         * src/z80/main.c: added missed needLinkerScript flags (more than
7338         one port structure defined in these file)
7339         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7340         bug #795325
7341
7342 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7343
7344         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7345         * src/port.h: added flag needLinkerScript in port->linker
7346         structure to inform whether to create a .lnk file or not,
7347         * src/avr/main.c,
7348         * src/ds390/main.c,
7349         * src/hc08/main.c,
7350         * src/mcs51/main.c,
7351         * src/pic/main.c,
7352         * src/pic16/main.c,
7353         * src/xa51/main.c,
7354         * src/z80/main.c: changed appropriately to configure
7355         needLinkerScript flag
7356         * src/pic/gen.c,
7357         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7358         * src/pic/glue.c: added variable udata_section_name to
7359         override default uninitialized data segment definition for
7360         devices only with SHAREBANK memory (reported from Erik Epetrich)
7361         * (pic14emitOverlay): modified to emit a commented overlay segment
7362         directive when no overlay data exist
7363         * (picglue): modified to emit uninitialized data segment
7364         according to udata_section_name
7365         * src/pic/main.c (_pic14_parseOptions): added command line
7366         options --udata-section-name=[name] to override default
7367         udata definition name
7368         * modified _linkCmd and _asmCmd to include compiler passed
7369         arguments via -W option
7370         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7371         object file from '.rel' to '.o' in port->linker structure,
7372         changed size of fptr from 2 to 3 in port structure
7373
7374 2004-01-07  Borut Razem <borut.razem AT siol.net>
7375
7376         * support/scripts/sdcc.nsi: update PATH
7377         * support/scripts/sdcc.ico: craeted
7378
7379 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7380
7381         * device/include/Makefile.in: fix install
7382         * doc/Makefile: fix install
7383
7384 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7385
7386         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7387         in bug #860505
7388         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7389         how the function variable allocation summary is displayed; also
7390         include information about variables allocated to the overlay
7391         segment
7392
7393 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7394
7395         * as/mcs51/lkmain.c: Help about -Y option
7396         * as/mcs51/lkarea.c: Fixed gcc warnings
7397
7398 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7399
7400         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7401         fixed warning
7402         * support/valdiag/tests/overflow.c: added
7403         * src/SDCCast.c (decorateType),
7404         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7405         LEFT_OP (left shift)
7406
7407 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7408
7409         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7410         (default behaviour).
7411
7412 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7413
7414         A python script to validate compiler diagnostic messages. It can be
7415         used to verify that sdcc complains about bad c source code and
7416         gives a good location of the error.
7417         * support/valdiag/Makefile,
7418         * support/valdiag/valdiag.py,
7419         * support/valdiag/tests/*
7420
7421 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7422
7423         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7424         * src/SDCCsymt.c (newEnumType),
7425         * src/SDCCsymt.h
7426         * support/Util/SDCCerr.c,
7427         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7428         enum related bugs.
7429         * support/regression/tests/enum.c: added test for enum values that
7430         require at least 2 bytes of storage.
7431
7432 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7433
7434         * src/common.h: added ifndef/define/endif macros
7435         around the header file.
7436         Bug reported from Jesus Calvino-Fraga
7437
7438 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7439
7440         * sdcc.spec: updated
7441         * device/include/Makefile.in: don't install CVS directories
7442         * device/lib/Makefile.in: added removal of CVS directories after install
7443         * doc/Makefile: fixed install, added local_icons
7444         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7445         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7446         * src/ds390/gen.c (genRightShift): fixed bug #870788
7447         * src/SDCCast.c (decorateType): fixed bug #870781
7448
7449 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7450
7451         PIC16 port related changes:
7452         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7453         added variable stackPos,
7454
7455         * gen.c: genCall, assignResultValue: added support for
7456         pushing/retrieving function parameters to/from stack,
7457         genFunction,genEndFunction: setup stack frame for the
7458         generated function,
7459         genAddrOf: will be changed according to bug 863624
7460
7461         * added files genutils.c and genutils.h which contain gen*
7462         debugged and optimised functions extracted from gen.c
7463
7464         * glue.c: added variable 'externs' which holds extern symbols,
7465         pic16emitRegularMap: is modified to properly handle relocatable
7466          symbols under the new scheme,
7467         pic16createInterruptVect: is modified
7468         pic16printPublics: is modified to emit 'global' assembler directives,
7469         added pic16_printExterns to print extern symbols,
7470         pic16glue: initializes stack/frame pointer in the beginning of
7471         the assembly output. Temporary hack, will be corrected later,
7472         because gplink yet does not support stack and SDCC does not
7473         yet support a type of crt0.o object to create the final binary.
7474
7475         * Removed many lines that contain 8051 legacy code.
7476         * The code is finally placed under a 'code' directive.
7477         * Added port specific options.
7478
7479         * _process_pragma: simplified since now we do not need *special*
7480         include file to define SFR registers. But a separate header
7481         will be needed. This will be developed later.
7482         * _pic16_parseOptions: added, parses port specific options:
7483         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7484         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7485         --preplace-udata-with=
7486
7487         * _pic16_setDefaultOptions: modified to initialize section names,
7488         but hack is temporarly out of order since it needs improvement.
7489         * _pic16_genAssemblerPreamble: configuration words are emitted by
7490         their address instead of their name. This part is incomplete and
7491         supports only the 18Fxx2 devices. Other devices will emit an error
7492         during assembly since they do not contain the same set of config
7493         registers
7494         * _pic16_genIVT: is modified,
7495
7496         * pcode.c: added definitions for some hardware registers that are needed
7497         for stack support
7498         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7499         All PCI entries are updated. Now LFSR is supported.
7500         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7501         * added pic16_newpCodeOpLit2 to support instructions with
7502         two literal arguments
7503         * pic16_pCode2str: corrected code that emits assembler instructions
7504         with two literal operands and those that have an access bit modifier
7505         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7506         this fixes a bug which caused some labels to be lost, when an
7507         assembler directive was added, i.e. banksel,
7508         * pic16_FixRegisterBanking: improved logic that causes the insertion
7509         of bank switching,
7510         * InlineFunction: functions that are called once, are not any more
7511         inlined. This can be a port option in the future,
7512
7513         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7514
7515         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7516         hold the corresponding uninitialized symbols,
7517         * pic16_allocProcessorRegister: registers have explicit marked the
7518         accessBank field,
7519         * pic16_allocInternalRegister: registers are explicit marked as
7520         not used,
7521         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7522         processing list, so bit registers were lost,
7523         *
7524
7525         * ralloc.h: added field 'accessBank' and original symbol operand
7526         in register definition,
7527         * removed the field isMapped from register definition,
7528
7529         ** Several functions have been removed from various sources:
7530         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7531         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7532         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7533         pic16_assignRelocatableRegisters
7534
7535         ** others have been introduced:
7536         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7537         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7538
7539 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7540
7541         * support/scripts/inc2h.pl: changed definition of BIT_AT
7542         to emit 'sbit at' instead of 'bit at'. This was a request.
7543
7544         PIC16 port related preliminary changes:
7545         * gen.c: prefixed function popRegFromString with
7546         pic16_ and all references to it corrected
7547         * pcode.c: all pic16_pc_* hardware registers prefixed
7548         with underscore (_),
7549         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7550         * ralloc.c: newReg(): when register is REG_SFR then
7551         set address to rIdx,
7552         pic16_allocProcessorRegister(): marks register wasUsed=0
7553         pic16_writeUsedRegs(): added a call to assign processor
7554         registers via pic16_assignFixedRegisters
7555
7556 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7557
7558         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7559         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7560         variables in unused register banks.  Also the SSEG is placed
7561         wherever there is enough space for it, and IDATA can be anywhere
7562         in internal RAM.  For now compile using -Wl-Y[stack_size].
7563         The mem file is different for this option as well, since it
7564         makes no sense of talking about DSEG lenght.
7565
7566 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7567
7568         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7569         in certain cases, e.g. when ROM assignment, patch provided
7570         from Albert den Haan.
7571
7572 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7573
7574         Many signedness and type propagation fixes:
7575         * src/SDCCicode.c: made geniCodeCast() static
7576         replaced SPEC_ by IS_ (cosmetic)
7577         (operandOperation): fixed div and mod operation
7578         (usualBinaryConversions): added support for promotion of char
7579         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7580         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7581         (geniCodeAdd): an array index will stay unsigned, even if promoted
7582         from char to int
7583         (geniCodeArray): ditto
7584         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7585         * src/SDCCsymt.c (computeType): added more support for char;
7586         promotion of char is selectable by promoteCharToInt, fixed signedness
7587         for all cases
7588         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7589         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7590         * src/SDCCval (val*): replaced signedness calculation by
7591         computeType()
7592         rearranged if-branches (cosmetic)
7593         (valShift): added warning W_SHIFT_CHANGED
7594         (valCompare): fixed problem with different types
7595         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7596         * support/regression/tests/literalop.c: added many cases
7597         * support/regression/tests/ast_constant_folding.c: changed finally to
7598         'unsigned int'
7599         * .version: new year, new version: 2.3.7
7600         * src/SDCCmain.c (main): applied patch #866468
7601         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7602         provided by Scott Bronson
7603         * doc/sdccman.lyx: updated documentation for sdcdb
7604         updated and added chapter tips
7605
7606 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7607
7608         * src/SDCCsymt.h: missing from yesterday's commits
7609
7610 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7611
7612         * src/SDCC.y (struct_or_union_specifier),
7613         * support/Util/SDCCerr.c,
7614         * support/Util/SDCCerr.h: verify that struct & union tags are used
7615         as declared.
7616
7617 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7618
7619         * src/SDCCglobl.h: missing from yesterday's commits
7620
7621 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7622
7623         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7624         sft_attributes, struct_declaration, parameter_declaration,
7625         type_name, start_block, declaration_list),
7626         * src/SDCC.lex (check_type): support redefinition of typedef names
7627
7628 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7629
7630         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7631         aligned xdata arrays. Erik helped me with the if clause.
7632
7633 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7634
7635         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7636         warning
7637
7638 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7639
7640         * src/SDCCast.h,
7641         * src/SDCCast.c (newAst_),
7642         * src/SDCCicode.h,
7643         * src/SDCCicode.c (ast2iCode, newiCode),
7644         * src/SDCCglobl.h,
7645         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7646         expr, statement, expression_statement, selection_statement,
7647         iteration_statement, expr_opt, jump_statement): foundation for tracking
7648         sequence points
7649         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7650         point code too)
7651
7652 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7653
7654         * support/Util/SDCCerr.c,
7655         * src/SDCCast.h,
7656         * src/SDCCast.c (createCase, createDefault, decorateType),
7657         * src/SDCClabel.c (labelUnreach),
7658         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7659         to error messages.
7660         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7661         (with thanks to Stas Sergeev)
7662         * device/include/time.h,
7663         * device/lib/time.c (CheckTime): suppress unreachable code warning
7664
7665 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7666
7667         * src/SDCCast.c (createIvalCharPtr),
7668         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7669         bug #753752)
7670         * support/regression/tests/nullstring.c: tests for these two bugs
7671
7672 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7673
7674         * support/Util/SDCCerr.h,
7675         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7676         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7677         about storage class and 'at' used inside struct or union
7678         * src/SDCCBBlock.c (iCodeFromeBBlock),
7679         * src/SDCCcse.c (ifxOptimize),
7680         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7681         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7682         printIval, emitStaticSeg, emitOverlay),
7683         * src/SDCClabel.c (deleteIfx),
7684         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7685         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7686         gatherAutoInit, processParms),
7687         * support/Util/SDCCerr.h,
7688         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7689         reporting for post-parse errors.
7690
7691 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7692
7693         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7694         implicit casts via union; they don't work on big endian systems
7695         (possible fix for bug #861138)
7696
7697 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7698
7699         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7700         * src/mcs51/main.c: fixed the fix for bug #737001
7701
7702 2003-12-15  Borut Razem <borut.razem AT siol.net>
7703
7704         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7705
7706 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7707
7708         * support/makebin/makebin.c: put output in binary mode
7709
7710 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7711
7712         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7713         xdata and data memory on startup. Set the environment variable
7714         SDCC_NOGENRAMCLEAR to disable this.
7715         * src/mcs51/peephole.def,
7716         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7717         (allows non-interrupt and interrupt code to safely compete for a resource
7718         without the non-interrupt code having to disable interrupts)
7719
7720 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7721
7722         * src/SDCCicode.c (geniCodeAdd),
7723         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7724         with valFromType if type might be a pointer and host is big endian).
7725         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7726         types, not just integer types.
7727         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7728         multiply defined with mismatching "at" address.
7729
7730 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7731
7732         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7733         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7734         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7735         with embedded nulls (fixed bug #753752)
7736
7737 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7738
7739         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7740         Apparently this did not see much testing (endless loop)
7741
7742 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7743
7744         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7745
7746 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7747
7748         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7749         gracefully handle NULL memmap pointers
7750
7751 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7752
7753         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7754         instead of deleting the iCode when an operand is volatile
7755         * src/z80/gen.c (genDummyRead),
7756         * src/mcs51/gen.c (genDummyRead),
7757         * src/ds390/gen.c (genDummyRead),
7758         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7759         not just IC_RIGHT
7760         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7761         * src/SDCC.y: fixed bug #850420
7762
7763 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7764
7765         Applied z80 i/o port patch from Peter Townson and fixed some operators
7766         to better handle operands in A register.
7767         * device/include/z180.h
7768         * src/SDCC.y
7769         * src/SDCCglue.c
7770         * src/z80/gen.c
7771         * src/z80/gen.h
7772         * src/z80/main.c
7773         * src/z80/peeph-z80.def
7774         * src/z80/peeph.def
7775         * src/z80/z80.h
7776
7777 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7778
7779         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7780
7781 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7782
7783         * device/lib/hc08/_mullong.c: Removed extra #endif
7784
7785 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7786
7787         * sim/ucsim/hc08.src/inst.cc,
7788         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7789         carries from x to h
7790         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7791         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7792         * device/include/stdarg.h: fixed varargs for hc08
7793         * device/lib/Makefile.in,
7794         * device/lib/hc08/Makefile,
7795         * device/lib/hc08/_mulint.c,
7796         * device/lib/hc08/_mullong.c: fixed some endian problems
7797
7798 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7799
7800         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7801         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7802         * device/lib/_gptrget.c,
7803         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7804
7805 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7806
7807         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7808         * src/SDCCast.c (astErrors): fixed bug #846007
7809         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7810
7811 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7812
7813         * src/SDCCast.c (decorateType): disabled a transformation I added in
7814         revision 1.188 (access to fields of a structure at an absolute address);
7815         it breaks with bitfields, extern declarations, and gcse analysis.
7816         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7817         could be assigned through a pointer, so don't complain.
7818         * src/SDCCast.c (astErrors),
7819         * src/SDCCast.h,
7820         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7821
7822 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7823
7824         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7825         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7826         output of __config directives, since gpasm now supports them
7827         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7828         pre-processor macro, i.e. -DMCU=p18f452
7829         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7830         and modified to handle 'cast' icode similarly to '=' icode
7831         * src/pic16/device.h (typedef struct PIC_device): added field
7832         'extMIface' to indicate that chip has external memory interface
7833         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7834         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7835         18F8720
7836
7837 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7838
7839         * src/SDCC.y (pointer): fixed bug #846006
7840         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7841         * src/SDCCast.c (decorateType): fixed bug #846009
7842         * src/ds390/peeph.def,
7843         * src/ds390/gen.c (genAnd, genOr),
7844         * src/mcs51/peeph.def,
7845         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7846
7847 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7848
7849         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7850         * src/SDCCdflow.c
7851         * src/SDCCcse.c
7852         * src/SDCCcse.h
7853         * src/SDCCBBlock.h
7854         * src/SDCCBBlock.c
7855
7856 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7857
7858         fixed bug #845089
7859         * src/SDCCbitv.h,
7860         * src/SDCCbitv.c: added function to free a bitvector
7861         * src/SDCClrange.h,
7862         * src/SDCClrange.c: added function to recompute the liveranges
7863         * src/avr/ralloc.c,
7864         * src/ds390/ralloc.c,
7865         * src/hc08/ralloc.c,
7866         * src/mcs51/ralloc.c,
7867         * src/pic/ralloc.c,
7868         * src/pic16/ralloc.c,
7869         * src/xa51/ralloc.c,
7870         * src/z80/ralloc.c: recompute the liveranges after register packing
7871
7872 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7873
7874         * src/SDCCloop.c (newInduction): fixed bug #845630
7875
7876 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7877
7878         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7879         inadvertantly left behind from my 2003-11-12 change
7880
7881 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7882
7883         Updated headers I neglected to commit yesterday.
7884         * src/SDCClrange.h,
7885         * src/SDCCicode.h
7886
7887 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7888
7889         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7890         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7891         * src/SDCCopt.c (eBBlockFromiCode),
7892         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7893         the creation of the key hash table from the sequencing so it can be used
7894         earlier (for some GCSE bug fixes still pending)
7895
7896 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7897
7898         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7899         * support/regression/tests/addsub.c: testing genPlus shortcut
7900
7901 2003-11-15  Borut Razem <borut.razem AT siol.net>
7902
7903         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7904
7905 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7906
7907         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7908         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7909         ordering is immaterial.
7910         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7911
7912 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7913
7914         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7915         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7916         (SIGSEV) of bug #840381
7917         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7918         unlink new file before rename if new and old filenames are the same)
7919
7920 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7921
7922         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7923         uninitialized variables) for the mcs51. Set environment variable
7924         SDCC_GENRAMCLEAR to test.
7925         xdata initialization slightly shorter
7926
7927 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7928
7929         * src/SDCCsymt.h,
7930         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7931         #838241 & 780691 (basicly the same bug)
7932         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7933         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7934
7935 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7936
7937         * src/SDCCmain.c (linkEdit): "fix" #834252
7938
7939 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7940
7941         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7942         * src/SDCCast.h,
7943         * src/SDCC.y: fixed bug #819403
7944
7945 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7946
7947         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7948         the reentrant attribute.
7949         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7950         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7951         simulation
7952         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7953         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7954         erroneously reduced to a literal.
7955         * src/hc08/ralloc.c (packRegisters, rematStr),
7956         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7957         some cases
7958
7959 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7960
7961         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7962         * doc/sdccman.lyx: changed from 'article' to 'book'
7963         * doc/Makefile: readded test_suite_spec and cdbfileformat
7964
7965 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7966
7967         * device/include/stdlib.h: include malloc.h to comply with ANSI
7968         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7969
7970 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7971
7972         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7973         * doc/clean.mk: also remove *.out files
7974         * doc/sdccman.lyx: some additions, larger top/bottom margins
7975
7976 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7977
7978         * src/SDCC.y: fixed bug #837365
7979         * support/regression/tests/bitopcse.c
7980         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7981         a symbol (might be valop instead)
7982         * device/lib/Makefile.in: added errno.c to HC08SOURCES
7983         * device/lib/clean.mk: added hc08 to the cleaning list
7984
7985 2003-11-04  Borut Razem <borut.razem AT siol.net>
7986
7987         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
7988           made 2003-11-04
7989         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
7990           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
7991           malloc is declared in standard stdlib.h
7992
7993 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7994
7995         * device/lib/hc08/Makefile: need to clean .rel not .o files
7996         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
7997
7998 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7999
8000         * src/port.h,
8001         * src/hc08/main.c,
8002         * src/mcs51/main.c,
8003         * src/ds390/main.c,
8004         * src/z80/main.c,
8005         * src/avr/main.c,
8006         * src/pic/main.c,
8007         * src/pic16/main.c,
8008         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8009         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8010         tests (which uses the port's oclsExpense function)
8011         * src/SDCC.y,
8012         * src/SDCCast.c,
8013         * src/SDCCicode.c,
8014         * src/hc08/gen.c,
8015         * src/ds390/gen.c,
8016         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8017
8018 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8019
8020         * src/SDCCcse.c (ifxOptimize),
8021         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8022         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8023         deleting the IFX iCode.
8024         * src/hc08/ralloc.c: reduced unneeded slocs
8025         * src/hc08/gen.c: fixed bug in asmopToBoolean
8026
8027 2003-11-04  Borut Razem <borut.razem AT siol.net>
8028
8029         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8030           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8031           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8032           transferred to configure
8033
8034 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8035
8036         Use headers defined in the C[++] standards:
8037         * sim/ucsim/gui.src/serio.src/fileio.cc
8038         * sim/ucsim/gui.src/serio.src/frontend.cc
8039         * sim/ucsim/gui.src/serio.src/main.cc
8040         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8041         * support/Util/NewAlloc.c
8042         * as/hc08/lklibr.c
8043         * as/mcs51/lklibr.c
8044         * as/z80/aslist.c
8045         * as/z80/assym.c
8046
8047 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8048
8049         * Added MSVC projects for hc08 assembler and linker:
8050         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8051         /as/hc08/link_hc08.dsp
8052
8053 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8054
8055         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8056
8057 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8060
8061 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8062
8063         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8064
8065 2003-10-31  Borut Razem <borut.razem AT siol.net>
8066
8067         * support/cpp2/cpplib.h,
8068           support/cpp2/cpplib.c,
8069           support/cpp2/cpplex.c,
8070           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8071           to switch _asm block preprocessing on / off. Default is
8072           #pragma preproc_asm +
8073
8074 2003-10-31  Borut Razem <borut.razem AT siol.net>
8075
8076         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8077           when outputting comment blocks (when executed with -C option) and
8078           _asm (SDCPP specific) blocks
8079
8080 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8081
8082         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8083
8084 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8085
8086         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8087
8088 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8089
8090         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8091         * src/SDCCast.c (decorateType): fixed bug #832664
8092
8093 2003-10-31  Borut Razem <borut.razem AT siol.net>
8094
8095         * support\cpp2\cpplex.c: fixed for SDCPP:
8096           comments(when executed with -C option) and _asm blocks
8097           were included even if they where in skipped #if block.
8098           Applied solution from GCC cpp 3.3.2
8099
8100 2003-10-31  Borut Razem <borut.razem AT siol.net>
8101
8102         * src/SDCC.lex: sdcc now understands both formats:
8103           '# <line_number> <file_name>' and
8104           '#line <line_number> <file_name>'
8105         * support/cpp2/cppmain.c: sdcpp now generates the standard
8106           '# <line_number> <file_name>' instead of former
8107           '#line <line_number> <file_name>'
8108
8109 2003-10-30  Borut Razem <borut.razem AT siol.net>
8110
8111         * support/cpp2/cpphash.h,
8112         * support/cpp2/cpplib.h
8113         * support/cpp2/cpplex.c,
8114         * support/cpp2/cppmain.c,
8115         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8116
8117 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8118
8119         Fixed a number of problems revealed by bug #827883.
8120         * src/SDCCloop.c (loopInvariants): Spill location of the
8121         result operand should be recomputed if extracted from
8122         a loop. Also, don't extract assignments of an iTemp
8123         from a literal.
8124         * src/SDCCast.c (isConformingBody): loop reversal should
8125         not occur if the control variable is involved with a
8126         relational operator.
8127
8128 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8129
8130         * .version: bumped to 2.3.6 to reflect the big improvements
8131         made by Erik and Klaus. Thanks!
8132
8133 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8134
8135         Replaced the livrange code.
8136         * src/SDCClrange.c: added new LR code
8137         * src/SDCCloop.c,
8138         * src/SDCCBBlock.h: removed remainig parts from old LR code
8139         * src/ds390/ralloc.c,
8140         * src/ds390/gen.c: minor fixes to make it work with new code
8141
8142 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8143
8144         * as/hc08/asm.h,
8145         * as/hc08/lkrloc.c,
8146         * src/hc08/gen.c,
8147         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8148         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8149         (tweaked fix for bug #818696)
8150
8151 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8152
8153         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8154
8155 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8156
8157         * src/SDCCmain.c,
8158         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8159         * src/mcs51/gen.c (gencjneshort),
8160         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8161         more efficient (per Scott Bronson's suggestion)
8162
8163 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8164
8165         Extended the semantics of the critical keyword to include
8166         individual statements. See RFE #827755 and #799831
8167         * src/SDCC.y
8168         * src/SDCCicode.c
8169         * src/SDCCopt.c
8170         * src/SDCCast.c
8171         * support/Util/SDCCerr.c
8172         * support/Util/SDCCerr.h
8173         * src/mcs51/gen.c
8174         * src/ds390/gen.c
8175         * src/hc08/gen.c
8176
8177 2003-10-19  Borut Razem <borut.razem AT siol.net>
8178
8179         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8180
8181 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8182
8183         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8184         Fixed bug #818696
8185         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8186         and predecrement operand is displayed
8187
8188 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8189
8190         * src/SDCCval.c (valMinus): fixed bug #826041
8191
8192 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8193
8194         Some hc08 related updates that I missed earlier
8195         * sim/ucsim/stypes.h
8196         * support/regression/ports/hc08/spec.mk
8197
8198 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8199
8200         New target "hc08" for the Motorola 68hc08 family of micros
8201
8202         * configure
8203         * configure.in
8204         * Makefile
8205         * src/hc08/*
8206         * src/SDCCmain.c
8207         * src/port.h
8208         * sim/ucsim/hc08.src/*
8209         * sim/ucsim/configure.in
8210         * src/ucsim/configure
8211         * sim/ucsim/packages_in.mk
8212         * as/hc08/*
8213         * as/Makefile
8214         * device/include/mc68hc908qy.h
8215         * device/lib/hc08/*
8216         * device/lib/Makefile.in
8217         * support/regression/ports/hc08/*
8218         * support/regression/Makefile
8219
8220 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8221
8222         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8223         regression test
8224         * src/ds390/gen.c (genCast): fixed bug #821957
8225
8226 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8227
8228         * device/lib/logf.c: "fixed" overlay bug
8229         * support/regression/ports/host/spec.mk: added m library
8230         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8231         * support/regression/tests/float_trans: added (for Eric)
8232
8233 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8234
8235         * src/mcs51/gen.c (genCpl): fixed bug
8236         http://sf.net/mailarchive/message.php?msg_id=6263915
8237
8238 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8239
8240         * src/SDCCast.c (decorateType): added extended constant folding
8241         * src/SDCCsymt.c (computeType): cleanup
8242         * src/SDCCval.c (valShift): minor optimization
8243         * support/regression/tests/ast_constant_folding.c: added
8244
8245 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8246
8247         * src/SDCCmain.c: removed some unintended changes
8248
8249 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8250
8251         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8252         * src/z80/gen.c: fixed part of bug #817589
8253         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8254
8255 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8256
8257         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8258         * src/SDCCcflow.c
8259         * src/SDCCcse.c
8260         * src/SDCCdflow.c
8261         * src/SDCClabel.c
8262         * src/SDCClrange.c
8263         * src/SDCCmem.c
8264         * src/SDCCopt.c
8265         * src/SDCCpeeph.c
8266         * src/SDCCset.c
8267         * src/avr/ralloc.c
8268         * src/ds390/ralloc.c
8269         * src/izt/ralloc.c
8270         * src/mcs51/ralloc.c
8271         * src/pic/ralloc.c
8272         * src/pic16/ralloc.c
8273         * src/xa51/ralloc.c
8274         * src/z80/ralloc.c
8275         * src/z80/gen.c: removed unused label "release:"
8276
8277 2003-10-06  Borut Razem <borut.razem AT siol.net>
8278
8279         * src/SDCC.lex: removed definition of unused variables
8280           save_optimize and save_options
8281
8282 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8283
8284         * clean.mk: removed '=' in "-maxdepth=1"
8285         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8286         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8287
8288 2003-10-06  Borut Razem <borut.razem AT siol.net>
8289
8290         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8291           my_unput() replaced by unput()
8292
8293 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8294
8295         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8296         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8297         type-punned pointer will break strict-aliasing rules"
8298         Old LR behaviour is again default; Klaus' LR can be choosen by
8299         defining the environment variable LRKLAUS
8300         * src/SDCCBBlock.h
8301         * src/SDCCloop.c
8302         * src/SDCClrange.c
8303         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8304         * clean.mk: fixed removal of files in bin/CVS/
8305         * device/lib/clean.mk: fixed removal of directories small and large
8306         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8307         * src/SDCCicode.c,
8308         * src/SDCCval.c: removed superflous test for pedantic
8309
8310 2003-10-05  Borut Razem <borut.razem AT siol.net>
8311
8312         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8313           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8314           message "unmatched #pragma SAVE and #pragma RESTORE"
8315
8316 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8317
8318         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8319           assembly, critical functions, atomic, nojtbound)
8320
8321 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8322
8323         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8324         * src/SDCCBBlock.h
8325         * src/SDCCloop.c
8326         * src/SDCCloop.h
8327         * src/SDCClrange.c
8328
8329 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8330
8331         * src/z80/gen.h,
8332         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8333         * src/mcs51/gen.h
8334         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8335         * src/ds390/gen.h
8336         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8337         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8338         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8339
8340 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8341
8342         * src/z80/gen.c (genRet): fixed bug #524753
8343         * src/z80/gen.c (genCast): fixed internal error on cast from
8344         pointer to long
8345         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8346         fix for bug #477835 to the z80
8347         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8348         for tracking iCodes in the peephole optimizer for z80
8349
8350 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8351
8352         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8353         the other part of bug #814548
8354         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8355
8356 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8357
8358         * src/SDCCcse.c: fixed part of bug #814548
8359
8360 2003-09-28  Borut Razem <borut.razem AT siol.net>
8361
8362         * src/asm.c: rewrite of printILine() to use temporary file instead
8363           a pipe
8364         * src/xa51/main.c: commented out declaration of int rewinds
8365
8366 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8367
8368         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8369
8370 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8371
8372         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8373         * src/asm.c (printILine): Fixed bug #811015
8374
8375 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8376
8377         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8378         freeing.
8379
8380 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8381
8382         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8383         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8384         to correctly handle general case of AOP_PAIRPTR
8385         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8386
8387 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8388
8389         * src/mcs51/ralloc.c (fillGaps),
8390         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8391         register positioning bug)
8392
8393 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8396
8397 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8398
8399         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8400         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8401         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8402         (ralloc doesn't intentionally do this now, but perhaps later)
8403         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8404         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8405         register positioning bugs (Fixed bug #762602 and #795325)
8406         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8407         (Fixed bug #808779)
8408         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8409         lines that --i-code-in-asm generates
8410
8411 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8412
8413         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8414         trying to fclose a FILE* that was already closed.
8415
8416 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8417
8418         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8419         of const struct should be treated as if const themselves)
8420
8421 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8422
8423         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8424
8425 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8426
8427         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8428         Unix (/n) and DOS (/r/n) line terminations.
8429
8430 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8431
8432         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8433         bug #613775
8434
8435 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8436
8437         * src/mcs51/gen.c (genFunction, genEndFunction),
8438         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8439         and restore of EA so that stack offsets to parameters are
8440         correct when using both critical and reentrant/stack-auto.
8441         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8442         size (can be triggered in error if sloc is shared between
8443         different sized objects)
8444         * device/include/float.h: fixed macros to explicitly use
8445         unsigned long where needed
8446
8447 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8448
8449         Feature req. 799831: added code to allow nesting of critical functions
8450         * src/mcs51/gen.c (genFunction, genEndFunction)
8451         * src/ds390/gen.c (genFunction, genEndFunction)
8452
8453 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8454
8455         * src/SDCCsymt.c (sclsFromPtr),
8456         * src/SDCCsymt.h,
8457         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8458         support for standard C idiom of memory mapped variables; for
8459         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8460         to xdata int at 0x1234 tempvar = 1.
8461         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8462         provided by Akiya ISHIDA
8463
8464 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8465
8466         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8467         * src/SDCCval.c (constVal): added reduction from int to char
8468         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8469         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8470         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8471         to ignore the sign
8472         * support/regression/tests/shifts.c: fixed
8473
8474 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8475
8476         * src/z80/gen.c (genXor): Fixed bug #805445
8477
8478 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8479
8480         Fixed bug #621531 (const & volatile confusion in the type chain).
8481         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8482         refer to the const or volatile state of the pointer itself.
8483
8484         * src/SDCCast.c
8485         * src/SDCCglue.c
8486         * src/SDCCicode.c
8487         * src/SDCCsymt.c
8488         * src/SDCCval.c
8489         * src/SDCC.y
8490         * src/SDCCsymt.h
8491         * src/pic/gen.c
8492         * src/pic/ralloc.c
8493         * src/pic16/gen.c
8494         * src/pic16/ralloc.c
8495         * support/regression/tests/const.c
8496
8497 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8498
8499         When checking for duplicated modules, use absolute paths
8500         instead of relative paths.  Files changed:
8501
8502         * as/mcs51/lklib.c
8503         * link/z80/lklib.c
8504
8505 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8506
8507         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8508
8509 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8510
8511         * device/include/string.h: added size_t typedef, changed
8512         prototypes to use size_t, eliminated separate reentrant and
8513         non-reentrant declarations, added _memmove declaration
8514         * device/lib/_memcpy.c: changed to use size_t instead of int,
8515         changed /4 to >>2 to avoid division library call
8516         * device/lib/_memcmp.c,
8517         * device/lib/_memset.c,
8518         * device/lib/_strncat.c,
8519         * device/lib/_strncpy.c,
8520         * device/lib/_strncmp.c: changed to use size_t instead of int
8521         * device/lib/_memmove.c: new file (fixed bug #772294)
8522         * device/lib/Makefile.in: added _memmove.c
8523         * device/lib/z80/asm_strings.s: fixed bug #772290
8524         * support/regression/tests/bitfields.c: attempt to fix host assertion
8525         failure on amd64-unknown-linux2.2
8526
8527 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8528
8529         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8530         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8531         * as/z80/asmain.c (main): fixed bug #801766
8532
8533 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8534
8535         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8536         compilers
8537
8538 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8539
8540         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8541         reported in bug #800609
8542
8543 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8544
8545         * Top header beautifications in src/pic16 directory:
8546           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8547           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8548           pcoderegs.h, ralloc.c, ralloc.h
8549         * main.c: added top header and GPL license notice
8550         * pcode.c: fixed the if-conditional warning
8551
8552 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8553
8554         * device/lib/_mullong.c: replaced int by short for gcc
8555
8556 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8557
8558         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8559         and JUMPTABLE iCodes properly now (worked by accident before)
8560         * src/mcs51/gen.c (leftRightUseAcc),
8561         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8562         iCode properly now. Use getSize instead of nRegs since a & b
8563         aren't part of the nRegs tally.
8564
8565 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8566
8567         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8568         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8569           before instructions that use the _STATUS register
8570
8571 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8572
8573         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8574         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8575         fetching of the pointer
8576         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8577         copied from genNearPointerSet()
8578         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8579         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8580         If they pop r0/r1 they must be called in the opposite order than aopOp().
8581         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8582         (resp. --stack-auto), prepared for --xstack
8583
8584 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8585
8586         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8587
8588 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8589
8590         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8591         these ports have their own __sdcc_external_start()
8592
8593 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8594
8595         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8596         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8597         type for bits was changed. It resulted in bit variables becoming
8598         global, which is not permitted in PIC 14 assembly output.
8599
8600 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8601
8602         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8603
8604 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8605
8606         Z80 and MCS51 linkers complaint if a public symbol is defined
8607         in more than one library module:
8608
8609         * as/mcs51/lklib.c
8610         * link/z80/lklib.c
8611         * as/mcs51/Makefile.in
8612
8613 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8614
8615         A few small changes that speed up the peephole optimizer.
8616
8617         * src/SDCCpeeph.c
8618
8619 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8620
8621         Try to make the peephole optimizer smarter by maintaining
8622         an association between the assembly source code and the
8623         iCodes that originated them. Put this information to use
8624         with a new peephole rule condition "notVolatile" so that
8625         the rules can be aggressive yet still safe.
8626
8627         * src/SDCCpeeph.c
8628         * src/SDCCpeeph.h
8629         * src/mcs51/gen.c
8630         * src/mcs51/peeph.def
8631
8632 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8633
8634         Fixed bug #741761
8635
8636         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8637         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8638         if the left or right operand symbols have the accuse flag set.
8639
8640 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8641
8642         Changed the type of the result of the ! (NOT) operator to char;
8643         previously it returned the same type as the source. This allows
8644         us to eliminate all the genFloatNot functions (all of its target
8645         implementations were very buggy) since !float can use the same
8646         code as !long now.
8647
8648         * src/SDCCicode.c (ast2iCode): ! returns char
8649         * src/mcs51/gen.c (genNot, genNotFloat),
8650         * src/ds390/gen.c (genNot, genNotFloat),
8651         * src/z80/gen.c (genNot, genNotFloat),
8652         * src/pic/gen.c (genNot, genNotFloat),
8653         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8654
8655 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8656
8657         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8658         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8659            during interrupts. Ensure WSAVE is located at a shared bank address.
8660         2. Fixed page selection in some places
8661         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8662            the registers name strings.
8663         4. Fixed "signed / unsigned compare" compiler warnings.
8664         5. The PIC port manages its own allocation of the general purpose
8665            registers, but makes no attempt to reuse them. As a result when
8666            compiling it soon runs out of general purpose registers. Some
8667            additional code was added to the files pcode.c and device.c to walk
8668            through the function call tree and rename the registers so that they
8669            get reused.
8670
8671         * src/pic/device.c
8672         * src/pic/gen.c
8673         * src/pic/glue.c
8674         * src/pic/pcode.c
8675         * src/pic/pcode.h
8676         * src/pic/ralloc.c
8677         * src/pic/ralloc.h
8678         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8679         genPlus() & genMinus() when the result is the same as left or right
8680
8681 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8682
8683         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8684
8685 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8686
8687         Made bitfield a distinct type from bit so that bitfields
8688         convert as per ANSI C and bits retain their traditional
8689         boolean style behaviour. Implemented bitfield support in
8690         the z80 port.
8691
8692         * src/SDCCsymt.h,
8693         * src/SDCCsymt.c,
8694         * src/SDCCast.c,
8695         * src/cdbFile.c,
8696         * src/mcs51/gen.c,
8697         * src/ds390/gen.c: bit v bitfield split
8698         * src/z80/gen.c: New support for bitfields
8699         * support/regression/tests/bitfields.c: reenabled z80,
8700         added more tests
8701
8702 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8703
8704         Rules 246.x, 247.x relate to bitfields, the others speed up
8705         access to xdata mapped I/O devices.
8706
8707         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8708
8709 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8710
8711         Cleaned up genPackBits and genUnpackBits and added two helper
8712         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8713         for literal assignments in genPackBits (thanks to Frieder for
8714         reminding me).
8715
8716         * src/mcs51/gen.c
8717         * src/ds390/gen.c
8718
8719 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8720
8721         Fixed bug #748310 (pointer to function type mishandled when the
8722         function name is omitted). Also fixed a SIGSEGV when a function
8723         attribute (reentrant, etc) is used on a non-function or on a
8724         function but misplaced before the parameter list.
8725
8726         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8727         bug #748310
8728         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8729         * support/Util/SDCCerr.h,
8730         * support/Util/SDCCerr.c: Added func attr misuse error msg
8731
8732 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8733
8734         Fixed bug #787649 by anonymous
8735         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8736         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8737
8738 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8739
8740         Fixed numerous bitfield problems.
8741
8742         * src/SDCC.y: More bitfield related error checking
8743         * src/SDCCsymt.h,
8744         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8745         * support/Util/SDCCerr.h,
8746         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8747         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8748         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8749         * support/regression/tests/bitfields.c: tests added
8750
8751 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8752
8753         Made the constant following the "interrupt" keyword optional. If
8754         omitted, the function will not automatically be given an entry
8755         in the interrupt vector table (similar to #pragma NOIV, but
8756         less syntacticly kludgy). The interrupt number is also now
8757         range checked. Also fixed a bug in the high order bit example
8758         in the manual.
8759
8760         * src/SDCC.y
8761         * src/SDCCmem.c
8762         * src/SDCCglue.c
8763         * src/SDCCsymt.h
8764         * support/Util/SDCCerr.c
8765         * support/Util/SDCCerr.h
8766         * doc/sdccman.lyx
8767
8768 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8769
8770         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8771         * src/SDCCicode.c (operandOperation): rewritten some ops
8772         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8773         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8774         other type
8775         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8776         be re-activated by defining REDUCE_LITERALS)
8777         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8778         unsigned, but are signed by default
8779         * src/SDCCval.c (constVal): rearranged
8780         * src/SDCCval.c (valMod): preliminary fix
8781         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8782         * support/regression/literalop.c: added, work in progress
8783
8784 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8785
8786         Generate warnings for useless declarations like "char data;"
8787         that don't do what new users expect.
8788
8789         * src/SDCC.y
8790         * support/Util/SDCCerr.h
8791         * support/Util/SDCCerr.c
8792
8793 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8794
8795         * src/SDCCval.c (valMult): fix overflow detection of negative int
8796
8797 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8798
8799         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8800
8801         Changes to support big endian targets:
8802
8803         * src/ports.h
8804         * src/SDCCglue.c
8805         * src/avr/main.c
8806         * src/ds390/main.c
8807         * src/izt/i186.c
8808         * src/mcs51/main.c
8809         * src/pic/main.c
8810         * src/pic16/main.c
8811         * src/xa51/main.c
8812         * src/z80/main.c
8813
8814 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8815
8816         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8817         * device/lib/time.c: fixed warning "integer overflow in expression"
8818
8819 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8820
8821         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8822         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8823         constants are unsigned; added recognition of "u" flag for unsigned
8824         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8825         * src/SDCCval.c (valDiv, valMod): fixed signdness
8826         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8827         signedness of modulo, left and right shift
8828         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8829         * support/Util/SDCCerr.h: added warning W_INT_OVL
8830         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8831         * src/SDCCast.c (ast_print): improved output of constants
8832
8833 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8834
8835         Fixed some warnings when building with MSVC:
8836
8837         * as\mcs51\asdata.c
8838         * as\z80\asdata.c
8839         * as\mcs51\asm.h
8840         * as\z80\asm.h
8841         * link\z80\aslink.h
8842         * link\z80\lkdata.c
8843         * link\z80\lkeval.c
8844         * link\z80\lkgb.c
8845         * link\z80\lkihx.c
8846         * link\z80\lks19.c
8847         * link\z80\lksym.c
8848         * support\cpp2\cpplib.c
8849         * src\ds390\gen.c
8850         * src\mcs51\gen.c
8851
8852 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8853
8854         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8855
8856 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8857
8858         * support\librarian\clean.mk: Do not remove Makefile.
8859         * support\librarian\Makefile: added.
8860
8861 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8862
8863         Added librarian to MSVC build:
8864         * all.dsp
8865         * sdcc.dsw
8866         * support\librarian\librarian.dsp
8867
8868         'configure' not needed for librarian, removed:
8869         * support\librarian\configure
8870         * support\librarian\configure.in
8871         * support\librarian\config_in.h
8872         * support\librarian\Makefile.in
8873
8874         Hopefully these ones built the librarian and the rest of sdcc properly:
8875         * Makefile
8876         * Makefile.common.in
8877
8878         Messed up 'configure', so revert to previous version:
8879         * configure
8880         * configure.in
8881
8882 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8883
8884         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8885         there, while the mantissa of a double is "only" 53 bits wide.
8886
8887 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8888
8889         Adding sdcclib to the build.  MSVC project coming soon.
8890         Files added/changed:
8891
8892         * support\librarian\clean.mk
8893         * support\librarian\configure
8894         * support\librarian\configure.in
8895         * support\librarian\config_in.h
8896         * support\librarian\Makefile.bcc
8897         * support\librarian\Makefile.in
8898         * support\librarian\sdcclib.c
8899         * Makefile.bcc
8900         * Makefile
8901         * Makefile.common.in
8902         * configure
8903         * configure.in
8904
8905 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8906
8907         Linker now complaints if linked modules have conflicting options, for
8908         example, one compiled using --model-large and another one compiled with
8909         --model-small.  The following files were modified:
8910
8911         * as\mcs51\asdata.c
8912         * as\mcs51\aslink.h
8913         * as\mcs51\asm.h
8914         * as\mcs51\asmain.c
8915         * as\mcs51\asout.c
8916         * as\mcs51\i51pst.c
8917         * as\mcs51\lkdata.c
8918         * as\mcs51\lklibr.c
8919         * as\mcs51\lkmain.c
8920         * as\z80\asdata.c
8921         * as\z80\asm.h
8922         * as\z80\asmain.c
8923         * as\z80\asout.c
8924         * as\z80\z80pst.c
8925         * link\z80\aslink.h
8926         * link\z80\lkdata.c
8927         * link\z80\lklibr.c
8928         * link\z80\lkmain.c
8929         * src\SDCCglue.c
8930
8931 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8932
8933         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8934         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8935
8936 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8937
8938         * src/z80/mappings.i: fix _mul[us][int,long] entries
8939
8940 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8941
8942         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8943
8944 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8945
8946         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8947         * support/regression/tests/bitopcse.c: added
8948         fixed warning:
8949         * src/avr/gen.c:
8950         * src/pic/gen.c:
8951         * src/pic16/gen.c:
8952         * src/z80/gen.c:
8953         * src/xa51/gen.c:
8954
8955 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8956
8957         added support for new library format to z80, gbz80 linkers:
8958         *link/z80/aslink.h
8959         *link/z80/lklex.c
8960         *link/z80/lklib.c
8961         *link/z80/lklist.c
8962
8963 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8964
8965         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8966         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8967
8968 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8969
8970         added DUMMY_READ_VOLATILE:
8971         * src/SDCC.y:
8972         * src/avr/gen.c:
8973         * src/xa51/gen.c:
8974         * src/z80/gen.c:
8975         * src/pic/gen.c:
8976         * src/pic16/gen.c:
8977         * src/mcs51/gen.c:
8978         * src/ds390/gen.c:
8979         * src/SDCCcse.c (algebraicOpts): many improvements
8980         * src/SDCCcse.h: removed algebraicOpts()
8981         * src/SDCCicode.c (picDummyRead): added
8982
8983 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8984
8985         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
8986         "Insufficient space in data memory".
8987
8988 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8989
8990         * src/mcs51/gen.c: fixed bug #771358
8991         * src/z80/gen.c: fixed bug #759087
8992
8993 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
8994
8995         * src/pic16/glue.c: minor cleanup by Vangelis
8996
8997 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8998
8999         * device/include/regc515c.h: fixed #758477
9000         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9001         * device/lib/_gptrput.c: saved a few bytes
9002         * my tab spacing is 8, yours too?)
9003         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9004         * device/lib/serial.c: process RX bytes earlier than TX bytes
9005         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9006
9007 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9008
9009         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9010
9011 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9012
9013     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9014
9015 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9016
9017         * device/lib/Makefile.in: bad fix, reverted to 1.43
9018
9019 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9020
9021         * device/lib/Makefile.in: added missing z80 object files
9022
9023 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9024
9025         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9026         pic16 progress by Vangelis:
9027         * src/SDCCglobl.h:
9028         * src/SDCCmain.c:
9029         * src/pic/Makefile:
9030         * src/pic:
9031         * pic/Makefile:
9032         * pic16/device.c:
9033         * pic16/device.h:
9034         * pic16/gen.c:
9035         * pic16/gen.h:
9036         * pic16/genarith.c:
9037         * pic16/glue.c:
9038         * pic16/main.c:
9039         * pic16/pcode.c:
9040         * pic16/pcode.h:
9041         * pic16/pcodepeep.c:
9042         * pic16/peeph.def:
9043
9044 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9045
9046     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9047
9048 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9049
9050     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9051     added gbz80 build to MSVC project.
9052     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9053     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9054     from 8051 stuff and setup so it links using a .lnk file.
9055
9056 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9057
9058     * support/librarian/sdcclib.c: sdcc librarian.
9059     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9060     with sdcclib.
9061
9062 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9063
9064     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9065
9066 2003-07-02  Borut Razem <borut.razem AT siol.net>
9067
9068         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9069         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9070         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9071         src/xa51/main.c, src/z80/main.c:
9072         virtualization of glue() function: each port has it's own glue function,
9073         which is accessed by do_glue function pointer in PORT.general structure
9074
9075 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9076
9077         * DS800C400 fun, improved ROM interface and tinibios.
9078
9079 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9080
9081         * More support for DS80C400. Now includes beginning of interface to ROM.
9082
9083 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9084
9085         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9086
9087 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9088
9089         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9090
9091 2003-06-19  Borut Razem <borut.razem AT siol.net>
9092
9093         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9094
9095 2003-06-19  Borut Razem <borut.razem AT siol.net>
9096
9097         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9098         fixed Z80 port - crt0.o: cannot open.
9099
9100 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9101
9102         * support/Util/MySystem.c (merge_command): revert bad fix
9103
9104 2003-06-18  Borut Razem <borut.razem AT siol.net>
9105
9106         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9107
9108 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9109
9110         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9111         option --use-stdout sends errors to stdout instead of stderr.
9112
9113 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9114
9115         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9116
9117 2003-06-15  Borut Razem <borut.razem AT siol.net>
9118
9119         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9120         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9121         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9122         fixed width array of pointers replaced with sets;
9123         multiple include and lib paths ared transferred to preprocessor and linker
9124         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9125         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9126         fixed width array of pointers
9127         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9128         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9129         fixupPath(), getPathDifference()
9130         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9131         fixed width array of pointers
9132
9133 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9134
9135         * src/pic16/ralloc.c: fix warnings
9136         * src/pic16/pcode.c: fix warning
9137
9138 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9139
9140          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9141         know all the details, but essentially this set of changes enable
9142         the pic16 port to generate movff instructions and generate assembler
9143         directives,
9144         * src/SDCCmain.c:
9145         * src/pic16/gen.c:
9146         * src/pic16/glue.c:
9147         * src/pic16/pcode.c:
9148         * src/pic16/device.c:
9149         * src/pic16/main.c:
9150         * src/pic16/pcode.h:
9151         * src/pic16/pcoderegs.c:
9152         * src/pic16/ralloc.c:
9153         * src/pic16/ralloc.h:
9154
9155 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9156
9157         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9158         added option --vc, so sdcc errors and warnings are compatible with
9159         Microsoft Visual Studio.
9160
9161 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9162
9163         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9164           device/lib/libfloat.lib: added atof function.
9165
9166 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9167
9168         * doc/sdccman.lyx: updated to Lyx 1.3
9169         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9170         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9171         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9172
9173 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9174
9175         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9176
9177 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9178
9179         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9180           additions to the "related tools/documentation" section
9181
9182 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9183
9184         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9185
9186 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9187
9188         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9189         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9190
9191 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9192
9193         * doc/sdccman.lyx: fix double dash and other minor things
9194         * doc/Makefile: fix double dash
9195
9196 2003-05-28  Karl Bongers(patches from Martin Helmling)
9197         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9198           condition and ignore commands.
9199
9200 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9201
9202         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9203           is in parts still quite out of date, I did changes as far as I felt makes sense
9204           for a non-native english speaker.
9205           Please feel free to add to the manual or to correct my changes.
9206         * doc/Makefile: undid touching the date of intermediate tex files.
9207
9208 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9209
9210         * doc/sdccman.lyx: Manual has an index now
9211
9212 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9213
9214         Finalize muluint/mulsint and mululong/mulslong merging:
9215         * device/lib/_mulint.c
9216         * device/lib/_mullong.c
9217         * device/lib/gbz80/mul.s
9218         * device/lib/gbz80/stubs.s
9219         * device/lib/z80/mul.s
9220         * device/lib/z80/stubs.s
9221         * src/SDCCsymt.c (initCSupport)
9222
9223 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9224
9225         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9226         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9227           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9228           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9229           instead of /Zm500.
9230
9231 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9232
9233         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9234           the regression tests I'm not brave enough to enable 245.b, 245.c
9235         * doc/sdccman.lyx: added latex preamble for hyperref package.
9236           Using pdflatex this will give you a hyperlinked pdf file with
9237           bookmarks. (prepend '%' before /usepackage if this breaks something)
9238
9239 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9240
9241          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9242
9243 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9244
9245         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9246
9247 2003-05-21    <johan AT balder>
9248
9249         * src/SDCCglue.c (printIval): fixed bug #739934
9250
9251 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9252
9253         Applied patch from bug 737905 (renamed yylineo to mylineno):
9254         * src/altlex.c
9255         * src/SDCCast.c
9256         * src/SDCglobl.h
9257         * src/SDCC.lex
9258         * src/SDCCsymt.c
9259         * src/SDCCval.c
9260         * src/pic16/pcode.c: Cleaned warnings
9261         * src/pic16/pcodeflow.c: Cleaned warnings
9262         * src/pic16/pcoderegs.c: Cleaned warnings
9263
9264 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9265
9266         * src/pic16/pcode.c: Cleaned warnings
9267         * src/pic16/pcodepeep.c: Cleaned warnings
9268         * src/pic16/ralloc.c: Cleaned warnings
9269
9270 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9271
9272         * doc/sdccman.lyx: fixed bug 739745
9273         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9274
9275 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9276
9277         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9278         it can be defined with CFLAGS when running configure
9279         * src/SDCCmain.c: fixed compiling + linking with object files
9280
9281 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9282
9283         * configure.in: configure for pic16 port,
9284             added --disable-pic16-port
9285         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9286         * src/SDCCmain.c: linkOptions is changed to set *,
9287             added if/endif conditional macros to remove options help
9288             messages from optionsTable when a port is not configured, added
9289             support for the PIc16 port in the ports table, when executing
9290             the compiler with no port specified on command line, a default
9291             port is selected with the new macro DEFAULT_PORT which is
9292             defined in port.h, in setDefaultOptions() linkOptions is removed
9293             from initialization assignment, since now it is a set,
9294             parseCmdLine uses setParseWithComma for linkOptions, in
9295             linkEdit() linkOptions are accessed with new function indexSet()
9296             which returns the i'th item of a set variable. See SDCCset.c, in
9297             linkEdit() when calling buildCmdLine(), added linkOptions as
9298             last argument. Now users can pass arguments to gplink via the
9299             -Wl option, main() uses pic16glue() to glue up pic16 programs
9300         * src/SDCCpeeph.c: various changes to support pic16
9301         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9302             return the i'th item of the set
9303         * src/SDCCset.h: added function prototype for indexSet()
9304         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9305         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9306         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9307             added macro DEFAULT_PORT
9308         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9309         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9310             generated
9311         * src/pic16/glue.c: commented out some error producing lines
9312         * src/pic16/main.c: __config directives are commented out to stop
9313             gpasm complaining and test the linkage with gplink, _linkCmd and
9314             _asmCmd changed to be more gplink and gpasm friendly
9315         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9316             produced an error when parsed, peep rule 12 is added to utilize
9317             movff, but it is commented out since the pCode does not support
9318             yet a command with 2 address arguments
9319
9320 2003-05-18    <johan AT balder>
9321
9322         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9323         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9324 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9325
9326         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9327   Added feature to script commands from file.
9328
9329 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9330
9331         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9332         * src/SDCCutil.c: include ctype.h for win32
9333
9334 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9335
9336         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9337
9338 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9339
9340         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9341   Fixed so you can set breakpoints prior to run, run does not stop
9342   on entry now.  Add tbreak.  Other enhancements and fixes for use
9343   with ddd.
9344
9345 2003-05-12  Borut Razem <borut.razem AT siol.net>
9346
9347         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9348
9349 2003-05-11  Borut Razem <borut.razem AT siol.net>
9350
9351         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9352         the path of bin directory, so that PATH is the only env. variable, which has to be set
9353         in case of standard installation.
9354         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9355         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9356         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9357
9358 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9359
9360         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9361         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9362         temp files are in the port dir; clean the gen/test directory when
9363         generating new test.c
9364         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9365         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9366         * support/regression/tests/zeropad.c: added
9367
9368 2003-05-09    <johan AT balder>
9369
9370         * src/SDCCglue.c: fixed bug #597940
9371
9372 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9373
9374         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9375   cache sfr, optimize next,step, fix off by one sourceline,
9376   support ddd list function.
9377         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9378
9379 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9380
9381         * support/regression/HTMLgen.py: added compare_s2f()
9382         * support/regression/Makefile: redo 1.27
9383         * support/regression/generate-cases.py: redo 1.5
9384
9385 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9386
9387         * support/regression/tests/float.c: workaround 33 bit hex constant
9388         * support/regression/tests/simplefloat.c: fix division for host
9389
9390 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9391
9392         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9393         that tame's the PIC's over-aggressive optimizer.
9394
9395 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9396
9397          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9398          support for MSVC.
9399
9400 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9401
9402         Initial support for DS80C400. "Hello world" runs on TINIm400
9403         (with polled I/O).
9404
9405 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9406
9407          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9408          * Some notes on ddd usage added in debugger/README
9409          Martin Helmling adding more features and fixes for ddd GUI debugger.
9410          Code added for nexti, stepi, up, down, and other adjustments.
9411
9412 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9413
9414         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9415         * src/pic/peeph.def Added two rules to optimize carry manipulation
9416         * src/pic/* removed debug printfs
9417
9418 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9419
9420         * debugger/mcs51/cmd.c: added header newalloc.h
9421
9422 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9423
9424         * as/Makefile: new EXEEXT
9425         * as/z80/Makefile: remove trailing slash of BUILDIR
9426         * as/z80/clean.mk: new EXEEXT
9427         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9428         * support/cpp2/Makefile.in: new EXEEXT
9429         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9430
9431 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9432
9433         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9434         EXEEXT was introduced to fix all related problems with targets
9435         "clean", "install" and "uninstall"; a couple of further flaws
9436         especially with "clean" have been fixed too
9437         * as/mcs51/Makefile.in
9438         * as/mcs51/clean.mk
9439         * as/z80/Makefile
9440         * Makefile
9441         * clean.mk
9442         * debugger/mcs51/Makefile.in
9443         * debugger/mcs51/clean.mk
9444         * link/z80/Makefile
9445         * link/z80/Makefile.in
9446         * link/z80/clean.mk
9447         * link/Makefile
9448         * packihx/Makefile.in
9449         * packihx/clean.mk
9450         * sim/ucsim/Makefile
9451         * sim/ucsim/clean.mk
9452         * sim/ucsim/avr.src/Makefile.in
9453         * sim/ucsim/avr.src/clean.mk
9454         * sim/ucsim/s51.src/Makefile.in
9455         * sim/ucsim/s51.src/clean.mk
9456         * sim/ucsim/xa.src/Makefile.in
9457         * sim/ucsim/xa.src/clean.mk
9458         * sim/ucsim/z80.src/Makefile.in
9459         * sim/ucsim/z80.src/clean.mk
9460         * sim/ucsim/main_in.mk
9461         * sim/ucsim/packages_in.mk
9462         * sim/ucsim/gui.src/Makefile.in
9463         * sim/ucsim/gui.src/serio.src/Makefile.in
9464         * sim/ucsim/gui.src/serio.src/clean.mk
9465         * src/Makefile.in
9466         * src/clean.mk
9467         * support/cpp2/Makefile.in
9468         * support/cpp2/clean.mk
9469         * support/makebin/Makefile
9470         * support/makebin/clean.mk
9471         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9472         * doc/sdccman.lyx: --program-suffix no longer needed
9473
9474 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9475
9476          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9477          Martin Helmling added support for ddd GUI debugger.
9478          Code added to display assembly, set variables, and other commands
9479          to interface to ddd.
9480
9481 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9482
9483         * as/Makefile: fix target clean
9484         * as/clean.mk: fix target clean
9485         * as/z80/clean.mk: fix target clean
9486
9487 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9488
9489         * Makefile.common.in: added  AT EXEEXT AT
9490         * configure.in: removed all mingw32 stuff
9491         * configure: rebuilt from configure.in
9492         * doc/sdccman.lyx: updated section "installation"
9493         * support/scripts/sdcc_mingw32: adapted to configure
9494         * support/scripts/sdcc_cygwin_mingw32: added
9495
9496 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9497
9498         * src/pic Added object file support for the PIC port
9499         * src/pic Applied patch from Craig Franklin (this started the object file support)
9500         * src/regression Updated the PIC regression tests for object files
9501
9502 2003-04-20  Borut Razem <borut.razem AT siol.net>
9503
9504         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9505           lklex.c: In function `getfid':
9506           lklex.c:203: warning: array subscript has type `char'
9507         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9508           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9509         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9510           stack handling macros
9511
9512 2003-04-19  Borut Razem <borut.razem AT siol.net>
9513
9514         * "handling space characters in file path" task:
9515         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9516         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9517         * support/Util/MySystem.h: make it self-sufficient
9518         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9519           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9520           handling space characters in file path
9521         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9522           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9523         * support/Util/MySystem.c: handling space characters in executable's path
9524
9525 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9526
9527         * as/z80/Makefile: fix permanent rebuild of z80
9528         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9529         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9530
9531 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9532
9533         * src/SDCCopt.c: add special case optimization to replace modulo by
9534           a power of two with a bitwise AND.
9535
9536 2003-04-18    <johan AT balder>
9537
9538         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9539
9540 2003-04-17    <johan AT balder>
9541
9542         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9543         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9544
9545 2003-04-13  Borut Razem <borut.razem AT siol.net>
9546
9547         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9548         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9549           fixed mingw problem in adl_NORMALIZE_PATH
9550
9551 2003-04-12  Borut Razem <borut.razem AT siol.net>
9552
9553         * fixed "#pragma SAVE/RESTORE can not be nested":
9554         * src/SDCC.lex: reworked pragma handling functions
9555         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9556         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9557
9558 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9559
9560         * src/SDCCutil.c (pathEquivalent): defined but not used
9561         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9562         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9563         * configure: rebuilt from configure.in
9564         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9565         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9566         * device/include/Makefile.in: replace sdcc_datadir
9567         * device/lib/Makefile.in: replace sdcc_datadir
9568         * Makefile.common.in: add LDFLAGS from configure
9569         * packihx/Makefile.in: use LDFLAGS
9570         * src/Makefile.in: use LDFLAGS
9571         * support/cpp2/Makefile.in: add LDFLAGS from configure
9572         * support/makebin/Makefile: use LDFLAGS
9573         * .version: bumped version number to 2.3.5
9574
9575 2003-04-12  Borut Razem <borut.razem AT siol.net>
9576
9577         * completed "different paths" task:
9578         * src/SDCCmacro.c: fixed bug in handling quotes
9579         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9580         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9581
9582 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9583
9584         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9585
9586 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9587
9588         * ds390/gen.c ds390/peeph.def: fix bug 706781
9589
9590 2003-04-11  Borut Razem <borut.razem AT siol.net>
9591
9592         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9593
9594 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9595
9596         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9597         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9598          set - this bit used to not be set...).
9599         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9600           bad code in PIC Port
9601         * src/regression/and2.c added to test bug 609268
9602         * src/regression/Makefile added and2.c to regression test
9603
9604
9605 2003-04-08    <johan AT CP255758-A>
9606
9607         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9608         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9609         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9610
9611 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9612
9613         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9614         fix bug #487815
9615         * support/cpp2/Makefile.in: fix bug #487815
9616         * configure: rebuilt from configure.in
9617         * Makefile.common.in: docdir changed, new path suffixes
9618         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9619         * sdcc_vc_in.h: reflect changes from sdccconf.h
9620         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9621         * src/SDCCutil.h: remove BINDIR hack
9622         * doc/sdccman.lyx: update new path hierarchy
9623
9624 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9625
9626         * src/SDCCpeeph.c: added okToRemoveSLOC test
9627
9628 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9629
9630         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9631
9632 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9633
9634         * src/SDCCpeeph.c: added labelIsReturnOnly test
9635         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9636
9637 2003-04-05    <johan AT balder>
9638
9639         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9640         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9641         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9642         * src/SDCCast.c: fixed a warning
9643         * src/SDCCast.h: fixed a warning
9644         * src/SDCCicode.c (operandFromAst): fixed a warning
9645
9646 2003-04-04    <johan AT balder>
9647
9648         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9649         * src/SDCCast.c (decorateType): fixed bug #715076
9650         * src/SDCC.y: fixed bug #702907
9651
9652 2003-04-03    <johan AT balder>
9653
9654         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9655         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9656         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9657         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9658         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9659
9660 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9661
9662         * _decdptr.c: fix return values
9663         * _gptrget.c: fix return values
9664         * _gptrgetc.c: fix return values
9665         * _gptrput.c: fix return values
9666         * _mulint.c: fix return values
9667         * as/z80/Makefile: fix 'make -j' problem
9668
9669 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9670
9671         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9672         * configure.in: big cleanup, updated to autoconf 2.5x
9673         * configure: rebuilt from configure.in
9674         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9675         * sdcc_vc_in.h: reflect changes from sdccconf.h
9676         * doc/Makefile: fixed a flaw in "make install"
9677
9678 2003-04-02    <johan AT balder>
9679
9680         * src/ds390/gen.c (genCmp): no comments
9681         * src/mcs51/gen.c (genCmp): no comments
9682         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9683         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9684
9685 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9686
9687         * support/regression/generate-cases.py: place generated file in given sub directory
9688         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9689         * support/regression/Makefile: improvements for 'make -j';
9690         side effect: it's simpler and faster now
9691
9692 2003-03-31  Borut Razem <borut.razem AT siol.net>
9693
9694         * src/z80/main.c: link-{port} and as-{port} defined without path
9695         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9696
9697 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9698
9699         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9700
9701 2003-03-30  Borut Razem <borut.razem AT siol.net>
9702
9703         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9704           changed type of list parameter to set
9705         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9706         * src/port.h: changed type of do_assemble() parameter to set
9707         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9708           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9709           definition of "cppoutfilename" macro with NULL value in preProcess()
9710         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9711         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9712         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9713           replaced with set *binPathSet
9714         * shash_add() deallocates the item, if allready exsists, before adding the new one
9715         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9716
9717 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9718
9719         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9720           a nested for loop bug in the PIC port
9721         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9722           for loops
9723
9724 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9725
9726         * support/Util/dbuf.h: remove C++ stuff to make it portable
9727
9728 2003-03-28  Borut Razem <borut.razem AT siol.net>
9729
9730         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9731           literal strings in stringLiteral()
9732         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9733         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9734           to the project
9735
9736 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9737
9738         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9739
9740 2003-03-26    <johan AT balder>
9741
9742         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9743         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9744         * src/SDCCast.c (decorateType): fixed " -v < 3"
9745
9746 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9747
9748         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9749         Added Lenny Story's debug infrastructure changes:
9750         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9751         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9752         * src/cdbFile.c: added
9753         * src/SDCCdebug.c: added
9754         * src/SDCCdebug.h: added
9755         * src/SDCCast.c (createFunction)
9756         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9757         * src/SDCCmain.c (parseCmdLine, main)
9758         * src/SDCCmem.c (redoStackOffsets)
9759         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9760         * src/SDCCsymt.h
9761         * src/common.h
9762         * src/avr/gen.c (genAVRCode)
9763         * src/ds390/gen.c (gen390Code)
9764         * src/mcs51/gen.c (gen51Code)
9765         * src/pic/gen.c (genpic14Code)
9766         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9767         * src/xa51/gen.c (genXA51Code)
9768         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9769
9770 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9771
9772         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9773         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9774
9775 2003-03-22    <johan AT balder>
9776
9777         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9778
9779 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9780
9781         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9782         * doc/cdbfileformat.lyx: added, written by Lenny Story
9783         * doc/Makefile: added cdbfileformat.lyx
9784         * doc/clean.mk: added cdbfileformat.lyx
9785
9786 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9787
9788         * src/mcs51/peeph.def: fix bug #705773
9789
9790 2003-03-20    <johan AT balder>
9791
9792         An sfr/sbit can have an "at #" AND an initializer
9793         * src/SDCCsymt.c (checkSClass):
9794         * src/SDCCmem.c (allocGlobal):
9795         * src/SDCCmem.c (allocLocal):
9796         * src/SDCCast.c (createBlock):
9797
9798 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9799
9800         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9801
9802 2003-03-16    <johan AT balder>
9803
9804         Undid the hackup of const and volatile, the problem is much bigger
9805         * src/SDCC.y:1.65
9806         * src/SDCCast.c:1.171
9807         * src/SDCCglue.c:1.138
9808         * src/SDCCicode.c:1.146
9809         * src/SDCCsymt.c:1.150
9810         * src/SDCCval.c:1.65
9811
9812 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9813
9814         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9815         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9816
9817 2003-03-13    <johan AT balder>
9818
9819         Hackup const and volatile modifiers in type chains a bit:
9820         * src/SDCC.y:1.63
9821         * src/SDCCast.c:1.169
9822         * src/SDCCglue.c:1.136
9823         * src/SDCCicode.c:1.143
9824         * src/SDCCsymt.c1.146
9825         * src/SDCCsymt.h1.59
9826         * src/SDCCval.c:1.63
9827
9828 2003-03-12    <johan AT balder>
9829
9830         * src/SDCCBBlock.h: more LRH debugging junk
9831         * src/SDCCcflow.h: more LRH debugging junk
9832         * src/SDCCloop.c: more LRH debugging junk
9833         * src/SDCC.y (struct_declaration): fixed bug #697590
9834         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9835         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9836         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9837
9838 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9839         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9840         test function names must now match exactly).
9841         * src/SDCCcse.c: added special case in findCheaperOp to allow
9842         extending a short integer. Makes less awful code for bug 700121 test case.
9843
9844 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9845
9846         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9847         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9848
9849 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9850
9851         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9852         actually called (operandsNotEqual() was called for all
9853         operandsNotEqualX tests).
9854
9855 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9856
9857         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9858         with shorter literals. Fixes bug 700121.
9859
9860 2003-03-11    <johan AT balder>
9861
9862         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9863
9864 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9865
9866         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9867         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9868
9869 2003-03-10  Borut Razem <borut.razem AT siol.net>
9870
9871         * src/SDCCmain.c: pipe preprocessor's output
9872         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9873         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9874         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9875         which closes all pipes in pipeSet set
9876         * src/SDCCset.c: free deleted item in function deleteSetItem()
9877         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9878         moved from z80 to src subproject
9879         * .version: increased version number to 2.3.4
9880
9881 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9882
9883         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9884         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9885         * support/regression/ports/xa51/spec.mk: fix typo
9886
9887 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9888
9889         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9890
9891 2003-03-09  Borut Razem <borut.razem AT siol.net>
9892
9893         * src/SDCCmain.c: pipe preprocessor's output
9894         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9895         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9896         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9897         which closes all pipes in pipeSet set
9898         * src/SDCCset.c: free deleted item in function deleteSetItem()
9899         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9900         moved from z80 to src subproject
9901
9902 2003-03-09  Borut Razem <borut.razem AT siol.net>
9903
9904         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9905         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9906         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9907         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9908         * src/SDCCglobl.h: unification of WIN32 native definitions
9909
9910 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9911
9912         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9913
9914 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9915
9916         * src/configure.in:   check for endianess (even while cross-compiling)
9917         * src/configure:      check for endianess (even while cross-compiling)
9918         * src/configure_in.h: check for endianess (even while cross-compiling)
9919         * src/avr/gen.c:        remove old endianess stuff
9920         * src/mcs51/gen.c:      remove old endianess stuff
9921         * src/ds390/gen.c:      remove old endianess stuff
9922         * src/pic/gen.c:        remove old endianess stuff
9923         * src/pic/genarith.c:   remove old endianess stuff
9924         * src/pic/glue.c:       fix endianess check
9925         * src/pic16/gen.c:      remove old endianess stuff
9926         * src/pic16/genarith.c: remove old endianess stuff
9927         * src/pic16/glue.c:     fix endianess check
9928         * src/xa51/gen.c:       remove old endianess stuff
9929         * src/z80/gen.c:        fix endianess check
9930         * src/SDCCglue.c:       fix endianess check
9931         * src/ds390/peeph.def: fix bug 700036
9932
9933 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9934
9935         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9936         * src/configure: find appropriate data-types on host for SDCC's int and long
9937         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9938         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9939         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9940
9941 2003-03-07    <johan AT balder>
9942
9943         Just a big NOOP:
9944                 some minor cleanups before the big shot
9945                 OP_DEFS and OP_USES now use Kevin's protection
9946                 new option --nolabelopt
9947
9948         * src/SDCCBBlock.c:
9949         * src/SDCCast.c,:
9950         * src/SDCCcflow.c:
9951         * src/SDCCcse.c:
9952         * src/SDCCicode.c:
9953         * src/SDCCicode.h:
9954         * src/SDCClabel.c:
9955         * src/SDCCloop.c:
9956         * src/SDCCmain.c:
9957         * src/ds390/ralloc.c:
9958         * src/mcs51/ralloc.c:
9959         * src/pic/ralloc.c:
9960         * src/xa51/ralloc.c:
9961         * src/z80/ralloc.c:
9962
9963 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9964
9965         * src/pic/pcode.c (get_op): fix 64 bit warnings
9966         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9967         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9968         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9969         * support/regression/tests/malloc.c: fix 64 bit warnings
9970
9971 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9972
9973         * src/mcs51/gen.c (genMinus): fixed bug 696436
9974
9975 2003-03-02  Borut Razem <borut.razem AT siol.net>
9976
9977         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9978
9979 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9980
9981         * configure.in: test for mkstemp
9982         * sdccconf_in.h: add HAVE_MKSTEMP
9983
9984 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
9985
9986         * device/include/ctype.h: removed warning while using --stack-auto
9987         * device/include/malloc.h: removed warning while using --stack-auto
9988         * device/include/string.h: removed warning while using --stack-auto
9989
9990 2003-02-23  Borut Razem <borut.razem AT siol.net>
9991
9992         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
9993         because NDEBUG is defined (see man assert)
9994         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
9995
9996 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9997
9998         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
9999         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10000
10001 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10002
10003         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10004         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10005
10006 2003-02-18    <johan AT balder>
10007
10008         * as/mcs51/asmain.c (asmbl): module can start with a digit
10009         * as/z80/asmain.c (asmbl): module can start with a digit
10010
10011 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10012
10013         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10014         * src/asm.c: fix pipe() for Mingw32
10015
10016 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10017
10018         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10019         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10020         make -V work again; --c1mode reads now from stdin
10021         * doc/sdccman.lyx: added --c1mode
10022         * support/Util/SDCCerr.c: new messages for c1 mode
10023         * support/Util/SDCCerr.h: new messages for c1 mode
10024         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10025
10026 2003-02-15    <johan AT balder>
10027
10028         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10029
10030 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10031
10032         * doc/sdccman.lyx: Environment variables, -o and other minor things
10033
10034 2003-02-14    <johan AT balder>
10035
10036         * src/xa51/main.c: before anyone really tries to use it :)
10037
10038         * Install doc's in share/sdcc/doc
10039         * removed some obsolete files
10040         * Do a proper make distclean and uninstall
10041         M Makefile.common.in
10042         R sdccbuild.sh
10043         M as/Makefile
10044         M device/include/Makefile.in
10045         M device/lib/Makefile.in
10046         M doc/sdccman.lyx
10047         M link/Makefile
10048         M sim/ucsim/doc/Makefile.in
10049         M src/clean.mk
10050         R src/avr/peeph.rul
10051         R src/xa51/peeph.rul
10052         M support/cpp2/Makefile.in
10053         M support/makebin/Makefile
10054
10055
10056 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10057
10058         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10059
10060 2003-02-10  Borut Razem <borut.razem AT siol.net>
10061
10062         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10063         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10064         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10065         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10066         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10067         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10068         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10069         src/z80/Makefile.bcc: Borland Makefile cleanup
10070         * as/z80/Makefile.bcc: Added Borland Makefile
10071         * support/cpp2/borland.h: Removed
10072
10073 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10074
10075         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10076         * src/SDCC.lex: new pragma NOIV
10077         * src/SDCCglobl.h: new pragma NOIV
10078         * src/SDCCmem.c: new pragma NOIV
10079
10080 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10081
10082         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10083
10084 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10085
10086         * src/SDCCmain.c: signal handling is switched off by --debug
10087         * doc/Makefile: small fix for install; use clean.mk again
10088         * doc/clean.mk: clean *.pdf and *.html too
10089
10090 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10091
10092         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10093         * device/lib/printfl.c: fix a ds390 bug by making it portable
10094         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10095         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10096         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10097         * debugger/mcs51/cmd.c: converted multi-line string literals
10098         * sim/ucsim/globals.cc: converted multi-line string literals
10099         * src/SDCCmain.c: introduced signal handler to remove temp files
10100         * doc/Makefile: small tweaks, implement clean
10101         * doc: removed generated files
10102
10103 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10104
10105         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10106         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10107         Address Record is not correctly generated for DS390."
10108
10109 2003-02-02  Borut Razem <borut.razem AT siol.net>
10110
10111         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10112         * as/mcs51/asm.h: fixed compilation with Borland C
10113         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10114         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10115         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10116         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10117         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10118         src/z80/Makefile.bcc: delete $(LIB) only if exist
10119         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10120
10121 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10122
10123         * device/include/malloc.h: introduced NULL
10124         * device/include/string.h: introduced NULL
10125         * device/include/stdlib.h: introduced NULL
10126         * device/lib/_memcpy.c: removed NULL
10127         * device/lib/_strcat.c: removed NULL
10128         * device/lib/_strchr.c: removed NULL
10129         * device/lib/_strcmp.c: removed NULL
10130         * device/lib/_strcpy.c: removed NULL
10131         * device/lib/_strcspn.c: removed NULL
10132         * device/lib/_strlen.c: removed NULL
10133         * device/lib/_strncat.c: removed NULL
10134         * device/lib/_strncmp.c: removed NULL
10135         * device/lib/_strncpy.c: removed NULL
10136         * device/lib/_strpbrk.c: removed NULL
10137         * device/lib/_strrchr.c: removed NULL
10138         * device/lib/_strspn.c: removed NULL
10139         * device/lib/_strstr.c: removed NULL
10140         * device/lib/_strtok.c: removed NULL
10141         * device/lib/malloc.c: removed NULL, include own header
10142
10143 2003-02-02    <johan AT balder>
10144
10145         * 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
10146         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10147         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10148         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10149         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10150         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10151
10152 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10153
10154         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10155         area 'DATA'"
10156
10157 2003-02-01    <johan AT balder>
10158
10159         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10160
10161 2003-01-31    <johan AT CP255758-A>
10162
10163         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10164
10165 2003-01-30    <johan AT balder>
10166
10167         * src/SDCCBBlock.c: automatic bug detection
10168         * src/SDCCicode.c: automatic bug detection
10169
10170 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10171
10172         * src/SDCCglobl.h:   now --xram-size 0 works
10173         * src/SDCCmain.c:    now --xram-size 0 works
10174
10175 2003-01-29    <johan AT balder>
10176
10177         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10178
10179 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10180
10181         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10182         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10183         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10184         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10185         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10186         * src/SDCCmain.c:    Added options --xram-size and --code-size
10187
10188 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10189
10190         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10191         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10192
10193 2003-01-27    <johan AT balder>
10194
10195         * src/SDCC.y: fixed bug #613764
10196
10197 2003-01-26    <johan AT balder>
10198
10199         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10200         * src/SDCCsymt.h: fixed bug #673374
10201         * src/SDCCglue.c: fixed bug #661910
10202         * src/SDCCast.c: fixed bug #458099 and 673374
10203
10204 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10205
10206         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10207         * as/mcs51/strcmpi.h: added
10208         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10209         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10210         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10211         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10212         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10213         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10214         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10215         * as/mcs51/Makefile.aslink: new module strcmpi
10216         * as/mcs51/Makefile.asx8051: new module strcmpi
10217         * as/mcs51/Makefil.bcc: new module strcmpi
10218         * as/mcs51/Makefile.in: new module strcmpi
10219         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10220
10221 2003-01-26    <johan AT balder>
10222
10223         * src/SDCCglue.c: reverted back to 1.124
10224         * src/SDCCast.c: reverted back to 1.156
10225         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10226
10227 2003-01-25    <johan AT balder>
10228
10229         * src/SDCCglue.c: A better fix for bug #661910
10230         * src/SDCCast.c: A better fix for bug #661910
10231         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10232
10233 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10234
10235         * src/Makefile.in: remove spawn.o
10236         * src/SDCCmain.c: remove spawn.h
10237         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10238         * src/spawn.c: removed
10239         * src/spawn.h: removed
10240         * support/regression/ports/ds390/spec.mk: link with -r
10241
10242 2003-01-24    <johan AT CP255758-A>
10243
10244         * src/ds390/gen.c (aopOp): fixed bug #667458
10245         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10246         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10247         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10248
10249 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10250
10251         * src/mcs51/peeph.def: better assembler identation by Frieder
10252         * src/mcs51/gen.c: better assembler identation by Frieder
10253
10254 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10255
10256         * as/z80/string.h: removed for gcc 3.2
10257         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10258         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10259
10260 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10261
10262         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10263         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10264         * support/regression/Makefile: separate temp files for ports
10265         * support/regression/generate-cases.py: separate temp files for ports
10266         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10267         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10268
10269 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10270
10271         * moved tinitalk to device/examples/ds390
10272
10273 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10274
10275         * as/mcs51/lkmem.c: rflag is for DS390
10276         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10277         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10278                          (linkEdit): move mem- and map-files the same way as ihx-files
10279         * src/z80/main.c (_setDefaultOptions): removed --generic
10280         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10281         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10282         * src/pic/glue.c (picglue): --c1mode works again
10283         * src/pic16/glue.c (pic16glue): --c1mode works again
10284         * src/asm.c (printCLine): fix #660034
10285
10286 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10287
10288         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10289         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10290         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10291         * as/mcs51/lkmem (summary): better fix for sp problem
10292         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10293         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10294         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10295                                               remove --stack-after-data
10296
10297 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10298
10299         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10300         * src/SDCCutil.c (join): ugly bug: missing '\0'
10301         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10302
10303 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10304
10305         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10306         * src/port.h: typo
10307         * src/pic/main.c (_asmCmd): gpasm supports -o
10308         * src/z80/main.c: more general macros
10309         * device/lib/Makefile.in: remove intermediate files
10310
10311 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10312
10313         * .version: Bumped version number to 2.3.3
10314         * src/SDCCBBlock.c: new option -o
10315         * src/SDCCglobl.h: new option -o
10316         * src/SDCCglue.c: new option -o
10317         * src/SDCCmain.c: new option -o
10318         * src/asm.c: new option -o
10319         * src/ds390/main.c: new option -o
10320         * src/pic/glue.c: new option -o
10321         * src/pic/pcode.c: new option -o
10322         * src/pic/ralloc.c: new option -o
10323         * src/pic16/glue.c: new option -o
10324         * src/pic16/pcode.c: new option -o
10325         * src/pic16/ralloc.c: new option -o
10326         * src/z80/main.c: new option -o
10327         * device/lib/Makefile.in: use -o
10328         * support/regression/ports/ds390/spec.mk: use -o
10329         * support/regression/ports/gbz80/spec.mk: use -o
10330         * support/regression/ports/mcs51/spec.mk: use -o
10331         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10332         * support/regression/ports/z80/spec.mk: use -o
10333         * support/regression/ports/ucz80/spec.mk: use -o
10334         * support/regression/ports/xa51/spec.mk: use -o
10335         * support/regression/fwk/lib/timeout.c: fix usage string
10336
10337 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10338         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10339
10340 2003-01-07    <johan AT balder>
10341
10342         * src/SDCCast.c (decorateType): fixed bug #600035
10343
10344 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10345         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10346         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10347         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10348         * src/pic/pcode.c: outcommented unused variable to remove warnings
10349         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10350
10351 2003-01-06    <karl AT turbobit.com>
10352         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10353    regression tests.
10354
10355 2003-01-06    <johan AT balder>
10356
10357         * src/SDCCicode.c: fixed array add
10358
10359 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10360         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10361         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10362
10363 2003-01-04    <johan AT balder>
10364
10365         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10366
10367 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10368         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10369
10370 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10371         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10372         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10373
10374 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10375         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10376
10377 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10378         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10379
10380 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10381         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10382
10383 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10384
10385     * in \sdcc\as\mcs51\ changed these files in order to create an
10386     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10387     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10388     following files to include the previous two files: aslink.dsp,
10389     Makefile.aslink, Makefile.bcc, and Makefile.in.
10390
10391     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10392     .adb instead of .cdb
10393
10394 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10395
10396         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10397         value from option --iram-size.
10398
10399 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10400
10401         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10402         dram[] array.
10403
10404 2002-09-18    <wiml AT hhhh.org>
10405
10406         * SDCClrange.h: exposed setFromRange() and setToRange()
10407         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10408           packRegsForAccUse() (bug 542397)
10409         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10410           multiple times and emitting the fetch operations more than once
10411           added aopGetUsesAcc() function to allow binary operators to
10412           fetch their operands in the correct order; made genMinus() emit
10413           compact code for X = LITERAL - Y
10414
10415 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10416         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10417         sprintf() in line 1267.
10418
10419 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10420         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10421         like ports.
10422
10423 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10424         Changes to aslink (All the changes are marked with 'JCF'):
10425
10426         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10427         summary().
10428
10429         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10430         area BSEG.  Also moves, if possible, the DATA area down into the internal
10431         ram so more space is available.
10432
10433         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10434         sflag.
10435
10436         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10437         not bytes.  Function summary() which creates a memory usage summary
10438         file with extension .mem.  Reports of overlaping stack and small stack
10439         size.  If the space for the stack is less than 16 bytes aslink trows a
10440         warning.
10441
10442         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10443         the 8051.  Option 'y' for memory summary output file.
10444
10445         Changes to sdcc (All the changes are marked with 'JCF'):
10446
10447         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10448
10449         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10450         overlaying area for it (uses RegBankUsed[4]).
10451
10452         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10453         bank zero as used by default.  By default aslink locates the stack
10454         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10455         the creation of the .mem file.  Delegates the allocation of data area
10456         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10457         the begining of the stack area to aslink.
10458
10459         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10460         glue() in SDCCglue.c creates an area for it.
10461
10462 2002-09-03  Borut Razem <borut.razem AT siol.net>
10463         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10464         sdcc/src/pic/glue.c:
10465         introduced atexit() handler for teporay files removal in case of
10466         errors, assertions, ...
10467
10468 2002-08-29  Borut Razem <borut.razem AT siol.net>
10469         * sdcc/support/cpp2/auto-host_vc_in.h:
10470         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10471         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10472         Maybe there is a similar problem with BORLANDC? It should be checked!
10473
10474         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10475         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10476         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10477         was not executed, and the compiler (cl) launched a warning:
10478         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10479
10480 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10481         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10482
10483 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10484         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10485
10486         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10487           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10488           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10489           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10490           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10491           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10492           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10493         - added Release configuration in VS projects
10494         - review of compiler an linker options
10495         - VC .exe files are generated in bin_vc directory, not to interfere
10496           with binaries generated from other projects (cygwin, mingw, bcc ...)
10497
10498         * sdcc/src/yacc.dsp: added
10499
10500         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10501         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10502         and insert the version number definitions from .version
10503
10504         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10505
10506         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10507         added - genarate auto-host.h using auto-host_vc_in.h as template
10508
10509         * sdcc/sdcc_vc.h,
10510         removed from CVS, generated automatically
10511
10512 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10513         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10514
10515 2002-08-11  Borut Razem <borut.razem AT siol.net>
10516         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10517
10518 2002-08-10  Borut Razem <borut.razem AT siol.net>
10519         * src/SDCCmain.c (main):
10520         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10521         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10522         The consequence was that some temporary files were not removed.
10523
10524         * src/SDCCglue.c:
10525         unification of code in functions tempfilename() and tempfile():
10526         function tempnam() is defined in Visual Studio 6.0 and .NET
10527
10528         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10529
10530         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10531           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10532         - removed compiler command line option /WX: Treats all warnings as errors
10533         - update a list of source files, included into the project
10534
10535         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10536           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10537         changed project type to Generic Project so that can be correcly converted to VS.NET project
10538
10539         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10540
10541         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10542
10543         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10544
10545         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10546         added return 0 statements after assert() to make compiler happy
10547
10548         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10549         added newline in the def file to keep MSC compiler satisfied
10550
10551         * sdcc/src/z80/gen.c:
10552         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10553           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10554         - solved MSC error in function aopDump()
10555
10556         * sdcc_vc.h: define PREFIX as "\\sdcc"
10557
10558 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10559         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10560
10561 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10562         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10563         - Rewrote the register banking algorithm.
10564         - Added pCode live-range analysis to registers (for now, only non-used and
10565         singly-used registers optimized away)
10566
10567         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10568
10569         * 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.
10570
10571 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10572         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10573
10574 2002-04-22  Michael Hope  <michaelh AT vroom>
10575
10576         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10577
10578         * configure.in (DD_COPT): Added include support required for gbdk.
10579
10580         * .version: Bumped version number just to increase it.
10581
10582         * src/SDCCmain.c: Added -nostdinc to the default options.
10583
10584 2002-04-15  Michael Hope  <michaelh AT vroom>
10585
10586         * device/lib/z80/printf.c (sprintf): Added.
10587
10588         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10589
10590         * src/z80/peeph.def: Added transpose redundent load rule.
10591
10592         * src/z80/main.c: Added force callee saves for jaune.
10593
10594         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10595
10596         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10597
10598 2002-03-28  Johan Knol  <johan AT balder>
10599
10600         * src/SDCCval.c: fixed bug #532436
10601
10602 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10603         * /src/port.h:
10604         Added "char *Processor" field to the port structure.
10605
10606         * /src/SDCCmain.c:
10607         Added -p option. Allows port dependent processor to be specified.
10608
10609         * all ports:
10610         Initialized the new field char *Processor field to NULL in all ports
10611
10612         * /src/pic/*:
10613         Compiler generated registers for interrupt context saving
10614         were not getting allocated.
10615
10616 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10617
10618         * /src/SDCCast.c:
10619         Fixed left shift. Will promote the left side of a left shift
10620         if a) left shifting more than size of operand or b) when assigned
10621         to something size > size of left side
10622
10623 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10624         * src/pic/*
10625         tons of changes. Register allocation has been
10626         rewritten. Added customization for the various PICs. Flow
10627         analysis is restructured. ...
10628
10629         * src/pic/device.h:
10630         Added
10631
10632         * src/pic/device.c:
10633         Added. device.c is a PIC port hack to accomodate variations
10634         in PIC devices.
10635
10636 2002-03-13  Michael Hope  <michaelh AT vroom>
10637
10638         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10639
10640 2002-03-04  johanknol  <johanknol AT manik>
10641
10642         * /src/SDCCval.c: fixed
10643
10644         const unsigned char arr[][2] = { { 0, 1 } };
10645         t18.c:1: error: Initializer element is not constant
10646
10647 2002-03-04  bela  <bela AT manik>
10648
10649         * /device/include/mcs51reg.h:
10650         ds89c420 register definition update
10651
10652 2002-03-03    <johan AT FRIJA>
10653
10654         * support/Util/SDCCerr.c: did something, but don't no why anymore
10655
10656         * support/regression/tests/bug-524691.c: made it a little less shy
10657
10658         * src/SDCCast.c (decorateType): fixed bug #524697
10659
10660         * src/SDCCast.c: made some lineno improvements
10661
10662         * src/SDCCval.c (getNelements): changed warning to error
10663
10664         * src/SDCCglue.c (printIvalArray): changed warning to error
10665
10666         * src/SDCCicode.c: fixed a warning for mingw
10667
10668         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10669
10670         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10671
10672 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10673
10674         * src/ds390/peeph.def:
10675         Added some more peephole rules
10676
10677         * src/ds390/gen.c: Various fixes & enhancements
10678
10679         * src/SDCClrange.c, src/SDCClrange.h:
10680         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10681
10682         * src/ds390/ralloc.c:
10683         various fixes & enhancements (ds390) specific
10684
10685         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10686         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10687         from rallocs.
10688
10689         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10690
10691 2002-03-02    <johan AT FRIJA>
10692
10693         * src/SDCCast.c (decorateType): fixed bug #524708
10694
10695         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10696
10697         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10698
10699 2002-03-01  Michael Hope  <michaelh AT vroom>
10700
10701         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10702
10703         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10704
10705 2002-03-01    <johan AT FRIJA>
10706
10707         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10708
10709         * src/SDCCast.c (decorateType): fixed bug #524209
10710
10711         * src/SDCCval.c (valNot): fixed bug #524195
10712
10713 2002-02-26    <johan AT balder>
10714
10715         * src/xa51/gen.c: fixed a warning
10716
10717         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10718
10719         * src/SDCCast.c (decorateType): fixed bug #522534
10720
10721 2002-02-23    <johan AT balder>
10722
10723         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10724
10725 2002-02-22    <johan AT balder>
10726
10727         * src/SDCCast.c: fixed bug #514865
10728
10729         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10730
10731 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10732
10733         * sdcc/src/SDCCloop.c:
10734         Previous fix was not good. basic blocks that have "break" or "return" are
10735         not really partof a loop , but live ranges used in these blocks should
10736         be live thru the entire loop, so set partOfLoop but don't add them to
10737         loop region
10738
10739 2002-02-21    <johan AT FRIJA>
10740
10741         * src/SDCCcse.c: fixed bug #514308
10742
10743 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10744
10745         * src/SDCCloop.c:
10746         Fixed BUG #519583. If a conditional block ended in a return/break
10747         statement inside a loop, it was not being considered part of the loop.
10748
10749         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10750
10751 2002-02-10  Karl Bongers <karl AT turbobit.com>
10752
10753         * debugger/*:
10754         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10755         with lots of comments and notes.
10756
10757         * device/examples/test2.c:
10758         Fix bug, "red" variable not being initialized(compiler complained).
10759
10760         * device/examples/Makefile, examples/test3.c:
10761         Add Makefile in device/examples folder, compiles test3.c
10762         for use as a multiple module SDCDB test case.
10763
10764         * sim/ucsim/cmd.src/cmdset.cc:
10765         Took out debug printfs in ucsim "next" command.
10766
10767         * sim/ucsim/xa.src:
10768         Karl and Johan start ucsim XA support.  Most dissassembly working,
10769         about 75% emulation done(plenty of work remaining).
10770
10771         * sim/ucsim/z80.src:
10772         Add Z80 support to ucsim, add test-ucz80 regression test,
10773         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10774         Notice z80 compiler fails on examples/test3.c/crc code.
10775
10776 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10777
10778         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10779         Added support for --parms-in-bank1
10780
10781         * src/ds390/peeph.def:
10782         added a few more peephole optimzations
10783
10784         * src/ds390/main.c:
10785         1) added __builtin_inp & __builtin_outp used to read in data of given length
10786            from a memory mapped port
10787         2) added __builtin_memcmp
10788         3) added __builtin_swapw swap bytes of a short
10789
10790         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10791         1) handle multiple send & receives from register bank1
10792         2) ralloc can now allocate DPTR1 to some liveRanges
10793
10794         * src/SDCCsymt.c, src/SDCCsymt.h:
10795         changes to handle multiple sends & receives
10796
10797         * src/SDCCptropt.h:
10798         added some pointer arithmetic optimization
10799
10800         * src/SDCCptropt.c:
10801         added some pointer arithmetic optimizations but not stable yet so not
10802         called from anywhere (will get this working shortly)
10803
10804         * src/SDCCopt.c: fixed for multiple sends & receives
10805
10806         * src/SDCCmain.c:
10807         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10808         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10809            set preprocessor defines (depending on options)
10810
10811         * src/SDCCicode.c, src/SDCCicode.h:
10812         changes made to handle multiple sends & receives
10813
10814         * src/SDCCglobl.h:
10815         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10816
10817         * src/SDCCcse.c, src/SDCCcse.h:
10818         added function findbackward def (to be used in upcoming optimization)
10819
10820         * src/SDCCcflow.c, src/SDCCcflow.h:
10821         added function returnAtEnd - to determine if a basic block terminates with
10822         a RETURN iCode
10823
10824         * src/SDCCast.c, src/SDCCast.h:
10825         added option parms-in-bank1
10826
10827         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10828         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10829         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10830         adjusted for --parms-in-bank1 option
10831
10832         * device/include/string.h:
10833         donot redefine "reentrant" keyword
10834
10835         * device/include/ds80c390.h: Added some more SFRs
10836
10837 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10838
10839         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10840
10841 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10842
10843         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10844
10845 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10846
10847         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10848
10849 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10850
10851         * Added --xram-movc option
10852
10853 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10854
10855         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10856
10857 2002-01-11  Johan Knol
10858
10859         * Added math lib of Jesus Calvino-Fraga
10860
10861 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10862
10863         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10864         * support/regression/Makefile: new target test-mcs51-stack-auto
10865         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10866
10867 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10868
10869         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10870
10871 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10872
10873         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10874
10875 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10876
10877         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10878
10879         * src/SDCCglue.h: add definition for printIvalChar()
10880
10881 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10882
10883         * src/SDCCast.c: fix #498138 by Johan
10884
10885         * src/SDCCglue.c: fix #498138 by Johan
10886
10887 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10888
10889         * support/regression/Makefile: fix clean
10890
10891         * support/regression/ports/ds390/support.c: fix transmission of last character
10892
10893 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10894
10895         * /sdcc/src/ds390/gen.c:
10896         a) improved computing address of stack variable
10897         b) took out some #if 0 code
10898         c) improved parmBytes adjustment
10899         d) improved genPlusIncr & genMinusIncr
10900         e) genCmp could generate bad code (when left assigned to DPTR)
10901         f) Fixed bug in hasInc
10902
10903         * /sdcc/src/ds390/ralloc.c:
10904         a) packRegsForSupport could mess up live information (Fixed)
10905         b) packRegsDPTRuse could be incorrect for left & right shift
10906
10907         * /sdcc/src/mcs51/ralloc.c:
10908         packRegsForSupport could mess up the live information (Fixed)
10909
10910         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10911
10912         * /sdcc/src/SDCCast.c:
10913         can reverse a loop even if function call is present as long
10914         as the loop control variable is local & is not passed as parameter
10915
10916 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10917
10918         * /sdcc/ChangeLog: *** empty log message ***
10919
10920         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10921         More builtin function additions for TININative
10922
10923         * /sdcc/src/ds390/ralloc.c:
10924         Had broken the regression testsuite
10925
10926         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10927
10928         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10929         Added funcattr hasStackParms will be set for reentrant functions when there
10930         are paramteres on the stack, this helps in minimizing frame pointer generation
10931         typeFromStr can handle function pointers now
10932
10933         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10934         *** empty log message ***
10935
10936 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10937
10938         * /src/ds390/gen.c, /src/ds390/main.c:
10939         More builtin function additions for TININative
10940
10941         * /src/ds390/ralloc.c:
10942         Had broken the regression testsuite
10943
10944         * /src/SDCCast.c: Fixed a bug in dumptree
10945
10946         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10947         Added funcattr hasStackParms will be set for reentrant functions when there
10948         are paramteres on the stack, this helps in minimizing frame pointer generation
10949         typeFromStr can handle function pointers now
10950
10951         * /doc/builtins.txt, /doc/TININative.txt:
10952         *** empty log message ***
10953
10954
10955 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10956
10957         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10958         ALPHA version for -mTININative
10959
10960         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10961         updated to reflect changes in the port structure
10962
10963         * /src/port.h:
10964         added function do_assemble (similar to do_link) if non-null this function
10965         will be called to do assembly (-mTININative) requires a multi command
10966         assembly
10967         added function genAssemblerEnd will be called to generate assembler Epilogue
10968
10969         * /src/SDCCsymt.c:
10970         added _JavaNative to debug info printing
10971
10972         * /src/SDCCmain.c: added option --tini-libid
10973         added port->do_assemble function (-mTININative) has a multi command assemble
10974
10975         * /src/SDCCglue.c: Disabled "constExpr" check
10976         added port->genAssemblerEnd function
10977
10978         * /src/SDCCglobl.h: Added option --tini-libid value
10979
10980         * /src/SDCCast.h:
10981         tookout optimizeCompare from the header (has no external references)
10982
10983         * /src/SDCCast.c: made one more function "static"
10984
10985 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
10986
10987         * src/z80/mappings.i: Added z80asm support.
10988
10989         * src/z80/main.c: Added z80asm support on --asm=z80asm
10990
10991         * src/z80/gen.c: Fixed asm portability issues.
10992
10993         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
10994
10995         * src/SDCCglue.c (printExterns): Added global/extern split.
10996
10997 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
10998
10999         * support/regression/Makefile: added test for mcs51 model large
11000
11001         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11002
11003         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11004
11005 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11006
11007         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11008
11009 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11010
11011         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11012
11013         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11014
11015 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11016
11017         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11018
11019         * support/regression/tests/simplefloat.c: Port to mcs51.
11020
11021 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11022         * support/regression/tests/bug-485362.c: Added.
11023
11024         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11025
11026         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11027
11028         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11029
11030         * src/z80/gen.c (aopDump): Added a dump function.
11031
11032 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11033         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11034
11035         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11036
11037         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11038
11039         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11040
11041         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11042
11043         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11044
11045         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11046
11047         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11048
11049         * support/regression/ports/ds390/support.c: Use tinibios.
11050
11051         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11052
11053 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11054
11055         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11056         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11057
11058         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11059
11060         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11061
11062 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11063
11064         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11065
11066         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11067         (packRegsForIYUse): Created and optimised.
11068
11069 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11070
11071         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11072 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11073
11074         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11075
11076         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11077
11078         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11079
11080 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11081
11082         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11083
11084         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11085
11086 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11087
11088         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11089
11090         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11091
11092         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11093
11094 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11095
11096         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11097         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11098         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11099
11100         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11101
11102         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11103         (genNotFloat): Added.
11104         (genUminusFloat): Added.
11105
11106         * device/lib/z80/Makefile: Added floating pt stubs.
11107
11108         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11109
11110         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11111
11112         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11113
11114 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11115
11116         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11117
11118         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11119
11120         * sdcc/support/regression/Makefile: Add port ds390.
11121
11122         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11123
11124         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11125
11126         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11127
11128         * sdcc/support/regression/ports/ds390/support.c: Added.
11129
11130         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11131
11132         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11133
11134         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11135
11136 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11137
11138         * device/include/malloc.h: Added z80 and gbz80 support.
11139
11140         * device/lib/gbz80/heap.s: Added.
11141
11142         * device/lib/z80/heap.s: Added.
11143
11144         * device/lib/malloc.c: Added z80 and gbz80 support.
11145
11146         * support/regression/tests/malloc.c (testMalloc): Added.
11147
11148         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11149
11150         * support/regression/tests/bug-478094.c: Added.
11151
11152         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11153
11154 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11155
11156         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11157
11158         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11159
11160         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11161
11162         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11163
11164         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11165
11166 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11167
11168         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11169
11170 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11171
11172         * support/regression/tests/bug-477927.c: Added.
11173
11174         * src/z80/peeph.def: Added minor rules.
11175
11176         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11177
11178         * src/z80/peeph.def: Added jump optimisation modification.
11179
11180 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11181
11182         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11183
11184 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11185
11186         * support/regression/tests/funptrs.c: Added.
11187
11188 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11189
11190         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11191
11192 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11193
11194         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11195
11196         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11197
11198         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11199         (movLeft2ResultLong): Created.
11200
11201         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11202         (joinPushes): Added.  Joins two char pushes into a word push.
11203
11204 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11205
11206         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11207
11208         * support/makebin/Makefile (install): Added creation of dest dir.
11209
11210 2001-10-24 Karl Bongers <karl AT turbobit.com>
11211
11212         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11213
11214 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11215
11216         * src/z80/ralloc.c: Turned off faulty pack for one use.
11217
11218         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11219
11220         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11221
11222 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11223
11224         * support/regression/Makefile: Improved clean
11225
11226         * support/regression/ports/gbz80/spec.mk: Added clean
11227
11228         * support/regression/ports/host/spec.mk: Added clean
11229
11230         * support/regression/ports/z80/spec.mk: Added clean
11231
11232         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11233
11234         * support/regression/ports/mcs51/timeout.c: little improvements
11235
11236 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11237
11238         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11239
11240         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11241
11242         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11243
11244 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11245
11246         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11247
11248         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11249
11250 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11251         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11252
11253         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11254
11255         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11256
11257         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11258
11259         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11260
11261         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11262
11263         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11264
11265         * support/regression/tests/longor.c: Added.
11266
11267 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11268
11269         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11270
11271         * as/mcs51/aslink.h: define PATH_MAX
11272
11273         * as/mcs51/asm.h: define PATH_MAX
11274
11275         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11276
11277         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11278
11279         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11280
11281         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11282
11283         * src/SDCCglobl.h: define PATH_MAX
11284
11285         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11286
11287         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11288
11289 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11290
11291         * src/z80/gen.c (gencjneshort): Fixed
11292
11293         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11294
11295 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11296
11297         * support/regression/tests/bug-469671.c: Added.
11298
11299         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11300
11301 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11302
11303         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11304
11305         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11306
11307 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11308
11309         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11310
11311         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11312
11313         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11314
11315         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11316
11317         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11318
11319         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11320
11321         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11322
11323 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11324
11325         * 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.
11326
11327         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11328
11329         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11330
11331 2001-10-07    <johan AT FRIJA>
11332
11333         * device/lib/gets.c (gets): fixed the return value.
11334
11335 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11336         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11337
11338         * 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.
11339
11340         * 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.
11341
11342         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11343
11344         * src/pic/gen.c: Removed Safe_strdup.
11345
11346         * configure.in: Added option to enable libgc support.
11347
11348         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11349         (bitVectUnion): Optimised.
11350         (bitVectIntersect): Optimised.
11351         (bitVectBitsInCommon): Optimised.
11352         (bitVectCplAnd): Optimised.
11353
11354         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11355
11356 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11357
11358         * src/SDCCmain.c: distinguish between assembler debug and plain options
11359
11360         * src/avr/main.c:   remove standard assembler options
11361
11362         * src/ds390/main.c: remove standard assembler options
11363
11364         * src/mcs51/main.c: remove standard assembler options
11365
11366         * src/port.h: removed "PENDING" comment
11367
11368 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11369
11370         * src/device/lib/_mulint.c  : new, with assember functions
11371
11372         * src/device/lib/_mullong.c : new, with assember functions
11373
11374         * src/device/lib/_divuint.c : with assember functions
11375
11376         * src/device/lib/_divsint.c : with assember functions
11377
11378         * src/device/lib/_divulong.c: with assember functions
11379
11380         * src/device/lib/_divslong.c: with assember functions
11381
11382         * src/device/lib/_moduint.c : with assember functions
11383
11384         * src/device/lib/_modsint.c : with assember functions
11385
11386         * src/device/lib/_modulong.c: with assember functions
11387
11388         * src/device/lib/_modslong.c: with assember functions
11389
11390         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11391
11392         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11393
11394         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11395                                       replaced _mululong.c and _mulslong.c by _mullong.c
11396
11397 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11398
11399         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11400
11401 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11402
11403         * src/SDCCglue.c: test, if win32api is available for MINGW
11404
11405 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11406
11407         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11408         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11409         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11410         * support/regression/ports/host/spec.mk: removed GENERIC
11411         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11412         * support/regression/ports/z80/spec.mk: removed GENERIC
11413
11414 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11415
11416         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11417
11418         * support/regression/tests/bug-467035.c: Created.
11419
11420 2001-10-01    <johan AT FRIJA>
11421
11422         * src/SDCC.y: fixed bug #466586 part 1
11423
11424 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11425
11426         * SDCCicode.c: z80 has no generic pointers
11427         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11428
11429 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11430
11431         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11432
11433 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11434
11435         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11436
11437         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11438
11439 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11440
11441         * configure.in: Fixed up so that ucsim is only configured once.
11442
11443         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11444
11445         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11446         (getPathDifference): As above.
11447
11448         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11449
11450         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11451
11452 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11453         * .version: Updated to 2.3.1
11454
11455         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11456         Added copyright header.
11457
11458         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11459         (assemble): Added support for macro based assembler commands.
11460         (linkEdit): Added support for macro based linker commands.
11461         (preProcess): Changed the pre-processor to use macros.
11462         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11463         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11464
11465         * device/lib/z80/crt0.s: Added module name for debugging.
11466
11467 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11468
11469         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11470
11471         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11472
11473         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11474
11475         * src/Makefile.in: Added SDCCmacro and SDCCutil
11476
11477 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11478
11479         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11480
11481 2001-09-16    <johan AT FRIJA>
11482
11483         * 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.
11484
11485 2001-09-15    <johan AT FRIJA>
11486
11487         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11488         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11489
11490 2001-09-11    <johan AT FRIJA>
11491
11492         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11493
11494 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11495
11496         * support/regression/tests/bug-460444.c: Added test case.
11497
11498         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11499         (genCast): Added justification for all of the asserts.
11500
11501 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11502
11503         * support/regression/support.c: _xdata replaced by xdata
11504
11505         * support/regression/spec.mk: removed _generic
11506
11507 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11508
11509         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11510
11511         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11512         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11513
11514         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11515
11516         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11517
11518         * support/regression/tests/bug-460010.c: Added test case.
11519
11520         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11521
11522 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11523
11524         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11525
11526         * support/regression/testfwk.c: removed workaround for bug #436344
11527
11528         * support/regression/tests/bp.c: use less memory with mcs51
11529
11530         * support/regression/tests/bug-441448.c: use less memory
11531
11532         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11533
11534         * support/regression/collate-results.py: typo
11535
11536 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11537
11538         * support/regression/tests/fetchoverlap.c: Added new test case.
11539
11540         * support/regression/tests/bp.c: Added new test case.
11541
11542         * support/regression/tests/bug-448984.c: Added new test case.
11543
11544         * support/regression/tests/pow2shifts.c: Added new test case.
11545
11546         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11547         (genlshTwo): Fixed right shift for count > 8.
11548
11549         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11550
11551 2001-09-08    <johan AT FRIJA>
11552
11553         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11554
11555 2001-09-07    <johan AT FRIJA>
11556
11557         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11558
11559         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11560
11561 2001-09-06    <johan AT FRIJA>
11562
11563         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11564         * bernhard noted me at this: "() equals to (void)" (1.38)
11565
11566 2001-09-05    <johan AT FRIJA>
11567
11568         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11569
11570 2001-09-04    <johan AT FRIJA>
11571
11572         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11573
11574
11575 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11576
11577         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11578
11579 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11580
11581         * link/z80/aslink.h: Fixed path for PATH_MAX
11582
11583 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11584
11585         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11586
11587         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11588
11589         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11590
11591         * 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.
11592
11593 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11594
11595         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11596         (genCmp): Fixed up genCmp for the GB with longs.
11597
11598         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11599
11600         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11601
11602         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11603
11604         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11605
11606 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11607
11608         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11609
11610 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11611
11612         * 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.
11613
11614         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11615
11616 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11617
11618         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11619
11620         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11621
11622 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11623
11624   * sim/ucsim/configure:    little improvement of Cygwin-detection
11625   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11626   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11627   * support/regression/tests/bug-221100.c: small changes for mcs51
11628   * support/regression/tests/bug-221168.c: small changes for mcs51
11629   * support/regression/tests/bug-227710.c: small changes for mcs51
11630   * support/regression/tests/staticinit.c: small changes for mcs51
11631   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11632   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11633   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11634
11635 $Revision$