* src/SDCCast.c (backPatchLabels): fixed bug #1504636
[fw/sdcc] / ChangeLog
1 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
4
5 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
6
7         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
8           for optimization
9
10 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
11
12         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
13         to a char variable. Fixed bug #1504211
14         * device/include/pic16/adc.h,
15         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
16         and fixed bug #1364390
17
18 2006-06-10 Borut Razem <borut.razem AT siol.net>
19
20         * CVSROOT: removed the CVS left-over
21
22 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
23
24         * as/hc08/asmain.c (asexit),
25         * as/hc08/lkmain.c (lkexit),
26         * as/mcs51/asmain.c (asexit),
27         * as/mcs51/lkmain.c (lkexit),
28         * src/SDCCglue.c (DEFSETFUNC),
29         * src/SDCCmain.c (linkEdit, assemble),
30         * support/librarian/sdcclib.c (AddRel),
31           replaced unlink() by standard C remove()
32         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
33         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
34           gatherImplicitVariables): new, added to fix bug 608752,
35           (createFunction): added gatherImplicitVariables()
36         * src/SDCCast.h: added createRMW prototype
37         * src/SDCCsymt.h (struct symbol): added infertype
38         * support/regression/tests/bug608752.c: new, added
39
40 2006-06-10 Raphael Neider <rneider AT web.de>
41
42         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
43           multibyte dummy reads (fixes #1503234)
44
45 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
46
47         * device/include/mcs51/compiler.h: new, added header file to enable
48           creating common sfr definition header files for different compilers
49
50 2006-06-05 Raphael Neider <rneider AT web.de>
51
52         * src/pic16/{pcode.h,genarith.c}:
53           introduced pCodeOp combining any two pCodeOps (previously only
54           two register operands could be combined), removed pcop2 from
55           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
56         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
57         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
58           rewritten to use new PO_TWO_OPS
59         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
60         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
61           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
62           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
63           (pic16_get_op): embraced return arg to allow #define return(x),
64             added new case for combined opcodes
65           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
66           (pic16_pCode2str,pic16_getRegFrompCodeOp,
67            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
68
69 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
70
71         * src/SDCCval.c (checkConstantRange): added
72         * src/SDCCval.h: added checkConstantRange
73         * support/Util/SDCCerr.c,
74         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
75         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
76         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
77         * src/SDCCast.c (decorateType): added checkConstantRange,
78         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
79         can be emitted with the correct always true/false warning,
80         added optimization for double '!';
81         result of decorateType() must be assigned back to the tree, because
82         decorateType() can change the tree
83         * src/SDCCicode.c (geniCodeLogic),
84         (geniCodeAssign): replaced new checkConstantRange, added warnings,
85         (checkConstantRange): removed, it was only a fragment which never
86         emitted a warning
87         * src/SDCCsymt.c (computeType): fixed promotion for
88         "-1 < (unsigned bit) b"
89         * src/pic/ralloc.c (packRegsForAssign),
90         * src/pic16/ralloc.c (packRegsForAssign),
91         * src/hc08/ralloc.c (packRegsForAssign),
92         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
93         from mcs51
94         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
95         * support/regression/tests/constantRange.c: added
96         * support/valdiag/tests/constantRange.c: added
97         * support/valdiag/valdiag.py: added -DPORT_HOST=1
98
99 2006-06-02 Borut Razem <borut.razem AT siol.net>
100
101         * support/regression/ports/pic16/support.c: increase stack size
102           to 255 bytes
103         * support/regression/Makefile.in: sort tests by name so that the
104           resutlts can be compared on different machines / platforms
105
106 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
107
108         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
109         * src/ds390/gen.c (emitLabel): new, added,
110           (genDjnz): fixed stack overflow bug,
111           (throughout): cosmetic changes to sync with mcs51/gen.c,
112           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
113         * src/mcs51/gen.c (genEndFunction): small optimization,
114           (throughout): cosmetic changes to sync with ds390/gen.c
115
116 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
117
118         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
119           (_print_format): fixed printing pointers
120         * src/mcs51/gen.c (emitLabel, movb): new, added,
121           (genAssign): small optimization,
122           (genDjnz): fixed stack overflow bug,
123           (throughout): replaced sprintf with SNPRINTF,
124           replaced mcs51_regWithIdx with REG_WITH_INDEX,
125           replaced emitcode("mov", "b,...") with MOVB(...),
126           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
127           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
128         * src/mcs51/peeph.def: added rules 140 and 264
129         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
130           so they may get optimized into registers
131
132 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
133
134         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
135           immediately when encountered,
136           (printUsage): always use stderr even on windows
137
138 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
139
140         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
141         (processParms): fixed bug #1247551
142         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
143         parseCmdLine, main): print '--version' to stdout,
144         print 'help' to stdout if --help is given,
145         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
146         arguments are given; fixed --help
147
148 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
149
150         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
151         * support/regression/tests/bug-1493710.c: added
152
153 2006-05-27 Borut Razem <borut.razem AT siol.net>
154
155         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
156           static instead auto
157         * support/regression/ports/pic16/support.c: increase stack size
158           from default 64 bytes to 128 bytes
159         * support/regression/tests/staticinit.c,
160           support/regression/tests/float.c: regression tests fully enabled
161           for pic16 port by putting the initialized data arrays into the code
162           section
163         * support/regression/ports/pic16/spec.mk: don't link default libraries.
164           This was changed by mistake in the previous version.
165
166 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
167
168         * src/pic16/gen.c (genFunction, genEndFunction): some
169         beautifications, fixed bug with falsely restoring FSR2 in large
170         stack model, thanks to Beau E. Cox for reporting the bug
171
172 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
173
174         * debugger/mcs51/break.c,
175         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
176           use %p to print pointers, made address variables unsigned
177         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
178         * debugger/mcs51/symtab.c (parseSymbol): must return something
179         * src/mcs51/gen.c (aopForSym): small optimization,
180            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
181           (freeAsmop): added missing break,
182           (aopPut): removed parameter bvolatile, determine it inside the function,
183           (saveRegisters, unsaveRegisters): small optimization,
184           (genIpush): removed pointless check,
185           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
186           replaced sprintf with SNPRINTF,
187           replaced strcpy with strncpyz,
188           updated aopPut calls,
189           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
190         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
191
192 2006-05-24 Borut Razem <borut.razem AT siol.net>
193
194         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
195           modification of test for the pic16 port, put the array to the code
196           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
197
198 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
199
200         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
201         * support/Util/pstdint.h: added
202
203 2006-05-22 Borut Razem <borut.razem AT siol.net>
204
205         * src/regression/Makefile: removed bool2.c test, added -q linker option
206         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
207           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
208           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
209           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
210           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
211           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
212           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
213           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
214           define SUPPORT_BIT_TYPES 0, removed unused bit variables
215
216 2006-05-22 Raphael Neider <rneider AT web.de>
217
218         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
219           bug #1492360 (problematic due to generic pointers, see code)
220
221 2006-05-22 Borut Razem <borut.razem AT siol.net>
222
223         * support/regression/ports/pic16/specs.mk: removed stack size linker
224           directive
225         * support/regression/tests/array.c,
226           support/regression/tests/bitopcse.c,
227           support/regression/tests/bug-908454.c,
228           support/regression/tests/malloc.c: modified for pic16 regression test
229         * support/regression/tests/bitfields.c:
230           pic16 - excluded bitfileds of size > 8
231         * support/regression/tests/bp.c: pic16 - reduced data size
232         * support/regression/tests/bug-221100.c: pic16 - reduced data size
233         * support/regression/tests/bug-460010.c:
234           pic16 - used the absolute address the fits in memory
235         * support/regression/tests/bug-716242.c:
236           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
237         * support/regression/tests/float.c:
238           pic16 - excluded - data size too big
239         * support/regression/tests/onebyte.c:
240           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
241         * support/regression/tests/shifts.c:
242           pic16 - function names probably have to differ in first X characters
243           (gpasm limitation?)
244         * support/regression/tests/staticinit.c:
245           pic16 - excluded some tests due error: no target memory available for
246           section ".idata"
247
248 2006-05-22 Borut Razem <borut.razem AT siol.net>
249
250         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
251           second try. Thanks Stas Sergeev once more.
252
253 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
254
255         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
256           (genLeftShift, genRightShift): fixed bug 1491627
257         * src/hc08/peeph.def (rules 7, 8.x): added
258         * support/regression/tests/shifts.c (ShiftLeftByParam,
259           ShiftRightByParam, testShiftByParam): added to test variable shifting
260
261 2006-05-20 Raphael Neider <rneider AT web.de>
262
263         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
264         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
265           (allocReg): add only new registers to dynAllocRegs,
266           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
267             #1489055, #1445850, and probably #1483693
268
269 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
270
271         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
272         bug in for-loop that didn't emit the last of CONFIG and ID registers
273
274 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
275
276         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
277           with offset
278         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
279           1489016, 1434401 and 1490124
280         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
281           1489016, 1434401 and 1490124
282
283 2006-05-17 Borut Razem <borut.razem AT siol.net>
284
285         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
286           thanks Stas Sergeev
287
288 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
289
290         * device/include/mcs51/P89c51RD2.h,
291         * device/include/mcs51/P89LPC901.h,
292         * device/include/mcs51/P89LPC922.h,
293         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
294
295 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
296
297         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
298         to fix missing stack pragma in compiled binary object file,
299
300 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
301
302         * support/packihx/configure.in,
303         * support/packihx/configure: removed warning, autoconf >= 2.5x can
304         determine sizeof basic types even while cross compiling
305
306 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
307
308         * src/avr/gen.c (aopop),
309         * src/ds390/gen.c (aopOp),
310         * src/hc08/gen.c (aopOp),
311         * src/mcs51/gen.c (aopop),
312         * src/pic16/gen.c (pic16_aopOp),
313         * src/pic/gen.c (aopOp),
314         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
315         if size of operand is smaller than spill location
316
317 2006-05-12 Borut Razem <borut.razem AT siol.net>
318
319         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
320           have to have CR/LF line endings even if they are checked out on *nix
321           or on WIN32 in cygwin binmode
322
323 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
324
325         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
326         * device/include/ds80c390.h: added sfr16 definitions
327         * src/ds390/gen.c,
328         * src/ds390/gen.h,
329         * src/ds390/main.c,
330         * src/ds390/ralloc.c,
331         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
332           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
333           bit returning functions
334         * support/regression/tests/sfr16.c: enabled test on ds390
335
336 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
337
338         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
339         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
340
341 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
342
343         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
344         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
345           (cl_address_space constructor): removed expensive initialization,
346           (cl_address_space::get_cell): extended for late initialization,
347           (cl_address_space::*): use late initialization,
348           (cl_address_decoder::activate): removed expensive initialization,
349           This reduced regression test running time by 25%
350
351 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
352
353         * packihx/,
354         * configure.in,
355         * configure,
356         * sdcc.dsw,
357         * Makefile.bcc,
358         * Makefile.in,
359         * support/packihx/Makefile.in,
360         * support/packihx/clean.mk,
361         * support/packihx/Makefile.bcc,
362         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
363
364 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
365
366         * src/SDCCval.c (valNot): fix for regression test failure
367           of not.c on big endian hosts
368
369 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
370
371         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
372
373 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
374
375         * device/lib/mcs51/Makefile.in: changed string comparison operator
376           to = for POSIX compliance; == is bash extension
377
378 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
379
380         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
381           kosmonaut_pirx
382
383 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
384
385         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
386         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
387         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
388         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
389         bug report #1478657,
390
391 2006-05-05 Borut Razem <borut.razem AT siol.net>
392
393         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
394           making the html
395
396 2006-05-02 Borut Razem <borut.razem AT siol.net>
397
398         * doc/Makefile.in: removed *.ind dependency since there is no rule to
399           create *.ind, which made make to fail if invoked with -j 2
400
401 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
402
403         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
404           Hubert Sack for patch 1479782
405
406 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
407
408         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
409
410 2006-05-01 Raphael Neider <rneider AT web.de>
411
412         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
413           (create_pic): store only prefix-free device name,
414           (init_pic): check for device names with "16" prefix,
415           (list_valid_pics),
416         * src/pic/device.h (struct PIC_device),
417         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
418             stored device name,
419         * device/include/pic/pic12f{635,675,629,683}.h,
420         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
421         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
422         * device/include/pic/pic16f505.h,
423         * device/lib/pic/libdev/pic16f505.c: removed
424         * device/include/pic/pic14devices.txt: added support for pic12f
425             devices, removed unsupported non 16-bit devices
426             [above changes provided by patch from Zik Saleeba]
427         * src/pic/*, src/pic16/*, device/include/pic16/*,
428           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
429
430 2006-05-01 Borut Razem <borut.razem AT siol.net>
431
432         * configure.in, configure, doc/Makefile.in:
433           sync with nightly build makefile - latex, dvipdf and dvips
434           not needed any more
435
436 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
437
438         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
439         in the library source
440
441 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
442
443         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
444
445 2006-04-28 Raphael Neider <rneider AT web.de>
446
447         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
448         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
449           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
450         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
451
452 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
453
454         * device/lib/pic/libdev/Makefile.in,
455         * device/lib/hc08/Makefile.in,
456         * device/lib/gbz80/Makefile.in,
457         * device/lib/z80/Makefile.in,
458         * device/lib/ds390/Makefile.in,
459         * device/lib/ds400/Makefile.in: added srcdir to include search path,
460         thanks to Borut for the bug report
461         * configure.in,
462         * configure: always create doc/Makefile independent from --enable-doc
463         * Makefile.in: always install from directory doc independent from
464         --enable-doc
465         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
466         removed
467         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
468         * doc/Makefile.in: install *.txt if present
469         * device/include/Makefile.in (install): added installation of pic/*.inc
470         and pic/*.txt files again, they were erroneously removed
471
472 2006-04-28 Raphael Neider <rneider AT web.de>
473
474         * src/pic/{gen.c,main.h,pcode.c},
475         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
476             concerning signedness with casts
477
478 2006-04-28 Raphael Neider <rneider AT web.de>
479
480         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
481             definition of an interrupt handler,
482         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
483             interrupt handler stuff from picglue() to separate routine,
484           (picglue): enabled definition of intr handlers in files w/o main()
485
486 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
487
488         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
489           compilation with MSVC 2005 Express Edition (VC8)
490
491 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
492
493         * device/lib/Makefile: fixed build of gbz80 lib
494
495 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
496
497         * support/regression/tests/bug-460010.c,
498         * support/regression/tests/bug-524691.c,
499         * support/regression/tests/bug-716242.c: removed conditional defines
500           that are already in testfwk.h
501
502 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
503
504         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
505           (AccAXRsh1): added, shift right by 1,
506           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
507            AccAXLrl1
508         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
509
510 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
511
512         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
513         remove cast to same type
514         * src/SDCCast.c (decorateType): fix for RFE 1475742,
515         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
516         * as/z80/Makefile,
517         * link/z80/Makefile: removed, they have moved to
518         Makefile.in files
519         * configure,
520         * configure.in: replaced duplicate message about ucsim by missing sdcpp
521         * install-sh: fix bug #1204398 by setting umask 0022
522         * device/lib/Makefile: separate build of z80 and gbz80 lib
523
524 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
525
526         Enabled VPATH feature: changed nearly all Makefiles (149 files).
527         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
528
529         One basic decision: e.g. src/clean.mk includes further files. In order
530         to make this work there are two solutions:
531         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
532           run configure on them. This way they can use
533           'include $(srcdir)/port-clean.mk'
534         - always include clean.mk by the Makefile at the same level. To avoid
535           that `make clean` tries to include and build Makefile.dep the
536           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
537           implemented, because now even `make uninstall` doesn't create
538           Makefile.in. clean.mk could be eliminated by pasting it in
539           Makefile.in.
540
541         * debugger/mcs51/Makefile.in: build own objects from library sources
542         (SLIB, SDCC) in current directory
543
544         * configure, configure.in: renamed --disable-device-lib-build in
545         --disable-device-lib; added --enable-doc, the required tools are
546         searched by configure; added result message; the toolchain for the
547         belonging ports are now only built, if the port is enabled.
548
549         * support/regression/*: all output is written in directory gen, because
550         the fwk and ports directories don't livet in the build tree using vpath
551
552         * doc/sdccman.lyx: renamed --disable-device-lib-build to
553         --disable-device-lib, added --enable-doc, added section VPATH
554
555         * sim/ucsim/configure.in,
556         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
557         z80 are enabled by default
558
559 2006-04-24 Raphael Neider <rneider AT web.de>
560
561         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
562             to config word, "pic14_"-prefixed some extern functions
563           (pic14_emitConfigWord): emit __config directive(s) if assignment to
564             config word has been found
565         * src/pic/device.h: added prototypes
566         * src/pic/pcode.c: added "pic14_"-prefix where needed
567         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
568             fixup
569         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
570             words,
571           (pic14emitRegularMap): ignore config words,
572           (pic14createInterruptVect): moved generating __config directives away
573           (picglue): have __config directives emitted
574
575 2006-04-24 Borut Razem <borut.razem AT siol.net>
576
577         * doc/Makefile: sync with nightly build makefile
578
579 2006-04-24 Raphael Neider <rneider AT web.de>
580
581         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
582             registers that have not been assigned proper liveranges,
583             fixes #1469504 and #1474602,
584           (pCodeRegOptimizeRegUsage): fixed typo in comment
585
586 2006-04-24 Borut Razem <borut.razem AT siol.net>
587
588         * device/examples/main8051.c: deleted - it was removed from CVS
589           24.mar.2000 and after that modified 18.feb.2001, so it reappered
590           after the transition to Subversion
591         * src/SDCCalloc.h: deleted - it was removed  from CVS
592           3.feb.2001 and after that modified 18.feb.2001, so it reappered
593           after the transition to Subversion
594         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
595           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
596           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
597           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
598
599 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
600
601         * as/asx8051.dsp: added mcs51/strcmpi.h
602         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
603         * as/hc08/aslink.h: updated lnksect prototype
604         * as/hc08/asm.h,
605         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
606         * as/hc08/asmain.c,
607         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
608           (newdot): handle A_ABS
609         * as/hc08/asout.c,
610         * as/mcs51/asout.c (outarea): output address
611         * as/hc08/lkaomf51.c,
612         * as/mcs51/lkaomf51.c: disabled unused array UsageType
613         * as/hc08/m08pst.c,
614         * as/mcs51/i51pst.c,
615         * as/z80/z80pst.c: "ABS" is not A_OVR
616         * as/hc08/lkarea.c (newarea): read a_addr,
617           (lnkarea): added codemap array, sort absolute areas to the front,
618            combine all GSINITx/GSFINAL,
619           (find_empty_space, allocate_space): new functions,
620           (lnksect): return next address, handle absolute sections
621         * as/mcs51/lkarea.c (newarea): read a_addr,
622           lnksect2 prototype changed,
623           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
624           (find_empty_space, allocate_space): new, factored out of lnksect2,
625           (lnksect2): return next address, handle absolute sections
626         * as/hc08/lkhead.c,
627         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
628         * as/hc08/lklibr.c (addfile, fndsym),
629         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
630           index out of range and detect both '\' and '/'
631         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
632         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
633           regression tests (ds390 cannot return bool yet)
634         * doc/sdccman.lyx: changed version number, document changed --no-peep,
635           document critical interrupts on z80, document changed SDCC define
636         * src/asm.c (_asxxxx_mapping): fixed .org directive,
637           (_a390_mapping): added .org directive
638         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
639           (genMultOneByte): fixed warnings
640         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
641           ones
642         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
643         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
644           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
645         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
646         * src/pic16/main.c: removed newReg prototype
647         * src/pic16/pcode.c,
648         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
649           warnings
650         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
651           ones
652         * src/pic16/ralloc.c
653         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
654           to fix warnings
655         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
656           from short to PIC_OPTYPE
657         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
658         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
659           optype from short to PIC_OPTYPE
660         * src/port.h: made int_size unsigned to fix warnings
661         * src/SDCC.y: fixed warning on MSVC
662         * src/SDCCicode.c (getArraySizePtr): return unsigned int
663         * src/SDCCopt.c (convertToFcall): fixed warnings
664         * src/SDCCsymt.h: removed double prototype for genSymName
665         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
666           offset int to fix warnings
667
668 2006-04-22 Borut Razem <borut.razem AT siol.net>
669
670         * doc/sdccman.lyx, */Makefile, */Makefile.in:
671           references to CVS replaced with Subversion
672
673 2006-04-21 Borut Razem <borut.razem AT siol.net>
674
675         * doc/sdccman.lyx, */Makefile, */Makefile.in:
676           references to CVS replaced with Subversion
677
678 2006-04-19 Borut Razem <borut.razem AT siol.net>
679
680         * src/version.awk: adapted for svn
681         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
682           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
683           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
684           /binutils-avr/etc/*.vi, *.jin: removed all properties
685           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
686
687 2006-04-19 Borut Razem <borut.razem AT siol.net>
688
689         * CVS to Subversion migration completed
690
691 2006-04-18 Borut Razem <borut.razem AT siol.net>
692
693         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
694           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
695
696 2006-04-17 Borut Razem <borut.razem AT siol.net>
697
698         * device/include/Makefile.in: added pic/*.inc to the installation
699
700 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
701
702         * support/regression/collate-results.py: fixed output in case of
703         a valdiag error
704         * support/regression/generate-cases.py: fixed splitting of pathnames
705         with dots
706         * as/hc08/lklibr.c (addfile),
707         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
708
709 2006-04-11 Raphael Neider <rneider AT web.de>
710
711         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
712         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
713         * src/pic16/pcode.c (assignValnums): fixed #1460578
714
715 2006-04-11 Raphael Neider <rneider AT web.de>
716
717         * device/lib/pic/libdev/*.c,
718         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
719           fixes #1468739, enables compilation in --std-c99 mode
720         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
721
722 2006-04-11 Raphael Neider <rneider AT web.de>
723
724         * src/pic/device.c (find_device): removed debug output
725           (list_valid_pics): enabled verbose listing of supported devices
726         * device/include/stdbool.h: define bool as char for pic14/16 as well
727
728 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
729
730         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
731
732 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
733
734         * .version: bumped version to 2.5.6
735         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
736
737 2006-04-06 Raphael Neider <rneider AT web.de>
738
739         * .version: bumped version to 2.5.6 (pic14 ABI changed)
740         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
741         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
742           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
743             pic14_constructAbsMap
744           (pic14printPublics): declare absolute global symbols as global
745           (pic14createInterruptVect),
746         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
747           (newReg): assume new registers unused, use correct name in
748             hashtable (reg->name instead of name), more debugLog output
749         * src/pic/device.h (PIC_device): added fields for verbose output
750         * src/pic/device.c: moved device definition to pic14devices.txt,
751             added routines for runtime parsing of pic14devices.txt,
752             added support for second config word
753         * src/pic/main.c (_process_pragma): removed #pragma maxram,
754           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
755           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
756           (_pic14_parseOptions): moved pCodeInitRegisters here
757           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
758         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
759           (pCodeInitRegisters): rewrapped comments, perpared new approach to
760             handling the pseudo stack
761         * device/lib/Makefile.in: ignore failures in objects-pic16,
762         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
763         * device/lib/pic/NEWS: document new dependency on picXXX.lib
764         * device/lib/pic/Makefile.subdir,
765         * device/lib/pic16/Makefile.subdir: improved clean rules
766         * device/lib/pic/libdev/: NEW, pic14 device libraries
767         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
768         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
769         * device/include/Makefile.in: create subdir and install pic14 headers
770         * device/include/pic/p16f_common.inc: removed unused declarations
771         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
772             PICs from inc2h.pl v1.6,
773             replaced BIT_AT macros with struct declarations
774         * device/include/pic/pic14devices.txt: definition of supported devices,
775             all above improvements contributed by Zik Saleeba, thanks
776         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
777         * support/scripts/sdcc.nsi: also install pic14 device libraries and
778             headers
779
780 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
781
782         * device/include/mcs51/c8051f410.h: added interrupt numbers,
783         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
784           thanks to Charles Olds
785
786 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
787
788         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
789
790 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
791
792         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
793         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
794         * support/regression/bug1464657.c: added, new test
795
796 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
797
798         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
799           version number
800
801 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
802
803         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
804           --no-peep and --peep-file <file> are used don't use default rules but
805           do use the <file>
806
807 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
808
809         * src/mcs51/gen.c (genCall): fixed bug 1457608
810
811 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
812
813         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
814         changes seem to cause (trigger?) problems with the build system.
815
816 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
817
818         * src/SDCCpeeph.c (operandsLiteral): new, added,
819           (callFuncByName): inserted operandsLiteral
820         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
821
822 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
823
824         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
825         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
826
827 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
828
829         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
830           implemented patch 1120823 Thanks to Willy De la Court (normal
831           interrupts need an interrupt number now if they are made critical),
832           and enabled nesting of critical functions though not for gbz80
833           (genCritical, genEndCritical): added functions
834           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
835         * src/z80/mappings.i: added "ei" to all mappings
836
837 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
838
839         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
840         submitted by the Debian SDCC maintainer Aurelien Jarno:
841         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
842         archive with gcc 4.1 on mips and wrote the patch"
843
844 2006-03-16 Raphael Neider <rneider AT web.de>
845
846         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
847           the left operand is shorter than the result (c* = lit-c* + int),
848           fixes bug #1450796
849         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
850           OP_SYMBOL
851
852 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
853
854         * src/.version: increased version number to 2.5.5
855         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
856         linking is done manually in pic16 port's _linkEdit,
857         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
858         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
859         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
860         allocate asmop as AOP_ACC,
861         (aopForRemat): added parameter 'bool result' in function declaration,
862         (pic16_aopGet): return AOP_ACC when accessing WREG,
863         (pic16_popGetTempReg): minor modification,
864         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
865         'pic16_allocWithIdx',
866         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
867         calling function in absolute addresses,
868         (genAssign): take into account AOP_ACC asmop,
869         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
870         * src/pic16/pcoderegs.c: some debug functions and lines added,
871         * src/pic16/ralloc.c (decodeRegType): added but commented out,
872         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
873         register too,
874         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
875         call to allocReg, not by manually allocating a new one,
876         (pic16_assignRegisters): now before going through the register
877         allocating functions mark all registers as free. This eliminates some
878         side effects resulting from peephole parser done earlier in the backbone
879
880 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
881
882         * src/SDCCicode.c (geniCodeLogic),
883         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
884
885 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
886
887         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
888           (genSend): bugfix, do not allocate and free twice,
889           (shiftRLong): handle partially overlapping aops
890         * support/regression/tests/bitopcse.c: fixed warning redefined idata
891
892 2006-03-08 Borut Razem <borut.razem AT siol.net>
893
894         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
895           for pic16
896
897 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
898
899         * support/regression/tests/bug1409955.c: new, added
900         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
901         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
902           (aopForSym, aopOp): increment asmop.allocated if reused,
903           (freeAsmop): decrement asmop.allocated and check for zero instead of
904           using asmop.freed,
905           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
906           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
907            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
908            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
909            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
910            genSignedRightShift, genRightShift, genDataPointerGet,
911            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
912            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
913             in reverse order from allocation,
914           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
915             added swappedLR to keep track
916         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
917           pdata & code for GCC, z80, gbz80 & hc08
918         * support/regression/tests/zeropad.c: moved defines to testfwk.h
919
920 2006-03-08 Raphael Neider <rneider AT web.de>
921
922         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
923
924 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
925
926         * device/include/mcs51/c8051f410.h: new SiLabs mcu
927         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
928         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
929
930 2006-03-06 Borut Razem <borut.razem AT siol.net>
931
932         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
933           made the linker quiet
934
935 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
936
937         * src/pic16/gen.c (genPcall): fixed bug #1443644
938         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
939         which dumps before the function entry point a data byte which represents
940         the number of the local variables used by the specified function, added
941         'xinst' for initial support for Extended Instruction Support,
942         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
943         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
944         port->fun_prefix anymore (may change later),
945         (genFunction, genEndFunction): do not store/restore local registers for
946         _main (this should take care the --main-return command line option in
947         the future),
948         (genOr): removed some legacy pic-port instructions,
949         * src/pic16/genarith.c (genAddLit): re-enabled old code because
950         performing operations with SFR's causes data to be written more than
951         once to each SFR. Perhaps SFRs should be handled in special cases...
952         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
953         pcode.h
954         * src/pic16/main.c (_process_pragma): stack bound checking did not take
955         into account for stack starting position,
956         (struct OPTIONS pic16_optionsTable): added command line argument
957         --extended or -y for Extended Instruction Support,
958         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
959         (deassignLRs): *** perhaps the most important change, old 'for' code
960         (commented out for reference), didn't account for some registers which
961         were left marked 'not free' after a pointer operation. The change
962         reduces register usage a lot in some cases
963
964 2006-03-04 Borut Razem <borut.razem AT siol.net>
965
966         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
967           _clean
968         * support/regression/tests/bug-524697.c: decreased array size for
969           mcs51 to fit into the internal RAM
970         * support/regression/Makefile.in: a little bit more verbose
971
972 2006-03-03 Borut Razem <borut.razem AT siol.net>
973
974         * support/regression/fwk/lib/testfwk.c,
975           support/regression/fwk/include/testfwk.h: introduced function
976           _prints(), nonrecursive _printn(), call _initEmu() from main()
977         * support/regression/ports/gbz80/support.asm,
978           support/regression/ports/ucz80/support.asm,
979           support/regression/ports/z80/support.asm,
980           support/regression/ports/ds390/support.c,
981           support/regression/ports/hc08/support.c,
982           support/regression/ports/host/support.c,
983           support/regression/ports/mcs51/support.c,
984           support/regression/ports/xa51/support.c: added empty _initEmu()
985           function
986         * support/regression/ports/pic16/gpsim.cmd,
987           support/regression/ports/pic16/spec.mk,
988           support/regression/ports/pic16/support.c,
989           support/regression/Makefile.in: added pic16 regression test
990
991 2006-03-01 Raphael Neider <rneider AT web.de>
992
993         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
994           genConstPointerGet): use safe way of generating MOVFF to cover
995             literals as well as registers, fixes bug #1440527
996         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
997             dereference
998           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
999             more correctly, fixes bug #1232186
1000           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1001         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1002             gplink guess the correct processor in more cases, applied patch
1003             from Till Riedel attached to and fixing bug #1436552
1004
1005 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1006
1007         * support/regression/tests/array.c: added, contains check for #1434401
1008         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1009
1010 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1011
1012         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1013         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1014         * device/include/mcs51/c8051f326.h,
1015         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1016         * device/include/mcs51/c8051f000.h,
1017         * device/include/mcs51/c8051f018.h,
1018         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1019           PCON_IDLE,PCON_STOP and added sfr16 definitions
1020
1021 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1022
1023         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1024           genGetWord): fixed bug 1409955
1025
1026 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1027
1028         * device/include/hc08/mc68hc908gp32.h,
1029         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1030
1031 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1032
1033         * src/SDCCast.c (constExprValue): return NULL if not a value
1034         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1035         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1036         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1037
1038 2006-02-13 Borut Razem <borut.razem AT siol.net>
1039
1040         * src/regression/ptrarg.c: added, fails due to bug #1430967
1041         * src/regression/Makefile: ptrarg.c added, ...
1042
1043 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1044
1045         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1046         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1047
1048 2006-02-11 Borut Razem <borut.razem AT siol.net>
1049
1050         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1051           print "Processor: xxx" message to stdout only if --verbose
1052
1053 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1054
1055         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1056         * support/regression/tests/bug1426356.c: added
1057         * support/regression/tests/bitfields.c: removed 2 tests
1058
1059 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1060
1061         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1062         * device/include/mcs51/c8051f330.h,
1063         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1064           PCON_IDLE,PCON_STOP and added sfr16 definitions
1065         * device/lib/_divsint.c,
1066         * device/lib/_divuint.c,
1067         * device/lib/_divulong.c,
1068         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1069           register bank bug for small stackauto
1070
1071 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1072
1073         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1074
1075 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1076
1077         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1078         * all.dsp: corrected several bin paths
1079         * device/include/mcs51/c8051f120.h,
1080         * device/include/mcs51/c8051f300.h,
1081         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1082           to PCON_IDLE,PCON_STOP
1083         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1084         * device/lib/printf_large.c (output_float): fixed bug 1388703
1085         * support/regression/tests/bug1057979.c: added test for bug 1388703
1086
1087 2006-02-08 Raphael Neider <rneider AT web.de>
1088
1089         * src/pic/pcode.c (pciTRIS): fixed typo,
1090           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1091           (LinkFlow): fixed handling of flows that end in a call,
1092           (ReuseReg): perform safety check earlier
1093         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1094             to work with flows at the beginning of a pBlock,
1095             fixes #1426557 (Symbol not previously defined),
1096           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1097             usage information
1098           (RemoveUnusedRegisters): update register usage info
1099         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1100             created, reuse existing ones instead
1101         * src/pic/gen.c (genPcall): fixed #1424719
1102
1103 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1104
1105         * link/z80/lkmain.c,
1106         * link/z80/lklex.c,
1107         * link/z80/lkdata.c,
1108         * link/z80/aslink.h: fixed build on current cygwin:
1109         replaced getline() by lk_getline()
1110
1111 2006-02-01 Borut Razem <borut.razem AT siol.net>
1112
1113         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1114           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1115           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1116           src/regression/bool1.c, src/regression/bool2.c,
1117           src/regression/bool3.c, src/regression/call1.c,
1118           src/regression/compare.c, src/regression/compare10.c,
1119           src/regression/compare2.c, src/regression/compare3.c,
1120           src/regression/compare4.c, src/regression/compare5.c,
1121           src/regression/compare6.c, src/regression/compare7.c,
1122           src/regression/compare8.c, src/regression/compare9.c,
1123           src/regression/configword.c, src/regression/for.c,
1124           src/regression/inline.c, src/regression/mult1.c,
1125           src/regression/nestfor.c, src/regression/or1.c,
1126           src/regression/pointer1.c, src/regression/ptrfunc.c,
1127           src/regression/rotate1.c, src/regression/rotate2.c,
1128           src/regression/rotate3.c, src/regression/rotate4.c,
1129           src/regression/rotate5.c, src/regression/rotate6.c,
1130           src/regression/rotate7.c, src/regression/string1.c,
1131           src/regression/struct1.c, src/regression/sub.c,
1132           src/regression/sub2.c, src/regression/switch1.c,
1133           src/regression/while.c, src/regression/xor.c,
1134           src/regression/create_stc, src/regression/simulate,
1135           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1136           regression tests
1137         * src/regression/gpsim_assert.h: added
1138
1139 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1140
1141         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1142         ((void (code *) (void)) 0) ();
1143         * as/hc08/aslex.c,
1144         * as/hc08/aslink.h,
1145         * as/hc08/asm.h,
1146         * as/hc08/asmain.c,
1147         * as/hc08/lkdata.c,
1148         * as/hc08/lklex.c,
1149         * as/hc08/lkmain.c,
1150         * as/mcs51/aslex.c,
1151         * as/mcs51/aslink.h,
1152         * as/mcs51/asm.h,
1153         * as/mcs51/asmain.c,
1154         * as/mcs51/lkdata.c,
1155         * as/mcs51/lklex.c,
1156         * as/mcs51/lkmain.c,
1157         * as/z80/aslex.c,
1158         * as/z80/asm.h,
1159         * as/z80/asmain.c: fixed build on current cygwin:
1160         replaced getline() by as_getline()
1161
1162 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1163
1164         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1165         declarator in the symbol chain
1166         * src/SDCCsymt.h,
1167         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1168         parameter list for function pointers
1169         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1170         * support/regression/tests/bug-716242.c: added
1171
1172 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1173
1174         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1175         offset if possible
1176         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1177
1178 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1179
1180         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1181         inifinitely recurseable, added static
1182         * support/regression/tests/bug-1408066.c: added
1183
1184 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1185
1186         * src/SDCCicode.h,
1187         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1188         renamed, added possibility to create "postLoopLbl"-labels
1189         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1190         newiTempLoopHeaderLabel
1191         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1192         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1193         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1194         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1195         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1196         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1197         (basicInduction): fixed bug #136564, made static,
1198         (loopInduction): changed parameter of basicInduction, made static,
1199         (addPostLoopBlock): added
1200         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1201         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1202         findLoopEndSeq
1203         * support/regression/tests/bug-136564.c: added
1204         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1205         --std-sdcc99 to LIBSDCCFLAGS
1206
1207 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1208
1209         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1210         while loop
1211         * support/regression/tests/bug-1406131.c: added
1212
1213 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1214
1215         * src/SDCCast.c (decorateType): fix promotion of unary minus
1216         * src/SDCCsymt.c (computeType): beautified
1217         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1218         (valUnaryPM, valComplement): fix sign and promotion,
1219         (valNot): ANSI: result type is int (SDCC: unsigned char)
1220         * support/regression/tests/uminus.c: speedup by removing superflous
1221         test case 'int'
1222         * support/regression/tests/onebyte.c: added promotion and signedness
1223         tests for unary minus
1224         * support/regressions/tests/bug-477927.c: disable warning about
1225         uninitialized variables
1226         * support/regression/tests/not.c: added
1227
1228 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1229
1230         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1231         * src/mcs51/gen.c (gen51Code): show final register usage after
1232         fillGaps in asm with --i-code-in-asm
1233         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1234         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1235         incUsed, rliveClear, adjustIChain): made static,
1236         (setFromRange): excluded because it's unused,
1237         (findPrevUseSym, markWholeLoop): added,
1238         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1239         through all branches of predecessors enables sdcc to emit the warning
1240         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1241         (rlivePoint): made static, added parameter emitWarnings which is only
1242         true during the first run out of two,
1243         (findRecursiveSucc, findRecursivePred): removed,
1244         (computeLiveRanges): made static, added parameter emitWarnings,
1245         (dumpIcRlive): added for debugging only
1246         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1247         removed prototype of setFromRange()
1248         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1249         in call of computeLiveRanges()
1250         * support/regression/tests/bug-895992.c: added
1251         * support/regression/tests/bug-971834.c: added
1252         * support/valdiag/tests/bug-895992.c: added
1253         * support/valdiag/tests/bug-971834.c: added
1254
1255 2005-12-18 Raphael Neider <rneider AT web.de>
1256
1257         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1258           (genUnpackBits): improved code for direct operands,
1259           (genPackBits): improved code for literal assignment to bitfields
1260             and for direct destination operands (no FSR indirection),
1261             prevented redundant AND, fixes #1362800,
1262           (AccLsh): added parameter to disable masking of the result
1263         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1264           skip instructions with side-effects (like incfsz),
1265           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1266         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1267         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1268           fixes #1375263
1269
1270 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1271
1272         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1273         volatile variables as spill location
1274
1275 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1276
1277         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1278         replacing literals
1279         * support/regression/tests/bug-1376320.c: added
1280
1281 2005-12-08 Raphael Neider <rneider AT web.de>
1282
1283         * src/pic/device.c: renamed is_shared to pic14_is_shared
1284         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1285         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1286           (is_valid_identifier): added for above workaround
1287
1288 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1289
1290         * device/lib/Makefile.in: fixed to enable port-specific-objects
1291         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1292           char, thanks Hubert Sack
1293         * doc/sdccman.lyx: documented --xstack-loc,
1294           elaborated a bit more on interrupts and pitfalls,
1295           removed "setjmp/longjmp unsupported",
1296           documented some unsupported C99 features
1297         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1298         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1299           if, thanks Hubert Sack
1300         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1301         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1302           make make_library
1303         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1304           regression tests can report resource usage (rfe 700441)
1305         * support/regression/collate-results.py: report resource usage
1306         * support/regression/ports/ds390/spec.mk,
1307         * support/regression/ports/hc08/spec.mk,
1308         * support/regression/ports/mcs51/spec.mk,
1309         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1310         * support/regression/ports/ds390/uCsim.cmd,
1311         * support/regression/ports/hc08/uCsim.cmd,
1312         * support/regression/ports/mcs51/uCsim.cmd,
1313         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1314         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1315           library, use the default one
1316         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1317           building the library
1318
1319 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1320
1321         * config.dsp: added dependency on .version and configure_vc.awk
1322         * device/include/setjmp.h: updated for --stack-auto and --xstack
1323         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1324         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1325         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1326         * device/lib/libsdcc.lib: added _setjmp
1327         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1328           (decorateType): fixed bug 1372851,
1329           (optimizeGetHbit): fixed warning
1330         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1331           array initialisation
1332         * support/regression/tests/bug1057979.c: added test for bug 1358192
1333         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1334
1335 2005-12-03 Borut Razem <borut.razem AT siol.net>
1336
1337         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1338           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1339
1340 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1341
1342         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1343         createIval): implement symbol independant "flexible array member",
1344         (createIvalCharPtr): implemented flexible array initialisation with a
1345         string
1346         * src/SDCCsymt.c (copyStruct): removed,
1347         (getSize): fixed misleading comment,
1348         (getAllocSize): removed, the additional allocation size is now in
1349         sym->flexArrayLength,
1350         (checkStructFlexArray): new, syntax checks for flexible array members,
1351         (compStructSize): added syntax checks for "flexible array members"
1352         (copyStruct): removed,
1353         (copyLinkChain): removed inefficient fix for bug 770487
1354         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1355         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1356         symbol->flexArrayLength
1357         * src/SDCCerr.c,
1358         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1359         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1360         * support/regression/tests/structflexarray.c: added
1361         * support/valdiag/tests/structflexiblearray.c: added
1362
1363 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1364
1365         * src/SDCCast.c (decorateType): fixed bug 1368489
1366         * support/Util/SDCCerr.c,
1367         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1368
1369 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1370
1371         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1372           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1373
1374 2005-11-27 Borut Razem <borut.razem AT siol.net>
1375
1376         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1377           support/cpp2/mkdeps.h: added command line option
1378           -obj-ext=<extension> to SDCPP to define object file externion, used
1379           for generation of make dependencies (-M)
1380         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1381
1382 2005-11-26 Borut Razem <borut.razem AT siol.net>
1383
1384         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1385           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1386           added pic and pic16 libraries
1387
1388 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1389
1390         * device/include/float.h: Corrected typo in prototype of __fsgt
1391
1392 2005-11-25 Borut Razem <borut.razem AT siol.net>
1393
1394         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1395           added creation of model-mcs51-stack-auto libraries
1396
1397 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1398
1399         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1400         and fields-list too
1401         * src/SDCCast.c (createIvalArray): removed obsolete comment
1402
1403 2005-11-24 Borut Razem <borut.razem AT siol.net>
1404
1405         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1406           added missing device/lib/mcs51/crt*.asm sources
1407
1408 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1409
1410         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1411
1412 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1413
1414         * device/lib/_fs2schar.c,
1415         * device/lib/_fs2sint.c,
1416         * device/lib/_fs2slong.c: optimized inline asm
1417
1418 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1419
1420         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1421           Better handling of floats between -1.0 and 0.0.
1422
1423 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1424
1425         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1426           (the missing "if"s prohibited removal of redundant labels)
1427
1428 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1429
1430         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1431           Properly convert floats between -1.0 and 0.0 to long, int, and char
1432           types (max integer value of negative floats tends to zero).
1433         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1434           Removed changes made so to work properly with floats between
1435           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1436           and _fs2char.c
1437
1438 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1439
1440         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1441         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1442         (genCast) cosmetic change
1443         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1444         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1445         from mcs51
1446         * support/regression/tests/bitfields (testSignedBitfields): added
1447
1448 2005-11-18 Borut Razem <borut.razem AT siol.net>
1449
1450         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1451         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1452           introduced SILENT option to make building of pic16 libraries less
1453
1454 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1455
1456         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1457           Now they work properly with floats between -1.0 and 0.0
1458         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1459
1460 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1461
1462         * src/SDCCicode.c (printOperand): added missing else
1463
1464 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1465
1466         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1467         reformatted for better readability
1468         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1469         signed bitfields
1470
1471 2005-11-17 Borut Razem <borut.razem AT siol.net>
1472
1473         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1474           introduced SILENT option to make building of pic16 libraries less
1475           verbose - used for nightly snapshot build
1476         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1477           available on Win32 platforms.
1478         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1479           medium, large, pic and pic16
1480
1481 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1482
1483         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1484           printf("%f"...) sets fraction to zero.
1485
1486 2005-11-16 Raphael Neider <rneider AT web.de>
1487
1488         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1489           fixes #1357221
1490         * src/pic/gen.c (genIfx): implemented for CARRY bit
1491         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1492           to generic pointers, fixes #1357332,
1493           (pic16_movLit2f): NEW,
1494           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1495
1496 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1497
1498         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1499
1500 2005-11-11 Raphael Neider <rneider AT web.de>
1501
1502         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1503         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1504           compute pointer's type from operand,
1505           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1506           improved single bit reads, fixes bug #1353379
1507
1508 2005-11-09 Borut Razem <borut.razem AT siol.net>
1509
1510         * support/scripts/sdcc.nsi: added lib/pic to the package
1511
1512 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1513
1514         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1515
1516 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1517
1518         * support/regression/tests/bug1348008.c: added
1519         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1520         * support/regression/tests/bug1337835.c: updated comment
1521
1522 2005-11-06 Borut Razem <borut.razem AT siol.net>
1523
1524         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1525           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1526           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1527           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1528           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1529           dynamic construction of cl_error_class and derivates - 2.nd try
1530
1531 2005-11-05 Borut Razem <borut.razem AT siol.net>
1532
1533         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1534           bug, which caused Bus Errors on sparc solaris
1535
1536 2005-11-04 Borut Razem <borut.razem AT siol.net>
1537
1538         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1539           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1540           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1541           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1542           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1543           and derivates to resolve the initialization problem on OSX
1544
1545 2005-11-02 Borut Razem <borut.razem AT siol.net>
1546
1547         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1548           corrected typo - #include <winsock2.h>
1549
1550 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1551
1552         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1553           (_asxxxx_mapping): added org directive for future enhancements
1554
1555 2005-11-01 Borut Razem <borut.razem AT siol.net>
1556
1557         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1558           enabled sockets on WIN32
1559         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1560
1561 2005-10-31 Borut Razem <borut.razem AT siol.net>
1562
1563         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1564           WIN32 backslash path delimiters should be escaped when used in C strings
1565         * support/regression/tests/bitfields.c: exclude failing assertions for
1566           __CYGWIN32__ and __MINGW32__ hosts
1567
1568 2005-10-30 Borut Razem <borut.razem AT siol.net>
1569
1570         * src/SDCCutil.c: corrected double comparison typo
1571
1572 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1573
1574         * device/lib/medium/Makefile: added for new memory model medium
1575         * device/include/asm/mcs51/features.h: updated for medium/pdata
1576         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1577           added Multiply & Accumulate sbit's and MAC0_PAGE define
1578         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1579         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1580         * device/lib/_mullong.c: update for medium model
1581         * device/lib/incl.mk: added medium model
1582         * doc/sdccman.lyx: documented medium model
1583         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1584         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1585         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1586         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1587           (allocParms): set SCLS and OCLS to pdata for medium model
1588         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1589           for pdata,
1590           (powof2): return <0 if not power of 2
1591         * src/avr/gen.c (genBitWise): use updated powof2
1592         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1593           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1594           (shiftLLeftOrResult): use B if necessary
1595         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1596         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1597         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1598         * support/regression/Makefile.in: added test-mcs51-medium
1599         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1600
1601 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1602
1603         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1604         specifier unsigned
1605         * device/lib/time.c (mktime): fixed bug 1334315
1606
1607 2005-10-28 Raphael Neider <rneider AT web.de>
1608
1609         * device/include/pic/p16f_common.inc: added common declarations
1610         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1611
1612 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1613
1614         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1615           (aopPutUsesAcc): added to predict accumulator use,
1616           (assignResultValue): save acc if necessary,
1617           (genMinusDec): store result if indirectly addressed,
1618           (genDivOneByte):  save acc if necessary,
1619           (movLeft2Result): bugfix if left already in acc,
1620           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1621             attention to accumulator use (esp. pdata),
1622           (genReceive): receive pdata correctly
1623         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1624         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1625
1626 2005-10-27 Raphael Neider <rneider AT web.de>
1627
1628         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1629
1630 2005-10-27 Raphael Neider <rneider AT web.de>
1631
1632         * .version: changed version to 2.5.4
1633         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1634         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1635           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1636             arithmetics support routines
1637         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1638         * device/lib/Makefile.in: also create installdir for pic
1639
1640         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1641           pic14 port as well
1642         * src/pic/device.c (dump_sfr): rewritten to delegate register
1643           placement to the linker (use `extern sym' rather than sym EQU addr),
1644           (validAddress): fixed to check last specified address
1645         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1646           (popGetLit): truncate literal value to 8 bit,
1647           (popGet): moved assert to more appropriate place
1648           (popGetExternal): create pCode operand from and mark the according
1649             symbol as being `extern'
1650           (popGetAddr): added sanity check on immediate's offset, provide
1651             GPOINTER tag on demand
1652           (aopPut): fixed for immediates,
1653           (mov2w_op): move operand's address or contents to WREG (depending on
1654             operand type), safer variant of mov2w,
1655           (movwf,call_libraryfunc): NEW, handy abbreviations,
1656           (get_argument_pcop,get_return_val_pcop,pass_argument,
1657           get_returnvalue): interface for accessing function parameters and
1658             return values,
1659           (assignResultValuei,genRet): use new parameter/return value interface
1660           (pic14_getDataSize): back to old version handling generic pointers,
1661           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1662             provided implementation and/or fixed old one,
1663           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1664             calls, removed legacy 8051 reference code
1665           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1666           (loadSignToC): NEW, move the operands sign bit to CARRY,
1667           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1668             genRightShiftSigned, accepts negative shift counts,
1669           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1670           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1671             generic pointers, __data pointers and __code pointers,
1672           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1673             and signed bitfields, limit bitfields to 8 bit,
1674           (genDataPointerGet): fixed number of bytes read,
1675           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1676           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1677             pointers to constant data are no longer assumed to point to __code
1678             space, removed invalid pointer types,
1679           (bitpatternFromVal): retrieve the PICs representation of an integer
1680             or float literal,
1681           (genDataPointerSet): fixed assigning to po_immediate operands,
1682           (genGenPointerSet): implemented as library call,
1683           (genIfx): fixed incorrect condition,
1684           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1685             provide GPOINTER tag according to destination's storage class,
1686           (genCast): added code to handle casting to generic pointers, added
1687             sign-/zero extension of the result
1688           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1689         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1690         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1691           extend the result
1692         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1693           address/register resides in the shared banks
1694           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1695             put all variables into separate sections (have the linker arrange
1696             them)
1697           (picglue): put init code and interrupt handlers in separate sections
1698         * src/pic/main.c: added port specific options table, modified to PORT
1699           structure to make GPOINTERs 3 byte, added pic14_options
1700           (_pic14_do_link): private linking routine (update paths to libraries,
1701             add libsdcc.lib by default)
1702         * src/pic/main.h: declare pic14_options
1703         * src/pic/pcode.c: fixed instructions i/o relations,
1704           (RegCond): reverted to correct version,
1705           (newpCodeOpLit): truncate literals to 8 bit,
1706           (genericPrint): added debug output,
1707           (getRegFromInstruction): fixed for various operand types, simplified
1708           (BuildFlow): fixed broken handling of isntructions with labels
1709           (LinkFlow): start at last instruction in flow (skip trailing comments),
1710             pass the flow on to the next instruction after CALL
1711           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1712           (insertPCodeInstruction): fixed inserting after a skip instruction,
1713           (DoBankSelect): fixed for labeled instructions
1714           (OptimizepBlock): honor --nopeep switch
1715           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1716         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1717         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1718           (pCodeOptime2pCodes): allow disabling this optimization via
1719             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1720             but is still buggy), started implementation of a dataflow based
1721             pCode optimization (CSE + dead code elimination)
1722           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1723         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1724           names are independant of the stack location and therefore portable across
1725           devices
1726
1727 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1728
1729         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1730           (selectSpil): fixed bug 1337835 by not spilling bit variables
1731         * support/regression/tests/bug1337835.c: added test for this bug
1732         * src/mcs51/peeph.def: restart after rule 3.c,
1733           addded rules 263.x to optimize loading constants
1734
1735 2005-10-26 Raphael Neider <rneider AT web.de>
1736
1737         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1738         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1739           (genAssign): emit warning when casting literals to generic pointer
1740             type, also applies when taking the address of a fixed variable,
1741           (genCast): improved casting to generic pointers
1742         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1743           extern variables, added verbose error message
1744         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1745
1746 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1747
1748         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1749         carry must be complemented too
1750         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1751         could be emitted by genMinus
1752         * src/SDCCval.c (constVal): fixed bug 1305065
1753
1754 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1755
1756         * src/SDCCast.c (addCast): added promotion for bit variables
1757         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1758         promotion casts + optimisation
1759         (optimizeGetWord): fix warning 'i' might be used uninitialized
1760         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1761         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1762
1763 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1764
1765         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1766         all chars are promoted to int; promotion should be handled in SDCCast.c
1767
1768 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1769
1770         * device/lib/_strcmp.c: Fixed bug 1326457
1771
1772 2005-10-11 Raphael Neider <rneider AT web.de>
1773
1774         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1775         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1776
1777 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1778
1779         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1780         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1781
1782 2005-10-04 Raphael Neider <rneider AT web.de>
1783
1784         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1785           device/lib/pic16/pics.all: added pic18f1320
1786         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1787
1788 2005-09-30 Raphael Neider <rneider AT web.de>
1789
1790         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1791         * src/pic16/devices.inc: NEW, provides device descriptions
1792         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1793
1794 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1795
1796         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1797           GETHBIT
1798
1799 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1800
1801         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1802           documented Any Order Bit, Higher Order Byte and Higher Order Word
1803         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1804         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1805           (optimizeGetAbit): new, to get any bit, not only the high bit,
1806           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1807           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1808           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1809           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1810             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1811             GETABIT, GETBYTE, GETWORD: decorate them,
1812           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1813           (ast_print): added GETABIT, GETBYTE, GETWORD
1814         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1815         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1816           (geniCodeBinary): new generic binary icode,
1817           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1818         * src/port.h: updated comment for PORT.hasExtBitOp
1819         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1820           (genGetByte): new, to get a single byte,
1821           (genGetWord): new, to get a word from a long,
1822           (gen51Code): added GETABIT, GETBYTE, GETWORD
1823         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1824
1825 2005-09-23 Raphael Neider <rneider AT web.de>
1826
1827         * configure.in, configure: have device/lib/pic configured
1828         * device/lib/Makefile.in: added model-pic14
1829         * device/lib/clean.mk: added pic/ to clean rule
1830         * device/lib/pic: added rudimentary pic14 library providing support
1831           functions for multiplication/division/generic pointer access
1832         * src/SDCCopt.c (convilong): mark support functions as extern
1833           for pic14 port as well
1834         * src/pic/gen.c (genMult): added assertions,
1835           (genpic14Code): emit warning on unhandled iCodes
1836         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1837         * src/pic/pcode.c (pCodeOpCopy),
1838         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1839           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1840           SFR_REGISTER}), made safe for future extensions
1841         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1842           instructions even if preceeded by SKIP instructions (also remove
1843           them); removed unused code
1844         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1845           prevents leaving parts of the structure uninitialized after copying
1846
1847 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1848
1849         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1850           ago by me
1851         * support/regression/tests/addsub.c: added test for the bug
1852
1853 2005-09-21 Raphael Neider <rneider AT web.de>
1854
1855         * device/include/pic16/pic18f1220.h,
1856           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1857         * device/lib/pic16/Makefile.rules: added missing opening paren
1858         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1859           are provided in genutils.c,
1860           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1861           operand/result sizes,
1862           (genCmp): assert on NULL pointers first, then check deref'ed values
1863         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1864           result size
1865
1866 2005-09-18 Raphael Neider <rneider AT web.de>
1867
1868         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1869           as these are now unused,
1870           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1871         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1872           local, avoids uninitialized pointer dereference on r->name
1873         * src/pic16/ralloc.c (newReg): fixed indentation
1874
1875 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1876
1877         * src/SDCCval.c (constVal): fixed bug 730366
1878         * support/Util/SDCCerr.c,
1879         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1880
1881 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1882
1883         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1884
1885 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1886
1887         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1888
1889 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1890
1891         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1892           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1893         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1894           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1895         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1896         * packihx/packihx.c (hexDigit): made c unsigned char
1897         * as/mcs51/lklibr.c (fndsym),
1898         * link/z80/lkgb.c (gb),
1899         * link/z80/lklibr.c (fndsym),
1900         * link/z80/lkrloc.c (relr),
1901         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1902         * src/SDCC.lex (checkCurrFile, process_pragma),
1903         * src/SDCCglue.c (spacesToUnderscores),
1904         * src/SDCCmain.c (setParseWithComma, processFile),
1905         * src/asm.c (tvsprintf, printCLine),
1906         * src/avr/gen.c (emitcode, aopPut),
1907         * src/ds390/gen.c (emitcode),
1908         * src/hc08/gen.c (emitcode, emitinline),
1909         * src/mcs51/gen.c (emitcode, genInline),
1910         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1911           tokenizeLineNode),
1912         * src/pic/ralloc.c (debugLog),
1913         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1914           tokenizeLineNode),
1915         * src/pic16/ralloc.c (debugLog),
1916         * src/z80/main.c (_process_pragma):
1917            made all ctype.h function calls safe
1918         * src/SDCCopt.c: include math.h for fabs
1919         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1920           and used them throughout the code to make ctype.h function calls safe
1921         * src/ds390/main.c (asmLineNodeFromLineNode),
1922         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1923         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1924            unsigned char*
1925         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1926           (newpCodeAsmDir): made ctype.h function calls safe
1927         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1928           pic16_emitcode):  made lbp unsigned char*
1929         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1930           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1931         * src/xa51/gen.c (emitcode),
1932         * src/z80/gen.c (_emit2): made lbp unsigned char*
1933         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1934            char*
1935
1936 2005-09-05 Raphael Neider <rneider AT web.de>
1937
1938         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1939           access bank splitpoint
1940
1941 2005-09-05 Raphael Neider <rneider AT web.de>
1942
1943         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1944
1945 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1946
1947         * .version: changed to version 2.5.3
1948         * doc/sdccman.lyx: changed version to 2.5.3,
1949           documented --codeseg and --constseg and pragma codeseg and constseg,
1950           documented bit parameters (reentrant) and bit returning
1951         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1952            currFunc->recvSize, but is this ok for all ports?
1953           (ast2iCode): result of ~ on unsigned char must be cast to int for
1954            bool to work
1955         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1956           function pointers in bit space
1957         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1958           (processFuncArgs): call port.reg_parm() with reentrancy info
1959         * src/port.h,
1960         * src/avr/main.c,
1961         * src/ds390/main.c,
1962         * src/hc08/main.c,
1963         * src/pic/main.c,
1964         * src/pic16/main.c,
1965         * src/xa51/main.c,
1966         * src/z80/main.c: port.reg_parm prototype extended with
1967           "bool reentrant" parameter
1968         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
1969           options.stackAuto for allocating bit register parameters
1970         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
1971           (genSend): set BitBankUsed if it is,
1972           (selectRegBank): factored out of genCall for use in genPcall,
1973           (genCall): removed redundant dtype assignmen, use selectRegBank,
1974           (genPcall): handle returning in Carry properly, save in F0 if needed,
1975           (genReceive): handle bit register parameters
1976         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
1977           (mcs51_assignRegisters): enable bit registers for all reentrant
1978            functions and don't set BitBankUsed unconditionally
1979         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
1980         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
1981         * support/regression/tests/funptrs.c: added tests for BOOL and for return
1982
1983 2005-08-27 Borut Razem <borut.razem AT siol.net>
1984
1985         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
1986         ppc-osx (Darwin) does not support -u option. It seems that it is
1987         supported only on Linux - GNU cp
1988
1989 2005-08-25 Borut Razem <borut.razem AT siol.net>
1990
1991         * sim/ucsim/gui.src/serio.src/Makefile.in,
1992           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
1993           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
1994           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
1995           install and strip, since the strip at /usr/ccs/bin should be used
1996           on solaris
1997
1998 2005-08-24 Borut Razem <borut.razem AT siol.net>
1999
2000         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2001
2002 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2003
2004         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2005         ffffffffu
2006
2007 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2008
2009         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2010         * as/mcs51/lkmain.c (link_main): fixed warning
2011         * device/include/stdbool.h: ds390 has no advanced bit support yet
2012         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2013         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2014         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2015           and updated their macros
2016         * src/SDCCval.c (constVal): updated comment for renamed b_long
2017
2018 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2019
2020         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2021         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2022           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2023           (oprio): set priority for '['
2024         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2025            and adb_24_bit
2026         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2027         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2028         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2029         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2030           added overlayable BIT_BANK area
2031         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2032           (summary2): explain 'T' in legenda
2033         * as/mcs51/lkrloc.c: replaced old K&R style,
2034           (relr): added R_BIT processing,
2035           (errmsg): added "Bit-addressable relocation error",
2036           (adb_bit): added for converting from byte- to bit-addressable space,
2037           (adb_24_bit): added for converting from byte- to bit-addressable space
2038         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2039            used in reentrant functions now even as return value
2040         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2041         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2042           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2043         * src/SDCCglobl.h: added indicator BitBankUsed
2044         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2045            the bit registers b0-b7
2046         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2047           (geniCodeCast): fixed bug 1263853,
2048           (geniCodeLogicAndOr): put result in bool or char,
2049           (geniCodeReceive): added parameter func for accessing the return type,
2050           (geniCodeFunctionBody): pass func to geniCodeReceive
2051         * src/SDCCmain.c: added indicator BitBankUsed
2052         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2053         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2054           (checkSClass): don't put automatic bool/bit on stack,
2055           (checkFunction): removed check on function cannot return bit
2056         * src/SDCCsymt.h: added newBoolLink prototype
2057         * src/mcs51/gen.c (rb1regs): added bit registers,
2058           (movc): created for assigning to carry,
2059           (pushReg, popReg): created for pushing registers,
2060           (sameRegs): check both AOP_REG and AOP_CRY types,
2061           (aopOp): handle bit registers,
2062           (aopPut): optimization no self-assign,
2063           (saveRegisters): push reg->base (bits) only once for bit registers,
2064            and use pushReg,
2065           (unsaveRegisters): pop reg->base only once and use popReg,
2066           (assignResultValue): added parameter func and return in carry for bits,
2067           (genIpush): optimization no reload in A if not changed,
2068           (genSend): bit parameters in reentrant functions are passed in bit
2069            registers by first assigning to bits in B, then save registers and
2070            copy B to bits,
2071           (genCall): handle returning in Carry properly, save it in F0 if needed,
2072           (genPcall): updated assignResultValue call, this is not safe yet for bit
2073            returning function !!!
2074           (genFunction): don't generate equ's for bit registers and use pushReg,
2075           (genEndFunction): take care of bit returning functions and use popReg,
2076           (genRet): return bit in Carry,
2077           (genIfx): optimize bit registers and other directly addressable bits,
2078           (genReceive): updated assignResultValue call
2079         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2080           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2081            registers when using stack-auto
2082         * src/mcs51/ralloc.c (_G): added allBitregs,
2083           (regs8051): added the bit registers,
2084           (createStackSpil): use macro IS_BIT,
2085           (getRegBit): added to allocate a bit register, else spill,
2086           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2087           (updateRegUsage): factored out to ease stepping while debugging,
2088           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2089            also allocate bit registers,
2090           (fillGaps): handle bit registers,
2091           (findAllBitregs): added to create bit vector with all bit registers,
2092           (mcs51_allBitregs): returns this bit vector,
2093           (mcs51_assignRegisters): when using stack-auto use bit registers for
2094            passing parameters and creating local variables
2095         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2096
2097 2005-08-22 Borut Razem <borut.razem AT siol.net>
2098
2099         * device/lib/Makefile.in: replaced find option -or with -o
2100           to make it run on solaris
2101
2102 2005-08-22 Raphael Neider <rneider AT web.de>
2103
2104         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2105           fixes #1265442 (crash on Solaris)
2106
2107 2005-08-20 Borut Razem <borut.razem AT siol.net>
2108
2109         * configure, configure.in: added tests for libsocket and libnsl libraries,
2110           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2111           from support/regression/Makefile.in
2112         * support/regression/Makefile.in: added
2113         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2114         * sim/ucsim/libtool: regenerated on sparc-solaris
2115         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2116           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2117           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2118           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2119           sparc-solaris, which doesn't use GNU ld linker
2120         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2121         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2122
2123 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2124
2125         * src/mcs51/peeph.def: updated comments
2126
2127 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2128
2129         * device/lib/_gptrget.c,
2130         * device/lib/_gptrput.c: slightly shorter
2131         * doc/sdccman.lyx: incremented version
2132         * src/mcs51/peeph.def: moved peephole comments to the line of first
2133           change to better keep line correlation, reanimated 186.e
2134         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2135
2136 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2137
2138         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2139           David Saxton with quotes around file name.
2140
2141 2005-08-15 Borut Razem <borut.razem AT siol.net>
2142
2143         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2144           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2145           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2146           make tests run on x86_64 platform
2147
2148 2005-08-13 Raphael Neider <rneider AT web.de>
2149
2150         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2151           as it might be executed DURING a build (parallel make is wonderful)
2152
2153 2005-08-13 Raphael Neider <rneider AT web.de>
2154
2155         * device/lib/Makefile.in (port-specific-objects-pic16):
2156           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2157         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2158           dependency
2159         * device/lib/pic16/Makefile.rules: build subdirs before creating
2160           the library, removed builddir rule, create $(builddir) early in
2161           recurse rule, use empty recurse rule for leaf directories
2162         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2163           mkdir errors (race condition), removed duplicate suffix "hex"
2164           from clean rules
2165         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2166         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2167           prevents mkdir -p from aborting on Alpha
2168
2169 2005-08-12 Raphael Neider <rneider AT web.de>
2170
2171         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2172           db-statements in order to allow for arrays of pointers in code
2173           sections to be placed without interspersed 0-padding, fixes
2174           bug #1256215
2175         * (emitStatistics): fixed division by zero for pic18f1220
2176         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2177           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2178         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2179         * (pic16_pCodeConstString): keep track of already emitted string
2180           literals to prevent "duplicate definitions of symbol _str_NR"
2181         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2182           debug message
2183         * device/lib/Makefile.in: ignore failing PIC16 library builds
2184         * device/lib/pic16/Makefile: do not build if gputils are missing
2185         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2186
2187 2005-08-10 Raphael Neider <rneider AT web.de>
2188
2189         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2190           my last commit)
2191
2192 2005-08-10 Raphael Neider <rneider AT web.de>
2193
2194         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2195           Rokas' patch to add the new fixed point type "__fixed16x16"
2196         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2197           functions for __fixed16x16 arithmetics
2198         * device/lib/pic16: reimplemented the build system to support
2199           a separate build directory, better handling of libio (create
2200           the library in a separate subdir for each architecture) and
2201           easier configuration (centralized in Makefile.common)
2202
2203 2005-08-07 Raphael Neider <rneider AT web.de>
2204
2205         * src/pic16/gen.c (genrshTwo): fixed sign extension
2206         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2207         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2208           added T0CONbits
2209         * device/include/pic16/pic18f4220.h: NEW, header for
2210           pic18f4220 and pic18f4320
2211         * device/include/pic16/pic18fregs.h: added new devices,
2212           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2213         * device/include/pic16/signal.h: resolved name clashes
2214           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2215           to also allow testing for interrupt enable bits, added
2216           comments on how to use the macros
2217         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2218         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2219           register definitions for the devices
2220         * device/lib/pic16/pics.all: added new devices
2221         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2222           allocated memory
2223         * device/lib/pic16/libc/stdlib/memfree: do not count
2224           the block header as free memory
2225         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2226           simplified and added missing end-of-blocklist-marker
2227           (reported by Peter Onion, fixes #1252814)
2228         * (_mergeHeapBlock): fixed loop condition
2229         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2230           len==0, restructured code
2231         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2232           up a bit, reduced bitfield accesses, prevent endless loops
2233           in case of heap corruption
2234         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2235           "unreferenced arguments/must return a value" warnings
2236         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2237           replaced BAUDREG with SPBRG
2238         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2239           device/lib/pic16/debug/gstack/gstack.c: replaced
2240           _naked, _asm, _endasm with __naked, __asm, __endasm
2241
2242 2005-08-05 Raphael Neider <rneider AT web.de>
2243
2244         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2245           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2246
2247 2005-08-05 Borut Razem <borut.razem AT siol.net>
2248
2249         * device/lib/Makefile.in: added missing ';'
2250         * configure: removed ^M characters
2251
2252 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2253
2254         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2255           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2256           License
2257
2258 2005-08-04 Borut Razem <borut.razem AT siol.net>
2259
2260         * configure.in: pic16 libraries build 2nd try - enable running
2261           configure in device/lib/pic16
2262         * configure: regenerated from configure.in
2263         * device/lib/Makefile.in: create $(PORT)/bin directory
2264
2265 2005-08-03 Raphael Neider <rneider AT web.de>
2266
2267         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2268           to get/set values via pointers
2269         * (genUnpackBits,genPackBits): changed detection of
2270           ptr->bitfield vs. sym.bitfield, fixed access via generic
2271           pointers, removed dead (wrong) code for multibyte bitfields
2272         * (genNearPointerGet, genGenPointerGet): removed useless code,
2273           fixed bitfield detection, fixes #1250594
2274         * (genNearPointerSet): removed useless code
2275         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2276           and introduced macro pic16_emitpcode that conditionally emits
2277           the origin of the following pCode (useful for debugging SDCC)
2278         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2279         * (createDefmap): fixed handling of LFSR for --optimize-df
2280
2281 2005-08-02 Borut Razem <borut.razem AT siol.net>
2282
2283         * device/lib/Makefile.in: pic16 libraries build enabled since
2284           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2285
2286 2005-08-02 Raphael Neider <rneider AT web.de>
2287
2288         * src/pic16/gen.c (genPackBits): removed deprecated warning
2289         * (genGenPointerSet): fixed bitfield detection
2290
2291 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2292
2293         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2294
2295 2005-07-31 Raphael Neider <rneider AT web.de>
2296
2297         * device/lib/pic16/libdev/pic18f458.c,
2298           device/include/pic16/pic18f458.h: added missing T0CONbits
2299
2300 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2301
2302         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2303
2304 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2305
2306         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2307
2308 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2309
2310         * device/include/mcs51/at89c51ed2.h: added.
2311
2312 2005-07-23 Raphael Neider <rneider AT web.de>
2313
2314         * src/pic/gen.h: added emitpcode macro for debugging
2315         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2316           and replace by macro adding debug information on demand
2317         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2318         * (gencjne): tried to fix; replaced with correct (slower) code
2319         * (gen{Unp,P}ackBits): fixed single bit access
2320         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2321         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2322           previous instruction
2323         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2324           register has to be handled with care (forbidding movement
2325           of assignments/uses, removing assignments completely, ...)
2326         * (pCodeOptime2pCodes): make use of regIsSpecial
2327         * added lots of debugging output (commented out)
2328         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2329           from being reused as result UNLESS it is known to work
2330
2331 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2332
2333         * support/Util/dbuf.h: include <stddef.h> for size_t
2334         * .version: changed to version 2.5.2
2335
2336 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2337
2338         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2339
2340 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2341
2342         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2343           (genModOneByte): removed needless psha/pula
2344
2345 2005-07-22 Raphael Neider <rneider AT web.de>
2346
2347         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2348           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2349         * src/pic/gen.c (resolveIfx): do not "invent" labels
2350         * (genSkipc): changed to positive logic
2351         * (genSkipCond): removed as no longer needed
2352         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2353           backport from PIC16
2354         * (genLeftShift): check operands are in different registers
2355         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2356           INCF does not update CARRY...
2357         * src/pic/main.c: fixed _linkCmd
2358         * src/pic/pcode.c (unlinkpCode): added inactive code
2359         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2360           alive (do not assign result and operand overlapping registers)
2361
2362 2005-07-22 Raphael Neider <rneider AT web.de>
2363
2364         * src/pic/device.c (dump_sfr): replaced register declaration with
2365           call to emitSymbolToFile() to avoid duplicate symbols
2366         * (assignRelocatableRegisters): do not declare external symbols
2367         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2368           right (take size of type, not etype)
2369         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2370         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2371         * (packRegsForAccUse): disabled assignment of WREG as
2372           the result reg to prevent occurence of just fixed #1235003,
2373           fixes #1242954
2374         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2375           symbols (avoids duplicate symbols in .asm file)
2376         * (pic14emitRegularMap): use emitSymbolToFile()
2377         * src/pic/gen.c (aopOp): fixed spillLocation handling
2378         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2379         * (genDataPointerSet): removed unneccessary variables/output
2380
2381 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2382
2383         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2384         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2385
2386 2005-07-21 Raphael Neider <rneider AT web.de>
2387
2388         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2389           architecture cannot handle them efficiently, fixes bug #1235003
2390         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2391           check for empty sets before using them (fixes bug #1232190)
2392
2393 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2394
2395         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2396           (lnksect2): generate warnings for memory overlap
2397         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2398           constseg to set the name of these segments so you can instruct the linker
2399           to place them in banks
2400         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2401         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2402           added code_seg and const_seg to options
2403         * src/SDCCglue.c (emitMaps): use options.const_seg,
2404           (createInterruptVect): put interrupt vectors in segment HOME,
2405           (glue): put HOME before static segment and put the main glue in HOME,
2406           (glue): use options.code_seg
2407         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2408         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2409           these segments so you can instruct the linker to place them in banks
2410           (linkEdit): use code_loc for HOME segment which should be the first
2411           segment in code memory now
2412         * src/SDCCmem.c: fixed more stuff like bug 1238386
2413         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2414           (changePointer): don't change function pointers to code pointers for
2415           banked functions,
2416           (compareType): added exceptional check for banked function pointers
2417         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2418         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2419           after static in code memory
2420         * src/mcs51/gen.c: added aopLiteralLong prototype,
2421           (aopForSym): use getSize for functions,
2422           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2423           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2424           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2425           the segment,
2426           (genPcall): use call for literal function pointers and generate banked
2427           calls over the one trampoline so there's only one place for the user to
2428           modify according to his/hers hardware,
2429           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2430           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2431         * src/mcs51/main.c: added keyword banked,
2432           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2433         * support/Util/SDCCerr.c,
2434         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2435           needed for passing the bank and address to the trampoline
2436         * device/lib/mcs51/crtbank.asm: added for bankswitching
2437         * device/lib/mcs51/Makefile: added crtbank
2438
2439 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2440
2441         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2442           for fields at offset 0 of a struct or union as reported
2443           on 2005-07-07 in the developer mailing list.
2444
2445 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2446
2447         * src/SDCCmem.c: fixed bug 1238386
2448
2449 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2450
2451         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2452           (patch #1144962), added peephole 300, enabled 259.x
2453         * doc/sdccman.lyx: removed screenshot and provided link instead
2454
2455 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2456
2457         * doc/sdccman.lyx: added section about debugging with ddd
2458         * doc/figures/ddd_example.eps: screenshot of debugging session
2459
2460 2005-07-04 Raphael Neider <rneider AT web.de>
2461
2462         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2463           like CODE pointers, fixes #1115683
2464         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2465           call, fixes bugs #1232211, #1228110,
2466           fixed wrong casts to pCodeFlow from pCodeInstructions
2467
2468 2005-07-04 Raphael Neider <rneider AT web.de>
2469
2470         * src/pic/gen.c (popGet): changed assert to allow for
2471           bit operands
2472         * (popGetAddr): changed signature to provide
2473           an additional index, patched all call sites
2474         * (genCmpEq): handle literal-like operands correctly
2475         * (genAddrOf): added sanity checks on __code/__data pointers
2476         * (genAssign): added handling of symbols from __code section
2477         * (gencjne): do not generate code for comparisons whose result
2478           is neither stored nor used, fixes bug #1171114
2479         * (AccLsh, AccRsh): operate on operand instead of WREG
2480         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2481           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2482           by known count
2483         * rewrote complete shift-by-literal logic, commented unused
2484           functions out
2485         * (genConstPointerGet): get multiple bytes (if result size > 1),
2486           fixed handling of non-immediate addresses
2487         * (genPointerGet): handle CODE pointers like CONST pointers
2488         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2489         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2490           operand is to be treated as a literal or not
2491         * (mov2w,genPcall,genCmpEq),
2492           src/pic/genarith.c: use aop_isLitLike() to decide between
2493           literal/register contents
2494         * (addSign): added missing offset
2495         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2496           only emit comment in debug-mode,
2497           use {aop,op}_isLitLike throughout the file
2498         * src/pic/glue.c: fix initializers for pointers (work in progress)
2499         * src/pic/pcode.c (get_op): honor index on _const symbols
2500         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2501         * (dumppBlock): added pCode size estimation
2502         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2503           check for IS_SYMOP before OP_SYMBOL'ing
2504         * fixed indentation, compacted switch-statements
2505         * (allocReg): find free register and allocate it instead of
2506           allocating new registers all the time
2507         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2508           registers as its operands (necessary only for multibyte GETs)
2509
2510 2005-07-01 Raphael Neider <rneider AT web.de>
2511
2512         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2513           debugging .asm-output macros FENTRY + FEXIT
2514         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2515           way... I wonder...
2516         * (emitpComment): NEW, printf to pCode
2517         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2518           offset handling
2519         * (popGetAddr): NEW, variant of popGet to access an immediates
2520           high(er) bytes instead of the n'th byte of memory they reference,
2521           replaced popGet with popGetAddr where neccessary
2522         * (genDataPointerGet): reactivated and fixed implementation
2523         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2524           accesses
2525         * (genDataPointerSet): fixed multibyte assignments
2526         * (genpic14Code): fixed --i-code-in-asm handling
2527         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2528         * (genPlus): fixed index-out-of-bounds error
2529         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2530         * src/pic/ralloc.c: added debugging output macro FENTRY2
2531         * (spillThis): fixed indentation, enbraced for-body for clarity
2532         * (rematStr): commented out as now unused
2533         * (regTypeNum): commented out special spill case (overwrites
2534           arbitrary values)
2535         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2536
2537 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2538
2539         * doc/sdccman.lyx: documented sfr16/sfr32,
2540           added example for using storage class with function pointers
2541         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2542
2543 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2544
2545         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2546         * device/lib/_itoa.c,
2547         * device/lib/_ltoa.c: optimized codesize
2548         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2549           but don't know how to suppress the double warning.
2550         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2551         * support/Util/SDCCerr.c,
2552         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2553
2554 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2555
2556         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2557           fixed old K&R prototypes
2558         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2559         * device/lib/_gptrget.c,
2560         * device/lib/_gptrgetc.c,
2561         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2562           also new versions for small generic pointers and banked generic pointers
2563         * src/port.h: added const_name
2564         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2565         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2566         * src/SDCCcse.c (findPrevIc): check all associative operators
2567         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2568         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2569         * src/SDCCmem.c: updated comments,
2570           set far-space to 0 for pdata, results in optimized code
2571         * src/SDCCmem.h: added macro CONST_NAME
2572         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2573           moving the info into the highest bits, see also gptrget/gptrput
2574         * src/src.dsp: added sdcc.ico to project files
2575         * src/avr/gen.c (genCast): fixed bug 0x%d
2576         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2577         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2578           relation between ptr_type and DCL_TYPE,
2579           (genCast): fixed bug 0x%d
2580         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2581           (CODE)" for const_name
2582         * src/hc08/gen.c (genCast): fixed bug 0x%d
2583         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2584           (hc08_port): added "CONST (CODE)" for const_name
2585         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2586           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2587           between ptr_type and DCL_TYPE,
2588           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2589           operand* and took AOP() inside function so sfr-ness can be checked,
2590           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2591           new prototype,
2592           (genFunction, genEndFunction): optimized stack setup,
2593           (genMinus): optimized for literals with ending zeroes (in bytes),
2594           (genCast): fixed bug 0x%d
2595         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2596           (mcs51_port): added "CONST (CODE)" for const_name
2597         * src/mcs51/peeph.def: made rule 226 more generic
2598         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2599         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2600         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2601         * src/z80/main.c (z80_port): added NULL for const_name,
2602           (gbz80_port): added NULL for const_name
2603         * support/regression/tests/bug663539.c,
2604         * support/regression/tests/sfr16.c: new tests
2605
2606 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2607
2608         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2609
2610 2005-06-24 Raphael Neider <rneider AT web.de>
2611
2612         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2613           corrected typos...
2614         * device/include/pic16/signal.h: added USBIF
2615           and SIG_USB
2616
2617 2005-06-24 Raphael Neider <rneider AT web.de>
2618
2619         * device/lib/pic16/libdev/pic18f2455.c,
2620           device/include/pic16/pic18f2455.h: NEW
2621         * device/include/pic16/pic18fregs.h,
2622           device/lib/pic16/pics.all,
2623           src/pic16/device.c: added 18f2455
2624         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2625           device/include/pic16/{pic18f[68][567].h,usart.h}:
2626           replaced MULTIPLE_USARTS define with more relaible
2627           compatibility sfrs (for USART access)
2628
2629 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2630
2631         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2632           and the output asm file line is printed on two lines.
2633
2634 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2635
2636         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2637           BGT, BLE, BHI, and BLS instructions
2638         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2639           genCmpEq): removed
2640         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2641           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2642           fixes bug #1216342
2643         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2644
2645 2005-06-15 Raphael Neider <rneider AT web.de>
2646
2647         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2648         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2649         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2650           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2651           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2652
2653 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2654
2655         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2656           Marcel Telka in bug #1215704
2657
2658 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2659
2660         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2661           located in shared memory bank.
2662
2663 2005-05-31 Raphael Neider <rneider AT web.de>
2664
2665         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2666           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2667           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2668
2669 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2670
2671         * device/lib/_strncpy.c: fixed the fix
2672
2673 2005-05-26 Raphael Neider <rneider AT web.de>
2674
2675         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2676           initializers with \0, bug #1208187
2677         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2678           intializers with \0, bug #1208187
2679
2680 2005-05-26 Raphael Neider <rneider AT web.de>
2681
2682         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2683           initializers with \0, bug #1208187
2684         * src/pic16/main.c (_process_pragma): added sanity checks
2685           for stack position and size, emit warnings when appropriate
2686
2687 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2688
2689         * device/lib/_strncpy.c: fixed not filling with \0
2690
2691 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2692
2693         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2694           createFunction),
2695         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2696           compound_statement),
2697         * src/SDCCsymt.h,
2698         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2699
2700 2005-05-24 Raphael Neider <rneider AT web.de>
2701
2702         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2703
2704 2005-05-24 Raphael Neider <rneider AT web.de>
2705
2706         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2707           TRISE definitions, closes bug #1162453
2708
2709 2005-05-22 Raphael Neider <rneider AT web.de>
2710
2711         * src/pic16/main.c (_process_pragma): check for missing
2712           arguments to pragmas code and udata
2713         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2714           consistency fixes to match other headers (thanks to Jim Paris)
2715         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2716
2717 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2718
2719         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2720
2721 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2722
2723         * support/regression/tests/bug1198642.c: new test
2724         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2725         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2726         * support/scripts/resource.h,
2727         * support/scripts/resource.rc,
2728         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2729         * support/scripts/sdcc.ico: added 32x32 icon
2730
2731 2005-05-18 Raphael Neider <rneider AT web.de>
2732
2733         * device/lib/pic16/libdev/pic18f*.c,
2734         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2735           keywords to "__sfr" and "__at (X)"
2736         * device/include/pic16/pic18fregs.h: added pic18f4520
2737         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2738           #1203088 (MPLAB compatibility)
2739
2740 2005-05-17 Raphael Neider <rneider AT web.de>
2741
2742         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2743         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2744         * device/lib/pic16/pics.all: added new devices
2745         * src/pic16/device.c: added support for pic18f4520
2746
2747 2005-05-16 Raphael Neider <rneider AT web.de>
2748         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2749         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2750         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2751           convenience function for bit access
2752
2753 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2754
2755         * device/lib/printf_large.c: fixed bug 1193299
2756         * support/regression/tests/bug1057979.c: added test %3.3s
2757
2758 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2759
2760         * device/include/mcs51/8051.h,
2761         * device/include/mcs51/8052.h: made parseable with lint
2762         * device/include/mcs51/lint.h: added include file for (sp)lint
2763         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2764         * doc/cdbfileformat.lyx,
2765         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2766
2767 2005-05-14 Raphael Neider <rneider AT web.de>
2768
2769         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2770         * device/lib/pic16/libc/stdlib/itoa.c (new)
2771         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2772         * device/lib/pic16/libio/Makefile: exclude subdir according to
2773           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2774         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2775         * src/pic16/gen.c (genFunction): prevent annoying warning
2776         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2777           nameclashes on BeOS
2778         * support/cpp2/cppmain.c (cpp_output_string): new
2779         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2780           fixes bug 1116802
2781
2782 2005-05-13 Borut Razem <borut.razem AT siol.net>
2783
2784         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2785
2786 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2787
2788         * .version: changed to version 2.5.1; back to bleeding edge development
2789
2790 2005-05-11 Borut Razem <borut.razem AT siol.net>
2791
2792         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2793           generate PDF version 1.3 documents
2794
2795 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2796
2797         * .version: changed to version 2.5.0
2798
2799 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2800
2801         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2802
2803 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2804
2805         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2806         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2807         well as many smaller updates.
2808         * .version: changed to version 2.5.0-pre1
2809
2810 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2811
2812         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2813
2814 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2815
2816         * support/regression/tests/bug1185672.c: added
2817         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2818           bug 1185672
2819         * src/mcs51/gen.c (genCall): added comments, made it look safer
2820         * src/mcs51/gen.c (genEndFunction): simplified
2821
2822 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2823
2824         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2825
2826 2005-04-14 Borut Razem <borut.razem AT siol.net>
2827
2828         * fixed bug 1045046 - SIGSEGV with really simple code?:
2829           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2830           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2831
2832 2005-04-14 Borut Razem <borut.razem AT siol.net>
2833
2834         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2835           src/pic16/device.h: temporarily disabled experimental #inline pragma
2836           for 2.5.0 release
2837
2838 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2839
2840         * device/include/z80/stdio.h,
2841         * device/include/z80/string.h: removed these highly incomplete files so
2842           SDCC can use the default ones in device/include/
2843
2844 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2845
2846         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2847         gcc warning.
2848         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2849         fix sdcpp warnings.
2850
2851 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2852
2853         * device/include/malloc.h: removed redundant __reentrant prototypes
2854         * device/lib/_mullong.c: added working xstack variant in asm (C version
2855           doesn't pass regression tests)
2856         * device/lib/bpx.c: used __data and made bpx char for mcs51
2857         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2858           (createFunction): fixed bug with xstackPtr
2859         * src/SDCCcse.c: corrected comments
2860         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2861           (killDeadCode, eBBlockFromiCode): removed unused code
2862         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2863           corrected comments
2864         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2865           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2866           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2867           (genModOneByte): fixed warning in MSVC
2868         * src/mcs51/main.c (): added comments
2869         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2870
2871 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2872
2873         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2874
2875 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2876
2877         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2878
2879 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2880
2881         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2882         characters arrays of larger size than the declared one.
2883
2884 2005-04-10 Borut Razem <borut.razem AT siol.net>
2885
2886         * src/pic/gen.c (genInline),
2887           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2888           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2889           (findNextInstruction), (findPrevInstruction),
2890           (findInstructionUsingLabel),
2891           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2892         * src/pic/pcode.c (findLabel): added missing '\n'
2893         * src/src.dsp: added SDCCdwarf2.c to the project
2894
2895 2005-04-09 Borut Razem <borut.razem AT siol.net>
2896
2897         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2898
2899 2005-04-08 Raphael Neider <rneider AT web.de>
2900
2901         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2902           into the chain after a given one) and mergeDefmapSymbols (combine
2903           defmap entries for each symbol per pcode)
2904         * (createDefmap): have defmap entries merged in the end
2905         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2906           a symbol before replacing one access type's symbol, merge symbols in
2907           the end (replacement symbol might already have an entry)
2908         * (assignValnums): keep reference to written WREG intact
2909
2910 2005-04-08 Raphael Neider <rneider AT web.de>
2911
2912         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2913           Alpha)
2914
2915 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2916
2917         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2918         bytes
2919
2920 2005-04-07 Raphael Neider <rneider AT web.de>
2921
2922         * device/include/pic16/usart.h: added compatibility defines for
2923           devices with more than one USART
2924         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2925
2926 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2927
2928         * device/lib/Makefile.in: updated for port specific include
2929
2930 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2931
2932         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2933
2934 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2935
2936         * device/include/8051.h,
2937         * device/include/8052.h,
2938         * device/include/at89S8252.h,
2939         * device/include/at89c55.h,
2940         * device/include/at89x051.h,
2941         * device/include/at89x51.h,
2942         * device/include/at89x52.h,
2943         * device/include/mcs51reg.h,
2944         * device/include/reg51.h,
2945         * device/include/reg764.h,
2946         * device/include/regc515c.h,
2947         * device/include/sab80515.h: (re)moved these 12 files
2948         * device/include/mcs51/8051.h,
2949         * device/include/mcs51/8052.h,
2950         * device/include/mcs51/at89S8252.h,
2951         * device/include/mcs51/at89c55.h,
2952         * device/include/mcs51/at89x051.h,
2953         * device/include/mcs51/at89x51.h,
2954         * device/include/mcs51/at89x52.h,
2955         * device/include/mcs51/mcs51reg.h,
2956         * device/include/mcs51/reg51.h,
2957         * device/include/mcs51/reg764.h,
2958         * device/include/mcs51/regc515c.h,
2959         * device/include/mcs51/sab80515.h: and added them here
2960
2961 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
2962
2963         * device/include/stdarg.h: changed SDCC specific keywords to double
2964           underlined form.
2965         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
2966           mcs51 and ds390.
2967         * device/include/hc08/mc68hc908gp32.h,
2968         * device/include/hc08/mc68hc908jb8.h,
2969         * device/include/hc08/mc68hc908jkjl.h,
2970         * device/include/hc08/mc68hc908qy.h: fixed comments
2971         * device/include/mcs51/README: updated
2972         * device/include/mcs51/c8051f120.h: added PINRSF
2973         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
2974         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
2975           amidst code. Also inline is not supported.
2976
2977 2005-04-06 Raphael Neider <rneider AT web.de>
2978
2979         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
2980         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
2981           callers stack/frame pointers
2982
2983 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
2984
2985         * device/include/pic16/usart.h: added, missing in previous commit,
2986         * device/include/pic16/adc.h: fixed typo,
2987         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
2988         commit,
2989         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
2990         <p18fxxx.inc>
2991         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
2992         uninitialized because a bug appears with gplink
2993         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
2994         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
2995         complains for unrecognised option
2996
2997 2005-04-05 Raphael Neider <rneider AT web.de>
2998
2999         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3000           structs as well (using memcpy)
3001         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3002           on ISRs (GOTO has no label)
3003         * src/pic16/device.h: added OF_OPTIMIZE_DF
3004         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3005           new data flow analysis/optimization
3006         * src/pic16/pcode.c: added (prototypes for and implementation of)
3007           dataflow analysis functions, fixed pCodeInstructions' inCond and
3008           outCond values, made RCALL a branch instruction
3009         * (pic16_unlinkpCode): keep C line if possible
3010         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3011           C line moved if possible
3012         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3013         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3014           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3015         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3016           new flow)
3017         * (pic16_getJumptabpCode): NEW, needed in...
3018         * (LinkFlow): fixed handling of jumptables, calls and conditional
3019           branches
3020         * (pic16_InsertCommentAfter): NEW
3021         * (pic16_pCodeReplace): made verbose and flow preserving
3022         * (AnalyzeFlow): added call to data flow analysis
3023         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3024         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3025         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3026
3027 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3028
3029         * src/SDCCast.c (decorateType): fixed bug #1105626
3030
3031 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3032
3033         * device/include/asm/pic16/features.h,
3034         * pic18f*.h headers,
3035         * device/include/pic16/adc.h,
3036         * device/include/pic16/delay.h,
3037         * device/include/pic16/i2c.h,
3038         * device/include/pic16/malloc.h,
3039         * device/include/pic16/stdio.h,
3040         * device/include/pic16/stdlib.h,
3041         * device/include/pic16/string.h,
3042         * device/lib/pic16/libc/stdio/printf_tiny.c,
3043         * device/lib/pic16/libc/stdio/printf_small.c,
3044         * device/lib/pic16/libc/stdio/strmgpsim.c,
3045         * device/lib/pic16/libc/stdio/strmmssp.c,
3046         * device/lib/pic16/libc/stdio/strmusart.c,
3047         * device/lib/pic16/libc/stdio/vfprintf.c,
3048         * device/lib/pic16/libc/stdlib/ltoa.c,
3049         * device/lib/pic16/libc/stdlib/putchar.c,
3050         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3051         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3052         * device/lib/pic16/libc/stdlib/memchrram.c,
3053         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3054         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3055         * device/lib/pic16/libio/adc/adcbusy.c,
3056         * device/lib/pic16/libio/adc/adcread.c,
3057         * device/lib/pic16/libio/adc/adcsetch.c,
3058         * device/lib/pic16/libio/usart/ubaud.c,
3059         * device/lib/pic16/libio/usart/ubusy.c,
3060         * device/lib/pic16/libio/usart/udrdy.c,
3061         * device/lib/pic16/libio/usart/uopen.c,
3062         * device/lib/pic16/libio/usart/uputc.c,
3063         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3064         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3065         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3066         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3067         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3068         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3069         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3070         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3071         specific keywords to double underlined form,
3072         * device/lib/pic16/libc/Makefile.rules,
3073         * device/lib/pic16/libsdcc/Makefile.rules,
3074         * device/lib/pic16/libm/Makefile,
3075         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3076         to compile with C standard set in Makefile.common
3077         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3078         rand.c and crc.c in compilation process,
3079         * device/lib/pic16/libsdcc/int/divuint.c,
3080         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3081         `c' from signed to unsigned,
3082         * device/lib/pic16/startup/crt0.c,
3083         * device/lib/pic16/startup/crt0i.c,
3084         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3085         keywords to double underlined form, bug fixes in _do_cinit function
3086         which prevented the correct initialization of the .idata segment,
3087         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3088         core to enter a infinite loop
3089         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3090
3091 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3092
3093         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3094
3095 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3096
3097         * device/include/Makefile.in: add support for hc08 subdirectory
3098         * device/include/hc08/: new subdirectory
3099         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3100         Lucas Loizaga, thanks!
3101         * device/include/hc08/mc68hc908qy.h,
3102         * device/include/hc08/mc68hc908gp32.h,
3103         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3104         their own directory. Changed internal macro names to use the compiler
3105         reserved namespace. Changed SDCC specific keywords to double
3106         underlined form.
3107         * device/include/math.h,
3108         * device/include/malloc.h,
3109         * device/include/stdarg.h,
3110         * device/include/stdbool.h
3111         * device/include/string.h,
3112         * device/include/tinibios.h,
3113         * device/include/ds400rom.h,
3114         * device/include/8051.h,
3115         * device/include/8052.h,
3116         * device/include/80c51xa.h,
3117         * device/include/at89c55.h,
3118         * device/include/at89S8252.h,
3119         * device/include/at89x51.h,
3120         * device/include/at89x52.h,
3121         * device/include/ds80c390.h,
3122         * device/include/reg764.h,
3123         * device/include/regc515c.h,
3124         * device/include/sab80515.h,
3125         * device/include/mcs51/c8051f000.h,
3126         * device/include/mcs51/c8051f018.h,
3127         * device/include/mcs51/c8051f020.h,
3128         * device/include/mcs51/c8051f040.h,
3129         * device/include/mcs51/c8051f060.h,
3130         * device/include/mcs51/c8051f120.h,
3131         * device/include/mcs51/c8051f300.h,
3132         * device/include/mcs51/c8051f310.h,
3133         * device/include/mcs51/c8051f320.h,
3134         * device/include/mcs51/c8051f330.h,
3135         * device/include/mcs51/c8051f350.h,
3136         * device/include/z180.h: Changed SDCC specific keywords to double
3137         underlined form.
3138
3139 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3140
3141         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3142         18F4455,
3143         * (pic16_assignConfigWordValue): disable testing of configuration
3144         register value with config mask,
3145         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3146         function with port->fun_prefix,
3147         * (genFunction): when generating a naked interrupt function never
3148         create an absolute segment placed in interrupt vector address, place
3149         the actual interrupt function at IVA instead, when an interrupt
3150         function is generated with unspecified interrupt then do not create
3151         the absolute section,
3152         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3153         code for generating a call to generic pointer get/put function with
3154         a call to function pic16_callGenericPointer(),
3155         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3156         the call to the generic pointer get/put functions with prefixing the
3157         function name with port->fun_prefix,
3158         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3159         * src/pic16/main.c (_process_pragma): prefix function with
3160         port->fun_prefix,
3161         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3162         calling assembler, old 18Fxxxx macro is deprecated,
3163         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3164         PC_ASMDIR in while condition,
3165         * (findInstruction): add PC_ASMDIR in while condition,
3166         * (buildCallTree): prefix main with port->fun_prefix,
3167         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3168         identifier for variable with banked access in instructions BTFSS,
3169         BTFSC, BCF, BSF, BTG
3170         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3171         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3172         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3173         perform optimization when enviroment variable NO_REG_OPT is set,
3174         * (insideLRBlock): NEW, return 1 if register is inside an
3175         INF_LOCALREGS block,
3176         * (RemoveRegFromLRBlock): remove a register that is completely
3177         eliminated by register optimization, but it is still left in local
3178         register store/restore in/from stack block,
3179         * (Remove2pcodes): after removing register, check to see if it
3180         should be removed from local register store/restore in/from stack
3181         block,
3182         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3183         DUMMY_READ_VOLATILE,
3184
3185         * device/include/pic16/adc.h: minor prototype modifications and
3186         update,
3187         * device/include/pic16/malloc.h: added GPL notice various
3188         modifications,
3189         * device/include/pic16/stdint.h: NEW, standard header for ints
3190         * device/include/pic16/delay.h: NEW, header for delay functions,
3191         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3192         delay1mtcy,
3193         * device/include/pic16/signal.h: NEW, header providing helper macros
3194         for implementing signal handlers,
3195         * device/include/pic16/stdio.h: added prototypes for functions,
3196         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3197         prototypes for stdin and stdout, added macro PUTCHAR to
3198         automatically implement putchar function prototype,
3199         * device/include/pic16/usart.h: modified and updated USART library,
3200         * device/lib/pic16/libio/adc/,
3201         * device/lib/pic16/libio/i2c: some modifications to improve library
3202         performance,
3203         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3204         family of functions,
3205         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3206         family of functions and other sources,
3207         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3208         of the PIC18Fxx[28] devices,
3209         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3210         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3211         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3212         _do_cinit function, because the previous failed when local variables
3213         where not placed in the same memory bank,
3214         * device/lib/pic16/libsdcc/char/: various modifications to improve
3215         library performance,
3216         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3217         information on the new functions of the c library and more...
3218
3219 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3220
3221         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3222
3223 2005-03-26 Raphael Neider <rneider AT web.de>
3224
3225         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3226           if condition == CARRY)
3227         * (genCmp): adapted to new genSkipc semantics
3228         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3229           on rIfx (genCmp was broken)
3230
3231 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3232
3233         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3234         * src/z80/main.c (_keywords[]),
3235         * src/SDCCglobal.h (struct options),
3236         * src/SDCC.y,
3237         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3238         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3239         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3240         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3241         always available in leading double underscore form. The C99 support is
3242         mostly missing, but it's a start.
3243         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3244         reserved identifier "__data".
3245
3246 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3247
3248         * src/mcs51/peeph.def: fixed bug 1170013
3249
3250 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3251
3252         * device/include/mcs51reg.h: fixed bug 842007
3253
3254 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3255
3256         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3257         last time.
3258
3259 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3260
3261         * src/port.h (struct PORT),
3262         * src/avr/ralloc.c (avr_assignRegisters),
3263         * src/avr/main.c,
3264         * src/ds390/ralloc.c (ds390_assignRegisters),
3265         * src/ds390/main.c,
3266         * src/hc08/ralloc.c (hc08_assignRegisters),
3267         * src/hc08/main.c,
3268         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3269         * src/mcs51/main.c,
3270         * src/pic/ralloc.c (pic14_assignRegisters),
3271         * src/pic/main.c,
3272         * src/pic16/ralloc.c (pic16_assignRegisters),
3273         * src/pic16/main.c,
3274         * src/xa51/ralloc.c (xa51_assignRegisters),
3275         * src/xa51/main.c,
3276         * src/z80/ralloc.c (z80_assignRegisters),
3277         * src/z80/ralloc.h,
3278         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3279         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3280         * src/SDCCcse.h,
3281         * src/SDCCdflow.c (computeDataFlow),
3282         * src/SDCCdflow.h,
3283         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3284         * src/SDCCloop.h,
3285         * src/SDCCcflow.c (*),
3286         * src/SDCCcflow.h,
3287         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3288         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3289         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3290         immedDom() returning wrong block; probably fixes bug #1160833)
3291
3292 2005-03-20 Borut Razem <borut.razem AT siol.net>
3293
3294         * support/scripts/inc2h.pl: WIN32 port
3295
3296 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3297
3298         * device/lib/makefile.in: added abs.c and labs.c
3299
3300 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3301
3302         * device/include/stdint.h: added
3303         * device/lib/abs.c: added
3304         * device/lib/labs.c: added
3305         * device/include/stdlib.h: added abs() and labs() prototypes
3306         * device/lib/libsdcc.lib: added abs and labs
3307         * device/include/float.h,
3308         * device/lib/_fsmul.c,
3309         * device/lib/printf_fast.c,
3310         * device/lib/printf_tiny.c: updated comments
3311
3312 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3313
3314         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3315         bug #1164313
3316
3317 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3318
3319         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3320         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3321
3322 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3323
3324         * device/lib/printf_large.c: removed inline assembly for portability and
3325           readability. Use printf_fast if speed or size are more important.
3326         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3327         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3328
3329 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3330
3331         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3332         prevent compiler warning
3333
3334 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3335
3336         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3337         moved to level 0 and declared as static. Also they are explicit
3338         placed in access bank. This was necessery because some times they
3339         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3340         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3341         optimizations. Currently only compare to unsigned char is implemented,
3342         * src/pic16/gen.c: added fReturnIdx array,
3343         * (struct resolvedIfx) is moved to gen.h and made public,
3344         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3345         * (aopForSym): added an optimization to directly store in stack of
3346         the operand of a SEND iCode,
3347         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3348         but as registers instead (AOP_REG) using the fReturnIdx array,
3349         * (pic16_freeAsmop): remove the freed register from the
3350         _G.sregsAlloc field,
3351         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3352         a compare of 'WREG',
3353         * (pic16_popGetTempRegCond): changed function prototype, now
3354         function takes also a bitVector argument v which holds the current
3355         set of registers that are allocated for stack access by aopForSym,
3356         registers allocated in aopForSym for accessing stack symbols are not
3357         any more part of the functions usedRegs field,
3358         * (genCall): some times aopOp is called for a stack variable to be
3359         send, aopForSym might perform the push, if this is true make sure
3360         that genCall doesn't push the variable twice by testing _G.resDirect,
3361         * (genFunction): changed testing for unspecified interrupt number
3362         from 256 to INTNO_UNSPEC,
3363         * modified selection scheme of frame pointer generation. Previously
3364         if function did use local registers a frame pointer was generated,
3365         now a frame pointer is generated only if function has arguments
3366         (that need PLUSW2 register access), or has stack arguments, or the
3367         compiler is not instructed to omit the frame pointer,
3368         * (genEndFunction): before restoring local registers that were saved
3369         in the function preamble, also restore the registers that *might*
3370         have been allocated for stack access,
3371         * (genRet): removed some old comments,
3372         * (genCmp, the active (RN's) version): added a call to the
3373         pic16_genCmp_special function to perform the compare with a more
3374         robust and optimized way,
3375         * (genInline): a feature has been added in inline code generation,
3376         which allows a wildcard variable substitution when writing inline
3377         assembly. Code is incomplete and experimental therefore undocumented,
3378         * (genCast): changed order of aopOp for result and right to allow
3379         aopForSym to directly load the result if possible,
3380         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3381         perform an optimized compare on some selected special occasions,
3382         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3383         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3384         generate an IVT any more,
3385         * src/pic16/main.c (pic16_optionsTable): added command line option
3386         --optimize-cmp,
3387         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3388         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3389         macros,
3390         * src/pic16/NOTES: Raphael Neider added in list of active developers
3391         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3392         jumptable_end to prevent bug #,
3393         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3394         inCond and outCond fields,
3395         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3396         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3397         turn off register spilling,
3398         * (packRegsForOneUse): synced with other ports' versions although it
3399         is not used currently,
3400         * (pic16_packRegisters): added an optimization while reading
3401         structure bitfields, some registers may be saved (malloc code is
3402         decreased by 80 bytes)
3403
3404 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3405
3406         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3407         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3408         this can be optimized more?
3409
3410 2005-03-10 Raphael Neider <rneider AT web.de>
3411
3412         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3413           genNearPointerGet): (hopefully) fixed access to bitfields via
3414           pointers (p->bitN = x; and x = p->bitN; failed)
3415
3416 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3417
3418         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3419
3420 2005-03-09 Raphael Neider <rneider AT web.de>
3421
3422         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3423
3424 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3425
3426         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3427         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3428           (regTypeNum): set REG_BIT type if necessary
3429         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3430         * support/regression/tests/critical.c: check bug 1144613
3431
3432 2005-03-02 Raphael Neider <rneider AT web.de>
3433
3434         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3435
3436 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3437
3438         * src/avr/ralloc.c (serialRegAssign),
3439         * src/ds390/ralloc.c (serialRegAssign),
3440         * src/hc08/ralloc.c (serialRegAssign),
3441         * src/mcs51/ralloc.c (serialRegAssign),
3442         * src/pic/ralloc.c (serialRegAssign),
3443         * src/pic16/ralloc.c (serialRegAssign),
3444         * src/xa51/ralloc.c (serialRegAssign),
3445         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3446
3447 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3448
3449         * src/SDCCast.c (decorateType): fixed bug 1124787
3450
3451 2005-02-20 Hubert Sack <sack AT digiplan.de>
3452         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3453
3454         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3455         patch #1121755
3456
3457 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3458
3459         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3460         to keep the correct label reference count when adding/removing references
3461         to labels. A peephole file using this is appended to patch #1144962.
3462
3463 2005-02-14 Raphael Neider <rneider AT web.de>
3464
3465         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3466         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3467         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3468           retrievals of result operand's value on assignment
3469
3470 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3471
3472         * device/include/pic16/string.h: modified prototype for memccpy()
3473         to memccpy(void *, void *, char, size_t)
3474         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3475         check whether to omit frame pointer or not,
3476         * (genInline): convert all occurences of "\n" to LF in inline
3477         assembler blocks, this helps formatting the inline text,
3478         * (pic16_loadFSR0): modified prototype,
3479         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3480         removed some 8051 legacy code,
3481         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3482         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3483         before allocating temporary registers in functions,
3484
3485 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3486
3487         * support/regression/tests/bitvars.c: corrected the "fix"
3488
3489 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3490
3491         * support/regression/tests/bitvars.c,
3492         * support/regression/tests/bitwise.c,
3493         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3494
3495 2005-02-10 Raphael Neider <rneider AT web.de>
3496
3497         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3498           different size for Alpha
3499         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3500
3501 2005-02-09 Raphael Neider <rneider AT web.de>
3502
3503         * src/SDCC.lex(doPragma) : save and restore warning options as well
3504           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3505         * have #pragma less_pedantic set the errorlevel to WARNING
3506           (fixes #1117001)
3507         * (cloneOptimize) : fixed wrong malloc's size
3508         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3509           facilitate correct handling of #pragma (save|restore)
3510
3511 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3512
3513         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3514
3515 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3516
3517         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3518
3519 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3520
3521         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3522
3523 2005-02-02 Raphael Neider <rneider AT web.de>
3524
3525         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3526         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3527         * (pic16_storeForReturn): fixed to allow returning function pointers
3528         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3529         * device/include/pic16/{stddef.h,stdbool.h}: added
3530
3531 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3532
3533         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3534
3535 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3536
3537         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3538         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3539          appeared to be required
3540
3541 2005-01-31 Borut Razem <borut.razem AT siol.net>
3542
3543         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3544           include/mcs51 and include/z80 directories to the package
3545
3546 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3547
3548         * src/hc08/gen.c (genFunction): fixed bug #1112752
3549
3550 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3551
3552         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3553
3554 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3555
3556         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3557
3558 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3559
3560         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3561
3562 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3563
3564         * device/include/c8051fxxx.h: removed these 6 files
3565         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3566
3567 2005-01-26 Raphael Neider <rneider AT web.de>
3568
3569         * src/pic16/gen.c (genAssign): fixed assignment from longs
3570           in codespace (were cut to three bytes)
3571         * (genDummyRead): implemented (except for CODESPACE...),
3572           fixed bug #1108575
3573         * src/pic16/glue.c (emitStatistics): beautified
3574         * device/lib/pic16/libm/Makefile: added include path
3575
3576 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3577
3578         * src/z80/gen.c (aopPut): fixed bug #1103902
3579
3580 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3581
3582         * device/lib/expf.c: fixed bug #1095792
3583
3584 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3585
3586         * device/lib/pic16/libm: added Math library sources
3587
3588 2005-01-24 Raphael Neider <rneider AT web.de>
3589
3590         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3591           to enable upcast to pCodeOpReg2 (there is no type tag to
3592           differenciate the two and pic16_popGet2p cast into PCOR2)
3593         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3594           (sizeof(sectNames) changed to sizeof(sectName))
3595           Both patches fix segfaults under MinGW.
3596
3597 2005-01-23 Raphael Neider <rneider AT web.de>
3598
3599         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3600           Safe_[mc]?alloc()'ed variables
3601         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3602           of (byte sized) temporaries (assign them to WREG for now)
3603         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3604           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3605           this might fix SIGSEGVs on MinGW...
3606         * src/SDCCopt.c (killDeadCode): restored original behaviour
3607           (volatile operands might get thrown away though)
3608
3609 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3610
3611         * src/pic16/gen.c: fixed bug #1106975,
3612         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3613         pointer update, INTCON is saved, global interrupts are disabled and
3614         restored after updateing TOS.
3615         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3616         * added function attribute 'shadowregs' to take advantage of shadow
3617         registers,
3618         * added function attribute 'wparam' as an alternative to the wparam
3619         pragma,
3620         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3621         user declares a non-ISR function as 'shadowregs',
3622         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3623
3624 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3625
3626         * .version: bumped version number to 2.4.8
3627         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3628         pic16 port,
3629         * device/lib/pic16/libio/i2c/: I2C module support library,
3630         * device/include/pic16/i2c.h: I2C support library header,
3631         * device/lib/pic16/libc/stdio/: standard IO support sources,
3632         * (printf_small.c): printf_small() source, supports float print,
3633         * (printf_tiny.c): printf_tiny() source, does not support floats,
3634         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3635         enable global optimizations for entire library source, other
3636         Makefiles in the source tree are also modified to reflect this,
3637         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3638         function,
3639         * doc/sdccman.lyx: updated to reflect new changes,
3640         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3641         sym->onStack if-case,
3642         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3643         sbit, idata, _idata, xdata, _xdata,
3644         * added pragma library, to link an external library, (see doc),
3645         * removed command line options, --pomit-config-words, --pomit-ivt,
3646         --pleave-reset-vector,
3647         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3648         when calling assembler to reflect memory model used, also define
3649         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3650         reflect stack model used,
3651         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3652         on stack return NULL,
3653
3654 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3655
3656         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3657           of the operands is volatile. Fixes #1020220
3658
3659 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3660
3661         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3662         * (OptimizeRegUsage): make sure that there is really no other flow where
3663           the first pCode is used
3664
3665 2005-01-22 Raphael Neider <rneider AT web.de>
3666
3667         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3668           to fix #1106967 (pCode->seq are not set up correctly)
3669
3670 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3671
3672         * src/SDCCglue.c (glue): make sure code area is declared before the
3673         static initialization area.
3674
3675 2005-01-21 Raphael Neider <rneider AT web.de>
3676
3677         * device/lib/Makefile.in: fixed test for pic16 install dir
3678         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3679           optimizations
3680         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3681           added --optimize-goto compiler switch and pragma wparam documentation
3682         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3683         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3684           and PRODH closing bug #1071770 (peephole optimizer)
3685
3686 2005-01-19 Raphael Neider <rneider AT web.de>
3687
3688         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3689           cmdLine buffers (used when calling sdcpp...) are large enough
3690           (MAX_PATH=256 truncates arguments leading to system halts when
3691           used in MinGW...)
3692         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3693         * (genUminus): rewritten to for efficiency
3694         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3695           used uninitialized in some cases)
3696         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3697           copy the third byte from the int -- now assumes 0x80 (data memory)
3698         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3699           operands (genAddLit expects the iCode's operands to swapped as
3700           well), fixed leftover bytes (crashed for short left operands)
3701         * (pic16_genMinusDec): performance improvements, removed false
3702           PIC14 emitSKPNCs
3703         * (pic16_genMinus): fixed to cope with differently sized operands
3704         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3705           for --obanksel > 1
3706         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3707         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3708           new banksel optimization
3709         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3710           analysis for temporary registers (segfaults...)
3711         * src/pic16/peeph.def: added rule
3712
3713 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3714
3715         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3716         which converts a float number to its ASCII representation
3717         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3718         functions to convert the fractional and integer part of a float to ASCII,
3719         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3720         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3721         ram
3722         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3723         _STATMEM macros,
3724         * device/include/pic16/adc.h: added GPL info,
3725         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3726         a pCodeOp as tested operand,
3727         * (genNearPointerGet): optimized bit testing, does not use
3728         intermediate register for bit value, test directly instead with
3729         BTFSS, BTFSC, works only for single bits,
3730         * (genpic16Code): dump the name of the iCode in the asm,
3731         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3732         renamed to pic16_decodeOp,
3733         * (serialRegAssign): do not allocate a temporary register for iCode
3734         sequences that test a single bit for 1/0
3735
3736 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3737
3738         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3739         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3740         access stack and frame pointers. They are initially assigned to
3741         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3742         accessing SFRs. Updated all occurences of modification of stack or
3743         frame pointer in gen.c and pcode.c,
3744         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3745         assigning of a literal value to pointers,
3746         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3747         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3748         selected
3749
3750 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3751
3752         * doc/sdccman.lyx: update documentation about stack pragma, added
3753         some info for stack memory models
3754
3755 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3756
3757         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3758
3759 2005-01-08 Raphael Neider <rneider AT web.de>
3760
3761         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3762           udata sections to fix bug #1097823
3763
3764 2005-01-05 Raphael Neider <rneider AT web.de>
3765
3766         * src/pic16/gen.c (genGenericShift): added handling of differently
3767           sized left operand and result
3768
3769 2005-01-04 Raphael Neider <rneider AT web.de>
3770
3771         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3772         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3773           to hold the condition bit)
3774         * added new version of genCmp (old code available via #define)
3775         * added new version of genShiftLeft/genShiftRight in a generic
3776           way, now supports shifting by negative values
3777         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3778           shiftCount (expected by genGenericShift)
3779         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3780         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3781           dump
3782         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3783           is an invalid literal too...)
3784
3785 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3786
3787         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3788         from Raphael Neider,
3789         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3790         for 8-bit literals. This fixes some literal operands which are sign
3791         extended to 16-bits ints when instruction needs only 8-bits.
3792
3793 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3794
3795         * device/lib/logf.c: added mcs51 assembly version
3796         * device/lib/expf.c: added mcs51 assembly version
3797         * device/lib/_logexpf.c: new shared asm code for expf and logf
3798         * device/include/math.h: add defines for assembly math library
3799         * device/lib/Makefile.in: build new _logexpf.c
3800         * device/lib/libfloat.lib: use new _logexpf.c
3801
3802 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3803
3804         * src/pic/device.c
3805         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3806           device types which have less than 0x7f registers.
3807
3808 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3809
3810         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3811
3812 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3813
3814         * device/lib/printf_fast.c: only build on supported arch.
3815         * device/lib/printf_tiny.c: only build on supported arch.
3816         * device/lib/printf_fast_f.c: only build if asm float lib
3817         * device/lib/_fsget1arg.c: only build if asm float lib
3818         * device/lib/_fsget2args.c: only build if asm float lib
3819         * device/lib/_fsnormalize.c: only build if asm float lib
3820         * device/lib/_fsreturnval.c: only build if asm float lib
3821         * device/lib/_fsrshift.c: only build if asm float lib
3822         * device/lib/_fsswapargs.c: only build if asm float lib
3823         * device/include/stdio.h: don't provide print_fast,
3824           print_fast_f, print_tiny prototypes if --xstack used
3825
3826 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3827
3828         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3829         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3830           to the SOURCES
3831
3832 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3833
3834         * device/lib/printf_fast_f.c: same as printf_fast, but
3835           with floating point enabled
3836         * device/lib/printf_fast.c: minor tweaks
3837         * device/include/stdio.h: add printf_fast_f
3838
3839 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3840
3841         * src/SDCCmain.c: make --float-reent default for mcs51
3842         * device/lib/_fsadd.c: added mcs51 assembly version
3843         * device/lib/_fssub.c: added mcs51 assembly version
3844         * device/lib/_fsmul.c: added mcs51 assembly version
3845         * device/lib/_fsdiv.c: added mcs51 assembly version
3846         * device/lib/_fseq.c: added mcs51 assembly version
3847         * device/lib/_fsneq.c: added mcs51 assembly version
3848         * device/lib/_fsgt.c: added mcs51 assembly version
3849         * device/lib/_fslt.c: added mcs51 assembly version
3850         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3851         * device/lib/Makefile.in: add _fscmp to build
3852         * device/lib/libfloat.lib: add _fscmp to build
3853
3854 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3855
3856         * device/lib/_fs2slong.c: added mcs51 assembly version
3857         * device/lib/_fs2sint.c: added mcs51 assembly version
3858         * device/lib/_fs2schar.c: added mcs51 assembly version
3859         * device/lib/_fs2ulong.c: added mcs51 assembly version
3860         * device/lib/_fs2uint.c: added mcs51 assembly version
3861         * device/lib/_fs2uchar.c: added mcs51 assembly version
3862         * device/lib/_slong2fs.c: added mcs51 assembly version
3863         * device/lib/_sint2fs.c: added mcs51 assembly version
3864         * device/lib/_schar2fs.c: added mcs51 assembly version
3865         * device/lib/_ulong2fs.c: added mcs51 assembly version
3866         * device/lib/_uint2fs.c: added mcs51 assembly version
3867         * device/lib/_uchar2fs.c: added mcs51 assembly version
3868         * device/include/float.h: added #define to select asm vs c
3869
3870 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3871
3872         * device/lib/printf_fast.c: improvements to float output
3873         * device/include/float.h: add defines for assembly float library
3874         * device/lib/_fsget1arg.c: receive 1 float arg
3875         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3876         * device/lib/_fsnormalize.c: normalize a float
3877         * device/lib/_fsreturnval.c: return float, various helper routines
3878         * device/lib/_fsrshift.c: right shift a float's mantissa
3879         * device/lib/_fsswapargs.c: swap 2 floats
3880         * device/lib/Makefile.in: build these 6 new files for mcs51
3881         * device/lib/libfloat.lib: add these 6 files to the library
3882
3883 2004-12-26 Borut Razem <borut.razem AT siol.net>
3884
3885         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3886           built by gcc 3.4.2
3887
3888 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3889
3890         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3891           and fully reentrant and register bank neutral.
3892         * device/lib/printf_fast.c: added float (not enabled by default),
3893           added compact/slower integer (also not enabled by default),
3894           improved size/speed of fast integer code, other minor changes
3895         * device/include/stdio.h, device/lib/Makefile.in,
3896           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3897
3898 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3899
3900         * src/pic16/pcode.c: declaring variables other than at the start of a
3901           block is not supported in C by VC6.
3902
3903 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3904
3905         * applied a previous patch from Raphael Neider that wasn't included
3906         in the previous commits, which fixes infinite loops within jumptable
3907         improvements,
3908         * made some fixes that previous patches introduced
3909
3910 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3911
3912         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3913         that fixes an issue with AOP_PCODE asmop's offset,
3914         * (pic16_popCopyReg): update instance field too,
3915         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3916         function of pic port,
3917         * (genCmp, genAnd, genAssign),
3918         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3919
3920 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3921
3922         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3923         variables initial values to idata section,
3924         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3925         variables in some functions. This utilizes parmBytes field of iCode
3926         structure to hold the offset of the variable in stack. (might be
3927         able to use the stack field too?)
3928         * applied patch from Raphael Neider # ### , # ###
3929         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3930         variable initial values in idata section,
3931         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3932         for static variables with initial value
3933         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3934         applied fix in while loop from Raphael Neider.
3935
3936 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3937
3938         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3939         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3940         * src/ds390/ralloc.c (serialRegAssign): spill bits
3941         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3942         * support/Util/SDCCerr.c,
3943         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3944         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3945         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3946
3947 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3948
3949         * device/include/sdcc-lib.h: inserted LGPL, added includes
3950           asm/ds390/features.h and asm/mcs51/features.h
3951         * device/include/asm/default/features.h,
3952         * device/include/asm/gbz80/features.h,
3953         * device/include/asm/z80/features.h: added empty _AUTOMEM
3954           and _STATMEM
3955         * device/include/asm/ds390/features.h,
3956         * device/include/asm/mcs51/features.h: added files with defines for
3957           _AUTOMEM and _STATMEM indicating automatic and static storage class
3958         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3959         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3960         * src/SDCCicode.c (geniCodeCast),
3961         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
3962         * src/SDCCloop.c (loopInduction): removed unused variable lr
3963         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
3964           to convertToFcall to include char modulo (RFE 1065037), added check
3965           if left operand is unsigned and use abs of literal value
3966         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
3967           as it doesn't work after conversion from peephole.def to peephole.rul
3968         * src/mcs51/gen.c (toBoolean): added check for size,
3969           (genModOneByte): optimized code for signed char modulo a literal
3970           power of 2 (thanks to Hubert Sack),
3971           (genRRC): removed unnecessary "clr c",
3972           (genRLC): replaced "add a,acc" with cheaper "rlc a"
3973         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
3974           jump optimization,
3975           swapped rules 256.c and 256.d,
3976           extended 256.d by using new multiple checks (thanks Erik),
3977           added rules 256.e and 256.f,
3978           updated rule 261.a and 261.b to new generated code
3979         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
3980
3981 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3982
3983         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
3984           induction related bugs, including first part of bug #1074377
3985
3986 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
3987
3988         * applied patch from bug-report #1076292,
3989         * applied patches for genAnd and Goto-optimizations for Raphael
3990         Neider,
3991         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
3992         dump a less iCode information,
3993         * src/pic16/device.h (pic16_options_t): added field debgen,
3994         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
3995         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
3996         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
3997         puclic,
3998         * (various functions): added macros FENTRY and FENTRY2 to functions,
3999         to emit function prologue,
4000         * (various functions): fixed indentation,
4001         * (genNearPointerGet): fixed loading of FSR0,
4002         * (genPackBits): applied patch from Raphael Neider to fix updating
4003         of FSR0 and touching only the modified bits,
4004         * src/pic16/genarith.c (various functions): added macros FENTRY to
4005         emit function prologue in comments,
4006         * src/pic16/pcode.h: added functions debugf2, debugf3,
4007         * src/pic16/ralloc.c: partial fix for packForPush caused
4008         segmentation fault,
4009
4010 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4011
4012         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4013           <stsp AT users.sourceforge.net> with reversed byte order
4014         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4015
4016 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4017
4018         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4019           bug #1074377
4020         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4021         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4022
4023 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4024
4025         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4026
4027 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4028
4029         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4030           conditions,
4031           (setFromConditionArgs): friendly operand parser for peephole rules,
4032           (operandBaseName, operandsNotRelated): new peephole condition
4033           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4034           architecture specific register naming into account, handles n-way
4035           comparisons, and supports quoted literals
4036         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4037
4038 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4039
4040         * src/mcs51/peeph.def: fixed bug #1076940
4041
4042 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4043
4044         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4045
4046 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4047
4048         Adding support for replacing ljmps with sjmps in jumptables
4049         generated for switch statements. For now you need to set the
4050         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4051         Now 4 algorithms for mcs51 jumptable generation are used:
4052         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4053         addresses loaded pc-relative for up to 112 cases and stack-pushing
4054         target addresses loaded with offset from dptr for up to 256 cases.
4055
4056         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4057         * src/mcs51/main.c: adapted constants for switch table generation
4058         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4059
4060 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4061
4062         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4063         * support/regression/tests/bug1057979.c: added test for bug 1073386
4064
4065 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4066
4067         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4068         compilers
4069
4070 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4071
4072         * src/pic16/device.h,
4073         * src/pic16/genarith.c,
4074         * src/pic16/glue.c,
4075         * src/pic16/main.c,
4076         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4077
4078 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4079
4080         Large cummulative patch for pic16 port.
4081         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4082         to call when a stack overflow occurs,
4083         * (malloc.h): added CVS Id tag,
4084         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4085         variable,
4086         * added libc directory. The current version of LibC contains string
4087         functions, ctype functions and macros and some functions of the
4088         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4089         be extensively tested in the future. Standard disclaimer here.
4090         Library is not automatically build yet. But one can build it by
4091         invoking 'make' inside the libc directory.
4092         * added ADC library under libio. Preliminary version yet.
4093
4094         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4095         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4096         aopForRemat() now and not by pic16_aopOp(),
4097         * (pic16_popGetTempReg): removed warning messgae when allocating
4098         temporary registers, its a buggy feature and will be removed,
4099         * (pic16_popGet): set register instance field in AOP_CRY,
4100         * (pic16_outBitC): fixed for results in size greater than 1,
4101         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4102         * (pic16_storeForReturn): optimized return of 0,
4103         * (genCmp): experimental code for new genCmp which uses PIC18's
4104         special compare&skip instructions. Initial tests fail some times
4105         with variables grater than 1 byte in size, so new code is disabled,
4106         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4107         a single bit,
4108         * (genCast): began a fix to optimize the casting of a bit to another
4109         bit, now assigning a bitfield to another bitfield will fail, sorry,
4110         * src/pic16/main.c: disabled the use of lr-support feature,
4111         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4112         * added some function prototypes, added function _debugf prototype,
4113         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4114         bits with offset (case PO_GPR_BIT),
4115         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4116         command line,
4117         * (isBankInstruction): modified to return 0 for no banking instruction,
4118         and 1 for banking instruction,
4119         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4120         caused stop processing pCodes after a inline assembly block,
4121         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4122         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4123         registers when it shouldn't,
4124         * src/pic16/ralloc.c (allocReg): add preliminary support for
4125         supporting a limited set of temporary registers,
4126
4127 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4128
4129         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4130           genDataPointerSet): ensure assignments always copy in MSB to LSB
4131           order,
4132           (loadRegFromAop): recognize CLRH optimization,
4133           (genFunction): optimize RECEIVE iCodes in reentrant functions
4134
4135 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4136
4137         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4138           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4139           selected.
4140         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4141         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4142           contiguous with data
4143
4144 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4145
4146         * device/lib/_gptrget.c (_gptrget),
4147         * device/lib/_gptrgetc.c (_gptrgetc),
4148         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4149           instead of sjmp to ret
4150         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4151           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4152
4153 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4154
4155         * .version: bumped version to 2.4.7
4156         * device/lib/_gptrget.c (_gptrget): is now _naked
4157         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4158         * device/lib/_gptrput.c (_gptrput): is now _naked
4159         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4160           (createFunction): fixed xstack
4161         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4162         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4163           or bit either,
4164           (geniCodeCritical): store original interrupt state in an iTemp bit
4165           var unless stack-auto
4166         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4167         * src/SDCCmain.c (setIncludePath): added include/target to search path
4168         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4169         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4170           prototype,
4171           (processFuncArgs): put bit vars in bit area
4172         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4173           unsaveRBank): fixed xstack,
4174           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4175           (genFunction, genEndFunction): fixed xstack,
4176           (genAssign): optimization don't walk backwards through mem
4177         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4178         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4179         * support/regression/Makefile: also make library (for stack-auto) when
4180           making "all" and added "test-mcs51-xstack-auto"
4181         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4182         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4183         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4184         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4185         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4186           make-library by MAKE_LIBRARY
4187         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4188           regression tests for xstack
4189         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4190         * support/regression/tests/critical.c: test for critical on mcs51
4191
4192 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4193
4194         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4195           built version of sdcc instead of installed version
4196
4197 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4198
4199         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4200         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4201           vprintf.c now
4202         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4203         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4204           WARNING: remove device/lib/build/z80/printf.o by hand when
4205           updating from previous build!
4206         * device/lib/z80/printf.c: updated comment
4207         * support/regression/tests/bug1057979.c: test all ports now
4208         * support/regression/tests/bug1065458.c: file added
4209
4210 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4211
4212         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4213           *_start and *_end symbols for static functions
4214
4215 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4216
4217         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4218           and search crt0.o in all library paths,
4219           (setIncludePath): proper handling of --nostdinc,
4220           (setLibPath): proper handling of --nostdlib
4221         * support/regression/Makefile,
4222         * support/regression/ports/ds390/spec.mk,
4223         * support/regression/ports/gbz80/spec.mk,
4224         * support/regression/ports/hc08/spec.mk,
4225         * support/regression/ports/mcs51/spec.mk,
4226         * support/regression/ports/mcs51-large/spec.mk,
4227         * support/regression/ports/mcs51-stack-auto/spec.mk,
4228         * support/regression/ports/z80/spec.mk: use include and lib files from
4229           built version of sdcc instead of installed version
4230         * doc/sdccman.lyx: fixed typo in --nostdinc
4231
4232 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4233
4234         * src/pic/pcode.c,
4235         * src/pic/device.c,
4236         * src/pic/ralloc.c,
4237         * src/pic/gen.c : added support to generate code for struct bit fields.
4238
4239 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4240
4241         * as/xa51/xa_version.h,
4242         * device/include/errno.h,
4243         * device/include/regc515c.h,
4244         * device/lib/_itoa.c,
4245         * device/lib/_ltoa.c,
4246         * device/lib/ser_ir_cts_rts.c,
4247         * sim/ucsim/xa.src/glob.cc,
4248         * sim/ucsim/xa.src/inst_gen.cc,
4249         * sim/ucsim/xa.src/xa_bit.cc,
4250         * sim/ucsim/xa.src/xa_sfr.cc,
4251         * sim/ucsim/z80.src/inst_dd.cc,
4252         * sim/ucsim/z80.src/inst_fdcb.cc,
4253         * support/scripts/keil2sdcc.pl,
4254         * src/pic16/pic16.dsp,
4255         * src/pic16/pic16a.dsp: corrected cvs line endings
4256         * device/lib/printf_large.c: fixed bug 1057979
4257         * src/pic16/gen.c: fixed non-C standard code
4258         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4259         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4260         * support/regression/ports/mcs51/support.c: reload T1 asap
4261         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4262           pdata use and clear idata startup behaviour
4263         * support/regression/tests/bug1057979.c: added
4264
4265 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4266
4267         * device/examples/ds390/ow390/ad26.h,
4268         * device/examples/ds390/ow390/cnt1d.h,
4269         * device/examples/ds390/ow390/crcutil.c,
4270         * device/examples/ds390/ow390/ownet.h,
4271         * device/examples/ds390/ow390/owsesu.c,
4272         * device/examples/ds390/ow390/swt12.h,
4273         * device/examples/ds390/ow390/swtoper.c,
4274         * device/examples/ds390/ow390/temp10.h,
4275         * device/examples/ds390/ow390/thermodl.c,
4276         * device/examples/ds390/tinitalk/tinitalk.dsp,
4277         * device/examples/ds390/tinitalk/tinitalk.dsw,
4278         * device/examples/mcs51/clock/hw.h,
4279         * device/examples/mcs51/simple2/go.bat,
4280         * device/examples/serialcomm/windows/serial.h,
4281         * device/examples/xa51/dummy.c,
4282         * device/examples/xa51/hello.c,
4283         * device/include/80c51xa.h,
4284         * device/include/at89x051.h: corrected cvs line endings
4285
4286 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4287
4288         * src/pic16/main.c (options): added command line --gstack, to trace
4289         stack over/under flows,
4290         * added pragma 'wparam' to allow passing first byte of function
4291         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4292         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4293         call to __gstack_test function and sets up the symbol as extern,
4294         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4295         * popaop): added call to pic16_testStackOverflow,
4296         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4297         wparamList list,
4298         * (genCall, genPcall): now all parameters are passed via stack
4299         except in functions that are pass to wparam pragma in which WREG is
4300         used too,
4301         * (genPcall): REENTRANT flag is checked to see if variable prototype
4302         contains reentrant keyword, don't call a non-reentrant function, via
4303         a reentrant function pointer or vice versa, functions are never
4304         passed via WREG,
4305         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4306         D.Winkler,
4307         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4308         SIGSEGV when accessing a NULL register stucture,
4309         * (pic16_printGPointerType): modified to handle UPPER modifier for
4310         function initializers, changed prototype of function to simpler one,
4311         * (pic16_printIvalFuncPtr): check to see if function is already
4312         added in externs list,
4313         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4314         optimized a move from W to SFR with a move to the same register
4315         later after a CALL,
4316         * device/lib/pic16/debug: NEW directory, contains debug features
4317         which are enabled when linking with libdebug.lib, currently command
4318         line option --gstack enables stack pointer tracing for over/under
4319         flow, corresponding sources are in debug/gstack
4320
4321 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4322
4323         * doc/sdccman.lyx: updated SDCC version,
4324         * (PIC16 port): update list of command line options,
4325         * src/pic16/device.h (structure pic16_options_t): added field gstack
4326         to enable stack overflow tracing on push/pops,
4327         * src/pic16/device.c (statistics structure): added statistics
4328         structure,
4329         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4330         pic16_dump_int_registers): increase statistics counters for each
4331         * variable which is encountered
4332         * (pic16_dump_usection): emit each .udata variable to its own udata
4333         section,
4334         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4335         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4336         parameters via stack, otherwise use old scheme,
4337         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4338         assembler output file,
4339         * src/pic16/main.c: added command line options --gstack to enable
4340         push/pop tracing for stack overflow,
4341         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4342         instructions): added size of each instruction,
4343         * (pic16_countInstruction): estimate size of instructions in
4344         the_pFile list, inline assembly blocks are not counted,
4345         * (pic16_FixRegisterBanking): trace previous register usage, when
4346         banksel optimizations is greater than 0, don't emit a redudant
4347         banksel directive,
4348
4349 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4350
4351         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4352         * src/pic16/ralloc.c : applied same fix for pic16.
4353         * src/pic/gen.c : tidied it up a little.
4354
4355 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4356
4357         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4358         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4359
4360 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4361
4362         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4363
4364 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4365
4366         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4367         non-reentrant function __modsint in the interrupt function (thus
4368         corrupting math operations during serial I/O)
4369         * device/lib/ser_ir.c: as above, changed buffersize
4370         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4371         256.c,d for zeroing
4372         * doc/Makefile: added option -t for rsync
4373
4374 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4375
4376         * src/SDCCast.h (struct ast),
4377         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4378
4379 2004-10-20 Borut Razem <borut.razem AT siol.net>
4380
4381         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4382         package
4383
4384 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4385
4386         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4387         makefile targets,
4388         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4389         support functions to replace long sequences of MOVFF's from access
4390         bank registers to stack and vice versa,
4391         * src/pic16/device.h: added new field opt_flags, where optimization
4392         flags can be set to enable certain features,
4393         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4394         * pBlock, (genFunction, genEndFunction): surroung loop for
4395         saving/loading used registers in stack with PC_INFO pCodes,
4396         INF_LREGS. Code in between can then be optimized by pCode optimizer
4397         to support function calls,
4398         * (genDataPointerSet): fixed bug which loaded float fields in
4399         structures with corrupt data,
4400         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4401         in a standard way debug info on stderr. Feature used for developing
4402         and debugging only,
4403         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4404         obsolete chunks of code,
4405         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4406         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4407         * pic16/src/pcode.c (pic16_newpCodeInfo,
4408         * (pic16_newpCodeOpLocalRegs),
4409         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4410         feature,
4411         * (pic16_pCodeConstString): printing of the initial value of a
4412         symbol as a comment is inhibited since parsing was already done by
4413         copyStr and output is corrupt,
4414         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4415
4416 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4417
4418         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4419
4420 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4421
4422         * as/mcs51/lkarea.c: removed old K&R style,
4423           (lnksect): changed check on boundary error,
4424           (lnksect2): changed check on boundary error,
4425           (lnksect2): extend XSTK to end of page if size = 1
4426         * as/mcs51/lkmain.c: removed old K&R style,
4427           (Areas51): create l_IRAM symbol
4428         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4429         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4430           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4431         * device/lib/_mullong.c: added version to be compiled with xstack
4432         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4433         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4434         * device/lib/mcs51/crtxstack.asm: fixed comment
4435         * src/SDCCglue.c: maxInterrupts defaults to 0,
4436           (emitMaps): added pdata,
4437           (createInterruptVect): (re)moved default,
4438           (glue): added pdata,
4439           (glue): moved __start__xstack to XSTK with default size 1
4440         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4441           and options.float_rent when options.stackAuto is set,
4442           (linkEdit): only write XDATA_NAME if provided on command line
4443         * src/SDCCmem.h,
4444         * src/SDCCmem.c: added pdata
4445         * src/port.h: added pdata_name to PORT
4446         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4447           (saveRegisters, unsaveRegisters): removed usage of B,
4448           (genMinus): fixed accumulator clash,
4449           (genJumpTab): added comment, this needs another look
4450         * src/mcs51/gen.c: added check for "B in use" paranoia,
4451           added pushB() and popB()
4452         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4453           chance
4454         * src/avr/main.c,
4455         * src/ds390/main.c,
4456         * src/hc08/main.c,
4457         * src/mcs51/main.c,
4458         * src/pic/main.c,
4459         * src/pic16/main.c,
4460         * src/xa51/main.c,
4461         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4462           added PSEG (PAG,XDATA) or NULL to port specifier
4463         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4464         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4465           (_mcs51_genInitStartup): removed __start__xstack equ,
4466           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4467         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4468         * src/z80/gen.c (_rleAppend): fixed warnings
4469         * support/regression/tests/zeropad.c: added pdata test
4470         * .version: bumped to 2.4.6
4471
4472 2004-10-17 Borut Razem <borut.razem AT siol.net>
4473
4474         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4475         as a part of nightly build
4476
4477 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4478
4479         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4480         WREG holds the first byte function parameters,
4481         * (aopForSym): take special case for symbols which are in FARSPACE
4482         but in CODESPACE too,
4483         * (assignResultValue): modified to take into account _G.useWreg,
4484         * (genCall): don't use wreg for parameter passing when function is
4485         declared as reentrant, too, added optimization INCF to stack
4486         pointer when stack parameter count is 1,
4487         * (genFunction, genEndFunction): refurnished and fixed to not using
4488         wreg for passing parameters when function has varargs or is
4489         reentrant, fixed bug with symbol name compare for generating
4490         functions in absolute address,
4491         * (pic16_storeForReturn): refurnished,
4492         * (genCmp): began writing a new version of the function, not ready
4493         yet, therefore it is disabled,
4494         * (genAssign): do not read code memory when assigning a function to
4495         a pointer function,
4496         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4497         array of characters, not pointer,
4498         * (pic16initialComments): in debug mode emit an .ident directive for
4499         the assembler,
4500         * (_process_pragma): emit a new warning type (internal to pic16)
4501         when setting stack to default length, emit a similar warning when
4502         placing a function at absolute address and address is not word aligned
4503         * (_pic16_parseOptions): added 'return TRUE' statement,
4504         * (_pic16_linkEdit): if compiling a source, then add the source's
4505         file object, first in the list of objects to link,
4506
4507 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4508
4509         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4510         * src/pic/main.c : removed VC warning.
4511         * src/pic/gen.c : changed comment.
4512
4513 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4514
4515         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4516         reference to a deprecated symbol _GPTRREG was causing failure to
4517         link. Thanks G. M. Gallant for the info.
4518
4519 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4520
4521         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4522         comments for Bugs item #954788.
4523
4524 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4525
4526         * src/pic16/device.c (pic16_dump_gsection,
4527         * pic16_groupRegistersInSection): handle symbols declared to be in
4528         access bank differently,
4529         * src/pic16/gen.c (struct _G): added field resDirect,
4530         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4531         send values read from stack directly to result and don't allocate
4532         temporary values,
4533         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4534         same registers,
4535         * (pic16_sameRegsOfs): NEW,
4536         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4537         free because they were not allocated from temporary pool,
4538         * pic16_popRegFromString): workaround to fix a problem with
4539         allocating variables twice or never,
4540         * (genGenPointerGet): using PRODL instead of FSR0H,
4541         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4542         instead of FSR0H,
4543         * (genAssign): take advantage of the _G.resDirect flag,
4544         * (genCast): around line 11844, use mov2f instead of directly
4545         MOVFF'ing between operands to account for literal values,
4546         * src/pic16/genutils.c: some new debug functions for gpsim have been
4547         added,
4548         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4549         float with integer part only,
4550         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4551         place variables in access bank
4552         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4553         updated sources to reflect recent changes in gen.c
4554
4555 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4556
4557         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4558         sources that searched for headers in installation path, now the
4559         device/include/pic16 is used,
4560         * src/pic16/glue.c (pic16glue),
4561         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4562         .line directives if not in debug mode, this suppresses assembler's
4563         warnings for ignored directives
4564
4565 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4566
4567         * src/port.h: made reset_regparms prototype void parameter explicit.
4568         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4569         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4570         * doc/sdccman.lyx: documented warning disabling and how to use
4571           printf_large to make it print floats.
4572         * device/include/stdbool.h: NEW
4573         * device/lib/_atof.c,
4574         * device/lib/_divuint.c,
4575         * device/lib/_divulong.c,
4576         * device/lib/expf.c,
4577         * device/lib/printf_large.c,
4578         * device/lib/sincosf.c,
4579         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4580         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4581           a completely reentrant lib.
4582
4583 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4584
4585         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4586         * device/include/pic16/stdio.h: fixed bug with colon
4587
4588 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4589
4590         * device/include/pic16/stdio.h,
4591         * device/include/pic16/stdlib.h,
4592         * device/include/pic16/math.h: NEW
4593         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4594         declared as _naked to reduce overhead
4595         * device/lib/Makefile.in (target port-specific-objects-pic16):
4596         changed * to *.* so to ignore the CVS directory,
4597         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4598         stacked variables back in stack,
4599         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4600         corruption
4601
4602 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4603
4604         * .version: bumped version number to 2.4.5
4605         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4606         * support/Util/SDCCerr.c (messages structure): added entry for
4607         W_POSSBUG2
4608
4609         Large cumulative patch for pic16 port and libraries.
4610         * device/include/pic16/sdcc-lib.h,
4611         * device/include/pic16/stdarg.h,
4612         * device/include/asm/pic16/features.h,
4613         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4614         * device/include/pic16/float.h: changes reentrant keyword with
4615         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4616         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4617         updated target build-libraries to include objects from gptr,
4618         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4619         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4620         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4621         all function headings,
4622         * src/SDCCmain.c: added global parameter userIncDirsSet,
4623         * (parseCmdLine): when option -I is encountered add directory to
4624         userIncDirsSet too,
4625         * src/version.awk: added space between control and long,
4626         * src/pic16/NOTES: added some notes for the port,
4627         * src/pic16/gen.c: added prototype for mov2fp function,
4628         * (fReturnpic16[]): properly named return value registers,
4629         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4630         * (aopForSym): added code to handle symbols with onStack flag set,
4631         symbols onStack are allocated PTRSIZE bytes,
4632         * (aopFreeAsmop): handles special case where asmops are stack objects,
4633         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4634         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4635         added argument lock to trace flaws in allocating temporary registers
4636         when developing port,
4637         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4638         * (pic16_popRegFromString): reenabled allocating a direct register
4639         from string,
4640         * (assignResultValue): various beautifications,
4641         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4642         referenced function argument,
4643         * (genIpush): reenabled to allow stacked arguments, handles only
4644         ic->parmPush iCodes,
4645         * (genCall, genPcall): major changes to allow for variable argument
4646         functions, fixed a bug with falsely restoring stack pointer after
4647         returning from call,
4648         * (genFunction): pending code for critical function,
4649         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4650         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4651         * (genNearPointerGet): fixed bug with indirect reading, was always
4652         reading from INDF0
4653         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4654         pointers,
4655         * (genAddrOf): rewrote code to take address of a stacked function parameter
4656         * (genCast): fixed casting to generic pointer type,
4657         * src/pic16/gen.h: added AOP_STA,
4658         * (struct asmop): added field stk,
4659         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4660         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4661         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4662         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4663         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4664         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4665         generic pointers,
4666         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4667         and library paths,
4668         * (pic16_port structure): generic pointer size is set to 3,
4669         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4670         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4671         compiler warning,
4672         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4673         operand is an iTemp,
4674
4675 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4676
4677         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4678         * debugger/mcs51/simi.c: addapt new syntax of s51
4679
4680 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4681
4682         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4683         * src/pic16/pcode.c: commented out some calls to free() in order to
4684         fix bug #989576,
4685
4686 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4687
4688         * src/SDCCicode.h,
4689         * src/SDCCicode.c (isiCodeInFunctionCall),
4690         * src/avr/ralloc.c (selectSpil),
4691         * src/pic/ralloc.c (selectSpil),
4692         * src/pic16/ralloc.c (selectSpil),
4693         * src/ds390/ralloc.c (selectSpil),
4694         * src/hc08/ralloc.c (selectSpil),
4695         * src/xa51/ralloc.c (selectSpil),
4696         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4697         stack in the middle of a function call sequence (fixes bug #1020268)
4698         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4699         costs associated with the minimum switch case.
4700
4701 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4702
4703         * src/SDCC.lex: fixed bug #1030549
4704
4705 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4706
4707         * src/SDCCcse.h (struct cseDef),
4708         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4709         over a function call if the CSE is derived from a symbol whose
4710         address has been taken (fixes bug #1029883)
4711         * support/regression/tests/bug-1029883: a new regression test for
4712         this bug
4713
4714 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4715
4716         * src/hc08/gen.c (emitinline): fixed bug #1029778
4717         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4718         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4719         and starts toward RFE #905167)
4720
4721 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4722
4723         * src/pic16/gen.c (mov2f): New function to move an operand to
4724         another without considering if it is a literal or a register,
4725         * (pic16_sameRegs): don't check if they are both AOP_REG,
4726         * (AccRsh): removed andmask=0 lines,
4727         * (genLeftShift): duplicated to be improved in future versions,
4728         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4729         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4730         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4731         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4732         * (insertBankSwitch): fixed inserting banksel directives algorithm
4733         for instructions that follow a skip instruction, this fixes a report
4734         for broken subtraction code generation,
4735         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4736         iCode is a left op, just in case result and right share the same
4737         registers
4738
4739 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4740
4741         * src/hc08/main.c,
4742         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4743         preservation of HX
4744         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4745         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4746         on 2004-09-12; it was buggy
4747
4748 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4749
4750         * src/SDCCsymt.h: removed RESULT_CHECK
4751         * src/SDCCast.c,
4752         * src/SDCCglue.c,
4753         * src/SDCCval.c,
4754         * src/pic/glue.c,
4755         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4756
4757 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4758
4759         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4760         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4761         configuration values no more rejected by compiler, they are assigned
4762         to configuration registers with a warning message instead,
4763         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4764         the for-loop so last conf register is emitted too,
4765         * (_pic16_initPaths): link library libsdcc.lib by default,
4766         * (_hasNativeMulFor): modified test for multiplication according to
4767         Raphael Neider's remarks. Integer multiplication is also done with
4768         support functions,
4769         * device/include/pic16/pic18fregs.h: corrected type error in while
4770         testing and including 18f6720 header file
4771
4772 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4773
4774         * src/pic16/device.h (pic16_options): removed field use_crt,
4775         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4776         until an optimization to handle single bits is added,
4777         * (pic16_loadFSR0): moved before genUnpackBits,
4778         * (genAnd): some white lines removed,
4779         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4780         leave_reset flags in pic16_options when using crt modules,
4781
4782 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4783
4784         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4785           for bugs 898889 & 979599. Also used some safer print instructions.
4786
4787 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4788
4789         * src/pic16/device.h (pic16_options_t): added field use_crt,
4790         crt_name, no_crt,
4791         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4792         catch a probable future bug,
4793         * src/pic16/gen.c: aopIdx function commented out,
4794         * (genAssign): commented out old code which used aopIdx,
4795         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4796         code, added if conditionals to take into account the --use-crt
4797         command line options,
4798         * src/pic16/main.c (pic16_optionsTable): added new command line
4799         options, --use-crt= and --no-crt,
4800         * (_pic16_linkEdit): now the proper crt object is added in the
4801         linker command line except than when --no-crt is specified,
4802         * src/pic16/pcode.c,
4803         * src/pic16/pcode.h: added some structures and functions for a new
4804         optimization scheme to compansate for instruction overhead between
4805         same iCodes, this scheme is currently under development and is not
4806         working in any way,
4807         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4808         to && operator,
4809         * device/lib/pic16/startup/crt0i.c,
4810         * device/lib/pic16/startup/crt0iz.c: added global char variable
4811         __uflags to force the generation of an idata section
4812
4813 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4814
4815         * doc/Makefile,
4816         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4817         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4818
4819 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4820
4821         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4822         Frieder) and clarified the default code optimization mode
4823
4824 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4825
4826         * src/SDCC.lex (doPragma, process_pragma),
4827         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4828         "opt_code_size", and "opt_code_balanced"
4829         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4830         regrouped options by category, added support for category headers
4831         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4832         and "--opt-code-size"
4833         * doc/sdccman.lyx: documented these new options and pragmas
4834         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4835         preference into account
4836
4837 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4838
4839         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4840           geniCodePreDec): Fixed bug 904237 by generating a warning
4841         * src/SDCCerr.h,
4842         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4843
4844 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4845
4846         * src/pic/device.c : When no max ram set validate full memory range.
4847         * src/pic/pcode.c,
4848         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4849
4850 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4851
4852         * device/lib/_gptrget.c,
4853         * device/lib/_gptrput.c: updated comment
4854         * device/lib/calloc.c,
4855         * device/lib/free.c,
4856         * device/lib/malloc.c,
4857         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4858         * src/SDCCcse.c (cseBBlock),
4859         * src/SDCCicode.c (printOperand, geniCodeArray),
4860         * src/SDCCicode.h (struct operand): fixed bug 868103
4861         * support/regression/tests/bug-868103.c: added
4862         * src/SDCCast.c (searchLitOp),
4863         * src/SDCCcse.h (struct cseDef),
4864         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4865         * src/SDCCicode.h (struct operand),
4866         * src/SDCCsymt.h (struct sym_link),
4867         * src/avr/gen.c (hasInc),
4868         * src/ds390/gen.c (hasInc),
4869         * src/hc08/gen.c (genPlusIncr, hasInc),
4870         * src/mcs51/gen.c (hasInc),
4871         * src/pic16/glue.c (pic16_printIvalChar),
4872         * src/pic16/ralloc.c (regWithIdx),
4873         * src/xa51/gen.c (hasInc) : removed warnings
4874         * src/SDCCast.c (createBlock): added comment ???
4875         * src/hc08/ralloc.c: updated comments
4876
4877 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4878
4879         * doc/sdccman.lyx: updated section on switch statements, added
4880         section about semaphore locking
4881         * doc/Makefile: added option -info for latex2html
4882         * device/lib/_gptrget.c,
4883         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4884
4885 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4886
4887         * src/pic/device.h,
4888         * src/pic/device.c,
4889         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4890          maxram is less than 0x100.
4891
4892 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4893
4894         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4895
4896 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4897
4898         * src/port.h,
4899         * src/mcs51/main.c,
4900         * src/ds390/main.c,
4901         * src/z80/main.c,
4902         * src/hc08/main.c,
4903         * src/pic/main.c,
4904         * src/pic16/main.c,
4905         * src/avr/main.c,
4906         * src/xa51/main.c
4907         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4908         a jump table is the best form for a switch statement, including
4909         automatic insertion of missing cases to make the case range
4910         continuous. Developed in collaboration with Frieder Ferlemann.
4911
4912 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4913
4914         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4915         accumulator result if it needs sign extension
4916
4917 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4918
4919         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4920
4921 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4922
4923         * device/lib/gbz80/printf.c,
4924         * device/lib/z80/printf.c: removed define for NULL
4925
4926 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4927
4928         * as/xa51/xa_link.c,
4929         * device/examples/ds390/ow390/ad26.c,
4930         * device/examples/ds390/ow390/cnt1d.c,
4931         * device/examples/ds390/ow390/counter.c,
4932         * device/examples/ds390/ow390/ds2480.h,
4933         * device/examples/ds390/ow390/ds2480ut.c,
4934         * device/examples/ds390/ow390/findtype.c,
4935         * device/examples/ds390/ow390/gethumd.c,
4936         * device/examples/ds390/ow390/owllu.c,
4937         * device/examples/ds390/ow390/ownetu.c,
4938         * device/examples/ds390/ow390/swt12.c,
4939         * device/examples/ds390/ow390/swtloop.c,
4940         * device/examples/ds390/ow390/temp.c,
4941         * device/examples/ds390/ow390/temp10.c,
4942         * device/examples/ds390/ow390/thermo21.c,
4943         * device/examples/ds390/ow390/tinilnk.c,
4944         * device/examples/ds390/ow390/tstfind.c,
4945         * device/examples/serialcomm/windows/serial.cpp,
4946         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4947         * device/include/reg51.h: fixed line endings for cvs
4948
4949 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4950
4951         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4952         packRegsForAccUse, packRegisters): new accumulator register
4953         packing algorithm
4954         * support/regression/ports/hc08/support.c (_putchar): suppress
4955         warning of unused variable
4956         * src/SDCCicode.c: added SWAP entry to codeTable
4957
4958 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4959
4960         * device/lib/sprintf.c: forgot to add this file before previous commit
4961
4962 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
4963
4964         * src/pic16/gen.c (genPackBits): added operand right in function
4965         parameters, load result directly if p_type is POINTER (that is
4966         called by genNearPointerSet)
4967         * (genUnPackBits): added operand left in function parameters,
4968         * (genNearPointerGet, genNearPointerSet): prevent the loading of
4969         FSR0 if accessing bitfields,
4970
4971 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
4972
4973         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
4974           _print_format; updated printf, sprintf, vsprintf
4975         * device/include/asm/default/features.h: corrected comment/define
4976         * device/lib/Makefile.in: added sprintf.c
4977         * device/lib/libsdcc.lib: added sprintf module
4978         * device/lib/printf_large.c,
4979         * device/lib/vprintf.c,
4980         * device/lib/sprintf.c: totally refactored printf_large and vprintf
4981           into these 3 files
4982         * support/regression/Makefile: changed ALL_PORTS into a usefull default
4983         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
4984         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
4985           hc08 test
4986         * support/regression/tests/zeropad.c: define idata as data for hc08
4987
4988 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4989
4990         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
4991         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
4992         labels are referenced at least once (even if a reference is not found)
4993         * src/hc08/gen.c (emitcode): set isComment flag for comments
4994         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
4995         loads), rules 6a..6b (optimize jumps to return)
4996
4997 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4998
4999         * device/lib/acosf.c (acosf),
5000         * device/lib/asinf.c (asinf),
5001         * device/lib/atanf.c (atanf),
5002         * device/lib/ceilf.c (ceilf),
5003         * device/lib/cosf.c (cosf),
5004         * device/lib/coshf.c (coshf),
5005         * device/lib/cotf.c (cotf),
5006         * device/lib/fabsf.c (fabsf),
5007         * device/lib/floorf.c (floorf),
5008         * device/lib/log10f.c (log10f),
5009         * device/lib/logf.c (logf),
5010         * device/lib/sinf.c (sinf),
5011         * device/lib/sinhf.c (sinhf),
5012         * device/lib/sqrtf.c (sqrtf),
5013         * device/lib/tanf.c (tanf),
5014         * device/lib/tanhf.c (tanhf),
5015         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5016         replaced all instances of "reentrant" in the library functions
5017         defined in math.h with this macro.
5018         * support/regression/tests/float_trans.c: reenabled test for hc08
5019
5020 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5021
5022         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5023         erroneously deleted
5024
5025 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5026
5027         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5028         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5029         multi-byte volatile operands are used
5030         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5031         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5032         initialization to area GSINIT0 so that it would always precede
5033         any static initializers in GSINIT
5034         * support/regression/tests/zeropad.c: fixed idata define for hc08
5035         * support/regression/tests/bug-927659.c,
5036         * support/regression/tests/float_trans.c: disabled tests for hc08
5037         pending missing library routines
5038         * .version: increased version number to 2.4.4 - hc08 port now passes
5039         regression tests
5040
5041
5042 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5043
5044         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5045         * Makefile.common.in,
5046         * as/Makefile,
5047         * as/hc08/Makefile.in,
5048         * as/mcs51/Makefile.in,
5049         * as/z80/Makefile.in,
5050         * debugger/mcs51/Makefile.in,
5051         * device/include/Makefile.in,
5052         * device/lib/Makefile.in,
5053         * doc/Makefile,
5054         * link/Makefile,
5055         * link/z80/Makefile.in,
5056         * packihx/Makefile.in,
5057         * sim/ucsim/main_in.mk,
5058         * sim/ucsim/avr.src/Makefile.in,
5059         * sim/ucsim/doc/Makefile.in,
5060         * sim/ucsim/gui.src/serio.src/Makefile.in,
5061         * sim/ucsim/hc08.src/Makefile.in,
5062         * sim/ucsim/s51.src/Makefile.in,
5063         * sim/ucsim/xa.src/Makefile.in,
5064         * sim/ucsim/z80.src/Makefile.in,
5065         * src/Makefile.in,
5066         * support/cpp2/Makefile.in,
5067         * support/librarian/Makefile,
5068         * support/makebin/Makefile: added DESTDIR to the install path proposed
5069         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5070         * doc/sdccman.lyx: added DESTDIR documentation
5071
5072 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5073
5074         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5075         instruction for interrupt handlers, use fast returns when returning
5076         from high priority interrupts
5077
5078 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5079
5080         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5081         code generation
5082         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5083         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5084         bugs, ported much of Bernhard's code from mcs51
5085         * src/mcs51/gen.c (genSend),
5086         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5087         than one when calling a reentrant function
5088         * device/lib/_mullong.c: defined an alternate struct layout for big
5089         endian ports (hc08)
5090
5091 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5092
5093         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5094         test
5095
5096 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5097
5098         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5099         are sane and complete before asking the port its prefered parameter
5100         passing method (fixes bug #1017633)
5101         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5102         and _ret3
5103
5104 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5105
5106         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5107         problem in bitfields >= 8 bits.
5108
5109 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5110
5111         * src/SDCCsymt.c: undid changes that were not meant to be committed
5112
5113 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5114
5115         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5116
5117 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5118
5119         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5120           copied and wrong bit got inverted
5121
5122 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5123
5124         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5125         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5126         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5127         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5128         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5129         assignments to bitfields at known addresses
5130         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5131         reads from bitfields at known addresses
5132         * src/hc08/ralloc.c (packRegisters),
5133         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5134         genhc08Code): optimize pointer get values used as conditionals
5135         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5136         and branch
5137
5138 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5139
5140         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5141         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5142         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5143         as conditionals
5144
5145 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5146
5147         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5148
5149 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5150
5151         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5152         related problems
5153
5154 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5155
5156         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5157
5158 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5159
5160         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5161         mcs51 port
5162
5163 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5164
5165         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5166
5167 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5168
5169         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5170         cases use more compact code.
5171
5172 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5173
5174         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5175
5176 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5177
5178         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5179
5180 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5181
5182         * src/SDCCsymt.h,
5183         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5184         parameter of changePointer() from symbol* to sym_link*
5185         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5186         * src/SDCCsymt.c (compareType): void* type is castable to other
5187         pointers, but not necesarily an exact match.
5188         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5189         is no longer blindly treated as an exact match.
5190         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5191
5192 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5193
5194         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5195
5196 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5197
5198         * src/pic/gen.c,
5199         * src/pic/pcode.c,
5200         * src/pic/ralloc.h,
5201         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5202
5203 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5204
5205         * src/pic/device.c,
5206         * src/pic/device.h,
5207         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5208
5209 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5210
5211         * src/mcs51/gen.c (emitcode): fixed bug #992819
5212
5213 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5214
5215         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5216           there's no need to make it worse
5217
5218 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5219
5220         * src/mcs51/ralloc.c (deassignLR),
5221         * src/ds390/ralloc.c (deassignLR),
5222         * src/hc08/ralloc.c (deassignLR),
5223         * src/z80/ralloc.c (deassignLR),
5224         * src/pic/ralloc.c (deassignLR),
5225         * src/pic16/ralloc.c (deassignLR),
5226         * src/avr/ralloc.c (deassignLR),
5227         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5228         rlivePoint): fixed another part of bug #971834
5229
5230 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5231
5232         * src/z80/main.c: enabled "critical" keyword
5233         * src/z80/mappings.i,
5234         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5235         functions (fixes bug #979646)
5236         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5237
5238 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5239
5240         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5241           such as c:\mydir.
5242
5243 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5244
5245         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5246           doesn't disable too much optimizations
5247
5248 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5249
5250         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5251
5252 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5253
5254         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5255
5256 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5257
5258         * src/pic/gen.c tidied up tabs
5259         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5260         * src/pic/main.c tidied up tabs
5261         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5262         * src/pic/pcoderegs.c tidied up tabs
5263         * src/pic/ralloc.c tidied up tabs
5264
5265 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5266
5267         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5268         to S_FIXED for pic16 port and when symbol is not in level 0,
5269         allocate for S_REGISTER storage class and pic16 port, too,
5270         * src/pic16/device.h: prototype for checkSym,
5271         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5272         * (pic16_assignConfigWordValue): test the value and the mask to
5273         validate that the value is suitable for the configuration word,
5274         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5275         collect extern declared symbols, don't emit symbol twice, check
5276         first if symbol is in publics set first,
5277         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5278         * added command line '--fstack' which enables an experimental
5279         feature for stack access, too buggy to be used yet...
5280         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5281         * (pic16_allocDirReg): when register has storage class S_REGISTER
5282         allocate in pic16_dynAccessRegs,
5283         * device/include/pic16/pic18f????.h: modified configuration word
5284         naming convention, words started as CONFIG0H but should be CONFIG1H
5285
5286 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5287
5288         * device/include/mcs51reg.h: fixed bug 970993
5289
5290 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5291
5292         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5293         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5294         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5295         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5296         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5297         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5298           error/warning numbers,
5299           added function setWarningDisabled()
5300         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5301         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5302           _memcmp.c _memmove.c calloc.c realloc.c free.c
5303         * support/regression/tests/malloc.c: added tests for new functionality
5304         * support/regression/tests/zeropad.c: added tests for truncated initializers
5305           and initialized char arrays starting with '\x0'
5306         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5307
5308 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5309
5310         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5311
5312 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5313
5314         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5315         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5316         peephole 177.e. Thanks to anonymous
5317
5318 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5319
5320         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5321         function isn't used in the source but referenced as a
5322         variable initializer then declare it as extern in .asm file
5323
5324 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5325
5326         * .version: increased version number to 2.4.3
5327
5328         Adding version extension according to ChangeLog CVS revision
5329         * src/Makefile.in (target all): added dependency 'version.h'
5330         * (rule version.h): added rule to create version.h from ChangeLog,
5331         * (rule dep): added dependency version.h,
5332         * src/version.awk: AWK script to create version.h
5333         * src/SDCCdwarf2.c (dwWriteModule),
5334         * src/SDCCglue.c (initialComments),
5335         * src/SDCCmain.c (printVersionInfo): modified to write after
5336         version string the version extension number,
5337         * src/SDCCutil.c: included "version.h"
5338         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5339         number,
5340         * src/SDCCutil.h: added prototype for getBuildNumber
5341
5342         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5343         includeDirsSet, too,
5344         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5345         const char [] is found in function prototype...
5346
5347         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5348         moving to WREG with source is already in WREG,
5349         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5350         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5351         * (aopForSym): stack'ed symbols are partially supported, added
5352         if-clause to support symbols in FARSPACE,
5353         * (sameRegs): added test for AOP_ACC to see if registers are same,
5354         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5355         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5356         * (pic16_popRegFromString): will not allocate a new register if it
5357         doesn't find one by name, bug may have introduced...
5358         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5359         * (genIpush): revived to use pic16 port's stack,
5360         * (genAddrOf): added incomplete case for stack'ed operand,
5361         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5362         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5363         can handle multibyte operands,
5364         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5365         * (pic16initialComments): added message for MPLAB compatibility
5366         mode enabled,
5367         * src/pic16/main.h: prototype for pic16_mplab_comp,
5368         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5369         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5370         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5371         because of increased complexity of procedure,
5372         * (_process_pragma): stack pragma changed to format 'stack pos len',
5373         emit symbol '_stack_end' to conform with gplink,
5374         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5375         to search for register,
5376         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5377         PO_GPR_REGISTER,
5378         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5379         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5380         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5381         case for PO_GPR_REGISTER,
5382         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5383         dies, the new era is ahead !...
5384         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5385         pic16_dynInternalRegs,
5386         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5387         * (pic16_allocDirReg): minor optimizations and bug fixes,
5388         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5389
5390         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5391         load stack and frame pointer with address of 'stack_end' symbol
5392
5393 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5394
5395         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5396         without source code but only variable initializers
5397
5398 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5399
5400         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5401         external are not declared as extern to reduce overhead while linking
5402
5403 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5404
5405         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5406
5407 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5408
5409         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5410           Yee Keat for the patch
5411         * src/SDCCast.c (decorateType): fixed bug #979599
5412         * src/ds390/gen.h: removed local fReturnSizeDS390
5413         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5414         * src/ds390/gen.c (genAnd, genOr, genXor),
5415         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5416
5417 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5418
5419         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5420         add relFilesSet to $3, manipulate $2 to handle linking of object
5421         files without source files in command line,
5422         * device/include/pic16 (all headers): added ID location macros,
5423         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5424         entries for ID location bytes,
5425         * (pic16_assignIdByteValue): NEW,
5426         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5427         added field dumpcalltree to pic16_options_t,
5428         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5429         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5430         emitting rFalseIfx label after check_carry label,
5431         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5432         pic16_emitDIRegs), NEW
5433         * (pic16glue): dump .calltree file when option --calltree found,
5434         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5435         * (_pic16_genAssemblerPreamble): emit ID locations after
5436         configuration registers,
5437         * (pic16_linkCmd): modifications of the link command,
5438         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5439         * (pic16_pCodeInitRegisters): don't init stack registers,
5440         * (pic16_findPrevInstruction): fixed bug,
5441         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5442         bug with immediate registers,
5443         * (buildCallTree): traces stack push and pop,
5444         * (pct2): dump also stack usage for each function,
5445         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5446         * (pic16_allocDirReg): various modifications,
5447         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5448         fixed to 1,
5449
5450 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5451
5452         * src/pic16/pcode.c: removed buggy double colon
5453
5454 2004-07-01 Borut Razem <borut.razem AT siol.net>
5455
5456         * support/scripts/sdcc.nsi: added include/pic16 to setup
5457
5458 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5459
5460         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5461         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5462         target 'clean',
5463         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5464         specific command line arguments. Also added sample lkr script
5465         for placing a variable at a specific memory bank.
5466         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5467         at a specific memory bank,
5468         * (pic16_dump_isection): fixed bug which caused string literals to
5469         be omitted when dumping idata section,
5470         * (pic16_groupRegistersInSection): added code to handle registers
5471         in specific memory banks,
5472         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5473         public, all references are renamed too,
5474         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5475         AOP_DPTR2,
5476         * (pic16_storeForReturn): added case to handle when dest is WREG,
5477         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5478         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5479         pic16_rel_udata, check to see if that register is marked as being
5480         a member of a specific memory bank,
5481         * (pic16_printIvalCharPtr): added code to add string literals either
5482         to code or the idata sections,
5483         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5484         also accept the 'udata' pragma,
5485         * src/pic16/main.h: new structure types sectName and sectSym
5486         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5487         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5488         * (pic16_findPrevInstruction): fixed, it returned nothing,
5489         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5490         instruction combinations,
5491         * (pic16_FixRegisterBanking): heavily reorganised,
5492         * (pic16_AnalyzeBanking): if generating banksel directives is
5493         disabled, then don't call FixRegisterBanking at all,
5494         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5495         completely removed,
5496         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5497
5498 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5499
5500         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5501         Phuah Yee Keat <yk.phuah AT nestac.com>
5502
5503 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5504
5505         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5506         correctly the IVT even if it is relocated to some other location
5507
5508 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5509
5510         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5511         * device/include/pic16/pic18f2220.h: NEW,
5512         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5513         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5514         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5515         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5516         nodefaultlibs, ivt_loc is the location of the interrupt vector
5517         table, and nodefaultlibs signs that default libraries should not be
5518         linked in link stage,
5519         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5520         according to --ivt-loc argument,
5521         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5522         when pragma stack is found,
5523
5524 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5525
5526         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5527         256 (range check), 257 (do while), 258.a-f (bit banging
5528         f.e. on 3-wire SPI bus)
5529
5530 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5531
5532         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5533         variables used exclusively within a loop
5534
5535 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5536
5537         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5538
5539 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5540
5541         * src/SDCClrange.c (computeClash): fixed bug #971834
5542
5543 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5544
5545         * src/mcs51/gen.c (genCmp): fixed bug #975903
5546         * src/hc08/gen.c (operandsEqu),
5547         * src/ds390/gen.c (operandsEqu),
5548         * src/z80/gen.c (operandsEqu),
5549         * src/pic/gen.c (operandsEqu),
5550         * src/pic16/gen.c (operandsEqu),
5551         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5552         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5553
5554 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5555
5556         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5557
5558 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5559
5560         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5561         default case in switch statement,
5562         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5563         to eliminate problem with initialisation of pointers, but problem
5564         still exists,
5565         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5566         * (emitStaticSegment): removed various lines emitting debug info,
5567         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5568         added processor registers for utilizing EEPROM,
5569         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5570         configurable and set 8
5571
5572 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5573
5574         * .version: increased version number to 2.4.2,
5575
5576         Cumulative patch for pic16 port
5577         * src/pic16/device.c: changed scheme to dump initial values for
5578         variables in idata segment, all print_idata* functions were removed,
5579         now the pic16_printIval* will be called,
5580         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5581         * _pic16_printPointerType, pic16_printPointerType,
5582         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5583         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5584         NEW, similar to the respective functions in SDCCglue.c,
5585         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5586         way, emitting hex bytes,
5587         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5588
5589 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5590
5591         * src/avr/ralloc.c (serialRegAssign),
5592         * src/xa51/ralloc.c (serialRegAssign),
5593         * src/pic/ralloc.c (serialRegAssign),
5594         * src/pic16/ralloc.c (serialRegAssign),
5595         * src/hc08/ralloc.c (serialRegAssign),
5596         * src/z80/ralloc.c (serialRegAssign),
5597         * src/ds390/ralloc.c (serialRegAssign),
5598         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5599
5600 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5601
5602         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5603         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5604
5605 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5606
5607         Cumulative patch for pic16 port:
5608         * src/pic16/device.h (typedef PIC16_device) modified fields for
5609         defining microcontrollers,
5610         * src/pic16/device.c: added new info for all devices in Pics16 array,
5611         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5612         to be optimised out by the pCode optimiser,
5613         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5614         specially, bug reported by G.M. Gallant,
5615         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5616         as force'd so that cannot be optimised out by pCode optimiser,
5617         * src/pic16/pcode.c,
5618         * src/pic16/pcodepeeph.c,
5619         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5620         they are disabled by default, but can be enabled explicit with
5621         command argument --denable-peeps, for testing,
5622         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5623         --pomit-ivt in COMPILE_FLAGS
5624
5625 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5626
5627         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5628           compilation on MSVC
5629
5630 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5631
5632         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5633
5634 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5635
5636         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5637         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5638
5639 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5640
5641         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5642         would only assign 0x300001 register.
5643
5644 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5645
5646         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5647         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5648
5649 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5650
5651         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5652         for ds80c400
5653         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5654         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5655         added peephole 254 (left shift), 255 (jump table)
5656
5657 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5658
5659         * device/lib/Makefile.in: removed comment line with model-pic16,
5660         * (target port-specific-objects-pic16): the libraries and objects
5661         are copied to the build directory form the device/lib/pic16/bin
5662         directory
5663
5664         Cumulative patch concerning pic16 port:
5665         * library directory has been re-organized,
5666         * added support for PIC18F1220,
5667         * added headers and library sources for chips 18f1220,18f6520,
5668         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5669
5670         * configuration registers setting has changed, now each supported
5671         device has a complete description of the registers it uses,
5672         * all initialisations are moved to idata sections, these section
5673         can be absolute or relocatable,
5674         * fixed initialisation of codespace variables,
5675         * fixed warning about PCLATU and gpsim,
5676         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5677         * (genAssign): use table reads when assigning from variables in codespace,
5678         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5679         char/int variables placed in codespace,
5680         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5681         registers set in .asm file, no need for --pomit-config-words anymore,
5682         * (pic16glue): some 8051 legacy segments are commented out
5683         (to be removed completely),
5684         * added support for alternative assembler and linker with --asm=
5685         and --link= command line arguments,
5686         * peepholes are disabled automatically in the port, no need to
5687         specify on command line,
5688         * port supports natively char/int/long multiplication, but converts
5689         all divisions to support functions,
5690         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5691         to the file set in variable $2,
5692         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5693         strings in ASCII format and not in hex,
5694         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5695         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5696         allocate proper register if iCodes aren't temporary,
5697
5698 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5699
5700         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5701
5702 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5703
5704         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5705         is commented out
5706
5707 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5708
5709         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5710         computed address is reused
5711         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5712         multi-byte bitfields
5713
5714 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5715
5716         * src/z80/gen.c: (genArrayInit): must check for pointers too
5717
5718 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5719
5720         * support/regression/tests/zeropad.c: never meant to commit the
5721           nestedstruct test: removed, added check for GCC version
5722
5723 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5724
5725         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5726         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5727         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5728           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5729           bugs 928906 and 954082 half-empty initializers
5730         * src/SDCCsymt.h,
5731         * src/SDCCsymt.c (getAllocSize): added for above fix
5732         * src/z80/gen.c (genArrayInit): fixed bug 741044
5733         * support/regression/tests/zeropad.c: added tests
5734
5735 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5736
5737         * src/pic16/device.c (pic16_dump_section): corrected bug which
5738         caused some symbols of the libraries to be misplaced
5739
5740 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5741
5742         * src/pic16/glue.c,
5743         * src/pic16/ralloc.h,
5744         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5745         to fix conflict with pic port
5746
5747 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5748
5749         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5750         externs configuration variables,
5751         * src/pic16/ralloc.h,
5752         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5753         prototype in header, commented out some debug messages
5754
5755 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5756
5757         * src/pic16/glue.c,
5758         * src/pic16/main.c,
5759         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5760         for gpasm COFF object generation. Thanks to D. Hawkins for
5761         his patch info
5762
5763 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5764
5765         * src/ds390/main.c,
5766         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5767         Brock for spotting this)
5768         * src/ds390/gen.c (genEndFunction),
5769         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5770         interrupt handler and critical. Disable push/pop optimizations when
5771         peephole optimizations disabled.
5772
5773 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5774
5775         Updated pic16 library sources and headers.
5776         * device/lib/pic16/pic18f*/ ,
5777         * device/include/pic16/*.h: modified to handle structured SFR
5778         definitions
5779
5780 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5781
5782         * src/port.h (PORT structure): added hook initPaths, now each
5783         port can declare its own default search paths,
5784         which can been seen with the --print-search-dirs option,
5785         see pic16 port for example,
5786         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5787         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5788         * (doPrintSearchDirs): NEW, replaces in a central manner the
5789         printing of search dirs which was split in set*Paths functions,
5790         * (main): added call to port->initPaths and doPrintSearchDirs,
5791         * src/avr/main.c,
5792         * src/ds390/main.c,
5793         * src/hc08/main.c,
5794         * src/izt/i186.c,
5795         * src/izt/tlcs900h.c,
5796         * src/mcs51/main.c,
5797         * src/pic/main.c,
5798         * src/pic16/main.c: modified port structures to reflect addition of
5799         initPaths hook,
5800
5801         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5802         * (pic16_dump_section): for registers in same address reserve memory once,
5803         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5804         to no_banksel,
5805         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5806         result is greater in size than right or left,
5807         * (pic16_genUMult8X8_8): there are some cases where the result can
5808         be 16 bits size, so handle these,
5809         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5810         * (pic16_outBitC): modified to emit pcodes,
5811         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5812         or not,
5813         * (genDivOneByte): implemented algorithm to divide 8-bits,
5814         * (genCmp): uncommented goto, but issues still exist,
5815         * (genAnd): fixed a bug with variables >8bits,
5816         * (genPackBits): optimization added that uses BCF/BSF to change a
5817         single bit,
5818         * (genAssign): fixed bug when assigning floating point literals,
5819         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5820         __sdcc_gsinit_startup label,
5821         * src/pic16/main.c (_pic16_init): removed search directory
5822         initialisations,
5823         * (_pic16_initPaths): NEW, used to initialise search directories,
5824         * (_hasNativeMulFor): support functions for all except char/int
5825         multiplication, and char division,
5826         * (PIC16_port struct): modified entry for native mul support,
5827         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5828         no_banksel option,
5829         * (buildCallTree): call to register_usage is ifdef'ed out,
5830
5831 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5832
5833         * device/include/string.h: applied Stas Sergeev's patch to make this
5834         header file compatible with the preprocessor -Wundef option
5835         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5836         failure (fixes bug #941458)
5837
5838 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5839
5840         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5841         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5842         that the variable, not the function, should be static
5843         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5844         to be consistent with non-literal case
5845
5846 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5847
5848         * src/SDCCast.c (isConformingBody): fixed bug #949967
5849         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5850         convilong): fixed bug #952086
5851
5852 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5853
5854         * src/SDCCmem.c (allocVariables): fixed bug #955321
5855
5856 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5857
5858         * src/hc08/main.c (_hc08_genAssemblerEnd),
5859         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5860         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5861         completely eliminated the use of a temporary file
5862         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5863         when more than one file linked
5864         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5865
5866 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5867
5868         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5869         which fixes bug #543481
5870         * support/regression/tests/bug-751703.c: fixed comments left from a
5871         cut and paste error
5872         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5873         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5874         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5875         scopes
5876         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5877         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5878         are now changed to underscores in moduleName
5879
5880 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5881
5882         * as/mcs51/lkmem.c: better fix for bug #954173
5883
5884 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5885         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5886
5887         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5888         * device/include/c8051f000.h,
5889         * device/include/c8051f120.h,
5890         * device/include/c8051f300.h,
5891         * device/include/c8051f310.h,
5892         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5893         PWM16) and detab'ed
5894
5895 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5896
5897         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5898         and mailing lists, doc'ed --no-peep-comments, removed reference
5899         to knoppix (newest version has no LyX/LaTeX), other minor changes
5900         * src/SDCCglue.c (glue): save 2 bytes stack space with
5901         option --main-return. The ljmp could probably be avoided too
5902
5903 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5904
5905         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5906
5907 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5908
5909         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5910         * src/SDCCopt.c (isLocalWithoutDef),
5911         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5912         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5913         (credit to Maarten Brock for patch #949363, on which this is based)
5914         * support/regression/tests/bug-751703.c: some test cases of extern used
5915         within inner scopes.
5916
5917 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5918
5919         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5920         SPEC_STRUCT
5921         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5922         struct definitions
5923         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5924         dwWriteLabel): fix to create valid debugger symbols even when
5925         the module name has non-alphanumeric symbols in it
5926         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5927         when a variable's allocation has been optimized away
5928
5929
5930 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5931
5932         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5933         * src/hc08/main.c,
5934         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5935         * src/mcs51/main.c,
5936         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5937         * src/ds390/main.c,
5938         * src/z80/gen.c (z80_emitDebuggerSymbol),
5939         * src/z80/main.c,
5940         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5941         * src/pic/main.c,
5942         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5943         * src/pic16/main.c,
5944         * src/avr/gen.c (avr_emitDebuggerSymbol),
5945         * src/avr/main.c,
5946         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5947         * src/xa51/main.c,
5948         * src/SDCCdebug.c (emitDebuggerSymbol),
5949         * src/SDCCdebug.h,
5950         * src/port.h: added a debugger struct to the port struct. Added a
5951         callback for defining debugger symbols
5952
5953         * src/SDCCast.c (createLabel),
5954         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5955         with isitmp = 1
5956         * src/SDCCicode.h,
5957         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5958         iCode back to the ast for the function
5959
5960         * src/hc08/ralloc.c (hc08_assignRegisters),
5961         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
5962         unneeded fields from the regs struct.
5963         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
5964         pushReg() & pullReg() functions instead of emitcode()
5965
5966         * src/hc08/gen.c (genLabel, genhc08Code),
5967         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
5968
5969         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
5970         debugger hooks
5971
5972         * src/hc08/gen.c (genEndFunction, genhc08Code),
5973         * src/hc08/gen.h,
5974         * src/mcs51/gen.c (genEndFunction, gen51Code),
5975         * src/mcs51/gen.h,
5976         * src/ds390/gen.c (genEndFunction, gen390Code),
5977         * src/ds390/gen.h,
5978         * src/z80/gen.c (genEndFunction, genZ80Code),
5979         * src/z80/gen.h,
5980         * src/z80/z80.h,
5981         * src/pic/gen.c (genEndFunction, genpic14Code),
5982         * src/pic/gen.h,
5983         * src/pic16/gen.c (genEndFunction, genpic16Code),
5984         * src/pic16/gen.h,
5985         * src/avr/gen.c (genEndFunction, genAVRCode),
5986         * src/avr/gen.h,
5987         * src/xa51/gen.c (genEndFunction, genXA51Code),
5988         * src/xa51/gen.h,
5989         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
5990         specific code to cdbFile.c and out of the backend code generators
5991
5992         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
5993         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
5994         starting address is now 0
5995
5996         * as/hc08/asm.h,
5997         * as/hc08/m08pst.c,
5998         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
5999         assembler directive for DWARF support
6000         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6001
6002         * src/src.dsp,
6003         * src/Makefile.in,
6004         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6005
6006 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6007
6008         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6009         and inappropriate peephole optimization in jump tables
6010
6011 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6012
6013         * as/hc08/m08pst.c,
6014         * src/SDCCglue.c: sdccopt works for the hc08 port now
6015
6016 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6017
6018         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6019
6020 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6021
6022         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6023
6024 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6025
6026         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6027         rules
6028         * src/SDCCmain.c,
6029         * src/SDCCglobl.h,
6030         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6031         comments from the peephole optimizer replacement rules
6032         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6033         symbols
6034         * src/SDCCcse.c (updateSpillLocation),
6035         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6036         equivalents
6037         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6038         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6039         objects far pointers
6040
6041 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         * src/SDCCsymt.h: a missing part of my last change
6044         * src/pic/ralloc.c (regTypeNum),
6045         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6046
6047 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         * src/SDCCicode.h,
6050         * src/SDCCicode.c (aggrToPtrDclType),
6051         * src/SDCCptropt.h,
6052         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6053         ptrPseudoSymConvert),
6054         * src/pic/ralloc.c (regTypeNum),
6055         * src/pic16/ralloc.c (regTypeNum),
6056         * src/hc08/ralloc.c (regTypeNum),
6057         * src/ds390/ralloc.c (regTypeNum),
6058         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6059         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6060
6061 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6062
6063         * link/z80/lkmain.c (afile),
6064         * as/hc08/lkmain.c (afile),
6065         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6066         prevent a pointer problem when a filename has no directory and
6067         no extension specified.
6068
6069 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6070
6071         * link/z80/lkmain.c (afile): allow periods in directory names
6072         * link/z80/lkmain.c (afile),
6073         * as/mcs51/lkmain.c (afile),
6074         * as/hc08/lkmain.c (afile): allow linker script file to have an
6075         extension other than ".lnk"
6076         * link/z80/lklex.c (getfid),
6077         * link/z80/lkmain.c (parse),
6078         * as/mcs51/lklex.c (getfid),
6079         * as/mcs51/lkmain.c (parse),
6080         * as/hc08/lklex.c (getfid),
6081         * as/hc08/lkmain.c (parse): Support comments in the linker script
6082         file on lines by themselves and after filenames
6083
6084 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6085
6086         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6087
6088 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6089
6090         * src/z80/peeph-z80.def: removed some peephole rules that don't
6091         work with multibyte arithmetic (fixed bug #937126)
6092         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6093         to registers and not global variables
6094         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6095         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6096         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6097         checking for assignments not internally generated (fixed bug #931895)
6098         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6099         structure member (fixed bug #930072)
6100
6101 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6102
6103         * src/SDCCmain.c (linkEdit),
6104         * src/hc08/main.c (_hc08_parseOptions),
6105         * as/hc08/Makefile.in,
6106         * as/hc08/aslink.h,
6107         * as/hc08/asm.h,
6108         * as/hc08/m08pst.c,
6109         * as/hc08/lkrloc.c (relr, rele),
6110         * as/hc08/lkarea.c (lnkarea)
6111         * as/hc08/lkmain.c (afile, parse),
6112         * as/hc08/lkelf.c: support for ELF output
6113         * as/hc08/lks19.c (s19),
6114         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6115
6116 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6117
6118         * as/mcs51/lkihx.c: Fixed bug #899105.
6119
6120 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6121
6122         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6123         .dsp files from Unix to DOS.
6124
6125 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6126
6127         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6128         function pointers; we have been compliant for several months now.
6129         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6130         change that was accidently commented out
6131         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6132         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6133         bug #922319
6134
6135 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6136
6137         * src/hc08/gen.c: output of all of the internal debugging information
6138         is now controlled by the D() macro; it is disabled by default
6139
6140 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6141
6142         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6143         harder to keep the same registers during a CAST iCode
6144         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6145         long via int can be done in a single cast, if the signedness is
6146         correct.
6147         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6148         putchar() in tinibios.c in ds390's library
6149
6150 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6151
6152         * src/SDCCast.c (decorateType): fixed bug #898889,
6153         cast result of a literal complement too
6154         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6155         fixed check for bitfields
6156
6157 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6158
6159         * src/SDCCicode.c (geniCodeLogic): made it static,
6160         (geniCodeLogicAndOr): added in order to fix bug #905492,
6161         (ast2iCode): fixed bug #905492
6162         * support/regression/tests/bug-905492.c: added
6163         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6164         (processParms): fixed bug #927659: don't copy parms, this will clear
6165         decorated flag
6166         * support/regression/tests/bug-927659.c: added
6167
6168 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6169
6170         * src/SDCCast.c (addCast): don't cast float to char
6171         * device/lib/libsdcc.lib: added _memmove
6172
6173 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6174
6175         * device/lib/large/Makefile: fixed parallel execution by
6176         replacing `make` by `$(MAKE)`
6177
6178 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6181         offsets (fixes bug #923936)
6182
6183 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6184
6185         * device/lib/small/Makefile: fixed parallel execution by
6186         replacing `make` by `$(MAKE)`
6187
6188 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6189
6190         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6191
6192 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6193
6194         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6195         * src/regression/Makefile: Regression test was not running.
6196
6197 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6198
6199         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6200         complement if possible
6201         * src/SDCCval.c (valComplement),
6202         * src/SDCCicode.c (operandOperation): fixed complement of literal
6203         * support/regression/tests/onebyte.c (testComplement): added
6204
6205 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6206
6207         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6208         return an optimized tree; actually replace actParm with the new tree
6209         * src/SDCCast.h: added some parantheses to remove side effects
6210         * support/regression/tests/bug-920866.c
6211
6212 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6213         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6214         Bit operands were not being handled properly in the pic14 port.
6215         (now src/regression/add.c passes again).
6216
6217 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6218
6219         * src/SDCC.y (labeled_statement): case and default no longer require
6220         a following statement (RFE #893037)
6221
6222 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6223
6224         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6225         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6226         disabled (fixes bug #916294)
6227         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6228         "mov a,acc"; patch provided by Lenny Story
6229         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6230
6231 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6232
6233         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6234         functions
6235         * src/ds390/gen.c (genFunction, genEndFunction),
6236         * src/ds390/ralloc.c (ds390_assignRegisters),
6237         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6238         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6239         pushed if there are parameters passed on the stack. Also, a cleaner
6240         way to decide if r0/r1 should be pushed/popped. (Together they fix
6241         bug #918693)
6242
6243 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6244
6245         * doc/sdccman.lyx,
6246         * device/lib/mcs51/crtpagesfr.asm,
6247         * device/lib/mcs51/crtxinit.asm,
6248         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6249         to avoid confusion with Si Lab's SFRPAGE register.
6250
6251 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6252
6253         * src/SDCCglue.c (emitMaps): allow public sfr variables
6254         * src/SDCCglue.c (initialComments): include compiler build date
6255         with compiler version and put the timestamp of the generated
6256         assembly file on a serperate line to be less confusing.
6257         * src/port.h: added genInitStartup hook
6258         * src/avr/main.c,
6259         * src/ds390/main.c,
6260         * src/hc08/main.c,
6261         * src/pic/main.c,
6262         * src/pic16/main.c,
6263         * src/xa51/main.c,
6264         * src/z80/main.c: genInitStartup initialize as NULL (default to
6265         historical behaviour)
6266         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6267         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6268         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6269         library instead of hard coding it into the compiler.
6270         * support/regression/ports/mcs51-stack-auto/spec.mk,
6271         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6272         * device/lib/mcs51/Makefile,
6273         * device/lib/small/Makefile,
6274         * device/lib/large/Makefile,
6275         * device/lib/mcs51/crtpagesfr.asm,
6276         * device/lib/mcs51/crtstart.asm,
6277         * device/lib/mcs51/crtxclear.asm,
6278         * device/lib/mcs51/crtxinit.asm,
6279         * device/lib/mcs51/crtclear.asm,
6280         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6281         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6282         and into user configurable files.
6283         * device/lib/clean.mk: clean mcs51 directory too
6284         * support/regression/tests/longlit.c: added static to T1 declaration
6285         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6286         accesses in the initialization code
6287
6288 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6289
6290         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6291         OSCTRIMVAL as noted in bug #916008
6292
6293 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6294
6295         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6296         in loops with multiple exits (reported as incorrect registers
6297         used by Martin Helmling in Sdcc-user list)
6298
6299 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6300
6301         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6302         made ds390 register extensions look less like error messages
6303
6304 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6305
6306         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6307         reported by Adam Wozniak in Sdcc-user list
6308
6309 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6310
6311         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6312         arithmetic optimizations, added debug output
6313
6314 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6315
6316         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6317         * sdcc.spec: updated and split sdcc into 3 rpms
6318         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6319         needed for literals of LEFT_OP and '+'
6320         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6321         introduced RESULT_TYPE_NOPROM
6322         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6323         left shift
6324         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6325         limited promotion to int only for '*'
6326         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6327
6328 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6329
6330         * src/pic16/gen.c (genSkip),
6331         (genc16bit2lit), (gencjneshort): commented out
6332         (is_LitOp): new helper function, checks operand type
6333         (genCmpEq): rewritten
6334
6335 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6336
6337         * support/regression/tests/bug-908454.c: added
6338
6339 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6340
6341         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6342         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6343         (geniCodeCast): cosmetic, don't preserve bit storage class
6344         (geniCodeLeftShift): added promotion
6345         (geniCodeLogic): fixed regression
6346         * src/SDCCsymt.c (computeTypeOr): accept bits too
6347         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6348
6349 2004-03-07  Borut Razem <borut.razem AT siol.net>
6350
6351         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6352
6353 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6354
6355         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6356         version of pic16_genPackRegisters which does not check if ic is a
6357         CAST operator,
6358         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6359         function cause string1.c regression test fails
6360
6361 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6362
6363         * sim/ucsim/configure.in,
6364         * sim/ucsim/configure,
6365         * sim/ucsim/doc/Makefile.in: use docdir
6366         * src/SDCC.y: fixed sbit atrributes
6367         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6368         * src/SDCCast.c (decorateType): |^& need special promotion handling
6369         * src/SDCCast.h,
6370         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6371         * src/SDCCsymt.h (computeType),
6372         * src/SDCCicode.c: computeType() needs op
6373         * src/SDCCsymt.c (checkTypeSanity),
6374         * doc/sddman.lyx: "plain" bitfields are unsigned
6375         * src/SDCCsymt.c (computeTypeOr): added
6376         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6377         |^& ops
6378         * src/SDCCval.c (val*): computeType() needs op
6379         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6380         * support/regression/tests/onebyte.c: added tests for |^&
6381
6382 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6383
6384         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6385         for writing icode into asm output.
6386
6387 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6388
6389         * src/pic16/device.c: added some debug lines enabled
6390         with macro DEBUG_CHECK,
6391         * src/pic16/genarith.c: more debug in genPlus,
6392         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6393         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6394         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6395         * (aopForSym): onStack symbols are re-placed in data memspace,
6396         and onStack flag is cleared,
6397         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6398         copy temporary pcodeop,
6399         * (genPcall): added warning for not updating PCLATU,
6400         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6401         always true for pic16 port,
6402         * (genMultOneWord): NEW, supports integer multiplication,
6403         * (genMult): modified to call genMultOneWord,
6404         * (ifxForOp): added warning when return NULL,
6405         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6406         flag is set before call to operandFromSymbol for implicit
6407         added structures,
6408         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6409         options.intlong_rent are set by default,
6410         * (_hasNativeMulFor): modified to allow port generation of integer
6411         multiplication,
6412         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6413         set regtype to REG_SFR for all registers, restricting seting the
6414         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6415
6416 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6417
6418         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6419         more than 500 times in the regression tests
6420
6421 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6422
6423         * support/Util/SDCCerr.h,
6424         * support/Util/SDCCerr.c,
6425         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6426         enumerator_list),
6427         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6428         for symbol conflicts.
6429         * support/valdiags/tests/enum.c,
6430         * support/valdiags/tests/tentdecl.c,
6431         * support/valdiags/tests/struct.c: expect possible error messages
6432         referring to original symbol definitions.
6433         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6434         * src/SDCCsymt.h,
6435         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6436
6437 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6438
6439         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6440
6441 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6442
6443         * src/pic16/ralloc.c (newReg): fixed bug #908929
6444
6445 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6446
6447         * src/ds390/gen.c: added missing #include "main.h"
6448
6449 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6450
6451         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6452         checking if symbol is already in set,
6453         * src/pic16/device.h: prototype for checkAddSym,
6454         * src/pic16/gen.c: (_G): added entry interruptvector,
6455         * (assignResultValue): removed some commented out lines,
6456         * (genFunction): check for ISR via sym->type, absolute section for
6457         interrupt code is created via a new pBlock, the goto instruction is
6458         placed now correctly at the interrupt vector position, changed all
6459         references from ivec to _G.interruptvector,
6460         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6461         is the interrupt is a high priority one, same for return from ISR,
6462         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6463         externs to calls of checkAddSym,
6464         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6465         pic16_pcode_verbose flag is set,
6466         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6467         * src/pic16/pcoderegs.c: message about how many registers are saved
6468         will only be emitted if pic16_pcode_verbose flag is set,
6469
6470 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6471
6472         * src/ds390/ralloc.h,
6473         * src/ds390/ralloc.c (ds390_regWithIdx),
6474         * src/ds390/gen.c (emitcode),
6475         * src/ds390/main.h,
6476         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6477         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6478         ds390operandCompare, getRegsRead, getRegsWritten,
6479         initializeAsmLineNode): customized instruction size calculation for
6480         ds390, started basis for some register optimizations
6481         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6482         corresponding assembly output
6483         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6484         missing push/pop of r0/r1. Optimized push/pops
6485
6486 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6487
6488         * src/mcs51/main.c (instructionSize): fixed ACALL size
6489         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6490
6491 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6492
6493         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6494         the sorting of rlist with NULL elements
6495         * (print_idataType, print_idata): NEW to create idata sections
6496         * src/pic16/device.h: idataSymSet new variable
6497         * src/pic16/gen.c (genFunction): fixed some bugs in string
6498         comparing, improved the absolute section creation for ISRs,
6499         added FSR0L/FSR0H in registers that are saved in an ISR,
6500         * (genInline): fixed the processing of inline snippets,
6501         now they undergo no process by the peephole optimizer
6502         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6503         are placed in idataSymSet,
6504         * (pic16emitStaticSeg): extern symbols are added in externs,
6505         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6506         switching when aboslute variables are placed in access bank memory
6507         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6508         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6509         commented out with #if,
6510         * (pic16_packRegisters): reintroduce the check for CAST because some
6511         symbols are not correctly handled,
6512         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6513         pCodeInstruction instead of pCode,
6514         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6515         pCodeAsmDir definition,
6516         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6517         directive, then the argument directive is emitted without the leading
6518         tab, hack for inline labels which must be in the first column,
6519         * (compareLabel,pic16_findNextInstruction),
6520         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6521         * (insertBankSwitch): modified for the new pCodeAsmDir,
6522
6523 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6524         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6525
6526         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6527         instance,
6528         * (pushSide): commented out with #if,
6529         * (assignResultValue): fixed some typos in saving
6530         registers,
6531         * (genPcall): FIXED and sync'ed with genCall,
6532         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6533         * (genNearPointerGet): fixed to handle some more cases,
6534         implementation scheme via table reads,
6535         * (genConstPointerGet): modified to access code memory correct,
6536         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6537         and improved to handle some cases
6538         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6539         instead of "RETLW" for init data
6540         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6541         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6542         variables are placed in access bank memory (<0x80 and >=0xf80),
6543         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6544         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6545         TBLWT_POSTDEC,TBLWT_PREINC
6546         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6547         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6548         directives
6549         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6550         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6551         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6552         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6553
6554 2004-02-29  Borut Razem <borut.razem AT siol.net>
6555
6556         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6557         support/Util/findme.h, support/Util/system.h: enhance binary relative
6558         search for lib and include by using findProgramPath()
6559
6560 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6561
6562         * src/SDCCpeeph.h,
6563         * src/SDCCpeeph.c (pcDistance),
6564         * src/port.h,
6565         * src/mcs51/ralloc.h,
6566         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6567         * src/mcs51/main.h,
6568         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6569         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6570         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6571         size calculation port specific, started basis for some register
6572         optimizations
6573         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6574         missing push/pop of r0/r1. Optimized push/pops
6575         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6576         * device/lib/_modsint.c (_modsint),
6577         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6578         and stack version so regression tests pass
6579
6580 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6581
6582         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6583         * src/SDCCast.c (decorateType): catch another small optimization
6584         with '?' operator
6585         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6586         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6587         modified to finally use computeType() all over SDCC,
6588         see Feature Request #877103
6589         * src/SDCCval.h: cosmetic
6590         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6591         valCompare(); regression tested in muldiv.c
6592         * support/regression/tests/muldiv.c (testMod): mod sign follows
6593         dividend only
6594
6595 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6596
6597         * src/SDCCast.c (decorateType): fixed bug #902362
6598         * doc/INSTALL.txt: fixed install instructions for win32
6599
6600 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6601
6602         * device/include/Makefile.in (install): fixed by replacing spaces
6603         by tabs
6604         * doc/README.txt,
6605         * doc/INSTALL.txt: updated for release
6606         * doc/sdccman.lyx: added warning for --xstack being buggy
6607
6608 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6609
6610         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6611         to eliminate build warnings.
6612         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6613
6614 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6615            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6616
6617         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6618         removed -penable-stack, added comment for stack pragma, added
6619         warning for not initializing the stack/frame registers, removed
6620         comment at interrupts section
6621
6622         Stack is made permanent, there is no ability to disable stack usage.
6623         * src/pic16/device.h,
6624         * src/pic16/device.c: removed all references to USE_STACK macro,
6625         * src/pic16/device.c (pic16_dump_section): when no elements in
6626         rlist, free rlist before return,
6627         * (pic16_dump_int_registers): NEW, internal registers are a new set
6628         of general purpose registers reused by each function,
6629         * (checkAddReg): returns 1 if registers is added to set,
6630         * (pic16_groupRegistersInSection): when a registers is of type
6631         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6632         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6633         SRCASECMP macro is moved here from device.c
6634         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6635         PO_PCLATU, PO_PRODL, PO_PRODH,
6636         * (pic16_pCodeOpType, genMinus,
6637         changed compares to "a" register, with AOP_ACC,
6638         * (pic16_genPlus): fixed some bugs and indented properly,
6639         * (pic16_addSign): changed size to size+offset in the MOVWF
6640         instruction,
6641         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6642         multiply 8-bit operand by literal, result is 8-bit,
6643         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6644         multiply 2 8-bit operand, result is 8-bit,
6645         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6646         genUMult8X*_16,
6647         * src/pic16/gen.c: changed accUse to contain WREG only,
6648         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6649         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6650         true, do not use immediate addressing any more unless sym is a
6651         pointer in codespace,
6652         * (aopForRemat): do not use immediate addressing when symbol not in
6653         codespace and when symbol's address is requested,
6654         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6655         accUse size (= 1),
6656         * (aopGet): added case for AOP_ACC and don't return "accumulator
6657         bug" but WREG instead,
6658         * (popGetTempReg): pushes contents of temporary register in stack,
6659         * (popReleaseTempReg): pops contents of temporary register from
6660         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6661         * (pic16_popGet): separated case AOP_ACC to return register WREG
6662         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6663         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6664         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6665         the use of immediate pointers to certain cases only.
6666
6667         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6668         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6669         * (assignResultValue, genCall, genRet): modified to use the new
6670         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6671         genPcall is still broken,
6672         * (genFunction): added code to create 'A' type pBlocks when
6673         interrupt functions are generated, code not extensively tested yet,
6674         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6675         * (genEndFunction): modified so ISRs pop stored registers from stack,
6676         * (genMultOneByte): cleanup,
6677         * (AccRsh): added flag andmask, to and result with appropriate mask,
6678         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6679         * (genDataPointerGet): fixed and reenabled its use,
6680         * (genNearDataPointerGet): bugs fixed,
6681         * (genDataPointerSet): bugs fixed,
6682         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6683         pic16_DumpSymbol, pic16_DumpOp,
6684         * src/pic16/genutils.h: function prototypes for the above functions,
6685         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6686         pointers,
6687         * (pic16emitRegularMap): many many many improvements, but needs a
6688         major cleanup,
6689         * src/pic16/main.c: enable_stack in pic16_options is removed,
6690         * (_pic16_parseOptions): removed command line options -penable-stack,
6691         * (_process_pragma): emit stack symbol only when stack pragma is
6692         processed,
6693         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6694         redirected to FSR0L/FSR0H pair,
6695         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6696         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6697         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6698         for immediates,
6699         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6700         * (dumpPicOptype): NEW,
6701         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6702         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6703         with movff instruction,
6704         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6705         added pic16_int_regs, some packRegsFor* functions are commented out,
6706         because produce errors,
6707         * src/pic16/NOTES: minor modifications
6708
6709 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6710
6711         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6712         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6713         --pack-iram.
6714         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6715         * as/mcs51/lkaomf51.c: fixed bug #895763
6716
6717 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6718
6719         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6720
6721 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6722
6723         * doc/sdccman.lyx: added details about the HC08 storage classes and
6724         interrupts, fixed the register usage info for z80 & gbz80
6725
6726 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6727
6728         * doc/sdccman.lyx: added more pic16 port documentation
6729         * device/include/pic16/: added header pic18fregs.h
6730
6731 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6732
6733         * doc/sdccman.lyx: added Vangelis' contribution
6734
6735 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6736
6737         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6738         extend to the next CALL or PCALL, not just to the next CALL.
6739
6740 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6741
6742         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6743
6744 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6745
6746         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6747         bug #895752 and a better fix for bug #716790
6748
6749 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6750
6751         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6752
6753 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6754
6755         * doc/sdccman.lyx: minor changes, minor changed
6756
6757 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6758
6759         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6760         which can't handle SDCC_NEWONEBYTEOPS,
6761         (geniCodeMultiply): removed conversion from mult to shift for pic14
6762         and pic16
6763
6764 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6765
6766         * src/hc08/gen.h,
6767         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6768         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6769         thus fixing bug #895406
6770
6771 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6772
6773         * device/lib/_modsint.c,
6774         * device/lib/_modslong.c: sign follows divisor only
6775         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6776         signs or signedness can be ignored
6777         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6778         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6779         added optimization for IFX,
6780         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6781         arguments;
6782         reenabled optimization for IFX, which was removed on 2004-01-11
6783         * src/SDCCast.h: added return type IFX
6784         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6785         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6786         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6787         SDCC_OLDONEBYTEOPS selects the old behaviour
6788         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6789         changed again and commented promotion rule
6790         * src/SDCCval.c (valDiv): promotion no longer necessary
6791         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6792         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6793         rewritten
6794         * support/regression/tests/onebyte.c: added
6795
6796 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6797
6798         * gen.c (genInline): reverted to old code for assemnling inline
6799         code because of bug reported James Chadd
6800
6801 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6802
6803         * ralloc.h: missing declarations from previous patch,
6804         seems that patch for ralloc.h was never applied, fixed
6805
6806 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6807            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6808
6809         * pcode.c,
6810         * pcode.h,
6811         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6812         indirect addressing. Marked FSR0 as deprecated
6813         * gen.c (pointerCode): commented out, not needed now
6814         (pic16_popGet2p): new MOVFF helper function
6815         (genGenPointerGet),
6816         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6817         (shiftRLong): removed duplicate debugging info
6818
6819 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6820
6821         * src/ds390/gen.c (genNearPointerGet),
6822         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6823         optimization with bits, but not bitfields.
6824         * src/ds390/ralloc.c (packRegisters),
6825         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6826
6827 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6828
6829         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6830
6831 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6832
6833         * src/SDCCsymt.h,
6834         * src/SDCCicode.c (operandFromSymbol),
6835         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6836         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6837         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6838         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6839         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6840         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6841         bug #892038
6842         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6843         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6844         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6845         * src/SDCCsymt.c (newSymbol),
6846         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6847         enumerator_list),
6848         * src/SDCCval.h,
6849         * src/SDCCval.c (newiList): fixed bug #885705
6850
6851 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6852
6853         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6854         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6855
6856 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6857
6858         * device/include/c8051f120.h,
6859         * device/include/c8051f300.h,
6860         * device/include/c8051f310.h: added/updated header files for Silicon
6861         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6862         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6863         in new section Submitting patches
6864
6865 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6866
6867         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6868         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6869         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6870         genGenPointerSet),
6871         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6872         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6873         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6874         genGenPointerSet),
6875         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6876         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6877         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6878         genGenPointerSet),
6879         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6880         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6881         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6882         genGenPointerSet): fixed bug #892400
6883         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6884         to eliminate build warnings.
6885         * src/SDCCast.c (processParms),
6886         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6887         fixed bug 751859
6888         * support/valdiag/valdiag.py: added GCC to the list of defines active
6889         when compiling with gcc
6890
6891 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6892
6893         * support/Util/SDCCerr.h,
6894         * support/Util/SDCCerr.c,
6895         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6896         with an incomplete type (fixed bug #883734)
6897         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6898
6899 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6900
6901         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6902
6903 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6904
6905         * src/SDCCast.c (decorateType),
6906         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6907         function pointer implementation
6908         * support/regression/tests/funptrs.c: added tests to verify both forms
6909         of function pointers work correctly. Added tests to verify parameters
6910         are passed in the correct order.
6911
6912 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6913
6914         * device.c (regCompare): registers are sorted by ascending
6915         address and increasing size,
6916         * main.c (_pic16_finaliseOptions): removed the declaration
6917         of compiler macro MCU. Now a macro of the format pic18fxxxx
6918         will be defined from the command line
6919
6920 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6921             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6922
6923         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6924         PCOP_RLCF was overwritten!
6925         * gen.c (genSkip): commented out calls to pic16_emitcode,
6926         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6927         * (genlshTwo),
6928         * (genRRC): added debugging info,
6929         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6930         overwritten while shifting,
6931         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6932         overwritten while shifting,
6933         * (AccLsh),
6934         * (AccRsh),
6935         * (shiftLLeftOrResult),
6936         * (shiftRLeftOrResult),
6937         * (shiftRLong),
6938         * (shiftLLong): Implemented with pic16_emitpcode
6939         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6940         * (genLeftShift): Fixed bug, operand for shift by variable always
6941         was "and"ed with 0x0f,
6942         * (genLeftShiftLiteral),
6943         * (genrshTwo),
6944         * (genRightShiftLiteral): added debugging info,
6945         * (genrshFour): added comment,
6946         * (genRightShift): determined signedness from operand "left"
6947         instead of "result"
6948
6949 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         * src/SDCCicode.c (geniCodeParms),
6952         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6953         function pointers, fixed function pointer bugs #861242 and #861896
6954
6955 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6956
6957         * device/include/c8051f000.h,
6958         * device/include/c8051f120.h,
6959         * device/include/c8051f300.h: added header files for Silicon
6960         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6961
6962 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
6963
6964         * src/SDCCast.c (processParams): added new type flow and restructured
6965         (gatherAutoInit): added new type flow
6966         (addCast): cosmetic changes
6967         (getLeftResultType): added new type flow for array indices, patch
6968         provided by Stas, see FR #877103
6969         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
6970         array index patch by Stas
6971         * src/SDCCast.h: added prototype getResultTypeFromType()
6972         * src/SDCCval.h,
6973         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
6974         * src/pic/glue.c (pic14emitStaticSeg),
6975         * src/pic16/glue.c (pic16emitStaticSeg),
6976         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
6977         for initialization of symbols
6978         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
6979         * support/Util/SDCCerr.h:
6980         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
6981         * .version: bumped version number to 2.3.8
6982         * device/include/Makefile.in (install),
6983         * doc/Makefile (install): changed to 'rm `find ...`' construct to
6984         avoid warnings
6985
6986 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
6987
6988         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
6989         Slade Rich fixed an optimization bug
6990         * src/pic/pcodepeep.c,
6991         * src/pic/pcoderegs.c
6992         * doc/Makefile (install): added test for directory
6993
6994 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6995
6996         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
6997         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
6998         * src/pic/ralloc.c (getRegPtr, getRegGpr),
6999         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7000         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7001         * as/mcs51/asexpr.c (term),
7002         * as/hc08/asexpr.c (term): fixed bug #887146
7003
7004 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7005
7006         * src/z80/gen.c (genMult): handle single byte result product
7007         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7008         DUMMY_READ_VOLATILE (fixed bug #886367)
7009
7010 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7011
7012         * support/regression/tests/libmullong.c: fixed logic, on little endian
7013         hosts we ended without a mullong_wrapper()
7014
7015 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7016
7017         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7018         virus/worm forged address usage.
7019
7020 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7021
7022         Fixed promotion, it should be done on AST level:
7023         * src/SDCCast.c (addCast): added promotion to int
7024         (decorateType): updated call to upCast()
7025         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7026         usualUnaryConversions()
7027
7028 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7029
7030         * support/regression/tests/literalop.c (mulWrapper): Added a
7031         wrapper to remove integer overflow warnings.
7032
7033         * support/regression/tests/float_trans.c: Made work on host.
7034
7035         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7036         location of sz80.
7037
7038         * support/regression/generate-cases.py (main): Changed from inline
7039         to a main method.
7040
7041         * doc/Makefile (install): Changed to depth first to get rid of
7042         missing directory install warning.
7043
7044         * as/Makefile (install-doc): Made work on Mac.
7045
7046 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7047
7048         * src/SDCCast.c: added an additional type flow in decorateType() of
7049         opposite direction, see feature request #860006; it's enabled at runtime
7050         by setting the environment variable SDCC_NEWTYPEFLOW
7051         * src/SDCCast.h: changed prototype of decorateType()
7052         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7053         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7054         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7055         see feature request #877103
7056         * src/SDCCval.c: updated call of decorateType()
7057         (valBitwise): fixed bug #882876
7058         (valMinus): added promotion
7059         (valLogicAndOr): result is unsigned
7060         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7061         * src/SDCCsymt.c (computeType),
7062         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7063         must not cause an unsigned operation
7064         * src/pic/glue (pic14emitRegularMap),
7065         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7066
7067 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7068
7069         * src/pic/pcode.c (PCodeID): commented out left over debug code
7070
7071 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7072
7073         * support/valdiag/tests/overflow.c: added shift tests
7074         * src/pic/device.c,
7075         * src/pic/gen.c,
7076         * src/pic/gen.h,
7077         * src/pic/glue.c,
7078         * src/pic/main.c,
7079         * src/pic/pcode.c,
7080         * src/pic/pcode.h,
7081         * src/pic/pcodepeep.c,
7082         * src/pic/pcoderegs.c,
7083         * src/pic/ralloc.c,
7084         * src/pic/ralloc.h: applied patch from Slade Rich;
7085         added support for multiple code pages and multiple RAM banks on the
7086         PIC 14 port. The ASM files now no longer simply assume all the
7087         code / RAM are in the same page / bank. This means the linker can
7088         safely allocate code/RAM of separate ASM files to different pages/banks.
7089         * doc/sdccman.lyx: added Slade's tips
7090         * src/mcs51/peeph.def: fixed bug #880768
7091
7092 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7093
7094         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7095         * src/SDCCast.c (decorateType): fixed bug #880197
7096
7097 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7098
7099         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7100         getopt.h.
7101
7102         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7103         strtof is not part of C89 and isn't included with Mac OS X.
7104
7105 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7106
7107         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7108         shiftL2Left2Result): fixed bug #879326
7109         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7110         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7111         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7112         address fetch for clr instruction
7113         * device/lib/hc08/_mulint.c: created optimized assembly version
7114         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7115
7116 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7117
7118         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7119         proposed in FR #877103
7120
7121 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7122
7123         * src/SDCCval.c (cheapestVal): added missing checks
7124         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7125         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7126
7127 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7128
7129         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7130         equal operands
7131
7132 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7133
7134         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7135         loaded with the linker search paths (-L arguments) and the libraries
7136         to be linked with the current source (-l arguments). Changes
7137         currently will affect only the pic16 port.
7138         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7139         include path the port specific paths and port specific libraries,
7140         * gplink command now contains the $3 argument,
7141         * src/pic16/device.h,
7142         * src/pic16/device.c,: structure PIC_device is made public and
7143         renamed to PIC16_device, the same for variable Pics which is renamed
7144         to Pics16. Updated all references to them.
7145         * src/pic16/glue.c (pic16glue): corrected bug with code
7146         initialization which bypassed the variable initializations block.
7147
7148         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7149         COMPILE_FLAGS and added the --nostdinc option
7150
7151 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7152
7153         * device/include/mc68hc908jb8.h: Register defs for another member
7154         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7155
7156 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7157
7158         Documenting changes from previous commits.
7159         * configure.in (version 1.56),
7160         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7161         when generating output files to configure the pic16 library,
7162         but now I've commented it out, since gputils aren't installed in the
7163         SF compile farm, so library won't compile
7164
7165         * device/lib/Makefile.in (version 1.56): initially I've added in
7166         target 'all' the prerequestive 'model-pic16' so it compiled the
7167         pic16 library, but now I've commented it out for the same reasons
7168         above,
7169         * added targets 'model-pic16' and 'objects-pic16' to compile the
7170         library
7171         * added target 'port-specific-objects-pic16' to handle the
7172         generated libraries and copy them into the build/ directory
7173         * added target 'clean-intermediate-pic16' to clean intermediate
7174         files into pic16 directory
7175         * in target 'installdirs' added line to create directory pic16 in
7176         the installation path
7177
7178         * device/include/Makefile.in (version 1.11): in target 'install'
7179         added lines to copy all header files to installation path,
7180         * in target 'installdirs' added line create directory for pic16
7181         headers in the installation path
7182
7183 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7184
7185         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7186          a function call
7187
7188 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7189
7190         * configure,
7191         * device/lib/configure.in,
7192         * device/lib/configure: fixed for autoconf 2.57
7193
7194 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7195
7196         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7197         option so that it actually works. Made it specific to the z80, since
7198         the gbz80 doesn't have these kinds of I/O ports.
7199
7200 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7201
7202         * device/include/z180.h,
7203         * device/lib/_memcpy.c,
7204         * device/lib/_memmove.c,
7205         * device/lib/_mulint.c,
7206         * device/lib/ser_ir.c,
7207         * device/lib/ser_ir_cts_rts.c,
7208         * device/lib/_strcmp.c,
7209         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7210         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7211         portmode; added deprecation warning for bank= and protmode= forms.
7212         Also, guard against buffer overflow.
7213         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7214
7215 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7216
7217         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7218         changed interrupt vector table generation to only emit declared vectors.
7219         * device/include/Makefile.in: added missing backslash
7220         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7221
7222 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7223
7224         Mainly changes to support compilation of the device libraries
7225         * src/pic16/device.c: stack is allocated via symbol and not
7226         via literal number. The symbol is placed in the corresponding
7227         position of the data ram
7228         * (pic16_dump_section): relocatable and absolute uninitialized
7229         data are now emitted in sorted order to reduce section naming,
7230         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7231         weren't marked as being in the access bank,
7232
7233 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7234
7235         Added portion of GNU PIC Library under the directory
7236         device/include/pic16 and device/lib/pic16. These files
7237         contain the declarations of SFRs for the PIC18Fxx2 devices.
7238         The directory is initialized via configure from toplevel.
7239
7240 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7241
7242         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7243         the spilllocations to be compared correctly
7244
7245 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7246
7247         * src/SDCCast.c (decorateType): fixed bug introduced today
7248
7249 2004-01-12  Borut Razem <borut.razem AT siol.net>
7250
7251         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7252         doc/sdccman.lyx: upper case pragmas are deprecated
7253
7254 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7255
7256         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7257         in simpler and even better code
7258
7259 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7260
7261         * src/SDCCicode.c (operandOperation): fixed bug #874819
7262         * src/SDCCast.c (decorateType): fixed
7263         char foo (unsigned long ul) { return ul > 0; }
7264
7265 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7266
7267         * doc/sdccman.lyx: Moved and added some sections, small changes
7268         all over. Telling LaTeX to be less strict with word spacing
7269         to better keep the right margin. Changed some notes about
7270         maintainance of the ports in section 3.2.1 - is it OK like this?
7271
7272 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7273
7274         SDCC source changes:
7275         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7276         convilong): modified to inform the pic16 port that builtin functions
7277         are external
7278
7279         PIC16 PORT specific changes:
7280         * src/pic16/device.c pic16_dump_equates() added,
7281         processor registers declared internally by the port are emitted in
7282         the translation as equates,
7283         * src/pic16/gen.c: inline code is passed unprocessed to the
7284         translation,
7285         * (pic16_popGetLit2): fnuction modified to take second operand as
7286         pCodeOp pointer and not as literal,
7287         * (popRegFromIdx): prefixed with pic16_,
7288         * (pic16_popCombine2): modified to receive already allocated pCode
7289         operands,
7290         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7291         * (genFunction): initializes local stack frame and pushes on stack
7292         all the registers used by this function,
7293         * (genEndFunction): restores all registers from stack and restores
7294         stack frame,
7295         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7296         improvements,
7297         * (pic16glue): changed the program startup sequence,
7298         * added new dbName code 'A' for functions placed in absolute section
7299         * src/pic16/main.c: added function attribute _naked,
7300         * added pragma 'code' to place a fnuction at an absolute address,
7301         * added command line arguments --debug-ralloc and --pcode-verbose,
7302         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7303         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7304         * (pic16_newpCodeOpLit2): modified to take the second operand as
7305         pCodeOp pointer,
7306         * (pic16_printpBlock): modified to emit each function in a separate
7307         section,
7308         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7309         UPPER for immediate operands,
7310         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7311         instruction,
7312         * src/pic16/peeph.def: all peepholes with movff are commented out,
7313         because there is a problem in the pcode peep optimizer,
7314         * src/pic16/ralloc.c: the register allocator can now reuse local
7315         function symbols for another function. This saves register usage.
7316         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7317
7318         Added file src/pic16/NOTES with information about program writing on
7319         the current port version.
7320
7321 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7322
7323         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7324         and peephole 252 (array access)
7325
7326 2004-01-09  Borut Razem <borut.razem AT siol.net>
7327
7328         * src/SDCCmain.c : fixed #872250: -l command line defined library
7329           files are scanned before standard library files
7330
7331 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7332
7333         * src/SDCCast.c (decorateType): fixed bug #874046
7334
7335 2004-01-09  Borut Razem <borut.razem AT siol.net>
7336
7337         * support/scripts/sdcc.nsi: remove previous installation
7338
7339 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7340
7341         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7342         bytes for last interrupt vector (mcs51)
7343         * sdcc.spec: fixed typo
7344
7345 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7346
7347         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7348         gen51Code): more efficient parameter receive for --model-large
7349         ("bug" #845294)
7350
7351 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7352
7353         * src/ds390/main.c,
7354         * src/z80/main.c: added missed needLinkerScript flags (more than
7355         one port structure defined in these file)
7356         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7357         bug #795325
7358
7359 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7360
7361         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7362         * src/port.h: added flag needLinkerScript in port->linker
7363         structure to inform whether to create a .lnk file or not,
7364         * src/avr/main.c,
7365         * src/ds390/main.c,
7366         * src/hc08/main.c,
7367         * src/mcs51/main.c,
7368         * src/pic/main.c,
7369         * src/pic16/main.c,
7370         * src/xa51/main.c,
7371         * src/z80/main.c: changed appropriately to configure
7372         needLinkerScript flag
7373         * src/pic/gen.c,
7374         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7375         * src/pic/glue.c: added variable udata_section_name to
7376         override default uninitialized data segment definition for
7377         devices only with SHAREBANK memory (reported from Erik Epetrich)
7378         * (pic14emitOverlay): modified to emit a commented overlay segment
7379         directive when no overlay data exist
7380         * (picglue): modified to emit uninitialized data segment
7381         according to udata_section_name
7382         * src/pic/main.c (_pic14_parseOptions): added command line
7383         options --udata-section-name=[name] to override default
7384         udata definition name
7385         * modified _linkCmd and _asmCmd to include compiler passed
7386         arguments via -W option
7387         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7388         object file from '.rel' to '.o' in port->linker structure,
7389         changed size of fptr from 2 to 3 in port structure
7390
7391 2004-01-07  Borut Razem <borut.razem AT siol.net>
7392
7393         * support/scripts/sdcc.nsi: update PATH
7394         * support/scripts/sdcc.ico: craeted
7395
7396 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7397
7398         * device/include/Makefile.in: fix install
7399         * doc/Makefile: fix install
7400
7401 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7402
7403         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7404         in bug #860505
7405         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7406         how the function variable allocation summary is displayed; also
7407         include information about variables allocated to the overlay
7408         segment
7409
7410 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7411
7412         * as/mcs51/lkmain.c: Help about -Y option
7413         * as/mcs51/lkarea.c: Fixed gcc warnings
7414
7415 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7416
7417         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7418         fixed warning
7419         * support/valdiag/tests/overflow.c: added
7420         * src/SDCCast.c (decorateType),
7421         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7422         LEFT_OP (left shift)
7423
7424 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7425
7426         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7427         (default behaviour).
7428
7429 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7430
7431         A python script to validate compiler diagnostic messages. It can be
7432         used to verify that sdcc complains about bad c source code and
7433         gives a good location of the error.
7434         * support/valdiag/Makefile,
7435         * support/valdiag/valdiag.py,
7436         * support/valdiag/tests/*
7437
7438 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7439
7440         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7441         * src/SDCCsymt.c (newEnumType),
7442         * src/SDCCsymt.h
7443         * support/Util/SDCCerr.c,
7444         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7445         enum related bugs.
7446         * support/regression/tests/enum.c: added test for enum values that
7447         require at least 2 bytes of storage.
7448
7449 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7450
7451         * src/common.h: added ifndef/define/endif macros
7452         around the header file.
7453         Bug reported from Jesus Calvino-Fraga
7454
7455 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7456
7457         * sdcc.spec: updated
7458         * device/include/Makefile.in: don't install CVS directories
7459         * device/lib/Makefile.in: added removal of CVS directories after install
7460         * doc/Makefile: fixed install, added local_icons
7461         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7462         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7463         * src/ds390/gen.c (genRightShift): fixed bug #870788
7464         * src/SDCCast.c (decorateType): fixed bug #870781
7465
7466 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7467
7468         PIC16 port related changes:
7469         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7470         added variable stackPos,
7471
7472         * gen.c: genCall, assignResultValue: added support for
7473         pushing/retrieving function parameters to/from stack,
7474         genFunction,genEndFunction: setup stack frame for the
7475         generated function,
7476         genAddrOf: will be changed according to bug 863624
7477
7478         * added files genutils.c and genutils.h which contain gen*
7479         debugged and optimised functions extracted from gen.c
7480
7481         * glue.c: added variable 'externs' which holds extern symbols,
7482         pic16emitRegularMap: is modified to properly handle relocatable
7483          symbols under the new scheme,
7484         pic16createInterruptVect: is modified
7485         pic16printPublics: is modified to emit 'global' assembler directives,
7486         added pic16_printExterns to print extern symbols,
7487         pic16glue: initializes stack/frame pointer in the beginning of
7488         the assembly output. Temporary hack, will be corrected later,
7489         because gplink yet does not support stack and SDCC does not
7490         yet support a type of crt0.o object to create the final binary.
7491
7492         * Removed many lines that contain 8051 legacy code.
7493         * The code is finally placed under a 'code' directive.
7494         * Added port specific options.
7495
7496         * _process_pragma: simplified since now we do not need *special*
7497         include file to define SFR registers. But a separate header
7498         will be needed. This will be developed later.
7499         * _pic16_parseOptions: added, parses port specific options:
7500         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7501         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7502         --preplace-udata-with=
7503
7504         * _pic16_setDefaultOptions: modified to initialize section names,
7505         but hack is temporarly out of order since it needs improvement.
7506         * _pic16_genAssemblerPreamble: configuration words are emitted by
7507         their address instead of their name. This part is incomplete and
7508         supports only the 18Fxx2 devices. Other devices will emit an error
7509         during assembly since they do not contain the same set of config
7510         registers
7511         * _pic16_genIVT: is modified,
7512
7513         * pcode.c: added definitions for some hardware registers that are needed
7514         for stack support
7515         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7516         All PCI entries are updated. Now LFSR is supported.
7517         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7518         * added pic16_newpCodeOpLit2 to support instructions with
7519         two literal arguments
7520         * pic16_pCode2str: corrected code that emits assembler instructions
7521         with two literal operands and those that have an access bit modifier
7522         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7523         this fixes a bug which caused some labels to be lost, when an
7524         assembler directive was added, i.e. banksel,
7525         * pic16_FixRegisterBanking: improved logic that causes the insertion
7526         of bank switching,
7527         * InlineFunction: functions that are called once, are not any more
7528         inlined. This can be a port option in the future,
7529
7530         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7531
7532         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7533         hold the corresponding uninitialized symbols,
7534         * pic16_allocProcessorRegister: registers have explicit marked the
7535         accessBank field,
7536         * pic16_allocInternalRegister: registers are explicit marked as
7537         not used,
7538         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7539         processing list, so bit registers were lost,
7540         *
7541
7542         * ralloc.h: added field 'accessBank' and original symbol operand
7543         in register definition,
7544         * removed the field isMapped from register definition,
7545
7546         ** Several functions have been removed from various sources:
7547         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7548         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7549         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7550         pic16_assignRelocatableRegisters
7551
7552         ** others have been introduced:
7553         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7554         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7555
7556 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7557
7558         * support/scripts/inc2h.pl: changed definition of BIT_AT
7559         to emit 'sbit at' instead of 'bit at'. This was a request.
7560
7561         PIC16 port related preliminary changes:
7562         * gen.c: prefixed function popRegFromString with
7563         pic16_ and all references to it corrected
7564         * pcode.c: all pic16_pc_* hardware registers prefixed
7565         with underscore (_),
7566         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7567         * ralloc.c: newReg(): when register is REG_SFR then
7568         set address to rIdx,
7569         pic16_allocProcessorRegister(): marks register wasUsed=0
7570         pic16_writeUsedRegs(): added a call to assign processor
7571         registers via pic16_assignFixedRegisters
7572
7573 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7574
7575         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7576         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7577         variables in unused register banks.  Also the SSEG is placed
7578         wherever there is enough space for it, and IDATA can be anywhere
7579         in internal RAM.  For now compile using -Wl-Y[stack_size].
7580         The mem file is different for this option as well, since it
7581         makes no sense of talking about DSEG lenght.
7582
7583 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7584
7585         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7586         in certain cases, e.g. when ROM assignment, patch provided
7587         from Albert den Haan.
7588
7589 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7590
7591         Many signedness and type propagation fixes:
7592         * src/SDCCicode.c: made geniCodeCast() static
7593         replaced SPEC_ by IS_ (cosmetic)
7594         (operandOperation): fixed div and mod operation
7595         (usualBinaryConversions): added support for promotion of char
7596         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7597         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7598         (geniCodeAdd): an array index will stay unsigned, even if promoted
7599         from char to int
7600         (geniCodeArray): ditto
7601         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7602         * src/SDCCsymt.c (computeType): added more support for char;
7603         promotion of char is selectable by promoteCharToInt, fixed signedness
7604         for all cases
7605         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7606         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7607         * src/SDCCval (val*): replaced signedness calculation by
7608         computeType()
7609         rearranged if-branches (cosmetic)
7610         (valShift): added warning W_SHIFT_CHANGED
7611         (valCompare): fixed problem with different types
7612         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7613         * support/regression/tests/literalop.c: added many cases
7614         * support/regression/tests/ast_constant_folding.c: changed finally to
7615         'unsigned int'
7616         * .version: new year, new version: 2.3.7
7617         * src/SDCCmain.c (main): applied patch #866468
7618         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7619         provided by Scott Bronson
7620         * doc/sdccman.lyx: updated documentation for sdcdb
7621         updated and added chapter tips
7622
7623 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7624
7625         * src/SDCCsymt.h: missing from yesterday's commits
7626
7627 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7628
7629         * src/SDCC.y (struct_or_union_specifier),
7630         * support/Util/SDCCerr.c,
7631         * support/Util/SDCCerr.h: verify that struct & union tags are used
7632         as declared.
7633
7634 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7635
7636         * src/SDCCglobl.h: missing from yesterday's commits
7637
7638 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7639
7640         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7641         sft_attributes, struct_declaration, parameter_declaration,
7642         type_name, start_block, declaration_list),
7643         * src/SDCC.lex (check_type): support redefinition of typedef names
7644
7645 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7646
7647         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7648         aligned xdata arrays. Erik helped me with the if clause.
7649
7650 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7651
7652         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7653         warning
7654
7655 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7656
7657         * src/SDCCast.h,
7658         * src/SDCCast.c (newAst_),
7659         * src/SDCCicode.h,
7660         * src/SDCCicode.c (ast2iCode, newiCode),
7661         * src/SDCCglobl.h,
7662         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7663         expr, statement, expression_statement, selection_statement,
7664         iteration_statement, expr_opt, jump_statement): foundation for tracking
7665         sequence points
7666         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7667         point code too)
7668
7669 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7670
7671         * support/Util/SDCCerr.c,
7672         * src/SDCCast.h,
7673         * src/SDCCast.c (createCase, createDefault, decorateType),
7674         * src/SDCClabel.c (labelUnreach),
7675         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7676         to error messages.
7677         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7678         (with thanks to Stas Sergeev)
7679         * device/include/time.h,
7680         * device/lib/time.c (CheckTime): suppress unreachable code warning
7681
7682 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7683
7684         * src/SDCCast.c (createIvalCharPtr),
7685         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7686         bug #753752)
7687         * support/regression/tests/nullstring.c: tests for these two bugs
7688
7689 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7690
7691         * support/Util/SDCCerr.h,
7692         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7693         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7694         about storage class and 'at' used inside struct or union
7695         * src/SDCCBBlock.c (iCodeFromeBBlock),
7696         * src/SDCCcse.c (ifxOptimize),
7697         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7698         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7699         printIval, emitStaticSeg, emitOverlay),
7700         * src/SDCClabel.c (deleteIfx),
7701         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7702         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7703         gatherAutoInit, processParms),
7704         * support/Util/SDCCerr.h,
7705         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7706         reporting for post-parse errors.
7707
7708 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7709
7710         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7711         implicit casts via union; they don't work on big endian systems
7712         (possible fix for bug #861138)
7713
7714 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7715
7716         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7717         * src/mcs51/main.c: fixed the fix for bug #737001
7718
7719 2003-12-15  Borut Razem <borut.razem AT siol.net>
7720
7721         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7722
7723 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7724
7725         * support/makebin/makebin.c: put output in binary mode
7726
7727 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7728
7729         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7730         xdata and data memory on startup. Set the environment variable
7731         SDCC_NOGENRAMCLEAR to disable this.
7732         * src/mcs51/peephole.def,
7733         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7734         (allows non-interrupt and interrupt code to safely compete for a resource
7735         without the non-interrupt code having to disable interrupts)
7736
7737 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7738
7739         * src/SDCCicode.c (geniCodeAdd),
7740         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7741         with valFromType if type might be a pointer and host is big endian).
7742         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7743         types, not just integer types.
7744         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7745         multiply defined with mismatching "at" address.
7746
7747 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7748
7749         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7750         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7751         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7752         with embedded nulls (fixed bug #753752)
7753
7754 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7755
7756         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7757         Apparently this did not see much testing (endless loop)
7758
7759 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7760
7761         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7762
7763 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7764
7765         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7766         gracefully handle NULL memmap pointers
7767
7768 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7769
7770         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7771         instead of deleting the iCode when an operand is volatile
7772         * src/z80/gen.c (genDummyRead),
7773         * src/mcs51/gen.c (genDummyRead),
7774         * src/ds390/gen.c (genDummyRead),
7775         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7776         not just IC_RIGHT
7777         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7778         * src/SDCC.y: fixed bug #850420
7779
7780 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7781
7782         Applied z80 i/o port patch from Peter Townson and fixed some operators
7783         to better handle operands in A register.
7784         * device/include/z180.h
7785         * src/SDCC.y
7786         * src/SDCCglue.c
7787         * src/z80/gen.c
7788         * src/z80/gen.h
7789         * src/z80/main.c
7790         * src/z80/peeph-z80.def
7791         * src/z80/peeph.def
7792         * src/z80/z80.h
7793
7794 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7795
7796         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7797
7798 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7799
7800         * device/lib/hc08/_mullong.c: Removed extra #endif
7801
7802 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7803
7804         * sim/ucsim/hc08.src/inst.cc,
7805         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7806         carries from x to h
7807         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7808         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7809         * device/include/stdarg.h: fixed varargs for hc08
7810         * device/lib/Makefile.in,
7811         * device/lib/hc08/Makefile,
7812         * device/lib/hc08/_mulint.c,
7813         * device/lib/hc08/_mullong.c: fixed some endian problems
7814
7815 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7816
7817         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7818         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7819         * device/lib/_gptrget.c,
7820         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7821
7822 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7823
7824         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7825         * src/SDCCast.c (astErrors): fixed bug #846007
7826         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7827
7828 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7829
7830         * src/SDCCast.c (decorateType): disabled a transformation I added in
7831         revision 1.188 (access to fields of a structure at an absolute address);
7832         it breaks with bitfields, extern declarations, and gcse analysis.
7833         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7834         could be assigned through a pointer, so don't complain.
7835         * src/SDCCast.c (astErrors),
7836         * src/SDCCast.h,
7837         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7838
7839 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7840
7841         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7842         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7843         output of __config directives, since gpasm now supports them
7844         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7845         pre-processor macro, i.e. -DMCU=p18f452
7846         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7847         and modified to handle 'cast' icode similarly to '=' icode
7848         * src/pic16/device.h (typedef struct PIC_device): added field
7849         'extMIface' to indicate that chip has external memory interface
7850         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7851         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7852         18F8720
7853
7854 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7855
7856         * src/SDCC.y (pointer): fixed bug #846006
7857         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7858         * src/SDCCast.c (decorateType): fixed bug #846009
7859         * src/ds390/peeph.def,
7860         * src/ds390/gen.c (genAnd, genOr),
7861         * src/mcs51/peeph.def,
7862         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7863
7864 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7865
7866         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7867         * src/SDCCdflow.c
7868         * src/SDCCcse.c
7869         * src/SDCCcse.h
7870         * src/SDCCBBlock.h
7871         * src/SDCCBBlock.c
7872
7873 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7874
7875         fixed bug #845089
7876         * src/SDCCbitv.h,
7877         * src/SDCCbitv.c: added function to free a bitvector
7878         * src/SDCClrange.h,
7879         * src/SDCClrange.c: added function to recompute the liveranges
7880         * src/avr/ralloc.c,
7881         * src/ds390/ralloc.c,
7882         * src/hc08/ralloc.c,
7883         * src/mcs51/ralloc.c,
7884         * src/pic/ralloc.c,
7885         * src/pic16/ralloc.c,
7886         * src/xa51/ralloc.c,
7887         * src/z80/ralloc.c: recompute the liveranges after register packing
7888
7889 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7890
7891         * src/SDCCloop.c (newInduction): fixed bug #845630
7892
7893 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7894
7895         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7896         inadvertantly left behind from my 2003-11-12 change
7897
7898 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7899
7900         Updated headers I neglected to commit yesterday.
7901         * src/SDCClrange.h,
7902         * src/SDCCicode.h
7903
7904 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7905
7906         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7907         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7908         * src/SDCCopt.c (eBBlockFromiCode),
7909         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7910         the creation of the key hash table from the sequencing so it can be used
7911         earlier (for some GCSE bug fixes still pending)
7912
7913 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7914
7915         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7916         * support/regression/tests/addsub.c: testing genPlus shortcut
7917
7918 2003-11-15  Borut Razem <borut.razem AT siol.net>
7919
7920         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7921
7922 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7923
7924         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7925         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7926         ordering is immaterial.
7927         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7928
7929 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7930
7931         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7932         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7933         (SIGSEV) of bug #840381
7934         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7935         unlink new file before rename if new and old filenames are the same)
7936
7937 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7938
7939         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7940         uninitialized variables) for the mcs51. Set environment variable
7941         SDCC_GENRAMCLEAR to test.
7942         xdata initialization slightly shorter
7943
7944 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7945
7946         * src/SDCCsymt.h,
7947         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7948         #838241 & 780691 (basicly the same bug)
7949         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7950         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7951
7952 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7953
7954         * src/SDCCmain.c (linkEdit): "fix" #834252
7955
7956 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7957
7958         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7959         * src/SDCCast.h,
7960         * src/SDCC.y: fixed bug #819403
7961
7962 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7963
7964         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
7965         the reentrant attribute.
7966         * src/hc08/gen.c (genPackBits): added missing stack readjustment
7967         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
7968         simulation
7969         * src/SDCCast.c (decorateType): fixed bug with storage class not being
7970         updated during pointer dereference; f.e. ~(((char *)1)*) was being
7971         erroneously reduced to a literal.
7972         * src/hc08/ralloc.c (packRegisters, rematStr),
7973         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
7974         some cases
7975
7976 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7977
7978         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
7979         * doc/sdccman.lyx: changed from 'article' to 'book'
7980         * doc/Makefile: readded test_suite_spec and cdbfileformat
7981
7982 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
7983
7984         * device/include/stdlib.h: include malloc.h to comply with ANSI
7985         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
7986
7987 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7988
7989         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
7990         * doc/clean.mk: also remove *.out files
7991         * doc/sdccman.lyx: some additions, larger top/bottom margins
7992
7993 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7994
7995         * src/SDCC.y: fixed bug #837365
7996         * support/regression/tests/bitopcse.c
7997         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
7998         a symbol (might be valop instead)
7999         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8000         * device/lib/clean.mk: added hc08 to the cleaning list
8001
8002 2003-11-04  Borut Razem <borut.razem AT siol.net>
8003
8004         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8005           made 2003-11-04
8006         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8007           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8008           malloc is declared in standard stdlib.h
8009
8010 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8011
8012         * device/lib/hc08/Makefile: need to clean .rel not .o files
8013         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8014
8015 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8016
8017         * src/port.h,
8018         * src/hc08/main.c,
8019         * src/mcs51/main.c,
8020         * src/ds390/main.c,
8021         * src/z80/main.c,
8022         * src/avr/main.c,
8023         * src/pic/main.c,
8024         * src/pic16/main.c,
8025         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8026         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8027         tests (which uses the port's oclsExpense function)
8028         * src/SDCC.y,
8029         * src/SDCCast.c,
8030         * src/SDCCicode.c,
8031         * src/hc08/gen.c,
8032         * src/ds390/gen.c,
8033         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8034
8035 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8036
8037         * src/SDCCcse.c (ifxOptimize),
8038         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8039         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8040         deleting the IFX iCode.
8041         * src/hc08/ralloc.c: reduced unneeded slocs
8042         * src/hc08/gen.c: fixed bug in asmopToBoolean
8043
8044 2003-11-04  Borut Razem <borut.razem AT siol.net>
8045
8046         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8047           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8048           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8049           transferred to configure
8050
8051 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8052
8053         Use headers defined in the C[++] standards:
8054         * sim/ucsim/gui.src/serio.src/fileio.cc
8055         * sim/ucsim/gui.src/serio.src/frontend.cc
8056         * sim/ucsim/gui.src/serio.src/main.cc
8057         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8058         * support/Util/NewAlloc.c
8059         * as/hc08/lklibr.c
8060         * as/mcs51/lklibr.c
8061         * as/z80/aslist.c
8062         * as/z80/assym.c
8063
8064 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8065
8066         * Added MSVC projects for hc08 assembler and linker:
8067         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8068         /as/hc08/link_hc08.dsp
8069
8070 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8071
8072         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8073
8074 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8075
8076         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8077
8078 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8079
8080         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8081
8082 2003-10-31  Borut Razem <borut.razem AT siol.net>
8083
8084         * support/cpp2/cpplib.h,
8085           support/cpp2/cpplib.c,
8086           support/cpp2/cpplex.c,
8087           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8088           to switch _asm block preprocessing on / off. Default is
8089           #pragma preproc_asm +
8090
8091 2003-10-31  Borut Razem <borut.razem AT siol.net>
8092
8093         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8094           when outputting comment blocks (when executed with -C option) and
8095           _asm (SDCPP specific) blocks
8096
8097 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8098
8099         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8100
8101 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8102
8103         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8104
8105 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8106
8107         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8108         * src/SDCCast.c (decorateType): fixed bug #832664
8109
8110 2003-10-31  Borut Razem <borut.razem AT siol.net>
8111
8112         * support\cpp2\cpplex.c: fixed for SDCPP:
8113           comments(when executed with -C option) and _asm blocks
8114           were included even if they where in skipped #if block.
8115           Applied solution from GCC cpp 3.3.2
8116
8117 2003-10-31  Borut Razem <borut.razem AT siol.net>
8118
8119         * src/SDCC.lex: sdcc now understands both formats:
8120           '# <line_number> <file_name>' and
8121           '#line <line_number> <file_name>'
8122         * support/cpp2/cppmain.c: sdcpp now generates the standard
8123           '# <line_number> <file_name>' instead of former
8124           '#line <line_number> <file_name>'
8125
8126 2003-10-30  Borut Razem <borut.razem AT siol.net>
8127
8128         * support/cpp2/cpphash.h,
8129         * support/cpp2/cpplib.h
8130         * support/cpp2/cpplex.c,
8131         * support/cpp2/cppmain.c,
8132         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8133
8134 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8135
8136         Fixed a number of problems revealed by bug #827883.
8137         * src/SDCCloop.c (loopInvariants): Spill location of the
8138         result operand should be recomputed if extracted from
8139         a loop. Also, don't extract assignments of an iTemp
8140         from a literal.
8141         * src/SDCCast.c (isConformingBody): loop reversal should
8142         not occur if the control variable is involved with a
8143         relational operator.
8144
8145 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8146
8147         * .version: bumped to 2.3.6 to reflect the big improvements
8148         made by Erik and Klaus. Thanks!
8149
8150 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8151
8152         Replaced the livrange code.
8153         * src/SDCClrange.c: added new LR code
8154         * src/SDCCloop.c,
8155         * src/SDCCBBlock.h: removed remainig parts from old LR code
8156         * src/ds390/ralloc.c,
8157         * src/ds390/gen.c: minor fixes to make it work with new code
8158
8159 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8160
8161         * as/hc08/asm.h,
8162         * as/hc08/lkrloc.c,
8163         * src/hc08/gen.c,
8164         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8165         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8166         (tweaked fix for bug #818696)
8167
8168 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8169
8170         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8171
8172 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8173
8174         * src/SDCCmain.c,
8175         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8176         * src/mcs51/gen.c (gencjneshort),
8177         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8178         more efficient (per Scott Bronson's suggestion)
8179
8180 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8181
8182         Extended the semantics of the critical keyword to include
8183         individual statements. See RFE #827755 and #799831
8184         * src/SDCC.y
8185         * src/SDCCicode.c
8186         * src/SDCCopt.c
8187         * src/SDCCast.c
8188         * support/Util/SDCCerr.c
8189         * support/Util/SDCCerr.h
8190         * src/mcs51/gen.c
8191         * src/ds390/gen.c
8192         * src/hc08/gen.c
8193
8194 2003-10-19  Borut Razem <borut.razem AT siol.net>
8195
8196         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8197
8198 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8199
8200         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8201         Fixed bug #818696
8202         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8203         and predecrement operand is displayed
8204
8205 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8206
8207         * src/SDCCval.c (valMinus): fixed bug #826041
8208
8209 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8210
8211         Some hc08 related updates that I missed earlier
8212         * sim/ucsim/stypes.h
8213         * support/regression/ports/hc08/spec.mk
8214
8215 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8216
8217         New target "hc08" for the Motorola 68hc08 family of micros
8218
8219         * configure
8220         * configure.in
8221         * Makefile
8222         * src/hc08/*
8223         * src/SDCCmain.c
8224         * src/port.h
8225         * sim/ucsim/hc08.src/*
8226         * sim/ucsim/configure.in
8227         * src/ucsim/configure
8228         * sim/ucsim/packages_in.mk
8229         * as/hc08/*
8230         * as/Makefile
8231         * device/include/mc68hc908qy.h
8232         * device/lib/hc08/*
8233         * device/lib/Makefile.in
8234         * support/regression/ports/hc08/*
8235         * support/regression/Makefile
8236
8237 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8238
8239         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8240         regression test
8241         * src/ds390/gen.c (genCast): fixed bug #821957
8242
8243 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8244
8245         * device/lib/logf.c: "fixed" overlay bug
8246         * support/regression/ports/host/spec.mk: added m library
8247         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8248         * support/regression/tests/float_trans: added (for Eric)
8249
8250 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8251
8252         * src/mcs51/gen.c (genCpl): fixed bug
8253         http://sf.net/mailarchive/message.php?msg_id=6263915
8254
8255 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8256
8257         * src/SDCCast.c (decorateType): added extended constant folding
8258         * src/SDCCsymt.c (computeType): cleanup
8259         * src/SDCCval.c (valShift): minor optimization
8260         * support/regression/tests/ast_constant_folding.c: added
8261
8262 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8263
8264         * src/SDCCmain.c: removed some unintended changes
8265
8266 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8267
8268         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8269         * src/z80/gen.c: fixed part of bug #817589
8270         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8271
8272 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8273
8274         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8275         * src/SDCCcflow.c
8276         * src/SDCCcse.c
8277         * src/SDCCdflow.c
8278         * src/SDCClabel.c
8279         * src/SDCClrange.c
8280         * src/SDCCmem.c
8281         * src/SDCCopt.c
8282         * src/SDCCpeeph.c
8283         * src/SDCCset.c
8284         * src/avr/ralloc.c
8285         * src/ds390/ralloc.c
8286         * src/izt/ralloc.c
8287         * src/mcs51/ralloc.c
8288         * src/pic/ralloc.c
8289         * src/pic16/ralloc.c
8290         * src/xa51/ralloc.c
8291         * src/z80/ralloc.c
8292         * src/z80/gen.c: removed unused label "release:"
8293
8294 2003-10-06  Borut Razem <borut.razem AT siol.net>
8295
8296         * src/SDCC.lex: removed definition of unused variables
8297           save_optimize and save_options
8298
8299 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8300
8301         * clean.mk: removed '=' in "-maxdepth=1"
8302         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8303         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8304
8305 2003-10-06  Borut Razem <borut.razem AT siol.net>
8306
8307         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8308           my_unput() replaced by unput()
8309
8310 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8311
8312         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8313         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8314         type-punned pointer will break strict-aliasing rules"
8315         Old LR behaviour is again default; Klaus' LR can be choosen by
8316         defining the environment variable LRKLAUS
8317         * src/SDCCBBlock.h
8318         * src/SDCCloop.c
8319         * src/SDCClrange.c
8320         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8321         * clean.mk: fixed removal of files in bin/CVS/
8322         * device/lib/clean.mk: fixed removal of directories small and large
8323         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8324         * src/SDCCicode.c,
8325         * src/SDCCval.c: removed superflous test for pedantic
8326
8327 2003-10-05  Borut Razem <borut.razem AT siol.net>
8328
8329         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8330           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8331           message "unmatched #pragma SAVE and #pragma RESTORE"
8332
8333 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8334
8335         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8336           assembly, critical functions, atomic, nojtbound)
8337
8338 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8339
8340         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8341         * src/SDCCBBlock.h
8342         * src/SDCCloop.c
8343         * src/SDCCloop.h
8344         * src/SDCClrange.c
8345
8346 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8347
8348         * src/z80/gen.h,
8349         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8350         * src/mcs51/gen.h
8351         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8352         * src/ds390/gen.h
8353         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8354         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8355         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8356
8357 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8358
8359         * src/z80/gen.c (genRet): fixed bug #524753
8360         * src/z80/gen.c (genCast): fixed internal error on cast from
8361         pointer to long
8362         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8363         fix for bug #477835 to the z80
8364         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8365         for tracking iCodes in the peephole optimizer for z80
8366
8367 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8368
8369         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8370         the other part of bug #814548
8371         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8372
8373 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8374
8375         * src/SDCCcse.c: fixed part of bug #814548
8376
8377 2003-09-28  Borut Razem <borut.razem AT siol.net>
8378
8379         * src/asm.c: rewrite of printILine() to use temporary file instead
8380           a pipe
8381         * src/xa51/main.c: commented out declaration of int rewinds
8382
8383 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8384
8385         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8386
8387 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8388
8389         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8390         * src/asm.c (printILine): Fixed bug #811015
8391
8392 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8393
8394         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8395         freeing.
8396
8397 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8398
8399         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8400         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8401         to correctly handle general case of AOP_PAIRPTR
8402         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8403
8404 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8405
8406         * src/mcs51/ralloc.c (fillGaps),
8407         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8408         register positioning bug)
8409
8410 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8411
8412         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8413
8414 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8415
8416         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8417         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8418         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8419         (ralloc doesn't intentionally do this now, but perhaps later)
8420         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8421         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8422         register positioning bugs (Fixed bug #762602 and #795325)
8423         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8424         (Fixed bug #808779)
8425         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8426         lines that --i-code-in-asm generates
8427
8428 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8429
8430         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8431         trying to fclose a FILE* that was already closed.
8432
8433 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8434
8435         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8436         of const struct should be treated as if const themselves)
8437
8438 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8439
8440         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8441
8442 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8443
8444         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8445         Unix (/n) and DOS (/r/n) line terminations.
8446
8447 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8448
8449         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8450         bug #613775
8451
8452 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8453
8454         * src/mcs51/gen.c (genFunction, genEndFunction),
8455         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8456         and restore of EA so that stack offsets to parameters are
8457         correct when using both critical and reentrant/stack-auto.
8458         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8459         size (can be triggered in error if sloc is shared between
8460         different sized objects)
8461         * device/include/float.h: fixed macros to explicitly use
8462         unsigned long where needed
8463
8464 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8465
8466         Feature req. 799831: added code to allow nesting of critical functions
8467         * src/mcs51/gen.c (genFunction, genEndFunction)
8468         * src/ds390/gen.c (genFunction, genEndFunction)
8469
8470 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8471
8472         * src/SDCCsymt.c (sclsFromPtr),
8473         * src/SDCCsymt.h,
8474         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8475         support for standard C idiom of memory mapped variables; for
8476         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8477         to xdata int at 0x1234 tempvar = 1.
8478         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8479         provided by Akiya ISHIDA
8480
8481 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8482
8483         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8484         * src/SDCCval.c (constVal): added reduction from int to char
8485         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8486         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8487         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8488         to ignore the sign
8489         * support/regression/tests/shifts.c: fixed
8490
8491 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8492
8493         * src/z80/gen.c (genXor): Fixed bug #805445
8494
8495 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8496
8497         Fixed bug #621531 (const & volatile confusion in the type chain).
8498         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8499         refer to the const or volatile state of the pointer itself.
8500
8501         * src/SDCCast.c
8502         * src/SDCCglue.c
8503         * src/SDCCicode.c
8504         * src/SDCCsymt.c
8505         * src/SDCCval.c
8506         * src/SDCC.y
8507         * src/SDCCsymt.h
8508         * src/pic/gen.c
8509         * src/pic/ralloc.c
8510         * src/pic16/gen.c
8511         * src/pic16/ralloc.c
8512         * support/regression/tests/const.c
8513
8514 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8515
8516         When checking for duplicated modules, use absolute paths
8517         instead of relative paths.  Files changed:
8518
8519         * as/mcs51/lklib.c
8520         * link/z80/lklib.c
8521
8522 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8523
8524         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8525
8526 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8527
8528         * device/include/string.h: added size_t typedef, changed
8529         prototypes to use size_t, eliminated separate reentrant and
8530         non-reentrant declarations, added _memmove declaration
8531         * device/lib/_memcpy.c: changed to use size_t instead of int,
8532         changed /4 to >>2 to avoid division library call
8533         * device/lib/_memcmp.c,
8534         * device/lib/_memset.c,
8535         * device/lib/_strncat.c,
8536         * device/lib/_strncpy.c,
8537         * device/lib/_strncmp.c: changed to use size_t instead of int
8538         * device/lib/_memmove.c: new file (fixed bug #772294)
8539         * device/lib/Makefile.in: added _memmove.c
8540         * device/lib/z80/asm_strings.s: fixed bug #772290
8541         * support/regression/tests/bitfields.c: attempt to fix host assertion
8542         failure on amd64-unknown-linux2.2
8543
8544 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8545
8546         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8547         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8548         * as/z80/asmain.c (main): fixed bug #801766
8549
8550 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8551
8552         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8553         compilers
8554
8555 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8556
8557         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8558         reported in bug #800609
8559
8560 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8561
8562         * Top header beautifications in src/pic16 directory:
8563           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8564           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8565           pcoderegs.h, ralloc.c, ralloc.h
8566         * main.c: added top header and GPL license notice
8567         * pcode.c: fixed the if-conditional warning
8568
8569 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8570
8571         * device/lib/_mullong.c: replaced int by short for gcc
8572
8573 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8574
8575         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8576         and JUMPTABLE iCodes properly now (worked by accident before)
8577         * src/mcs51/gen.c (leftRightUseAcc),
8578         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8579         iCode properly now. Use getSize instead of nRegs since a & b
8580         aren't part of the nRegs tally.
8581
8582 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8583
8584         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8585         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8586           before instructions that use the _STATUS register
8587
8588 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8589
8590         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8591         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8592         fetching of the pointer
8593         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8594         copied from genNearPointerSet()
8595         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8596         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8597         If they pop r0/r1 they must be called in the opposite order than aopOp().
8598         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8599         (resp. --stack-auto), prepared for --xstack
8600
8601 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8602
8603         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8604
8605 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8606
8607         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8608         these ports have their own __sdcc_external_start()
8609
8610 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8611
8612         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8613         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8614         type for bits was changed. It resulted in bit variables becoming
8615         global, which is not permitted in PIC 14 assembly output.
8616
8617 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8618
8619         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8620
8621 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8622
8623         Z80 and MCS51 linkers complaint if a public symbol is defined
8624         in more than one library module:
8625
8626         * as/mcs51/lklib.c
8627         * link/z80/lklib.c
8628         * as/mcs51/Makefile.in
8629
8630 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8631
8632         A few small changes that speed up the peephole optimizer.
8633
8634         * src/SDCCpeeph.c
8635
8636 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8637
8638         Try to make the peephole optimizer smarter by maintaining
8639         an association between the assembly source code and the
8640         iCodes that originated them. Put this information to use
8641         with a new peephole rule condition "notVolatile" so that
8642         the rules can be aggressive yet still safe.
8643
8644         * src/SDCCpeeph.c
8645         * src/SDCCpeeph.h
8646         * src/mcs51/gen.c
8647         * src/mcs51/peeph.def
8648
8649 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8650
8651         Fixed bug #741761
8652
8653         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8654         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8655         if the left or right operand symbols have the accuse flag set.
8656
8657 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8658
8659         Changed the type of the result of the ! (NOT) operator to char;
8660         previously it returned the same type as the source. This allows
8661         us to eliminate all the genFloatNot functions (all of its target
8662         implementations were very buggy) since !float can use the same
8663         code as !long now.
8664
8665         * src/SDCCicode.c (ast2iCode): ! returns char
8666         * src/mcs51/gen.c (genNot, genNotFloat),
8667         * src/ds390/gen.c (genNot, genNotFloat),
8668         * src/z80/gen.c (genNot, genNotFloat),
8669         * src/pic/gen.c (genNot, genNotFloat),
8670         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8671
8672 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8673
8674         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8675         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8676            during interrupts. Ensure WSAVE is located at a shared bank address.
8677         2. Fixed page selection in some places
8678         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8679            the registers name strings.
8680         4. Fixed "signed / unsigned compare" compiler warnings.
8681         5. The PIC port manages its own allocation of the general purpose
8682            registers, but makes no attempt to reuse them. As a result when
8683            compiling it soon runs out of general purpose registers. Some
8684            additional code was added to the files pcode.c and device.c to walk
8685            through the function call tree and rename the registers so that they
8686            get reused.
8687
8688         * src/pic/device.c
8689         * src/pic/gen.c
8690         * src/pic/glue.c
8691         * src/pic/pcode.c
8692         * src/pic/pcode.h
8693         * src/pic/ralloc.c
8694         * src/pic/ralloc.h
8695         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8696         genPlus() & genMinus() when the result is the same as left or right
8697
8698 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8699
8700         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8701
8702 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8703
8704         Made bitfield a distinct type from bit so that bitfields
8705         convert as per ANSI C and bits retain their traditional
8706         boolean style behaviour. Implemented bitfield support in
8707         the z80 port.
8708
8709         * src/SDCCsymt.h,
8710         * src/SDCCsymt.c,
8711         * src/SDCCast.c,
8712         * src/cdbFile.c,
8713         * src/mcs51/gen.c,
8714         * src/ds390/gen.c: bit v bitfield split
8715         * src/z80/gen.c: New support for bitfields
8716         * support/regression/tests/bitfields.c: reenabled z80,
8717         added more tests
8718
8719 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8720
8721         Rules 246.x, 247.x relate to bitfields, the others speed up
8722         access to xdata mapped I/O devices.
8723
8724         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8725
8726 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8727
8728         Cleaned up genPackBits and genUnpackBits and added two helper
8729         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8730         for literal assignments in genPackBits (thanks to Frieder for
8731         reminding me).
8732
8733         * src/mcs51/gen.c
8734         * src/ds390/gen.c
8735
8736 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8737
8738         Fixed bug #748310 (pointer to function type mishandled when the
8739         function name is omitted). Also fixed a SIGSEGV when a function
8740         attribute (reentrant, etc) is used on a non-function or on a
8741         function but misplaced before the parameter list.
8742
8743         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8744         bug #748310
8745         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8746         * support/Util/SDCCerr.h,
8747         * support/Util/SDCCerr.c: Added func attr misuse error msg
8748
8749 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8750
8751         Fixed bug #787649 by anonymous
8752         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8753         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8754
8755 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8756
8757         Fixed numerous bitfield problems.
8758
8759         * src/SDCC.y: More bitfield related error checking
8760         * src/SDCCsymt.h,
8761         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8762         * support/Util/SDCCerr.h,
8763         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8764         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8765         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8766         * support/regression/tests/bitfields.c: tests added
8767
8768 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8769
8770         Made the constant following the "interrupt" keyword optional. If
8771         omitted, the function will not automatically be given an entry
8772         in the interrupt vector table (similar to #pragma NOIV, but
8773         less syntacticly kludgy). The interrupt number is also now
8774         range checked. Also fixed a bug in the high order bit example
8775         in the manual.
8776
8777         * src/SDCC.y
8778         * src/SDCCmem.c
8779         * src/SDCCglue.c
8780         * src/SDCCsymt.h
8781         * support/Util/SDCCerr.c
8782         * support/Util/SDCCerr.h
8783         * doc/sdccman.lyx
8784
8785 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8786
8787         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8788         * src/SDCCicode.c (operandOperation): rewritten some ops
8789         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8790         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8791         other type
8792         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8793         be re-activated by defining REDUCE_LITERALS)
8794         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8795         unsigned, but are signed by default
8796         * src/SDCCval.c (constVal): rearranged
8797         * src/SDCCval.c (valMod): preliminary fix
8798         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8799         * support/regression/literalop.c: added, work in progress
8800
8801 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8802
8803         Generate warnings for useless declarations like "char data;"
8804         that don't do what new users expect.
8805
8806         * src/SDCC.y
8807         * support/Util/SDCCerr.h
8808         * support/Util/SDCCerr.c
8809
8810 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8811
8812         * src/SDCCval.c (valMult): fix overflow detection of negative int
8813
8814 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8815
8816         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8817
8818         Changes to support big endian targets:
8819
8820         * src/ports.h
8821         * src/SDCCglue.c
8822         * src/avr/main.c
8823         * src/ds390/main.c
8824         * src/izt/i186.c
8825         * src/mcs51/main.c
8826         * src/pic/main.c
8827         * src/pic16/main.c
8828         * src/xa51/main.c
8829         * src/z80/main.c
8830
8831 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8832
8833         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8834         * device/lib/time.c: fixed warning "integer overflow in expression"
8835
8836 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8837
8838         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8839         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8840         constants are unsigned; added recognition of "u" flag for unsigned
8841         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8842         * src/SDCCval.c (valDiv, valMod): fixed signdness
8843         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8844         signedness of modulo, left and right shift
8845         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8846         * support/Util/SDCCerr.h: added warning W_INT_OVL
8847         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8848         * src/SDCCast.c (ast_print): improved output of constants
8849
8850 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8851
8852         Fixed some warnings when building with MSVC:
8853
8854         * as\mcs51\asdata.c
8855         * as\z80\asdata.c
8856         * as\mcs51\asm.h
8857         * as\z80\asm.h
8858         * link\z80\aslink.h
8859         * link\z80\lkdata.c
8860         * link\z80\lkeval.c
8861         * link\z80\lkgb.c
8862         * link\z80\lkihx.c
8863         * link\z80\lks19.c
8864         * link\z80\lksym.c
8865         * support\cpp2\cpplib.c
8866         * src\ds390\gen.c
8867         * src\mcs51\gen.c
8868
8869 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8870
8871         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8872
8873 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8874
8875         * support\librarian\clean.mk: Do not remove Makefile.
8876         * support\librarian\Makefile: added.
8877
8878 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8879
8880         Added librarian to MSVC build:
8881         * all.dsp
8882         * sdcc.dsw
8883         * support\librarian\librarian.dsp
8884
8885         'configure' not needed for librarian, removed:
8886         * support\librarian\configure
8887         * support\librarian\configure.in
8888         * support\librarian\config_in.h
8889         * support\librarian\Makefile.in
8890
8891         Hopefully these ones built the librarian and the rest of sdcc properly:
8892         * Makefile
8893         * Makefile.common.in
8894
8895         Messed up 'configure', so revert to previous version:
8896         * configure
8897         * configure.in
8898
8899 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8900
8901         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8902         there, while the mantissa of a double is "only" 53 bits wide.
8903
8904 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8905
8906         Adding sdcclib to the build.  MSVC project coming soon.
8907         Files added/changed:
8908
8909         * support\librarian\clean.mk
8910         * support\librarian\configure
8911         * support\librarian\configure.in
8912         * support\librarian\config_in.h
8913         * support\librarian\Makefile.bcc
8914         * support\librarian\Makefile.in
8915         * support\librarian\sdcclib.c
8916         * Makefile.bcc
8917         * Makefile
8918         * Makefile.common.in
8919         * configure
8920         * configure.in
8921
8922 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8923
8924         Linker now complaints if linked modules have conflicting options, for
8925         example, one compiled using --model-large and another one compiled with
8926         --model-small.  The following files were modified:
8927
8928         * as\mcs51\asdata.c
8929         * as\mcs51\aslink.h
8930         * as\mcs51\asm.h
8931         * as\mcs51\asmain.c
8932         * as\mcs51\asout.c
8933         * as\mcs51\i51pst.c
8934         * as\mcs51\lkdata.c
8935         * as\mcs51\lklibr.c
8936         * as\mcs51\lkmain.c
8937         * as\z80\asdata.c
8938         * as\z80\asm.h
8939         * as\z80\asmain.c
8940         * as\z80\asout.c
8941         * as\z80\z80pst.c
8942         * link\z80\aslink.h
8943         * link\z80\lkdata.c
8944         * link\z80\lklibr.c
8945         * link\z80\lkmain.c
8946         * src\SDCCglue.c
8947
8948 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8949
8950         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8951         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8952
8953 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8954
8955         * src/z80/mappings.i: fix _mul[us][int,long] entries
8956
8957 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8958
8959         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8960
8961 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8962
8963         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
8964         * support/regression/tests/bitopcse.c: added
8965         fixed warning:
8966         * src/avr/gen.c:
8967         * src/pic/gen.c:
8968         * src/pic16/gen.c:
8969         * src/z80/gen.c:
8970         * src/xa51/gen.c:
8971
8972 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8973
8974         added support for new library format to z80, gbz80 linkers:
8975         *link/z80/aslink.h
8976         *link/z80/lklex.c
8977         *link/z80/lklib.c
8978         *link/z80/lklist.c
8979
8980 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
8981
8982         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
8983         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
8984
8985 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
8986
8987         added DUMMY_READ_VOLATILE:
8988         * src/SDCC.y:
8989         * src/avr/gen.c:
8990         * src/xa51/gen.c:
8991         * src/z80/gen.c:
8992         * src/pic/gen.c:
8993         * src/pic16/gen.c:
8994         * src/mcs51/gen.c:
8995         * src/ds390/gen.c:
8996         * src/SDCCcse.c (algebraicOpts): many improvements
8997         * src/SDCCcse.h: removed algebraicOpts()
8998         * src/SDCCicode.c (picDummyRead): added
8999
9000 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9001
9002         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9003         "Insufficient space in data memory".
9004
9005 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9006
9007         * src/mcs51/gen.c: fixed bug #771358
9008         * src/z80/gen.c: fixed bug #759087
9009
9010 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9011
9012         * src/pic16/glue.c: minor cleanup by Vangelis
9013
9014 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9015
9016         * device/include/regc515c.h: fixed #758477
9017         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9018         * device/lib/_gptrput.c: saved a few bytes
9019         * my tab spacing is 8, yours too?)
9020         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9021         * device/lib/serial.c: process RX bytes earlier than TX bytes
9022         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9023
9024 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9025
9026         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9027
9028 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9029
9030     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9031
9032 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9033
9034         * device/lib/Makefile.in: bad fix, reverted to 1.43
9035
9036 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9037
9038         * device/lib/Makefile.in: added missing z80 object files
9039
9040 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9041
9042         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9043         pic16 progress by Vangelis:
9044         * src/SDCCglobl.h:
9045         * src/SDCCmain.c:
9046         * src/pic/Makefile:
9047         * src/pic:
9048         * pic/Makefile:
9049         * pic16/device.c:
9050         * pic16/device.h:
9051         * pic16/gen.c:
9052         * pic16/gen.h:
9053         * pic16/genarith.c:
9054         * pic16/glue.c:
9055         * pic16/main.c:
9056         * pic16/pcode.c:
9057         * pic16/pcode.h:
9058         * pic16/pcodepeep.c:
9059         * pic16/peeph.def:
9060
9061 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9062
9063     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9064
9065 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9066
9067     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9068     added gbz80 build to MSVC project.
9069     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9070     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9071     from 8051 stuff and setup so it links using a .lnk file.
9072
9073 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9074
9075     * support/librarian/sdcclib.c: sdcc librarian.
9076     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9077     with sdcclib.
9078
9079 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9080
9081     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9082
9083 2003-07-02  Borut Razem <borut.razem AT siol.net>
9084
9085         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9086         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9087         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9088         src/xa51/main.c, src/z80/main.c:
9089         virtualization of glue() function: each port has it's own glue function,
9090         which is accessed by do_glue function pointer in PORT.general structure
9091
9092 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9093
9094         * DS800C400 fun, improved ROM interface and tinibios.
9095
9096 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9097
9098         * More support for DS80C400. Now includes beginning of interface to ROM.
9099
9100 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9101
9102         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9103
9104 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9105
9106         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9107
9108 2003-06-19  Borut Razem <borut.razem AT siol.net>
9109
9110         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9111
9112 2003-06-19  Borut Razem <borut.razem AT siol.net>
9113
9114         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9115         fixed Z80 port - crt0.o: cannot open.
9116
9117 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9118
9119         * support/Util/MySystem.c (merge_command): revert bad fix
9120
9121 2003-06-18  Borut Razem <borut.razem AT siol.net>
9122
9123         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9124
9125 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9126
9127         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9128         option --use-stdout sends errors to stdout instead of stderr.
9129
9130 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9131
9132         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9133
9134 2003-06-15  Borut Razem <borut.razem AT siol.net>
9135
9136         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9137         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9138         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9139         fixed width array of pointers replaced with sets;
9140         multiple include and lib paths ared transferred to preprocessor and linker
9141         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9142         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9143         fixed width array of pointers
9144         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9145         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9146         fixupPath(), getPathDifference()
9147         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9148         fixed width array of pointers
9149
9150 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9151
9152         * src/pic16/ralloc.c: fix warnings
9153         * src/pic16/pcode.c: fix warning
9154
9155 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9156
9157          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9158         know all the details, but essentially this set of changes enable
9159         the pic16 port to generate movff instructions and generate assembler
9160         directives,
9161         * src/SDCCmain.c:
9162         * src/pic16/gen.c:
9163         * src/pic16/glue.c:
9164         * src/pic16/pcode.c:
9165         * src/pic16/device.c:
9166         * src/pic16/main.c:
9167         * src/pic16/pcode.h:
9168         * src/pic16/pcoderegs.c:
9169         * src/pic16/ralloc.c:
9170         * src/pic16/ralloc.h:
9171
9172 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9173
9174         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9175         added option --vc, so sdcc errors and warnings are compatible with
9176         Microsoft Visual Studio.
9177
9178 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9179
9180         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9181           device/lib/libfloat.lib: added atof function.
9182
9183 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9184
9185         * doc/sdccman.lyx: updated to Lyx 1.3
9186         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9187         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9188         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9189
9190 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9191
9192         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9193
9194 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9195
9196         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9197           additions to the "related tools/documentation" section
9198
9199 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9200
9201         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9202
9203 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9204
9205         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9206         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9207
9208 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9209
9210         * doc/sdccman.lyx: fix double dash and other minor things
9211         * doc/Makefile: fix double dash
9212
9213 2003-05-28  Karl Bongers(patches from Martin Helmling)
9214         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9215           condition and ignore commands.
9216
9217 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9218
9219         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9220           is in parts still quite out of date, I did changes as far as I felt makes sense
9221           for a non-native english speaker.
9222           Please feel free to add to the manual or to correct my changes.
9223         * doc/Makefile: undid touching the date of intermediate tex files.
9224
9225 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9226
9227         * doc/sdccman.lyx: Manual has an index now
9228
9229 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9230
9231         Finalize muluint/mulsint and mululong/mulslong merging:
9232         * device/lib/_mulint.c
9233         * device/lib/_mullong.c
9234         * device/lib/gbz80/mul.s
9235         * device/lib/gbz80/stubs.s
9236         * device/lib/z80/mul.s
9237         * device/lib/z80/stubs.s
9238         * src/SDCCsymt.c (initCSupport)
9239
9240 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9241
9242         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9243         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9244           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9245           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9246           instead of /Zm500.
9247
9248 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9249
9250         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9251           the regression tests I'm not brave enough to enable 245.b, 245.c
9252         * doc/sdccman.lyx: added latex preamble for hyperref package.
9253           Using pdflatex this will give you a hyperlinked pdf file with
9254           bookmarks. (prepend '%' before /usepackage if this breaks something)
9255
9256 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9257
9258          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9259
9260 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9261
9262         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9263
9264 2003-05-21    <johan AT balder>
9265
9266         * src/SDCCglue.c (printIval): fixed bug #739934
9267
9268 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9269
9270         Applied patch from bug 737905 (renamed yylineo to mylineno):
9271         * src/altlex.c
9272         * src/SDCCast.c
9273         * src/SDCglobl.h
9274         * src/SDCC.lex
9275         * src/SDCCsymt.c
9276         * src/SDCCval.c
9277         * src/pic16/pcode.c: Cleaned warnings
9278         * src/pic16/pcodeflow.c: Cleaned warnings
9279         * src/pic16/pcoderegs.c: Cleaned warnings
9280
9281 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9282
9283         * src/pic16/pcode.c: Cleaned warnings
9284         * src/pic16/pcodepeep.c: Cleaned warnings
9285         * src/pic16/ralloc.c: Cleaned warnings
9286
9287 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9288
9289         * doc/sdccman.lyx: fixed bug 739745
9290         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9291
9292 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9293
9294         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9295         it can be defined with CFLAGS when running configure
9296         * src/SDCCmain.c: fixed compiling + linking with object files
9297
9298 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9299
9300         * configure.in: configure for pic16 port,
9301             added --disable-pic16-port
9302         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9303         * src/SDCCmain.c: linkOptions is changed to set *,
9304             added if/endif conditional macros to remove options help
9305             messages from optionsTable when a port is not configured, added
9306             support for the PIc16 port in the ports table, when executing
9307             the compiler with no port specified on command line, a default
9308             port is selected with the new macro DEFAULT_PORT which is
9309             defined in port.h, in setDefaultOptions() linkOptions is removed
9310             from initialization assignment, since now it is a set,
9311             parseCmdLine uses setParseWithComma for linkOptions, in
9312             linkEdit() linkOptions are accessed with new function indexSet()
9313             which returns the i'th item of a set variable. See SDCCset.c, in
9314             linkEdit() when calling buildCmdLine(), added linkOptions as
9315             last argument. Now users can pass arguments to gplink via the
9316             -Wl option, main() uses pic16glue() to glue up pic16 programs
9317         * src/SDCCpeeph.c: various changes to support pic16
9318         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9319             return the i'th item of the set
9320         * src/SDCCset.h: added function prototype for indexSet()
9321         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9322         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9323         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9324             added macro DEFAULT_PORT
9325         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9326         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9327             generated
9328         * src/pic16/glue.c: commented out some error producing lines
9329         * src/pic16/main.c: __config directives are commented out to stop
9330             gpasm complaining and test the linkage with gplink, _linkCmd and
9331             _asmCmd changed to be more gplink and gpasm friendly
9332         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9333             produced an error when parsed, peep rule 12 is added to utilize
9334             movff, but it is commented out since the pCode does not support
9335             yet a command with 2 address arguments
9336
9337 2003-05-18    <johan AT balder>
9338
9339         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9340         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9341 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9342
9343         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9344   Added feature to script commands from file.
9345
9346 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9347
9348         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9349         * src/SDCCutil.c: include ctype.h for win32
9350
9351 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9352
9353         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9354
9355 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9356
9357         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9358   Fixed so you can set breakpoints prior to run, run does not stop
9359   on entry now.  Add tbreak.  Other enhancements and fixes for use
9360   with ddd.
9361
9362 2003-05-12  Borut Razem <borut.razem AT siol.net>
9363
9364         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9365
9366 2003-05-11  Borut Razem <borut.razem AT siol.net>
9367
9368         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9369         the path of bin directory, so that PATH is the only env. variable, which has to be set
9370         in case of standard installation.
9371         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9372         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9373         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9374
9375 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9376
9377         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9378         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9379         temp files are in the port dir; clean the gen/test directory when
9380         generating new test.c
9381         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9382         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9383         * support/regression/tests/zeropad.c: added
9384
9385 2003-05-09    <johan AT balder>
9386
9387         * src/SDCCglue.c: fixed bug #597940
9388
9389 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9390
9391         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9392   cache sfr, optimize next,step, fix off by one sourceline,
9393   support ddd list function.
9394         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9395
9396 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9397
9398         * support/regression/HTMLgen.py: added compare_s2f()
9399         * support/regression/Makefile: redo 1.27
9400         * support/regression/generate-cases.py: redo 1.5
9401
9402 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9403
9404         * support/regression/tests/float.c: workaround 33 bit hex constant
9405         * support/regression/tests/simplefloat.c: fix division for host
9406
9407 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9408
9409         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9410         that tame's the PIC's over-aggressive optimizer.
9411
9412 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9413
9414          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9415          support for MSVC.
9416
9417 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9418
9419         Initial support for DS80C400. "Hello world" runs on TINIm400
9420         (with polled I/O).
9421
9422 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9423
9424          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9425          * Some notes on ddd usage added in debugger/README
9426          Martin Helmling adding more features and fixes for ddd GUI debugger.
9427          Code added for nexti, stepi, up, down, and other adjustments.
9428
9429 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9430
9431         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9432         * src/pic/peeph.def Added two rules to optimize carry manipulation
9433         * src/pic/* removed debug printfs
9434
9435 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9436
9437         * debugger/mcs51/cmd.c: added header newalloc.h
9438
9439 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9440
9441         * as/Makefile: new EXEEXT
9442         * as/z80/Makefile: remove trailing slash of BUILDIR
9443         * as/z80/clean.mk: new EXEEXT
9444         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9445         * support/cpp2/Makefile.in: new EXEEXT
9446         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9447
9448 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9449
9450         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9451         EXEEXT was introduced to fix all related problems with targets
9452         "clean", "install" and "uninstall"; a couple of further flaws
9453         especially with "clean" have been fixed too
9454         * as/mcs51/Makefile.in
9455         * as/mcs51/clean.mk
9456         * as/z80/Makefile
9457         * Makefile
9458         * clean.mk
9459         * debugger/mcs51/Makefile.in
9460         * debugger/mcs51/clean.mk
9461         * link/z80/Makefile
9462         * link/z80/Makefile.in
9463         * link/z80/clean.mk
9464         * link/Makefile
9465         * packihx/Makefile.in
9466         * packihx/clean.mk
9467         * sim/ucsim/Makefile
9468         * sim/ucsim/clean.mk
9469         * sim/ucsim/avr.src/Makefile.in
9470         * sim/ucsim/avr.src/clean.mk
9471         * sim/ucsim/s51.src/Makefile.in
9472         * sim/ucsim/s51.src/clean.mk
9473         * sim/ucsim/xa.src/Makefile.in
9474         * sim/ucsim/xa.src/clean.mk
9475         * sim/ucsim/z80.src/Makefile.in
9476         * sim/ucsim/z80.src/clean.mk
9477         * sim/ucsim/main_in.mk
9478         * sim/ucsim/packages_in.mk
9479         * sim/ucsim/gui.src/Makefile.in
9480         * sim/ucsim/gui.src/serio.src/Makefile.in
9481         * sim/ucsim/gui.src/serio.src/clean.mk
9482         * src/Makefile.in
9483         * src/clean.mk
9484         * support/cpp2/Makefile.in
9485         * support/cpp2/clean.mk
9486         * support/makebin/Makefile
9487         * support/makebin/clean.mk
9488         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9489         * doc/sdccman.lyx: --program-suffix no longer needed
9490
9491 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9492
9493          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9494          Martin Helmling added support for ddd GUI debugger.
9495          Code added to display assembly, set variables, and other commands
9496          to interface to ddd.
9497
9498 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9499
9500         * as/Makefile: fix target clean
9501         * as/clean.mk: fix target clean
9502         * as/z80/clean.mk: fix target clean
9503
9504 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9505
9506         * Makefile.common.in: added  AT EXEEXT AT
9507         * configure.in: removed all mingw32 stuff
9508         * configure: rebuilt from configure.in
9509         * doc/sdccman.lyx: updated section "installation"
9510         * support/scripts/sdcc_mingw32: adapted to configure
9511         * support/scripts/sdcc_cygwin_mingw32: added
9512
9513 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9514
9515         * src/pic Added object file support for the PIC port
9516         * src/pic Applied patch from Craig Franklin (this started the object file support)
9517         * src/regression Updated the PIC regression tests for object files
9518
9519 2003-04-20  Borut Razem <borut.razem AT siol.net>
9520
9521         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9522           lklex.c: In function `getfid':
9523           lklex.c:203: warning: array subscript has type `char'
9524         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9525           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9526         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9527           stack handling macros
9528
9529 2003-04-19  Borut Razem <borut.razem AT siol.net>
9530
9531         * "handling space characters in file path" task:
9532         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9533         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9534         * support/Util/MySystem.h: make it self-sufficient
9535         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9536           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9537           handling space characters in file path
9538         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9539           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9540         * support/Util/MySystem.c: handling space characters in executable's path
9541
9542 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9543
9544         * as/z80/Makefile: fix permanent rebuild of z80
9545         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9546         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9547
9548 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9549
9550         * src/SDCCopt.c: add special case optimization to replace modulo by
9551           a power of two with a bitwise AND.
9552
9553 2003-04-18    <johan AT balder>
9554
9555         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9556
9557 2003-04-17    <johan AT balder>
9558
9559         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9560         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9561
9562 2003-04-13  Borut Razem <borut.razem AT siol.net>
9563
9564         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9565         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9566           fixed mingw problem in adl_NORMALIZE_PATH
9567
9568 2003-04-12  Borut Razem <borut.razem AT siol.net>
9569
9570         * fixed "#pragma SAVE/RESTORE can not be nested":
9571         * src/SDCC.lex: reworked pragma handling functions
9572         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9573         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9574
9575 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9576
9577         * src/SDCCutil.c (pathEquivalent): defined but not used
9578         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9579         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9580         * configure: rebuilt from configure.in
9581         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9582         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9583         * device/include/Makefile.in: replace sdcc_datadir
9584         * device/lib/Makefile.in: replace sdcc_datadir
9585         * Makefile.common.in: add LDFLAGS from configure
9586         * packihx/Makefile.in: use LDFLAGS
9587         * src/Makefile.in: use LDFLAGS
9588         * support/cpp2/Makefile.in: add LDFLAGS from configure
9589         * support/makebin/Makefile: use LDFLAGS
9590         * .version: bumped version number to 2.3.5
9591
9592 2003-04-12  Borut Razem <borut.razem AT siol.net>
9593
9594         * completed "different paths" task:
9595         * src/SDCCmacro.c: fixed bug in handling quotes
9596         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9597         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9598
9599 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9600
9601         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9602
9603 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9604
9605         * ds390/gen.c ds390/peeph.def: fix bug 706781
9606
9607 2003-04-11  Borut Razem <borut.razem AT siol.net>
9608
9609         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9610
9611 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9612
9613         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9614         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9615          set - this bit used to not be set...).
9616         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9617           bad code in PIC Port
9618         * src/regression/and2.c added to test bug 609268
9619         * src/regression/Makefile added and2.c to regression test
9620
9621
9622 2003-04-08    <johan AT CP255758-A>
9623
9624         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9625         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9626         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9627
9628 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9629
9630         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9631         fix bug #487815
9632         * support/cpp2/Makefile.in: fix bug #487815
9633         * configure: rebuilt from configure.in
9634         * Makefile.common.in: docdir changed, new path suffixes
9635         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9636         * sdcc_vc_in.h: reflect changes from sdccconf.h
9637         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9638         * src/SDCCutil.h: remove BINDIR hack
9639         * doc/sdccman.lyx: update new path hierarchy
9640
9641 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9642
9643         * src/SDCCpeeph.c: added okToRemoveSLOC test
9644
9645 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9646
9647         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9648
9649 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9650
9651         * src/SDCCpeeph.c: added labelIsReturnOnly test
9652         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9653
9654 2003-04-05    <johan AT balder>
9655
9656         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9657         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9658         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9659         * src/SDCCast.c: fixed a warning
9660         * src/SDCCast.h: fixed a warning
9661         * src/SDCCicode.c (operandFromAst): fixed a warning
9662
9663 2003-04-04    <johan AT balder>
9664
9665         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9666         * src/SDCCast.c (decorateType): fixed bug #715076
9667         * src/SDCC.y: fixed bug #702907
9668
9669 2003-04-03    <johan AT balder>
9670
9671         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9672         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9673         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9674         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9675         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9676
9677 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9678
9679         * _decdptr.c: fix return values
9680         * _gptrget.c: fix return values
9681         * _gptrgetc.c: fix return values
9682         * _gptrput.c: fix return values
9683         * _mulint.c: fix return values
9684         * as/z80/Makefile: fix 'make -j' problem
9685
9686 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9687
9688         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9689         * configure.in: big cleanup, updated to autoconf 2.5x
9690         * configure: rebuilt from configure.in
9691         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9692         * sdcc_vc_in.h: reflect changes from sdccconf.h
9693         * doc/Makefile: fixed a flaw in "make install"
9694
9695 2003-04-02    <johan AT balder>
9696
9697         * src/ds390/gen.c (genCmp): no comments
9698         * src/mcs51/gen.c (genCmp): no comments
9699         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9700         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9701
9702 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9703
9704         * support/regression/generate-cases.py: place generated file in given sub directory
9705         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9706         * support/regression/Makefile: improvements for 'make -j';
9707         side effect: it's simpler and faster now
9708
9709 2003-03-31  Borut Razem <borut.razem AT siol.net>
9710
9711         * src/z80/main.c: link-{port} and as-{port} defined without path
9712         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9713
9714 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9715
9716         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9717
9718 2003-03-30  Borut Razem <borut.razem AT siol.net>
9719
9720         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9721           changed type of list parameter to set
9722         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9723         * src/port.h: changed type of do_assemble() parameter to set
9724         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9725           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9726           definition of "cppoutfilename" macro with NULL value in preProcess()
9727         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9728         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9729         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9730           replaced with set *binPathSet
9731         * shash_add() deallocates the item, if allready exsists, before adding the new one
9732         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9733
9734 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9735
9736         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9737           a nested for loop bug in the PIC port
9738         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9739           for loops
9740
9741 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9742
9743         * support/Util/dbuf.h: remove C++ stuff to make it portable
9744
9745 2003-03-28  Borut Razem <borut.razem AT siol.net>
9746
9747         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9748           literal strings in stringLiteral()
9749         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9750         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9751           to the project
9752
9753 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9754
9755         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9756
9757 2003-03-26    <johan AT balder>
9758
9759         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9760         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9761         * src/SDCCast.c (decorateType): fixed " -v < 3"
9762
9763 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9764
9765         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9766         Added Lenny Story's debug infrastructure changes:
9767         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9768         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9769         * src/cdbFile.c: added
9770         * src/SDCCdebug.c: added
9771         * src/SDCCdebug.h: added
9772         * src/SDCCast.c (createFunction)
9773         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9774         * src/SDCCmain.c (parseCmdLine, main)
9775         * src/SDCCmem.c (redoStackOffsets)
9776         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9777         * src/SDCCsymt.h
9778         * src/common.h
9779         * src/avr/gen.c (genAVRCode)
9780         * src/ds390/gen.c (gen390Code)
9781         * src/mcs51/gen.c (gen51Code)
9782         * src/pic/gen.c (genpic14Code)
9783         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9784         * src/xa51/gen.c (genXA51Code)
9785         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9786
9787 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9788
9789         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9790         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9791
9792 2003-03-22    <johan AT balder>
9793
9794         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9795
9796 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9797
9798         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9799         * doc/cdbfileformat.lyx: added, written by Lenny Story
9800         * doc/Makefile: added cdbfileformat.lyx
9801         * doc/clean.mk: added cdbfileformat.lyx
9802
9803 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9804
9805         * src/mcs51/peeph.def: fix bug #705773
9806
9807 2003-03-20    <johan AT balder>
9808
9809         An sfr/sbit can have an "at #" AND an initializer
9810         * src/SDCCsymt.c (checkSClass):
9811         * src/SDCCmem.c (allocGlobal):
9812         * src/SDCCmem.c (allocLocal):
9813         * src/SDCCast.c (createBlock):
9814
9815 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9816
9817         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9818
9819 2003-03-16    <johan AT balder>
9820
9821         Undid the hackup of const and volatile, the problem is much bigger
9822         * src/SDCC.y:1.65
9823         * src/SDCCast.c:1.171
9824         * src/SDCCglue.c:1.138
9825         * src/SDCCicode.c:1.146
9826         * src/SDCCsymt.c:1.150
9827         * src/SDCCval.c:1.65
9828
9829 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9830
9831         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9832         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9833
9834 2003-03-13    <johan AT balder>
9835
9836         Hackup const and volatile modifiers in type chains a bit:
9837         * src/SDCC.y:1.63
9838         * src/SDCCast.c:1.169
9839         * src/SDCCglue.c:1.136
9840         * src/SDCCicode.c:1.143
9841         * src/SDCCsymt.c1.146
9842         * src/SDCCsymt.h1.59
9843         * src/SDCCval.c:1.63
9844
9845 2003-03-12    <johan AT balder>
9846
9847         * src/SDCCBBlock.h: more LRH debugging junk
9848         * src/SDCCcflow.h: more LRH debugging junk
9849         * src/SDCCloop.c: more LRH debugging junk
9850         * src/SDCC.y (struct_declaration): fixed bug #697590
9851         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9852         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9853         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9854
9855 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9856         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9857         test function names must now match exactly).
9858         * src/SDCCcse.c: added special case in findCheaperOp to allow
9859         extending a short integer. Makes less awful code for bug 700121 test case.
9860
9861 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9862
9863         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9864         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9865
9866 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9867
9868         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9869         actually called (operandsNotEqual() was called for all
9870         operandsNotEqualX tests).
9871
9872 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9873
9874         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9875         with shorter literals. Fixes bug 700121.
9876
9877 2003-03-11    <johan AT balder>
9878
9879         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9880
9881 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9882
9883         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9884         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9885
9886 2003-03-10  Borut Razem <borut.razem AT siol.net>
9887
9888         * src/SDCCmain.c: pipe preprocessor's output
9889         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9890         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9891         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9892         which closes all pipes in pipeSet set
9893         * src/SDCCset.c: free deleted item in function deleteSetItem()
9894         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9895         moved from z80 to src subproject
9896         * .version: increased version number to 2.3.4
9897
9898 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9899
9900         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9901         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9902         * support/regression/ports/xa51/spec.mk: fix typo
9903
9904 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9905
9906         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9907
9908 2003-03-09  Borut Razem <borut.razem AT siol.net>
9909
9910         * src/SDCCmain.c: pipe preprocessor's output
9911         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9912         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9913         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9914         which closes all pipes in pipeSet set
9915         * src/SDCCset.c: free deleted item in function deleteSetItem()
9916         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9917         moved from z80 to src subproject
9918
9919 2003-03-09  Borut Razem <borut.razem AT siol.net>
9920
9921         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9922         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9923         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9924         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9925         * src/SDCCglobl.h: unification of WIN32 native definitions
9926
9927 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9928
9929         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9930
9931 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9932
9933         * src/configure.in:   check for endianess (even while cross-compiling)
9934         * src/configure:      check for endianess (even while cross-compiling)
9935         * src/configure_in.h: check for endianess (even while cross-compiling)
9936         * src/avr/gen.c:        remove old endianess stuff
9937         * src/mcs51/gen.c:      remove old endianess stuff
9938         * src/ds390/gen.c:      remove old endianess stuff
9939         * src/pic/gen.c:        remove old endianess stuff
9940         * src/pic/genarith.c:   remove old endianess stuff
9941         * src/pic/glue.c:       fix endianess check
9942         * src/pic16/gen.c:      remove old endianess stuff
9943         * src/pic16/genarith.c: remove old endianess stuff
9944         * src/pic16/glue.c:     fix endianess check
9945         * src/xa51/gen.c:       remove old endianess stuff
9946         * src/z80/gen.c:        fix endianess check
9947         * src/SDCCglue.c:       fix endianess check
9948         * src/ds390/peeph.def: fix bug 700036
9949
9950 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9951
9952         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9953         * src/configure: find appropriate data-types on host for SDCC's int and long
9954         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9955         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9956         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9957
9958 2003-03-07    <johan AT balder>
9959
9960         Just a big NOOP:
9961                 some minor cleanups before the big shot
9962                 OP_DEFS and OP_USES now use Kevin's protection
9963                 new option --nolabelopt
9964
9965         * src/SDCCBBlock.c:
9966         * src/SDCCast.c,:
9967         * src/SDCCcflow.c:
9968         * src/SDCCcse.c:
9969         * src/SDCCicode.c:
9970         * src/SDCCicode.h:
9971         * src/SDCClabel.c:
9972         * src/SDCCloop.c:
9973         * src/SDCCmain.c:
9974         * src/ds390/ralloc.c:
9975         * src/mcs51/ralloc.c:
9976         * src/pic/ralloc.c:
9977         * src/xa51/ralloc.c:
9978         * src/z80/ralloc.c:
9979
9980 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
9981
9982         * src/pic/pcode.c (get_op): fix 64 bit warnings
9983         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
9984         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
9985         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
9986         * support/regression/tests/malloc.c: fix 64 bit warnings
9987
9988 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
9989
9990         * src/mcs51/gen.c (genMinus): fixed bug 696436
9991
9992 2003-03-02  Borut Razem <borut.razem AT siol.net>
9993
9994         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
9995
9996 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
9997
9998         * configure.in: test for mkstemp
9999         * sdccconf_in.h: add HAVE_MKSTEMP
10000
10001 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10002
10003         * device/include/ctype.h: removed warning while using --stack-auto
10004         * device/include/malloc.h: removed warning while using --stack-auto
10005         * device/include/string.h: removed warning while using --stack-auto
10006
10007 2003-02-23  Borut Razem <borut.razem AT siol.net>
10008
10009         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10010         because NDEBUG is defined (see man assert)
10011         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10012
10013 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10014
10015         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10016         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10017
10018 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10019
10020         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10021         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10022
10023 2003-02-18    <johan AT balder>
10024
10025         * as/mcs51/asmain.c (asmbl): module can start with a digit
10026         * as/z80/asmain.c (asmbl): module can start with a digit
10027
10028 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10029
10030         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10031         * src/asm.c: fix pipe() for Mingw32
10032
10033 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10034
10035         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10036         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10037         make -V work again; --c1mode reads now from stdin
10038         * doc/sdccman.lyx: added --c1mode
10039         * support/Util/SDCCerr.c: new messages for c1 mode
10040         * support/Util/SDCCerr.h: new messages for c1 mode
10041         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10042
10043 2003-02-15    <johan AT balder>
10044
10045         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10046
10047 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10048
10049         * doc/sdccman.lyx: Environment variables, -o and other minor things
10050
10051 2003-02-14    <johan AT balder>
10052
10053         * src/xa51/main.c: before anyone really tries to use it :)
10054
10055         * Install doc's in share/sdcc/doc
10056         * removed some obsolete files
10057         * Do a proper make distclean and uninstall
10058         M Makefile.common.in
10059         R sdccbuild.sh
10060         M as/Makefile
10061         M device/include/Makefile.in
10062         M device/lib/Makefile.in
10063         M doc/sdccman.lyx
10064         M link/Makefile
10065         M sim/ucsim/doc/Makefile.in
10066         M src/clean.mk
10067         R src/avr/peeph.rul
10068         R src/xa51/peeph.rul
10069         M support/cpp2/Makefile.in
10070         M support/makebin/Makefile
10071
10072
10073 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10074
10075         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10076
10077 2003-02-10  Borut Razem <borut.razem AT siol.net>
10078
10079         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10080         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10081         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10082         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10083         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10084         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10085         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10086         src/z80/Makefile.bcc: Borland Makefile cleanup
10087         * as/z80/Makefile.bcc: Added Borland Makefile
10088         * support/cpp2/borland.h: Removed
10089
10090 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10091
10092         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10093         * src/SDCC.lex: new pragma NOIV
10094         * src/SDCCglobl.h: new pragma NOIV
10095         * src/SDCCmem.c: new pragma NOIV
10096
10097 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10098
10099         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10100
10101 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10102
10103         * src/SDCCmain.c: signal handling is switched off by --debug
10104         * doc/Makefile: small fix for install; use clean.mk again
10105         * doc/clean.mk: clean *.pdf and *.html too
10106
10107 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10108
10109         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10110         * device/lib/printfl.c: fix a ds390 bug by making it portable
10111         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10112         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10113         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10114         * debugger/mcs51/cmd.c: converted multi-line string literals
10115         * sim/ucsim/globals.cc: converted multi-line string literals
10116         * src/SDCCmain.c: introduced signal handler to remove temp files
10117         * doc/Makefile: small tweaks, implement clean
10118         * doc: removed generated files
10119
10120 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10121
10122         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10123         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10124         Address Record is not correctly generated for DS390."
10125
10126 2003-02-02  Borut Razem <borut.razem AT siol.net>
10127
10128         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10129         * as/mcs51/asm.h: fixed compilation with Borland C
10130         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10131         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10132         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10133         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10134         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10135         src/z80/Makefile.bcc: delete $(LIB) only if exist
10136         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10137
10138 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10139
10140         * device/include/malloc.h: introduced NULL
10141         * device/include/string.h: introduced NULL
10142         * device/include/stdlib.h: introduced NULL
10143         * device/lib/_memcpy.c: removed NULL
10144         * device/lib/_strcat.c: removed NULL
10145         * device/lib/_strchr.c: removed NULL
10146         * device/lib/_strcmp.c: removed NULL
10147         * device/lib/_strcpy.c: removed NULL
10148         * device/lib/_strcspn.c: removed NULL
10149         * device/lib/_strlen.c: removed NULL
10150         * device/lib/_strncat.c: removed NULL
10151         * device/lib/_strncmp.c: removed NULL
10152         * device/lib/_strncpy.c: removed NULL
10153         * device/lib/_strpbrk.c: removed NULL
10154         * device/lib/_strrchr.c: removed NULL
10155         * device/lib/_strspn.c: removed NULL
10156         * device/lib/_strstr.c: removed NULL
10157         * device/lib/_strtok.c: removed NULL
10158         * device/lib/malloc.c: removed NULL, include own header
10159
10160 2003-02-02    <johan AT balder>
10161
10162         * 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
10163         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10164         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10165         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10166         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10167         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10168
10169 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10170
10171         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10172         area 'DATA'"
10173
10174 2003-02-01    <johan AT balder>
10175
10176         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10177
10178 2003-01-31    <johan AT CP255758-A>
10179
10180         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10181
10182 2003-01-30    <johan AT balder>
10183
10184         * src/SDCCBBlock.c: automatic bug detection
10185         * src/SDCCicode.c: automatic bug detection
10186
10187 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10188
10189         * src/SDCCglobl.h:   now --xram-size 0 works
10190         * src/SDCCmain.c:    now --xram-size 0 works
10191
10192 2003-01-29    <johan AT balder>
10193
10194         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10195
10196 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10197
10198         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10199         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10200         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10201         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10202         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10203         * src/SDCCmain.c:    Added options --xram-size and --code-size
10204
10205 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10206
10207         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10208         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10209
10210 2003-01-27    <johan AT balder>
10211
10212         * src/SDCC.y: fixed bug #613764
10213
10214 2003-01-26    <johan AT balder>
10215
10216         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10217         * src/SDCCsymt.h: fixed bug #673374
10218         * src/SDCCglue.c: fixed bug #661910
10219         * src/SDCCast.c: fixed bug #458099 and 673374
10220
10221 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10222
10223         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10224         * as/mcs51/strcmpi.h: added
10225         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10226         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10227         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10228         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10229         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10230         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10231         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10232         * as/mcs51/Makefile.aslink: new module strcmpi
10233         * as/mcs51/Makefile.asx8051: new module strcmpi
10234         * as/mcs51/Makefil.bcc: new module strcmpi
10235         * as/mcs51/Makefile.in: new module strcmpi
10236         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10237
10238 2003-01-26    <johan AT balder>
10239
10240         * src/SDCCglue.c: reverted back to 1.124
10241         * src/SDCCast.c: reverted back to 1.156
10242         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10243
10244 2003-01-25    <johan AT balder>
10245
10246         * src/SDCCglue.c: A better fix for bug #661910
10247         * src/SDCCast.c: A better fix for bug #661910
10248         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10249
10250 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10251
10252         * src/Makefile.in: remove spawn.o
10253         * src/SDCCmain.c: remove spawn.h
10254         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10255         * src/spawn.c: removed
10256         * src/spawn.h: removed
10257         * support/regression/ports/ds390/spec.mk: link with -r
10258
10259 2003-01-24    <johan AT CP255758-A>
10260
10261         * src/ds390/gen.c (aopOp): fixed bug #667458
10262         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10263         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10264         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10265
10266 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10267
10268         * src/mcs51/peeph.def: better assembler identation by Frieder
10269         * src/mcs51/gen.c: better assembler identation by Frieder
10270
10271 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10272
10273         * as/z80/string.h: removed for gcc 3.2
10274         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10275         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10276
10277 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10278
10279         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10280         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10281         * support/regression/Makefile: separate temp files for ports
10282         * support/regression/generate-cases.py: separate temp files for ports
10283         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10284         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10285
10286 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10287
10288         * moved tinitalk to device/examples/ds390
10289
10290 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10291
10292         * as/mcs51/lkmem.c: rflag is for DS390
10293         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10294         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10295                          (linkEdit): move mem- and map-files the same way as ihx-files
10296         * src/z80/main.c (_setDefaultOptions): removed --generic
10297         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10298         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10299         * src/pic/glue.c (picglue): --c1mode works again
10300         * src/pic16/glue.c (pic16glue): --c1mode works again
10301         * src/asm.c (printCLine): fix #660034
10302
10303 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10304
10305         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10306         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10307         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10308         * as/mcs51/lkmem (summary): better fix for sp problem
10309         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10310         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10311         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10312                                               remove --stack-after-data
10313
10314 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10315
10316         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10317         * src/SDCCutil.c (join): ugly bug: missing '\0'
10318         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10319
10320 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10321
10322         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10323         * src/port.h: typo
10324         * src/pic/main.c (_asmCmd): gpasm supports -o
10325         * src/z80/main.c: more general macros
10326         * device/lib/Makefile.in: remove intermediate files
10327
10328 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10329
10330         * .version: Bumped version number to 2.3.3
10331         * src/SDCCBBlock.c: new option -o
10332         * src/SDCCglobl.h: new option -o
10333         * src/SDCCglue.c: new option -o
10334         * src/SDCCmain.c: new option -o
10335         * src/asm.c: new option -o
10336         * src/ds390/main.c: new option -o
10337         * src/pic/glue.c: new option -o
10338         * src/pic/pcode.c: new option -o
10339         * src/pic/ralloc.c: new option -o
10340         * src/pic16/glue.c: new option -o
10341         * src/pic16/pcode.c: new option -o
10342         * src/pic16/ralloc.c: new option -o
10343         * src/z80/main.c: new option -o
10344         * device/lib/Makefile.in: use -o
10345         * support/regression/ports/ds390/spec.mk: use -o
10346         * support/regression/ports/gbz80/spec.mk: use -o
10347         * support/regression/ports/mcs51/spec.mk: use -o
10348         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10349         * support/regression/ports/z80/spec.mk: use -o
10350         * support/regression/ports/ucz80/spec.mk: use -o
10351         * support/regression/ports/xa51/spec.mk: use -o
10352         * support/regression/fwk/lib/timeout.c: fix usage string
10353
10354 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10355         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10356
10357 2003-01-07    <johan AT balder>
10358
10359         * src/SDCCast.c (decorateType): fixed bug #600035
10360
10361 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10362         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10363         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10364         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10365         * src/pic/pcode.c: outcommented unused variable to remove warnings
10366         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10367
10368 2003-01-06    <karl AT turbobit.com>
10369         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10370    regression tests.
10371
10372 2003-01-06    <johan AT balder>
10373
10374         * src/SDCCicode.c: fixed array add
10375
10376 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10377         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10378         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10379
10380 2003-01-04    <johan AT balder>
10381
10382         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10383
10384 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10385         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10386
10387 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10388         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10389         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10390
10391 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10392         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10393
10394 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10395         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10396
10397 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10398         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10399
10400 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10401
10402     * in \sdcc\as\mcs51\ changed these files in order to create an
10403     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10404     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10405     following files to include the previous two files: aslink.dsp,
10406     Makefile.aslink, Makefile.bcc, and Makefile.in.
10407
10408     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10409     .adb instead of .cdb
10410
10411 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10412
10413         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10414         value from option --iram-size.
10415
10416 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10417
10418         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10419         dram[] array.
10420
10421 2002-09-18    <wiml AT hhhh.org>
10422
10423         * SDCClrange.h: exposed setFromRange() and setToRange()
10424         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10425           packRegsForAccUse() (bug 542397)
10426         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10427           multiple times and emitting the fetch operations more than once
10428           added aopGetUsesAcc() function to allow binary operators to
10429           fetch their operands in the correct order; made genMinus() emit
10430           compact code for X = LITERAL - Y
10431
10432 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10433         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10434         sprintf() in line 1267.
10435
10436 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10437         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10438         like ports.
10439
10440 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10441         Changes to aslink (All the changes are marked with 'JCF'):
10442
10443         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10444         summary().
10445
10446         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10447         area BSEG.  Also moves, if possible, the DATA area down into the internal
10448         ram so more space is available.
10449
10450         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10451         sflag.
10452
10453         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10454         not bytes.  Function summary() which creates a memory usage summary
10455         file with extension .mem.  Reports of overlaping stack and small stack
10456         size.  If the space for the stack is less than 16 bytes aslink trows a
10457         warning.
10458
10459         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10460         the 8051.  Option 'y' for memory summary output file.
10461
10462         Changes to sdcc (All the changes are marked with 'JCF'):
10463
10464         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10465
10466         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10467         overlaying area for it (uses RegBankUsed[4]).
10468
10469         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10470         bank zero as used by default.  By default aslink locates the stack
10471         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10472         the creation of the .mem file.  Delegates the allocation of data area
10473         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10474         the begining of the stack area to aslink.
10475
10476         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10477         glue() in SDCCglue.c creates an area for it.
10478
10479 2002-09-03  Borut Razem <borut.razem AT siol.net>
10480         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10481         sdcc/src/pic/glue.c:
10482         introduced atexit() handler for teporay files removal in case of
10483         errors, assertions, ...
10484
10485 2002-08-29  Borut Razem <borut.razem AT siol.net>
10486         * sdcc/support/cpp2/auto-host_vc_in.h:
10487         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10488         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10489         Maybe there is a similar problem with BORLANDC? It should be checked!
10490
10491         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10492         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10493         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10494         was not executed, and the compiler (cl) launched a warning:
10495         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10496
10497 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10498         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10499
10500 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10501         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10502
10503         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10504           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10505           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10506           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10507           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10508           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10509           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10510         - added Release configuration in VS projects
10511         - review of compiler an linker options
10512         - VC .exe files are generated in bin_vc directory, not to interfere
10513           with binaries generated from other projects (cygwin, mingw, bcc ...)
10514
10515         * sdcc/src/yacc.dsp: added
10516
10517         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10518         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10519         and insert the version number definitions from .version
10520
10521         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10522
10523         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10524         added - genarate auto-host.h using auto-host_vc_in.h as template
10525
10526         * sdcc/sdcc_vc.h,
10527         removed from CVS, generated automatically
10528
10529 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10530         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10531
10532 2002-08-11  Borut Razem <borut.razem AT siol.net>
10533         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10534
10535 2002-08-10  Borut Razem <borut.razem AT siol.net>
10536         * src/SDCCmain.c (main):
10537         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10538         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10539         The consequence was that some temporary files were not removed.
10540
10541         * src/SDCCglue.c:
10542         unification of code in functions tempfilename() and tempfile():
10543         function tempnam() is defined in Visual Studio 6.0 and .NET
10544
10545         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10546
10547         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10548           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10549         - removed compiler command line option /WX: Treats all warnings as errors
10550         - update a list of source files, included into the project
10551
10552         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10553           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10554         changed project type to Generic Project so that can be correcly converted to VS.NET project
10555
10556         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10557
10558         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10559
10560         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10561
10562         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10563         added return 0 statements after assert() to make compiler happy
10564
10565         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10566         added newline in the def file to keep MSC compiler satisfied
10567
10568         * sdcc/src/z80/gen.c:
10569         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10570           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10571         - solved MSC error in function aopDump()
10572
10573         * sdcc_vc.h: define PREFIX as "\\sdcc"
10574
10575 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10576         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10577
10578 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10579         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10580         - Rewrote the register banking algorithm.
10581         - Added pCode live-range analysis to registers (for now, only non-used and
10582         singly-used registers optimized away)
10583
10584         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10585
10586         * 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.
10587
10588 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10589         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10590
10591 2002-04-22  Michael Hope  <michaelh AT vroom>
10592
10593         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10594
10595         * configure.in (DD_COPT): Added include support required for gbdk.
10596
10597         * .version: Bumped version number just to increase it.
10598
10599         * src/SDCCmain.c: Added -nostdinc to the default options.
10600
10601 2002-04-15  Michael Hope  <michaelh AT vroom>
10602
10603         * device/lib/z80/printf.c (sprintf): Added.
10604
10605         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10606
10607         * src/z80/peeph.def: Added transpose redundent load rule.
10608
10609         * src/z80/main.c: Added force callee saves for jaune.
10610
10611         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10612
10613         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10614
10615 2002-03-28  Johan Knol  <johan AT balder>
10616
10617         * src/SDCCval.c: fixed bug #532436
10618
10619 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10620         * /src/port.h:
10621         Added "char *Processor" field to the port structure.
10622
10623         * /src/SDCCmain.c:
10624         Added -p option. Allows port dependent processor to be specified.
10625
10626         * all ports:
10627         Initialized the new field char *Processor field to NULL in all ports
10628
10629         * /src/pic/*:
10630         Compiler generated registers for interrupt context saving
10631         were not getting allocated.
10632
10633 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10634
10635         * /src/SDCCast.c:
10636         Fixed left shift. Will promote the left side of a left shift
10637         if a) left shifting more than size of operand or b) when assigned
10638         to something size > size of left side
10639
10640 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10641         * src/pic/*
10642         tons of changes. Register allocation has been
10643         rewritten. Added customization for the various PICs. Flow
10644         analysis is restructured. ...
10645
10646         * src/pic/device.h:
10647         Added
10648
10649         * src/pic/device.c:
10650         Added. device.c is a PIC port hack to accomodate variations
10651         in PIC devices.
10652
10653 2002-03-13  Michael Hope  <michaelh AT vroom>
10654
10655         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10656
10657 2002-03-04  johanknol  <johanknol AT manik>
10658
10659         * /src/SDCCval.c: fixed
10660
10661         const unsigned char arr[][2] = { { 0, 1 } };
10662         t18.c:1: error: Initializer element is not constant
10663
10664 2002-03-04  bela  <bela AT manik>
10665
10666         * /device/include/mcs51reg.h:
10667         ds89c420 register definition update
10668
10669 2002-03-03    <johan AT FRIJA>
10670
10671         * support/Util/SDCCerr.c: did something, but don't no why anymore
10672
10673         * support/regression/tests/bug-524691.c: made it a little less shy
10674
10675         * src/SDCCast.c (decorateType): fixed bug #524697
10676
10677         * src/SDCCast.c: made some lineno improvements
10678
10679         * src/SDCCval.c (getNelements): changed warning to error
10680
10681         * src/SDCCglue.c (printIvalArray): changed warning to error
10682
10683         * src/SDCCicode.c: fixed a warning for mingw
10684
10685         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10686
10687         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10688
10689 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10690
10691         * src/ds390/peeph.def:
10692         Added some more peephole rules
10693
10694         * src/ds390/gen.c: Various fixes & enhancements
10695
10696         * src/SDCClrange.c, src/SDCClrange.h:
10697         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10698
10699         * src/ds390/ralloc.c:
10700         various fixes & enhancements (ds390) specific
10701
10702         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10703         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10704         from rallocs.
10705
10706         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10707
10708 2002-03-02    <johan AT FRIJA>
10709
10710         * src/SDCCast.c (decorateType): fixed bug #524708
10711
10712         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10713
10714         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10715
10716 2002-03-01  Michael Hope  <michaelh AT vroom>
10717
10718         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10719
10720         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10721
10722 2002-03-01    <johan AT FRIJA>
10723
10724         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10725
10726         * src/SDCCast.c (decorateType): fixed bug #524209
10727
10728         * src/SDCCval.c (valNot): fixed bug #524195
10729
10730 2002-02-26    <johan AT balder>
10731
10732         * src/xa51/gen.c: fixed a warning
10733
10734         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10735
10736         * src/SDCCast.c (decorateType): fixed bug #522534
10737
10738 2002-02-23    <johan AT balder>
10739
10740         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10741
10742 2002-02-22    <johan AT balder>
10743
10744         * src/SDCCast.c: fixed bug #514865
10745
10746         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10747
10748 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10749
10750         * sdcc/src/SDCCloop.c:
10751         Previous fix was not good. basic blocks that have "break" or "return" are
10752         not really partof a loop , but live ranges used in these blocks should
10753         be live thru the entire loop, so set partOfLoop but don't add them to
10754         loop region
10755
10756 2002-02-21    <johan AT FRIJA>
10757
10758         * src/SDCCcse.c: fixed bug #514308
10759
10760 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10761
10762         * src/SDCCloop.c:
10763         Fixed BUG #519583. If a conditional block ended in a return/break
10764         statement inside a loop, it was not being considered part of the loop.
10765
10766         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10767
10768 2002-02-10  Karl Bongers <karl AT turbobit.com>
10769
10770         * debugger/*:
10771         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10772         with lots of comments and notes.
10773
10774         * device/examples/test2.c:
10775         Fix bug, "red" variable not being initialized(compiler complained).
10776
10777         * device/examples/Makefile, examples/test3.c:
10778         Add Makefile in device/examples folder, compiles test3.c
10779         for use as a multiple module SDCDB test case.
10780
10781         * sim/ucsim/cmd.src/cmdset.cc:
10782         Took out debug printfs in ucsim "next" command.
10783
10784         * sim/ucsim/xa.src:
10785         Karl and Johan start ucsim XA support.  Most dissassembly working,
10786         about 75% emulation done(plenty of work remaining).
10787
10788         * sim/ucsim/z80.src:
10789         Add Z80 support to ucsim, add test-ucz80 regression test,
10790         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10791         Notice z80 compiler fails on examples/test3.c/crc code.
10792
10793 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10794
10795         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10796         Added support for --parms-in-bank1
10797
10798         * src/ds390/peeph.def:
10799         added a few more peephole optimzations
10800
10801         * src/ds390/main.c:
10802         1) added __builtin_inp & __builtin_outp used to read in data of given length
10803            from a memory mapped port
10804         2) added __builtin_memcmp
10805         3) added __builtin_swapw swap bytes of a short
10806
10807         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10808         1) handle multiple send & receives from register bank1
10809         2) ralloc can now allocate DPTR1 to some liveRanges
10810
10811         * src/SDCCsymt.c, src/SDCCsymt.h:
10812         changes to handle multiple sends & receives
10813
10814         * src/SDCCptropt.h:
10815         added some pointer arithmetic optimization
10816
10817         * src/SDCCptropt.c:
10818         added some pointer arithmetic optimizations but not stable yet so not
10819         called from anywhere (will get this working shortly)
10820
10821         * src/SDCCopt.c: fixed for multiple sends & receives
10822
10823         * src/SDCCmain.c:
10824         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10825         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10826            set preprocessor defines (depending on options)
10827
10828         * src/SDCCicode.c, src/SDCCicode.h:
10829         changes made to handle multiple sends & receives
10830
10831         * src/SDCCglobl.h:
10832         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10833
10834         * src/SDCCcse.c, src/SDCCcse.h:
10835         added function findbackward def (to be used in upcoming optimization)
10836
10837         * src/SDCCcflow.c, src/SDCCcflow.h:
10838         added function returnAtEnd - to determine if a basic block terminates with
10839         a RETURN iCode
10840
10841         * src/SDCCast.c, src/SDCCast.h:
10842         added option parms-in-bank1
10843
10844         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10845         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10846         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10847         adjusted for --parms-in-bank1 option
10848
10849         * device/include/string.h:
10850         donot redefine "reentrant" keyword
10851
10852         * device/include/ds80c390.h: Added some more SFRs
10853
10854 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10855
10856         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10857
10858 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10859
10860         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10861
10862 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10863
10864         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10865
10866 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10867
10868         * Added --xram-movc option
10869
10870 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10871
10872         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10873
10874 2002-01-11  Johan Knol
10875
10876         * Added math lib of Jesus Calvino-Fraga
10877
10878 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10879
10880         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10881         * support/regression/Makefile: new target test-mcs51-stack-auto
10882         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10883
10884 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10885
10886         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10887
10888 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10889
10890         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10891
10892 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10893
10894         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10895
10896         * src/SDCCglue.h: add definition for printIvalChar()
10897
10898 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10899
10900         * src/SDCCast.c: fix #498138 by Johan
10901
10902         * src/SDCCglue.c: fix #498138 by Johan
10903
10904 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10905
10906         * support/regression/Makefile: fix clean
10907
10908         * support/regression/ports/ds390/support.c: fix transmission of last character
10909
10910 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10911
10912         * /sdcc/src/ds390/gen.c:
10913         a) improved computing address of stack variable
10914         b) took out some #if 0 code
10915         c) improved parmBytes adjustment
10916         d) improved genPlusIncr & genMinusIncr
10917         e) genCmp could generate bad code (when left assigned to DPTR)
10918         f) Fixed bug in hasInc
10919
10920         * /sdcc/src/ds390/ralloc.c:
10921         a) packRegsForSupport could mess up live information (Fixed)
10922         b) packRegsDPTRuse could be incorrect for left & right shift
10923
10924         * /sdcc/src/mcs51/ralloc.c:
10925         packRegsForSupport could mess up the live information (Fixed)
10926
10927         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10928
10929         * /sdcc/src/SDCCast.c:
10930         can reverse a loop even if function call is present as long
10931         as the loop control variable is local & is not passed as parameter
10932
10933 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10934
10935         * /sdcc/ChangeLog: *** empty log message ***
10936
10937         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10938         More builtin function additions for TININative
10939
10940         * /sdcc/src/ds390/ralloc.c:
10941         Had broken the regression testsuite
10942
10943         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10944
10945         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10946         Added funcattr hasStackParms will be set for reentrant functions when there
10947         are paramteres on the stack, this helps in minimizing frame pointer generation
10948         typeFromStr can handle function pointers now
10949
10950         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10951         *** empty log message ***
10952
10953 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10954
10955         * /src/ds390/gen.c, /src/ds390/main.c:
10956         More builtin function additions for TININative
10957
10958         * /src/ds390/ralloc.c:
10959         Had broken the regression testsuite
10960
10961         * /src/SDCCast.c: Fixed a bug in dumptree
10962
10963         * /src/SDCCsymt.c, /src/SDCCsymt.h:
10964         Added funcattr hasStackParms will be set for reentrant functions when there
10965         are paramteres on the stack, this helps in minimizing frame pointer generation
10966         typeFromStr can handle function pointers now
10967
10968         * /doc/builtins.txt, /doc/TININative.txt:
10969         *** empty log message ***
10970
10971
10972 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10973
10974         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
10975         ALPHA version for -mTININative
10976
10977         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
10978         updated to reflect changes in the port structure
10979
10980         * /src/port.h:
10981         added function do_assemble (similar to do_link) if non-null this function
10982         will be called to do assembly (-mTININative) requires a multi command
10983         assembly
10984         added function genAssemblerEnd will be called to generate assembler Epilogue
10985
10986         * /src/SDCCsymt.c:
10987         added _JavaNative to debug info printing
10988
10989         * /src/SDCCmain.c: added option --tini-libid
10990         added port->do_assemble function (-mTININative) has a multi command assemble
10991
10992         * /src/SDCCglue.c: Disabled "constExpr" check
10993         added port->genAssemblerEnd function
10994
10995         * /src/SDCCglobl.h: Added option --tini-libid value
10996
10997         * /src/SDCCast.h:
10998         tookout optimizeCompare from the header (has no external references)
10999
11000         * /src/SDCCast.c: made one more function "static"
11001
11002 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11003
11004         * src/z80/mappings.i: Added z80asm support.
11005
11006         * src/z80/main.c: Added z80asm support on --asm=z80asm
11007
11008         * src/z80/gen.c: Fixed asm portability issues.
11009
11010         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11011
11012         * src/SDCCglue.c (printExterns): Added global/extern split.
11013
11014 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11015
11016         * support/regression/Makefile: added test for mcs51 model large
11017
11018         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11019
11020         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11021
11022 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11023
11024         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11025
11026 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11027
11028         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11029
11030         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11031
11032 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11033
11034         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11035
11036         * support/regression/tests/simplefloat.c: Port to mcs51.
11037
11038 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11039         * support/regression/tests/bug-485362.c: Added.
11040
11041         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11042
11043         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11044
11045         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11046
11047         * src/z80/gen.c (aopDump): Added a dump function.
11048
11049 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11050         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11051
11052         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11053
11054         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11055
11056         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11057
11058         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11059
11060         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11061
11062         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11063
11064         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11065
11066         * support/regression/ports/ds390/support.c: Use tinibios.
11067
11068         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11069
11070 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11071
11072         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11073         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11074
11075         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11076
11077         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11078
11079 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11080
11081         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11082
11083         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11084         (packRegsForIYUse): Created and optimised.
11085
11086 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11087
11088         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11089 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11090
11091         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11092
11093         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11094
11095         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11096
11097 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11098
11099         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11100
11101         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11102
11103 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11104
11105         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11106
11107         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11108
11109         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11110
11111 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11112
11113         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11114         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11115         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11116
11117         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11118
11119         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11120         (genNotFloat): Added.
11121         (genUminusFloat): Added.
11122
11123         * device/lib/z80/Makefile: Added floating pt stubs.
11124
11125         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11126
11127         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11128
11129         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11130
11131 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11132
11133         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11134
11135         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11136
11137         * sdcc/support/regression/Makefile: Add port ds390.
11138
11139         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11140
11141         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11142
11143         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11144
11145         * sdcc/support/regression/ports/ds390/support.c: Added.
11146
11147         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11148
11149         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11150
11151         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11152
11153 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11154
11155         * device/include/malloc.h: Added z80 and gbz80 support.
11156
11157         * device/lib/gbz80/heap.s: Added.
11158
11159         * device/lib/z80/heap.s: Added.
11160
11161         * device/lib/malloc.c: Added z80 and gbz80 support.
11162
11163         * support/regression/tests/malloc.c (testMalloc): Added.
11164
11165         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11166
11167         * support/regression/tests/bug-478094.c: Added.
11168
11169         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11170
11171 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11172
11173         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11174
11175         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11176
11177         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11178
11179         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11180
11181         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11182
11183 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11184
11185         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11186
11187 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11188
11189         * support/regression/tests/bug-477927.c: Added.
11190
11191         * src/z80/peeph.def: Added minor rules.
11192
11193         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11194
11195         * src/z80/peeph.def: Added jump optimisation modification.
11196
11197 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11198
11199         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11200
11201 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11202
11203         * support/regression/tests/funptrs.c: Added.
11204
11205 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11206
11207         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11208
11209 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11210
11211         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11212
11213         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11214
11215         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11216         (movLeft2ResultLong): Created.
11217
11218         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11219         (joinPushes): Added.  Joins two char pushes into a word push.
11220
11221 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11222
11223         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11224
11225         * support/makebin/Makefile (install): Added creation of dest dir.
11226
11227 2001-10-24 Karl Bongers <karl AT turbobit.com>
11228
11229         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11230
11231 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11232
11233         * src/z80/ralloc.c: Turned off faulty pack for one use.
11234
11235         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11236
11237         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11238
11239 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11240
11241         * support/regression/Makefile: Improved clean
11242
11243         * support/regression/ports/gbz80/spec.mk: Added clean
11244
11245         * support/regression/ports/host/spec.mk: Added clean
11246
11247         * support/regression/ports/z80/spec.mk: Added clean
11248
11249         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11250
11251         * support/regression/ports/mcs51/timeout.c: little improvements
11252
11253 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11254
11255         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11256
11257         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11258
11259         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11260
11261 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11262
11263         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11264
11265         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11266
11267 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11268         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11269
11270         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11271
11272         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11273
11274         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11275
11276         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11277
11278         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11279
11280         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11281
11282         * support/regression/tests/longor.c: Added.
11283
11284 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11285
11286         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11287
11288         * as/mcs51/aslink.h: define PATH_MAX
11289
11290         * as/mcs51/asm.h: define PATH_MAX
11291
11292         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11293
11294         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11295
11296         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11297
11298         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11299
11300         * src/SDCCglobl.h: define PATH_MAX
11301
11302         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11303
11304         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11305
11306 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11307
11308         * src/z80/gen.c (gencjneshort): Fixed
11309
11310         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11311
11312 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11313
11314         * support/regression/tests/bug-469671.c: Added.
11315
11316         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11317
11318 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11319
11320         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11321
11322         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11323
11324 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11325
11326         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11327
11328         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11329
11330         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11331
11332         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11333
11334         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11335
11336         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11337
11338         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11339
11340 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11341
11342         * 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.
11343
11344         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11345
11346         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11347
11348 2001-10-07    <johan AT FRIJA>
11349
11350         * device/lib/gets.c (gets): fixed the return value.
11351
11352 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11353         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11354
11355         * 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.
11356
11357         * 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.
11358
11359         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11360
11361         * src/pic/gen.c: Removed Safe_strdup.
11362
11363         * configure.in: Added option to enable libgc support.
11364
11365         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11366         (bitVectUnion): Optimised.
11367         (bitVectIntersect): Optimised.
11368         (bitVectBitsInCommon): Optimised.
11369         (bitVectCplAnd): Optimised.
11370
11371         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11372
11373 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11374
11375         * src/SDCCmain.c: distinguish between assembler debug and plain options
11376
11377         * src/avr/main.c:   remove standard assembler options
11378
11379         * src/ds390/main.c: remove standard assembler options
11380
11381         * src/mcs51/main.c: remove standard assembler options
11382
11383         * src/port.h: removed "PENDING" comment
11384
11385 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11386
11387         * src/device/lib/_mulint.c  : new, with assember functions
11388
11389         * src/device/lib/_mullong.c : new, with assember functions
11390
11391         * src/device/lib/_divuint.c : with assember functions
11392
11393         * src/device/lib/_divsint.c : with assember functions
11394
11395         * src/device/lib/_divulong.c: with assember functions
11396
11397         * src/device/lib/_divslong.c: with assember functions
11398
11399         * src/device/lib/_moduint.c : with assember functions
11400
11401         * src/device/lib/_modsint.c : with assember functions
11402
11403         * src/device/lib/_modulong.c: with assember functions
11404
11405         * src/device/lib/_modslong.c: with assember functions
11406
11407         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11408
11409         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11410
11411         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11412                                       replaced _mululong.c and _mulslong.c by _mullong.c
11413
11414 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11415
11416         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11417
11418 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11419
11420         * src/SDCCglue.c: test, if win32api is available for MINGW
11421
11422 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11423
11424         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11425         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11426         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11427         * support/regression/ports/host/spec.mk: removed GENERIC
11428         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11429         * support/regression/ports/z80/spec.mk: removed GENERIC
11430
11431 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11432
11433         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11434
11435         * support/regression/tests/bug-467035.c: Created.
11436
11437 2001-10-01    <johan AT FRIJA>
11438
11439         * src/SDCC.y: fixed bug #466586 part 1
11440
11441 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11442
11443         * SDCCicode.c: z80 has no generic pointers
11444         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11445
11446 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11447
11448         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11449
11450 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11451
11452         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11453
11454         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11455
11456 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11457
11458         * configure.in: Fixed up so that ucsim is only configured once.
11459
11460         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11461
11462         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11463         (getPathDifference): As above.
11464
11465         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11466
11467         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11468
11469 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11470         * .version: Updated to 2.3.1
11471
11472         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11473         Added copyright header.
11474
11475         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11476         (assemble): Added support for macro based assembler commands.
11477         (linkEdit): Added support for macro based linker commands.
11478         (preProcess): Changed the pre-processor to use macros.
11479         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11480         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11481
11482         * device/lib/z80/crt0.s: Added module name for debugging.
11483
11484 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11485
11486         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11487
11488         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11489
11490         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11491
11492         * src/Makefile.in: Added SDCCmacro and SDCCutil
11493
11494 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11495
11496         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11497
11498 2001-09-16    <johan AT FRIJA>
11499
11500         * 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.
11501
11502 2001-09-15    <johan AT FRIJA>
11503
11504         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11505         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11506
11507 2001-09-11    <johan AT FRIJA>
11508
11509         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11510
11511 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11512
11513         * support/regression/tests/bug-460444.c: Added test case.
11514
11515         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11516         (genCast): Added justification for all of the asserts.
11517
11518 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11519
11520         * support/regression/support.c: _xdata replaced by xdata
11521
11522         * support/regression/spec.mk: removed _generic
11523
11524 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11525
11526         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11527
11528         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11529         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11530
11531         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11532
11533         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11534
11535         * support/regression/tests/bug-460010.c: Added test case.
11536
11537         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11538
11539 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11540
11541         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11542
11543         * support/regression/testfwk.c: removed workaround for bug #436344
11544
11545         * support/regression/tests/bp.c: use less memory with mcs51
11546
11547         * support/regression/tests/bug-441448.c: use less memory
11548
11549         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11550
11551         * support/regression/collate-results.py: typo
11552
11553 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11554
11555         * support/regression/tests/fetchoverlap.c: Added new test case.
11556
11557         * support/regression/tests/bp.c: Added new test case.
11558
11559         * support/regression/tests/bug-448984.c: Added new test case.
11560
11561         * support/regression/tests/pow2shifts.c: Added new test case.
11562
11563         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11564         (genlshTwo): Fixed right shift for count > 8.
11565
11566         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11567
11568 2001-09-08    <johan AT FRIJA>
11569
11570         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11571
11572 2001-09-07    <johan AT FRIJA>
11573
11574         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11575
11576         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11577
11578 2001-09-06    <johan AT FRIJA>
11579
11580         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11581         * bernhard noted me at this: "() equals to (void)" (1.38)
11582
11583 2001-09-05    <johan AT FRIJA>
11584
11585         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11586
11587 2001-09-04    <johan AT FRIJA>
11588
11589         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11590
11591
11592 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11593
11594         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11595
11596 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11597
11598         * link/z80/aslink.h: Fixed path for PATH_MAX
11599
11600 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11601
11602         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11603
11604         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11605
11606         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11607
11608         * 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.
11609
11610 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11611
11612         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11613         (genCmp): Fixed up genCmp for the GB with longs.
11614
11615         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11616
11617         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11618
11619         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11620
11621         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11622
11623 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11624
11625         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11626
11627 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11628
11629         * 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.
11630
11631         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11632
11633 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11634
11635         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11636
11637         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11638
11639 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11640
11641   * sim/ucsim/configure:    little improvement of Cygwin-detection
11642   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11643   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11644   * support/regression/tests/bug-221100.c: small changes for mcs51
11645   * support/regression/tests/bug-221168.c: small changes for mcs51
11646   * support/regression/tests/bug-227710.c: small changes for mcs51
11647   * support/regression/tests/staticinit.c: small changes for mcs51
11648   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11649   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11650   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11651
11652 $Revision$