* as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
[fw/sdcc] / ChangeLog
1 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
4           consecutive abs areas
5           (find_empty_space, allocate_space): added map to handle codemap or
6            xdatamap,
7           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
8            absolute idata and xdata
9         * as/mcs51/lkmem.c (summary2): updated legend
10
11 2006-06-16 Raphael Neider <rneider AT web.de>
12
13         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
14
15 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
16
17         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
18           1208515
19         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
20
21 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
22
23         * src/port.h (struct PORT): added field gp_tags, to hold the tag
24         value of generic pointers,
25         * src/avr/main.c,
26           src/ds390/main.c,
27           src/hc08/main.c,
28           src/izt/i186.c,
29           src/izt/tlcs900h.c,
30           src/mcs51/main.c,
31           src/pic/main.c,
32           src/pic16/main.c,
33           src/xa51/main.c,
34           src/z80/main.c: PORT structure, added elements for gp_tags field,
35         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
36         fields in the PORT structure of each port,
37         * src/SDCCast.c (decorateType): allow processing of generic pointers
38         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
39         S_FIXED symbols
40
41 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
42
43         * link/z80/lkgb.c,
44         * link/z80/lkgg.c,
45         * src/pic16/gen.c,
46         * src/pic16/main.c,
47         * src/pic16/pcode.c,
48         * src/pic/main.c,
49         * src/pic/pcoderegs.c,
50         * src/SDCCicode.c,
51         * src/SDCCmain.c,
52         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
53           bug 1504689 on minGW
54
55 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
56
57         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
58
59 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
60
61         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
62
63 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
64
65         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
66           for optimization
67
68 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
69
70         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
71         to a char variable. Fixed bug #1504211
72         * device/include/pic16/adc.h,
73         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
74         and fixed bug #1364390
75
76 2006-06-10 Borut Razem <borut.razem AT siol.net>
77
78         * CVSROOT: removed the CVS left-over
79
80 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
81
82         * as/hc08/asmain.c (asexit),
83         * as/hc08/lkmain.c (lkexit),
84         * as/mcs51/asmain.c (asexit),
85         * as/mcs51/lkmain.c (lkexit),
86         * src/SDCCglue.c (DEFSETFUNC),
87         * src/SDCCmain.c (linkEdit, assemble),
88         * support/librarian/sdcclib.c (AddRel),
89           replaced unlink() by standard C remove()
90         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
91         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
92           gatherImplicitVariables): new, added to fix bug 608752,
93           (createFunction): added gatherImplicitVariables()
94         * src/SDCCast.h: added createRMW prototype
95         * src/SDCCsymt.h (struct symbol): added infertype
96         * support/regression/tests/bug608752.c: new, added
97
98 2006-06-10 Raphael Neider <rneider AT web.de>
99
100         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
101           multibyte dummy reads (fixes #1503234)
102
103 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
104
105         * device/include/mcs51/compiler.h: new, added header file to enable
106           creating common sfr definition header files for different compilers
107
108 2006-06-05 Raphael Neider <rneider AT web.de>
109
110         * src/pic16/{pcode.h,genarith.c}:
111           introduced pCodeOp combining any two pCodeOps (previously only
112           two register operands could be combined), removed pcop2 from
113           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
114         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
115         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
116           rewritten to use new PO_TWO_OPS
117         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
118         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
119           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
120           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
121           (pic16_get_op): embraced return arg to allow #define return(x),
122             added new case for combined opcodes
123           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
124           (pic16_pCode2str,pic16_getRegFrompCodeOp,
125            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
126
127 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
128
129         * src/SDCCval.c (checkConstantRange): added
130         * src/SDCCval.h: added checkConstantRange
131         * support/Util/SDCCerr.c,
132         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
133         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
134         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
135         * src/SDCCast.c (decorateType): added checkConstantRange,
136         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
137         can be emitted with the correct always true/false warning,
138         added optimization for double '!';
139         result of decorateType() must be assigned back to the tree, because
140         decorateType() can change the tree
141         * src/SDCCicode.c (geniCodeLogic),
142         (geniCodeAssign): replaced new checkConstantRange, added warnings,
143         (checkConstantRange): removed, it was only a fragment which never
144         emitted a warning
145         * src/SDCCsymt.c (computeType): fixed promotion for
146         "-1 < (unsigned bit) b"
147         * src/pic/ralloc.c (packRegsForAssign),
148         * src/pic16/ralloc.c (packRegsForAssign),
149         * src/hc08/ralloc.c (packRegsForAssign),
150         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
151         from mcs51
152         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
153         * support/regression/tests/constantRange.c: added
154         * support/valdiag/tests/constantRange.c: added
155         * support/valdiag/valdiag.py: added -DPORT_HOST=1
156
157 2006-06-02 Borut Razem <borut.razem AT siol.net>
158
159         * support/regression/ports/pic16/support.c: increase stack size
160           to 255 bytes
161         * support/regression/Makefile.in: sort tests by name so that the
162           resutlts can be compared on different machines / platforms
163
164 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
165
166         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
167         * src/ds390/gen.c (emitLabel): new, added,
168           (genDjnz): fixed stack overflow bug,
169           (throughout): cosmetic changes to sync with mcs51/gen.c,
170           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
171         * src/mcs51/gen.c (genEndFunction): small optimization,
172           (throughout): cosmetic changes to sync with ds390/gen.c
173
174 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
175
176         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
177           (_print_format): fixed printing pointers
178         * src/mcs51/gen.c (emitLabel, movb): new, added,
179           (genAssign): small optimization,
180           (genDjnz): fixed stack overflow bug,
181           (throughout): replaced sprintf with SNPRINTF,
182           replaced mcs51_regWithIdx with REG_WITH_INDEX,
183           replaced emitcode("mov", "b,...") with MOVB(...),
184           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
185           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
186         * src/mcs51/peeph.def: added rules 140 and 264
187         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
188           so they may get optimized into registers
189
190 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
191
192         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
193           immediately when encountered,
194           (printUsage): always use stderr even on windows
195
196 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
197
198         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
199         (processParms): fixed bug #1247551
200         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
201         parseCmdLine, main): print '--version' to stdout,
202         print 'help' to stdout if --help is given,
203         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
204         arguments are given; fixed --help
205
206 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
207
208         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
209         * support/regression/tests/bug-1493710.c: added
210
211 2006-05-27 Borut Razem <borut.razem AT siol.net>
212
213         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
214           static instead auto
215         * support/regression/ports/pic16/support.c: increase stack size
216           from default 64 bytes to 128 bytes
217         * support/regression/tests/staticinit.c,
218           support/regression/tests/float.c: regression tests fully enabled
219           for pic16 port by putting the initialized data arrays into the code
220           section
221         * support/regression/ports/pic16/spec.mk: don't link default libraries.
222           This was changed by mistake in the previous version.
223
224 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
225
226         * src/pic16/gen.c (genFunction, genEndFunction): some
227         beautifications, fixed bug with falsely restoring FSR2 in large
228         stack model, thanks to Beau E. Cox for reporting the bug
229
230 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
231
232         * debugger/mcs51/break.c,
233         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
234           use %p to print pointers, made address variables unsigned
235         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
236         * debugger/mcs51/symtab.c (parseSymbol): must return something
237         * src/mcs51/gen.c (aopForSym): small optimization,
238            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
239           (freeAsmop): added missing break,
240           (aopPut): removed parameter bvolatile, determine it inside the function,
241           (saveRegisters, unsaveRegisters): small optimization,
242           (genIpush): removed pointless check,
243           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
244           replaced sprintf with SNPRINTF,
245           replaced strcpy with strncpyz,
246           updated aopPut calls,
247           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
248         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
249
250 2006-05-24 Borut Razem <borut.razem AT siol.net>
251
252         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
253           modification of test for the pic16 port, put the array to the code
254           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
255
256 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
257
258         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
259         * support/Util/pstdint.h: added
260
261 2006-05-22 Borut Razem <borut.razem AT siol.net>
262
263         * src/regression/Makefile: removed bool2.c test, added -q linker option
264         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
265           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
266           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
267           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
268           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
269           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
270           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
271           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
272           define SUPPORT_BIT_TYPES 0, removed unused bit variables
273
274 2006-05-22 Raphael Neider <rneider AT web.de>
275
276         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
277           bug #1492360 (problematic due to generic pointers, see code)
278
279 2006-05-22 Borut Razem <borut.razem AT siol.net>
280
281         * support/regression/ports/pic16/specs.mk: removed stack size linker
282           directive
283         * support/regression/tests/array.c,
284           support/regression/tests/bitopcse.c,
285           support/regression/tests/bug-908454.c,
286           support/regression/tests/malloc.c: modified for pic16 regression test
287         * support/regression/tests/bitfields.c:
288           pic16 - excluded bitfileds of size > 8
289         * support/regression/tests/bp.c: pic16 - reduced data size
290         * support/regression/tests/bug-221100.c: pic16 - reduced data size
291         * support/regression/tests/bug-460010.c:
292           pic16 - used the absolute address the fits in memory
293         * support/regression/tests/bug-716242.c:
294           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
295         * support/regression/tests/float.c:
296           pic16 - excluded - data size too big
297         * support/regression/tests/onebyte.c:
298           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
299         * support/regression/tests/shifts.c:
300           pic16 - function names probably have to differ in first X characters
301           (gpasm limitation?)
302         * support/regression/tests/staticinit.c:
303           pic16 - excluded some tests due error: no target memory available for
304           section ".idata"
305
306 2006-05-22 Borut Razem <borut.razem AT siol.net>
307
308         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
309           second try. Thanks Stas Sergeev once more.
310
311 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
312
313         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
314           (genLeftShift, genRightShift): fixed bug 1491627
315         * src/hc08/peeph.def (rules 7, 8.x): added
316         * support/regression/tests/shifts.c (ShiftLeftByParam,
317           ShiftRightByParam, testShiftByParam): added to test variable shifting
318
319 2006-05-20 Raphael Neider <rneider AT web.de>
320
321         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
322         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
323           (allocReg): add only new registers to dynAllocRegs,
324           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
325             #1489055, #1445850, and probably #1483693
326
327 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
328
329         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
330         bug in for-loop that didn't emit the last of CONFIG and ID registers
331
332 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
333
334         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
335           with offset
336         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
337           1489016, 1434401 and 1490124
338         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
339           1489016, 1434401 and 1490124
340
341 2006-05-17 Borut Razem <borut.razem AT siol.net>
342
343         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
344           thanks Stas Sergeev
345
346 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
347
348         * device/include/mcs51/P89c51RD2.h,
349         * device/include/mcs51/P89LPC901.h,
350         * device/include/mcs51/P89LPC922.h,
351         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
352
353 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
354
355         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
356         to fix missing stack pragma in compiled binary object file,
357
358 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
359
360         * support/packihx/configure.in,
361         * support/packihx/configure: removed warning, autoconf >= 2.5x can
362         determine sizeof basic types even while cross compiling
363
364 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
365
366         * src/avr/gen.c (aopop),
367         * src/ds390/gen.c (aopOp),
368         * src/hc08/gen.c (aopOp),
369         * src/mcs51/gen.c (aopop),
370         * src/pic16/gen.c (pic16_aopOp),
371         * src/pic/gen.c (aopOp),
372         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
373         if size of operand is smaller than spill location
374
375 2006-05-12 Borut Razem <borut.razem AT siol.net>
376
377         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
378           have to have CR/LF line endings even if they are checked out on *nix
379           or on WIN32 in cygwin binmode
380
381 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
382
383         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
384         * device/include/ds80c390.h: added sfr16 definitions
385         * src/ds390/gen.c,
386         * src/ds390/gen.h,
387         * src/ds390/main.c,
388         * src/ds390/ralloc.c,
389         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
390           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
391           bit returning functions
392         * support/regression/tests/sfr16.c: enabled test on ds390
393
394 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
395
396         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
397         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
398
399 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
400
401         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
402         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
403           (cl_address_space constructor): removed expensive initialization,
404           (cl_address_space::get_cell): extended for late initialization,
405           (cl_address_space::*): use late initialization,
406           (cl_address_decoder::activate): removed expensive initialization,
407           This reduced regression test running time by 25%
408
409 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
410
411         * packihx/,
412         * configure.in,
413         * configure,
414         * sdcc.dsw,
415         * Makefile.bcc,
416         * Makefile.in,
417         * support/packihx/Makefile.in,
418         * support/packihx/clean.mk,
419         * support/packihx/Makefile.bcc,
420         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
421
422 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
423
424         * src/SDCCval.c (valNot): fix for regression test failure
425           of not.c on big endian hosts
426
427 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
428
429         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
430
431 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
432
433         * device/lib/mcs51/Makefile.in: changed string comparison operator
434           to = for POSIX compliance; == is bash extension
435
436 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
437
438         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
439           kosmonaut_pirx
440
441 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
442
443         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
444         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
445         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
446         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
447         bug report #1478657,
448
449 2006-05-05 Borut Razem <borut.razem AT siol.net>
450
451         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
452           making the html
453
454 2006-05-02 Borut Razem <borut.razem AT siol.net>
455
456         * doc/Makefile.in: removed *.ind dependency since there is no rule to
457           create *.ind, which made make to fail if invoked with -j 2
458
459 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
460
461         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
462           Hubert Sack for patch 1479782
463
464 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
465
466         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
467
468 2006-05-01 Raphael Neider <rneider AT web.de>
469
470         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
471           (create_pic): store only prefix-free device name,
472           (init_pic): check for device names with "16" prefix,
473           (list_valid_pics),
474         * src/pic/device.h (struct PIC_device),
475         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
476             stored device name,
477         * device/include/pic/pic12f{635,675,629,683}.h,
478         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
479         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
480         * device/include/pic/pic16f505.h,
481         * device/lib/pic/libdev/pic16f505.c: removed
482         * device/include/pic/pic14devices.txt: added support for pic12f
483             devices, removed unsupported non 16-bit devices
484             [above changes provided by patch from Zik Saleeba]
485         * src/pic/*, src/pic16/*, device/include/pic16/*,
486           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
487
488 2006-05-01 Borut Razem <borut.razem AT siol.net>
489
490         * configure.in, configure, doc/Makefile.in:
491           sync with nightly build makefile - latex, dvipdf and dvips
492           not needed any more
493
494 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
495
496         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
497         in the library source
498
499 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
500
501         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
502
503 2006-04-28 Raphael Neider <rneider AT web.de>
504
505         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
506         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
507           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
508         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
509
510 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
511
512         * device/lib/pic/libdev/Makefile.in,
513         * device/lib/hc08/Makefile.in,
514         * device/lib/gbz80/Makefile.in,
515         * device/lib/z80/Makefile.in,
516         * device/lib/ds390/Makefile.in,
517         * device/lib/ds400/Makefile.in: added srcdir to include search path,
518         thanks to Borut for the bug report
519         * configure.in,
520         * configure: always create doc/Makefile independent from --enable-doc
521         * Makefile.in: always install from directory doc independent from
522         --enable-doc
523         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
524         removed
525         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
526         * doc/Makefile.in: install *.txt if present
527         * device/include/Makefile.in (install): added installation of pic/*.inc
528         and pic/*.txt files again, they were erroneously removed
529
530 2006-04-28 Raphael Neider <rneider AT web.de>
531
532         * src/pic/{gen.c,main.h,pcode.c},
533         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
534             concerning signedness with casts
535
536 2006-04-28 Raphael Neider <rneider AT web.de>
537
538         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
539             definition of an interrupt handler,
540         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
541             interrupt handler stuff from picglue() to separate routine,
542           (picglue): enabled definition of intr handlers in files w/o main()
543
544 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
545
546         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
547           compilation with MSVC 2005 Express Edition (VC8)
548
549 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
550
551         * device/lib/Makefile: fixed build of gbz80 lib
552
553 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
554
555         * support/regression/tests/bug-460010.c,
556         * support/regression/tests/bug-524691.c,
557         * support/regression/tests/bug-716242.c: removed conditional defines
558           that are already in testfwk.h
559
560 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
561
562         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
563           (AccAXRsh1): added, shift right by 1,
564           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
565            AccAXLrl1
566         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
567
568 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
569
570         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
571         remove cast to same type
572         * src/SDCCast.c (decorateType): fix for RFE 1475742,
573         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
574         * as/z80/Makefile,
575         * link/z80/Makefile: removed, they have moved to
576         Makefile.in files
577         * configure,
578         * configure.in: replaced duplicate message about ucsim by missing sdcpp
579         * install-sh: fix bug #1204398 by setting umask 0022
580         * device/lib/Makefile: separate build of z80 and gbz80 lib
581
582 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
583
584         Enabled VPATH feature: changed nearly all Makefiles (149 files).
585         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
586
587         One basic decision: e.g. src/clean.mk includes further files. In order
588         to make this work there are two solutions:
589         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
590           run configure on them. This way they can use
591           'include $(srcdir)/port-clean.mk'
592         - always include clean.mk by the Makefile at the same level. To avoid
593           that `make clean` tries to include and build Makefile.dep the
594           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
595           implemented, because now even `make uninstall` doesn't create
596           Makefile.in. clean.mk could be eliminated by pasting it in
597           Makefile.in.
598
599         * debugger/mcs51/Makefile.in: build own objects from library sources
600         (SLIB, SDCC) in current directory
601
602         * configure, configure.in: renamed --disable-device-lib-build in
603         --disable-device-lib; added --enable-doc, the required tools are
604         searched by configure; added result message; the toolchain for the
605         belonging ports are now only built, if the port is enabled.
606
607         * support/regression/*: all output is written in directory gen, because
608         the fwk and ports directories don't livet in the build tree using vpath
609
610         * doc/sdccman.lyx: renamed --disable-device-lib-build to
611         --disable-device-lib, added --enable-doc, added section VPATH
612
613         * sim/ucsim/configure.in,
614         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
615         z80 are enabled by default
616
617 2006-04-24 Raphael Neider <rneider AT web.de>
618
619         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
620             to config word, "pic14_"-prefixed some extern functions
621           (pic14_emitConfigWord): emit __config directive(s) if assignment to
622             config word has been found
623         * src/pic/device.h: added prototypes
624         * src/pic/pcode.c: added "pic14_"-prefix where needed
625         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
626             fixup
627         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
628             words,
629           (pic14emitRegularMap): ignore config words,
630           (pic14createInterruptVect): moved generating __config directives away
631           (picglue): have __config directives emitted
632
633 2006-04-24 Borut Razem <borut.razem AT siol.net>
634
635         * doc/Makefile: sync with nightly build makefile
636
637 2006-04-24 Raphael Neider <rneider AT web.de>
638
639         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
640             registers that have not been assigned proper liveranges,
641             fixes #1469504 and #1474602,
642           (pCodeRegOptimizeRegUsage): fixed typo in comment
643
644 2006-04-24 Borut Razem <borut.razem AT siol.net>
645
646         * device/examples/main8051.c: deleted - it was removed from CVS
647           24.mar.2000 and after that modified 18.feb.2001, so it reappered
648           after the transition to Subversion
649         * src/SDCCalloc.h: deleted - it was removed  from CVS
650           3.feb.2001 and after that modified 18.feb.2001, so it reappered
651           after the transition to Subversion
652         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
653           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
654           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
655           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
656
657 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
658
659         * as/asx8051.dsp: added mcs51/strcmpi.h
660         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
661         * as/hc08/aslink.h: updated lnksect prototype
662         * as/hc08/asm.h,
663         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
664         * as/hc08/asmain.c,
665         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
666           (newdot): handle A_ABS
667         * as/hc08/asout.c,
668         * as/mcs51/asout.c (outarea): output address
669         * as/hc08/lkaomf51.c,
670         * as/mcs51/lkaomf51.c: disabled unused array UsageType
671         * as/hc08/m08pst.c,
672         * as/mcs51/i51pst.c,
673         * as/z80/z80pst.c: "ABS" is not A_OVR
674         * as/hc08/lkarea.c (newarea): read a_addr,
675           (lnkarea): added codemap array, sort absolute areas to the front,
676            combine all GSINITx/GSFINAL,
677           (find_empty_space, allocate_space): new functions,
678           (lnksect): return next address, handle absolute sections
679         * as/mcs51/lkarea.c (newarea): read a_addr,
680           lnksect2 prototype changed,
681           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
682           (find_empty_space, allocate_space): new, factored out of lnksect2,
683           (lnksect2): return next address, handle absolute sections
684         * as/hc08/lkhead.c,
685         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
686         * as/hc08/lklibr.c (addfile, fndsym),
687         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
688           index out of range and detect both '\' and '/'
689         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
690         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
691           regression tests (ds390 cannot return bool yet)
692         * doc/sdccman.lyx: changed version number, document changed --no-peep,
693           document critical interrupts on z80, document changed SDCC define
694         * src/asm.c (_asxxxx_mapping): fixed .org directive,
695           (_a390_mapping): added .org directive
696         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
697           (genMultOneByte): fixed warnings
698         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
699           ones
700         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
701         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
702           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
703         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
704         * src/pic16/main.c: removed newReg prototype
705         * src/pic16/pcode.c,
706         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
707           warnings
708         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
709           ones
710         * src/pic16/ralloc.c
711         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
712           to fix warnings
713         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
714           from short to PIC_OPTYPE
715         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
716         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
717           optype from short to PIC_OPTYPE
718         * src/port.h: made int_size unsigned to fix warnings
719         * src/SDCC.y: fixed warning on MSVC
720         * src/SDCCicode.c (getArraySizePtr): return unsigned int
721         * src/SDCCopt.c (convertToFcall): fixed warnings
722         * src/SDCCsymt.h: removed double prototype for genSymName
723         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
724           offset int to fix warnings
725
726 2006-04-22 Borut Razem <borut.razem AT siol.net>
727
728         * doc/sdccman.lyx, */Makefile, */Makefile.in:
729           references to CVS replaced with Subversion
730
731 2006-04-21 Borut Razem <borut.razem AT siol.net>
732
733         * doc/sdccman.lyx, */Makefile, */Makefile.in:
734           references to CVS replaced with Subversion
735
736 2006-04-19 Borut Razem <borut.razem AT siol.net>
737
738         * src/version.awk: adapted for svn
739         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
740           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
741           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
742           /binutils-avr/etc/*.vi, *.jin: removed all properties
743           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
744
745 2006-04-19 Borut Razem <borut.razem AT siol.net>
746
747         * CVS to Subversion migration completed
748
749 2006-04-18 Borut Razem <borut.razem AT siol.net>
750
751         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
752           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
753
754 2006-04-17 Borut Razem <borut.razem AT siol.net>
755
756         * device/include/Makefile.in: added pic/*.inc to the installation
757
758 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
759
760         * support/regression/collate-results.py: fixed output in case of
761         a valdiag error
762         * support/regression/generate-cases.py: fixed splitting of pathnames
763         with dots
764         * as/hc08/lklibr.c (addfile),
765         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
766
767 2006-04-11 Raphael Neider <rneider AT web.de>
768
769         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
770         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
771         * src/pic16/pcode.c (assignValnums): fixed #1460578
772
773 2006-04-11 Raphael Neider <rneider AT web.de>
774
775         * device/lib/pic/libdev/*.c,
776         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
777           fixes #1468739, enables compilation in --std-c99 mode
778         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
779
780 2006-04-11 Raphael Neider <rneider AT web.de>
781
782         * src/pic/device.c (find_device): removed debug output
783           (list_valid_pics): enabled verbose listing of supported devices
784         * device/include/stdbool.h: define bool as char for pic14/16 as well
785
786 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
787
788         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
789
790 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
791
792         * .version: bumped version to 2.5.6
793         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
794
795 2006-04-06 Raphael Neider <rneider AT web.de>
796
797         * .version: bumped version to 2.5.6 (pic14 ABI changed)
798         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
799         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
800           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
801             pic14_constructAbsMap
802           (pic14printPublics): declare absolute global symbols as global
803           (pic14createInterruptVect),
804         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
805           (newReg): assume new registers unused, use correct name in
806             hashtable (reg->name instead of name), more debugLog output
807         * src/pic/device.h (PIC_device): added fields for verbose output
808         * src/pic/device.c: moved device definition to pic14devices.txt,
809             added routines for runtime parsing of pic14devices.txt,
810             added support for second config word
811         * src/pic/main.c (_process_pragma): removed #pragma maxram,
812           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
813           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
814           (_pic14_parseOptions): moved pCodeInitRegisters here
815           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
816         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
817           (pCodeInitRegisters): rewrapped comments, perpared new approach to
818             handling the pseudo stack
819         * device/lib/Makefile.in: ignore failures in objects-pic16,
820         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
821         * device/lib/pic/NEWS: document new dependency on picXXX.lib
822         * device/lib/pic/Makefile.subdir,
823         * device/lib/pic16/Makefile.subdir: improved clean rules
824         * device/lib/pic/libdev/: NEW, pic14 device libraries
825         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
826         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
827         * device/include/Makefile.in: create subdir and install pic14 headers
828         * device/include/pic/p16f_common.inc: removed unused declarations
829         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
830             PICs from inc2h.pl v1.6,
831             replaced BIT_AT macros with struct declarations
832         * device/include/pic/pic14devices.txt: definition of supported devices,
833             all above improvements contributed by Zik Saleeba, thanks
834         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
835         * support/scripts/sdcc.nsi: also install pic14 device libraries and
836             headers
837
838 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
839
840         * device/include/mcs51/c8051f410.h: added interrupt numbers,
841         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
842           thanks to Charles Olds
843
844 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
845
846         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
847
848 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
849
850         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
851         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
852         * support/regression/bug1464657.c: added, new test
853
854 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
855
856         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
857           version number
858
859 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
860
861         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
862           --no-peep and --peep-file <file> are used don't use default rules but
863           do use the <file>
864
865 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
866
867         * src/mcs51/gen.c (genCall): fixed bug 1457608
868
869 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
870
871         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
872         changes seem to cause (trigger?) problems with the build system.
873
874 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
875
876         * src/SDCCpeeph.c (operandsLiteral): new, added,
877           (callFuncByName): inserted operandsLiteral
878         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
879
880 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
881
882         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
883         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
884
885 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
886
887         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
888           implemented patch 1120823 Thanks to Willy De la Court (normal
889           interrupts need an interrupt number now if they are made critical),
890           and enabled nesting of critical functions though not for gbz80
891           (genCritical, genEndCritical): added functions
892           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
893         * src/z80/mappings.i: added "ei" to all mappings
894
895 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
896
897         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
898         submitted by the Debian SDCC maintainer Aurelien Jarno:
899         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
900         archive with gcc 4.1 on mips and wrote the patch"
901
902 2006-03-16 Raphael Neider <rneider AT web.de>
903
904         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
905           the left operand is shorter than the result (c* = lit-c* + int),
906           fixes bug #1450796
907         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
908           OP_SYMBOL
909
910 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
911
912         * src/.version: increased version number to 2.5.5
913         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
914         linking is done manually in pic16 port's _linkEdit,
915         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
916         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
917         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
918         allocate asmop as AOP_ACC,
919         (aopForRemat): added parameter 'bool result' in function declaration,
920         (pic16_aopGet): return AOP_ACC when accessing WREG,
921         (pic16_popGetTempReg): minor modification,
922         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
923         'pic16_allocWithIdx',
924         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
925         calling function in absolute addresses,
926         (genAssign): take into account AOP_ACC asmop,
927         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
928         * src/pic16/pcoderegs.c: some debug functions and lines added,
929         * src/pic16/ralloc.c (decodeRegType): added but commented out,
930         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
931         register too,
932         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
933         call to allocReg, not by manually allocating a new one,
934         (pic16_assignRegisters): now before going through the register
935         allocating functions mark all registers as free. This eliminates some
936         side effects resulting from peephole parser done earlier in the backbone
937
938 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
939
940         * src/SDCCicode.c (geniCodeLogic),
941         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
942
943 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
944
945         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
946           (genSend): bugfix, do not allocate and free twice,
947           (shiftRLong): handle partially overlapping aops
948         * support/regression/tests/bitopcse.c: fixed warning redefined idata
949
950 2006-03-08 Borut Razem <borut.razem AT siol.net>
951
952         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
953           for pic16
954
955 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
956
957         * support/regression/tests/bug1409955.c: new, added
958         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
959         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
960           (aopForSym, aopOp): increment asmop.allocated if reused,
961           (freeAsmop): decrement asmop.allocated and check for zero instead of
962           using asmop.freed,
963           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
964           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
965            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
966            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
967            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
968            genSignedRightShift, genRightShift, genDataPointerGet,
969            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
970            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
971             in reverse order from allocation,
972           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
973             added swappedLR to keep track
974         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
975           pdata & code for GCC, z80, gbz80 & hc08
976         * support/regression/tests/zeropad.c: moved defines to testfwk.h
977
978 2006-03-08 Raphael Neider <rneider AT web.de>
979
980         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
981
982 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * device/include/mcs51/c8051f410.h: new SiLabs mcu
985         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
986         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
987
988 2006-03-06 Borut Razem <borut.razem AT siol.net>
989
990         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
991           made the linker quiet
992
993 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
994
995         * src/pic16/gen.c (genPcall): fixed bug #1443644
996         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
997         which dumps before the function entry point a data byte which represents
998         the number of the local variables used by the specified function, added
999         'xinst' for initial support for Extended Instruction Support,
1000         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1001         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1002         port->fun_prefix anymore (may change later),
1003         (genFunction, genEndFunction): do not store/restore local registers for
1004         _main (this should take care the --main-return command line option in
1005         the future),
1006         (genOr): removed some legacy pic-port instructions,
1007         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1008         performing operations with SFR's causes data to be written more than
1009         once to each SFR. Perhaps SFRs should be handled in special cases...
1010         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1011         pcode.h
1012         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1013         into account for stack starting position,
1014         (struct OPTIONS pic16_optionsTable): added command line argument
1015         --extended or -y for Extended Instruction Support,
1016         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1017         (deassignLRs): *** perhaps the most important change, old 'for' code
1018         (commented out for reference), didn't account for some registers which
1019         were left marked 'not free' after a pointer operation. The change
1020         reduces register usage a lot in some cases
1021
1022 2006-03-04 Borut Razem <borut.razem AT siol.net>
1023
1024         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1025           _clean
1026         * support/regression/tests/bug-524697.c: decreased array size for
1027           mcs51 to fit into the internal RAM
1028         * support/regression/Makefile.in: a little bit more verbose
1029
1030 2006-03-03 Borut Razem <borut.razem AT siol.net>
1031
1032         * support/regression/fwk/lib/testfwk.c,
1033           support/regression/fwk/include/testfwk.h: introduced function
1034           _prints(), nonrecursive _printn(), call _initEmu() from main()
1035         * support/regression/ports/gbz80/support.asm,
1036           support/regression/ports/ucz80/support.asm,
1037           support/regression/ports/z80/support.asm,
1038           support/regression/ports/ds390/support.c,
1039           support/regression/ports/hc08/support.c,
1040           support/regression/ports/host/support.c,
1041           support/regression/ports/mcs51/support.c,
1042           support/regression/ports/xa51/support.c: added empty _initEmu()
1043           function
1044         * support/regression/ports/pic16/gpsim.cmd,
1045           support/regression/ports/pic16/spec.mk,
1046           support/regression/ports/pic16/support.c,
1047           support/regression/Makefile.in: added pic16 regression test
1048
1049 2006-03-01 Raphael Neider <rneider AT web.de>
1050
1051         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1052           genConstPointerGet): use safe way of generating MOVFF to cover
1053             literals as well as registers, fixes bug #1440527
1054         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1055             dereference
1056           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1057             more correctly, fixes bug #1232186
1058           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1059         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1060             gplink guess the correct processor in more cases, applied patch
1061             from Till Riedel attached to and fixing bug #1436552
1062
1063 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1064
1065         * support/regression/tests/array.c: added, contains check for #1434401
1066         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1067
1068 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1069
1070         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1071         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1072         * device/include/mcs51/c8051f326.h,
1073         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1074         * device/include/mcs51/c8051f000.h,
1075         * device/include/mcs51/c8051f018.h,
1076         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1077           PCON_IDLE,PCON_STOP and added sfr16 definitions
1078
1079 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1080
1081         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1082           genGetWord): fixed bug 1409955
1083
1084 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1085
1086         * device/include/hc08/mc68hc908gp32.h,
1087         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1088
1089 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1090
1091         * src/SDCCast.c (constExprValue): return NULL if not a value
1092         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1093         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1094         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1095
1096 2006-02-13 Borut Razem <borut.razem AT siol.net>
1097
1098         * src/regression/ptrarg.c: added, fails due to bug #1430967
1099         * src/regression/Makefile: ptrarg.c added, ...
1100
1101 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1102
1103         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1104         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1105
1106 2006-02-11 Borut Razem <borut.razem AT siol.net>
1107
1108         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1109           print "Processor: xxx" message to stdout only if --verbose
1110
1111 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1112
1113         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1114         * support/regression/tests/bug1426356.c: added
1115         * support/regression/tests/bitfields.c: removed 2 tests
1116
1117 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1118
1119         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1120         * device/include/mcs51/c8051f330.h,
1121         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1122           PCON_IDLE,PCON_STOP and added sfr16 definitions
1123         * device/lib/_divsint.c,
1124         * device/lib/_divuint.c,
1125         * device/lib/_divulong.c,
1126         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1127           register bank bug for small stackauto
1128
1129 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1130
1131         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1132
1133 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1134
1135         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1136         * all.dsp: corrected several bin paths
1137         * device/include/mcs51/c8051f120.h,
1138         * device/include/mcs51/c8051f300.h,
1139         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1140           to PCON_IDLE,PCON_STOP
1141         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1142         * device/lib/printf_large.c (output_float): fixed bug 1388703
1143         * support/regression/tests/bug1057979.c: added test for bug 1388703
1144
1145 2006-02-08 Raphael Neider <rneider AT web.de>
1146
1147         * src/pic/pcode.c (pciTRIS): fixed typo,
1148           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1149           (LinkFlow): fixed handling of flows that end in a call,
1150           (ReuseReg): perform safety check earlier
1151         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1152             to work with flows at the beginning of a pBlock,
1153             fixes #1426557 (Symbol not previously defined),
1154           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1155             usage information
1156           (RemoveUnusedRegisters): update register usage info
1157         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1158             created, reuse existing ones instead
1159         * src/pic/gen.c (genPcall): fixed #1424719
1160
1161 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1162
1163         * link/z80/lkmain.c,
1164         * link/z80/lklex.c,
1165         * link/z80/lkdata.c,
1166         * link/z80/aslink.h: fixed build on current cygwin:
1167         replaced getline() by lk_getline()
1168
1169 2006-02-01 Borut Razem <borut.razem AT siol.net>
1170
1171         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1172           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1173           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1174           src/regression/bool1.c, src/regression/bool2.c,
1175           src/regression/bool3.c, src/regression/call1.c,
1176           src/regression/compare.c, src/regression/compare10.c,
1177           src/regression/compare2.c, src/regression/compare3.c,
1178           src/regression/compare4.c, src/regression/compare5.c,
1179           src/regression/compare6.c, src/regression/compare7.c,
1180           src/regression/compare8.c, src/regression/compare9.c,
1181           src/regression/configword.c, src/regression/for.c,
1182           src/regression/inline.c, src/regression/mult1.c,
1183           src/regression/nestfor.c, src/regression/or1.c,
1184           src/regression/pointer1.c, src/regression/ptrfunc.c,
1185           src/regression/rotate1.c, src/regression/rotate2.c,
1186           src/regression/rotate3.c, src/regression/rotate4.c,
1187           src/regression/rotate5.c, src/regression/rotate6.c,
1188           src/regression/rotate7.c, src/regression/string1.c,
1189           src/regression/struct1.c, src/regression/sub.c,
1190           src/regression/sub2.c, src/regression/switch1.c,
1191           src/regression/while.c, src/regression/xor.c,
1192           src/regression/create_stc, src/regression/simulate,
1193           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1194           regression tests
1195         * src/regression/gpsim_assert.h: added
1196
1197 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1198
1199         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1200         ((void (code *) (void)) 0) ();
1201         * as/hc08/aslex.c,
1202         * as/hc08/aslink.h,
1203         * as/hc08/asm.h,
1204         * as/hc08/asmain.c,
1205         * as/hc08/lkdata.c,
1206         * as/hc08/lklex.c,
1207         * as/hc08/lkmain.c,
1208         * as/mcs51/aslex.c,
1209         * as/mcs51/aslink.h,
1210         * as/mcs51/asm.h,
1211         * as/mcs51/asmain.c,
1212         * as/mcs51/lkdata.c,
1213         * as/mcs51/lklex.c,
1214         * as/mcs51/lkmain.c,
1215         * as/z80/aslex.c,
1216         * as/z80/asm.h,
1217         * as/z80/asmain.c: fixed build on current cygwin:
1218         replaced getline() by as_getline()
1219
1220 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1221
1222         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1223         declarator in the symbol chain
1224         * src/SDCCsymt.h,
1225         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1226         parameter list for function pointers
1227         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1228         * support/regression/tests/bug-716242.c: added
1229
1230 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1231
1232         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1233         offset if possible
1234         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1235
1236 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1237
1238         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1239         inifinitely recurseable, added static
1240         * support/regression/tests/bug-1408066.c: added
1241
1242 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1243
1244         * src/SDCCicode.h,
1245         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1246         renamed, added possibility to create "postLoopLbl"-labels
1247         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1248         newiTempLoopHeaderLabel
1249         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1250         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1251         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1252         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1253         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1254         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1255         (basicInduction): fixed bug #136564, made static,
1256         (loopInduction): changed parameter of basicInduction, made static,
1257         (addPostLoopBlock): added
1258         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1259         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1260         findLoopEndSeq
1261         * support/regression/tests/bug-136564.c: added
1262         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1263         --std-sdcc99 to LIBSDCCFLAGS
1264
1265 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1266
1267         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1268         while loop
1269         * support/regression/tests/bug-1406131.c: added
1270
1271 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1272
1273         * src/SDCCast.c (decorateType): fix promotion of unary minus
1274         * src/SDCCsymt.c (computeType): beautified
1275         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1276         (valUnaryPM, valComplement): fix sign and promotion,
1277         (valNot): ANSI: result type is int (SDCC: unsigned char)
1278         * support/regression/tests/uminus.c: speedup by removing superflous
1279         test case 'int'
1280         * support/regression/tests/onebyte.c: added promotion and signedness
1281         tests for unary minus
1282         * support/regressions/tests/bug-477927.c: disable warning about
1283         uninitialized variables
1284         * support/regression/tests/not.c: added
1285
1286 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1287
1288         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1289         * src/mcs51/gen.c (gen51Code): show final register usage after
1290         fillGaps in asm with --i-code-in-asm
1291         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1292         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1293         incUsed, rliveClear, adjustIChain): made static,
1294         (setFromRange): excluded because it's unused,
1295         (findPrevUseSym, markWholeLoop): added,
1296         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1297         through all branches of predecessors enables sdcc to emit the warning
1298         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1299         (rlivePoint): made static, added parameter emitWarnings which is only
1300         true during the first run out of two,
1301         (findRecursiveSucc, findRecursivePred): removed,
1302         (computeLiveRanges): made static, added parameter emitWarnings,
1303         (dumpIcRlive): added for debugging only
1304         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1305         removed prototype of setFromRange()
1306         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1307         in call of computeLiveRanges()
1308         * support/regression/tests/bug-895992.c: added
1309         * support/regression/tests/bug-971834.c: added
1310         * support/valdiag/tests/bug-895992.c: added
1311         * support/valdiag/tests/bug-971834.c: added
1312
1313 2005-12-18 Raphael Neider <rneider AT web.de>
1314
1315         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1316           (genUnpackBits): improved code for direct operands,
1317           (genPackBits): improved code for literal assignment to bitfields
1318             and for direct destination operands (no FSR indirection),
1319             prevented redundant AND, fixes #1362800,
1320           (AccLsh): added parameter to disable masking of the result
1321         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1322           skip instructions with side-effects (like incfsz),
1323           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1324         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1325         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1326           fixes #1375263
1327
1328 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1329
1330         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1331         volatile variables as spill location
1332
1333 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1334
1335         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1336         replacing literals
1337         * support/regression/tests/bug-1376320.c: added
1338
1339 2005-12-08 Raphael Neider <rneider AT web.de>
1340
1341         * src/pic/device.c: renamed is_shared to pic14_is_shared
1342         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1343         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1344           (is_valid_identifier): added for above workaround
1345
1346 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1347
1348         * device/lib/Makefile.in: fixed to enable port-specific-objects
1349         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1350           char, thanks Hubert Sack
1351         * doc/sdccman.lyx: documented --xstack-loc,
1352           elaborated a bit more on interrupts and pitfalls,
1353           removed "setjmp/longjmp unsupported",
1354           documented some unsupported C99 features
1355         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1356         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1357           if, thanks Hubert Sack
1358         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1359         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1360           make make_library
1361         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1362           regression tests can report resource usage (rfe 700441)
1363         * support/regression/collate-results.py: report resource usage
1364         * support/regression/ports/ds390/spec.mk,
1365         * support/regression/ports/hc08/spec.mk,
1366         * support/regression/ports/mcs51/spec.mk,
1367         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1368         * support/regression/ports/ds390/uCsim.cmd,
1369         * support/regression/ports/hc08/uCsim.cmd,
1370         * support/regression/ports/mcs51/uCsim.cmd,
1371         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1372         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1373           library, use the default one
1374         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1375           building the library
1376
1377 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1378
1379         * config.dsp: added dependency on .version and configure_vc.awk
1380         * device/include/setjmp.h: updated for --stack-auto and --xstack
1381         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1382         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1383         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1384         * device/lib/libsdcc.lib: added _setjmp
1385         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1386           (decorateType): fixed bug 1372851,
1387           (optimizeGetHbit): fixed warning
1388         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1389           array initialisation
1390         * support/regression/tests/bug1057979.c: added test for bug 1358192
1391         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1392
1393 2005-12-03 Borut Razem <borut.razem AT siol.net>
1394
1395         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1396           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1397
1398 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1399
1400         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1401         createIval): implement symbol independant "flexible array member",
1402         (createIvalCharPtr): implemented flexible array initialisation with a
1403         string
1404         * src/SDCCsymt.c (copyStruct): removed,
1405         (getSize): fixed misleading comment,
1406         (getAllocSize): removed, the additional allocation size is now in
1407         sym->flexArrayLength,
1408         (checkStructFlexArray): new, syntax checks for flexible array members,
1409         (compStructSize): added syntax checks for "flexible array members"
1410         (copyStruct): removed,
1411         (copyLinkChain): removed inefficient fix for bug 770487
1412         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1413         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1414         symbol->flexArrayLength
1415         * src/SDCCerr.c,
1416         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1417         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1418         * support/regression/tests/structflexarray.c: added
1419         * support/valdiag/tests/structflexiblearray.c: added
1420
1421 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1422
1423         * src/SDCCast.c (decorateType): fixed bug 1368489
1424         * support/Util/SDCCerr.c,
1425         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1426
1427 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1428
1429         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1430           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1431
1432 2005-11-27 Borut Razem <borut.razem AT siol.net>
1433
1434         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1435           support/cpp2/mkdeps.h: added command line option
1436           -obj-ext=<extension> to SDCPP to define object file externion, used
1437           for generation of make dependencies (-M)
1438         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1439
1440 2005-11-26 Borut Razem <borut.razem AT siol.net>
1441
1442         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1443           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1444           added pic and pic16 libraries
1445
1446 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1447
1448         * device/include/float.h: Corrected typo in prototype of __fsgt
1449
1450 2005-11-25 Borut Razem <borut.razem AT siol.net>
1451
1452         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1453           added creation of model-mcs51-stack-auto libraries
1454
1455 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1456
1457         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1458         and fields-list too
1459         * src/SDCCast.c (createIvalArray): removed obsolete comment
1460
1461 2005-11-24 Borut Razem <borut.razem AT siol.net>
1462
1463         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1464           added missing device/lib/mcs51/crt*.asm sources
1465
1466 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1467
1468         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1469
1470 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1471
1472         * device/lib/_fs2schar.c,
1473         * device/lib/_fs2sint.c,
1474         * device/lib/_fs2slong.c: optimized inline asm
1475
1476 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1477
1478         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1479           Better handling of floats between -1.0 and 0.0.
1480
1481 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1482
1483         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1484           (the missing "if"s prohibited removal of redundant labels)
1485
1486 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1487
1488         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1489           Properly convert floats between -1.0 and 0.0 to long, int, and char
1490           types (max integer value of negative floats tends to zero).
1491         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1492           Removed changes made so to work properly with floats between
1493           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1494           and _fs2char.c
1495
1496 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1497
1498         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1499         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1500         (genCast) cosmetic change
1501         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1502         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1503         from mcs51
1504         * support/regression/tests/bitfields (testSignedBitfields): added
1505
1506 2005-11-18 Borut Razem <borut.razem AT siol.net>
1507
1508         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1509         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1510           introduced SILENT option to make building of pic16 libraries less
1511
1512 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1513
1514         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1515           Now they work properly with floats between -1.0 and 0.0
1516         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1517
1518 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1519
1520         * src/SDCCicode.c (printOperand): added missing else
1521
1522 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1523
1524         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1525         reformatted for better readability
1526         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1527         signed bitfields
1528
1529 2005-11-17 Borut Razem <borut.razem AT siol.net>
1530
1531         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1532           introduced SILENT option to make building of pic16 libraries less
1533           verbose - used for nightly snapshot build
1534         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1535           available on Win32 platforms.
1536         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1537           medium, large, pic and pic16
1538
1539 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1540
1541         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1542           printf("%f"...) sets fraction to zero.
1543
1544 2005-11-16 Raphael Neider <rneider AT web.de>
1545
1546         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1547           fixes #1357221
1548         * src/pic/gen.c (genIfx): implemented for CARRY bit
1549         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1550           to generic pointers, fixes #1357332,
1551           (pic16_movLit2f): NEW,
1552           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1553
1554 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1555
1556         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1557
1558 2005-11-11 Raphael Neider <rneider AT web.de>
1559
1560         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1561         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1562           compute pointer's type from operand,
1563           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1564           improved single bit reads, fixes bug #1353379
1565
1566 2005-11-09 Borut Razem <borut.razem AT siol.net>
1567
1568         * support/scripts/sdcc.nsi: added lib/pic to the package
1569
1570 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1571
1572         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1573
1574 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1575
1576         * support/regression/tests/bug1348008.c: added
1577         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1578         * support/regression/tests/bug1337835.c: updated comment
1579
1580 2005-11-06 Borut Razem <borut.razem AT siol.net>
1581
1582         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1583           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1584           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1585           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1586           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1587           dynamic construction of cl_error_class and derivates - 2.nd try
1588
1589 2005-11-05 Borut Razem <borut.razem AT siol.net>
1590
1591         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1592           bug, which caused Bus Errors on sparc solaris
1593
1594 2005-11-04 Borut Razem <borut.razem AT siol.net>
1595
1596         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1597           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1598           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1599           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1600           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1601           and derivates to resolve the initialization problem on OSX
1602
1603 2005-11-02 Borut Razem <borut.razem AT siol.net>
1604
1605         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1606           corrected typo - #include <winsock2.h>
1607
1608 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1609
1610         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1611           (_asxxxx_mapping): added org directive for future enhancements
1612
1613 2005-11-01 Borut Razem <borut.razem AT siol.net>
1614
1615         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1616           enabled sockets on WIN32
1617         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1618
1619 2005-10-31 Borut Razem <borut.razem AT siol.net>
1620
1621         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1622           WIN32 backslash path delimiters should be escaped when used in C strings
1623         * support/regression/tests/bitfields.c: exclude failing assertions for
1624           __CYGWIN32__ and __MINGW32__ hosts
1625
1626 2005-10-30 Borut Razem <borut.razem AT siol.net>
1627
1628         * src/SDCCutil.c: corrected double comparison typo
1629
1630 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1631
1632         * device/lib/medium/Makefile: added for new memory model medium
1633         * device/include/asm/mcs51/features.h: updated for medium/pdata
1634         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1635           added Multiply & Accumulate sbit's and MAC0_PAGE define
1636         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1637         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1638         * device/lib/_mullong.c: update for medium model
1639         * device/lib/incl.mk: added medium model
1640         * doc/sdccman.lyx: documented medium model
1641         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1642         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1643         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1644         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1645           (allocParms): set SCLS and OCLS to pdata for medium model
1646         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1647           for pdata,
1648           (powof2): return <0 if not power of 2
1649         * src/avr/gen.c (genBitWise): use updated powof2
1650         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1651           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1652           (shiftLLeftOrResult): use B if necessary
1653         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1654         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1655         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1656         * support/regression/Makefile.in: added test-mcs51-medium
1657         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1658
1659 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1660
1661         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1662         specifier unsigned
1663         * device/lib/time.c (mktime): fixed bug 1334315
1664
1665 2005-10-28 Raphael Neider <rneider AT web.de>
1666
1667         * device/include/pic/p16f_common.inc: added common declarations
1668         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1669
1670 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1671
1672         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1673           (aopPutUsesAcc): added to predict accumulator use,
1674           (assignResultValue): save acc if necessary,
1675           (genMinusDec): store result if indirectly addressed,
1676           (genDivOneByte):  save acc if necessary,
1677           (movLeft2Result): bugfix if left already in acc,
1678           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1679             attention to accumulator use (esp. pdata),
1680           (genReceive): receive pdata correctly
1681         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1682         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1683
1684 2005-10-27 Raphael Neider <rneider AT web.de>
1685
1686         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1687
1688 2005-10-27 Raphael Neider <rneider AT web.de>
1689
1690         * .version: changed version to 2.5.4
1691         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1692         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1693           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1694             arithmetics support routines
1695         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1696         * device/lib/Makefile.in: also create installdir for pic
1697
1698         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1699           pic14 port as well
1700         * src/pic/device.c (dump_sfr): rewritten to delegate register
1701           placement to the linker (use `extern sym' rather than sym EQU addr),
1702           (validAddress): fixed to check last specified address
1703         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1704           (popGetLit): truncate literal value to 8 bit,
1705           (popGet): moved assert to more appropriate place
1706           (popGetExternal): create pCode operand from and mark the according
1707             symbol as being `extern'
1708           (popGetAddr): added sanity check on immediate's offset, provide
1709             GPOINTER tag on demand
1710           (aopPut): fixed for immediates,
1711           (mov2w_op): move operand's address or contents to WREG (depending on
1712             operand type), safer variant of mov2w,
1713           (movwf,call_libraryfunc): NEW, handy abbreviations,
1714           (get_argument_pcop,get_return_val_pcop,pass_argument,
1715           get_returnvalue): interface for accessing function parameters and
1716             return values,
1717           (assignResultValuei,genRet): use new parameter/return value interface
1718           (pic14_getDataSize): back to old version handling generic pointers,
1719           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1720             provided implementation and/or fixed old one,
1721           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1722             calls, removed legacy 8051 reference code
1723           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1724           (loadSignToC): NEW, move the operands sign bit to CARRY,
1725           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1726             genRightShiftSigned, accepts negative shift counts,
1727           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1728           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1729             generic pointers, __data pointers and __code pointers,
1730           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1731             and signed bitfields, limit bitfields to 8 bit,
1732           (genDataPointerGet): fixed number of bytes read,
1733           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1734           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1735             pointers to constant data are no longer assumed to point to __code
1736             space, removed invalid pointer types,
1737           (bitpatternFromVal): retrieve the PICs representation of an integer
1738             or float literal,
1739           (genDataPointerSet): fixed assigning to po_immediate operands,
1740           (genGenPointerSet): implemented as library call,
1741           (genIfx): fixed incorrect condition,
1742           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1743             provide GPOINTER tag according to destination's storage class,
1744           (genCast): added code to handle casting to generic pointers, added
1745             sign-/zero extension of the result
1746           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1747         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1748         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1749           extend the result
1750         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1751           address/register resides in the shared banks
1752           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1753             put all variables into separate sections (have the linker arrange
1754             them)
1755           (picglue): put init code and interrupt handlers in separate sections
1756         * src/pic/main.c: added port specific options table, modified to PORT
1757           structure to make GPOINTERs 3 byte, added pic14_options
1758           (_pic14_do_link): private linking routine (update paths to libraries,
1759             add libsdcc.lib by default)
1760         * src/pic/main.h: declare pic14_options
1761         * src/pic/pcode.c: fixed instructions i/o relations,
1762           (RegCond): reverted to correct version,
1763           (newpCodeOpLit): truncate literals to 8 bit,
1764           (genericPrint): added debug output,
1765           (getRegFromInstruction): fixed for various operand types, simplified
1766           (BuildFlow): fixed broken handling of isntructions with labels
1767           (LinkFlow): start at last instruction in flow (skip trailing comments),
1768             pass the flow on to the next instruction after CALL
1769           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1770           (insertPCodeInstruction): fixed inserting after a skip instruction,
1771           (DoBankSelect): fixed for labeled instructions
1772           (OptimizepBlock): honor --nopeep switch
1773           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1774         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1775         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1776           (pCodeOptime2pCodes): allow disabling this optimization via
1777             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1778             but is still buggy), started implementation of a dataflow based
1779             pCode optimization (CSE + dead code elimination)
1780           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1781         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1782           names are independant of the stack location and therefore portable across
1783           devices
1784
1785 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1786
1787         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1788           (selectSpil): fixed bug 1337835 by not spilling bit variables
1789         * support/regression/tests/bug1337835.c: added test for this bug
1790         * src/mcs51/peeph.def: restart after rule 3.c,
1791           addded rules 263.x to optimize loading constants
1792
1793 2005-10-26 Raphael Neider <rneider AT web.de>
1794
1795         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1796         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1797           (genAssign): emit warning when casting literals to generic pointer
1798             type, also applies when taking the address of a fixed variable,
1799           (genCast): improved casting to generic pointers
1800         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1801           extern variables, added verbose error message
1802         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1803
1804 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1805
1806         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1807         carry must be complemented too
1808         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1809         could be emitted by genMinus
1810         * src/SDCCval.c (constVal): fixed bug 1305065
1811
1812 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1813
1814         * src/SDCCast.c (addCast): added promotion for bit variables
1815         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1816         promotion casts + optimisation
1817         (optimizeGetWord): fix warning 'i' might be used uninitialized
1818         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1819         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1820
1821 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1822
1823         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1824         all chars are promoted to int; promotion should be handled in SDCCast.c
1825
1826 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1827
1828         * device/lib/_strcmp.c: Fixed bug 1326457
1829
1830 2005-10-11 Raphael Neider <rneider AT web.de>
1831
1832         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1833         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1834
1835 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1836
1837         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1838         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1839
1840 2005-10-04 Raphael Neider <rneider AT web.de>
1841
1842         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1843           device/lib/pic16/pics.all: added pic18f1320
1844         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1845
1846 2005-09-30 Raphael Neider <rneider AT web.de>
1847
1848         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1849         * src/pic16/devices.inc: NEW, provides device descriptions
1850         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1851
1852 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1853
1854         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1855           GETHBIT
1856
1857 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1858
1859         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1860           documented Any Order Bit, Higher Order Byte and Higher Order Word
1861         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1862         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1863           (optimizeGetAbit): new, to get any bit, not only the high bit,
1864           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1865           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1866           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1867           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1868             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1869             GETABIT, GETBYTE, GETWORD: decorate them,
1870           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1871           (ast_print): added GETABIT, GETBYTE, GETWORD
1872         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1873         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1874           (geniCodeBinary): new generic binary icode,
1875           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1876         * src/port.h: updated comment for PORT.hasExtBitOp
1877         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1878           (genGetByte): new, to get a single byte,
1879           (genGetWord): new, to get a word from a long,
1880           (gen51Code): added GETABIT, GETBYTE, GETWORD
1881         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1882
1883 2005-09-23 Raphael Neider <rneider AT web.de>
1884
1885         * configure.in, configure: have device/lib/pic configured
1886         * device/lib/Makefile.in: added model-pic14
1887         * device/lib/clean.mk: added pic/ to clean rule
1888         * device/lib/pic: added rudimentary pic14 library providing support
1889           functions for multiplication/division/generic pointer access
1890         * src/SDCCopt.c (convilong): mark support functions as extern
1891           for pic14 port as well
1892         * src/pic/gen.c (genMult): added assertions,
1893           (genpic14Code): emit warning on unhandled iCodes
1894         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1895         * src/pic/pcode.c (pCodeOpCopy),
1896         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1897           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1898           SFR_REGISTER}), made safe for future extensions
1899         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1900           instructions even if preceeded by SKIP instructions (also remove
1901           them); removed unused code
1902         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1903           prevents leaving parts of the structure uninitialized after copying
1904
1905 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1906
1907         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1908           ago by me
1909         * support/regression/tests/addsub.c: added test for the bug
1910
1911 2005-09-21 Raphael Neider <rneider AT web.de>
1912
1913         * device/include/pic16/pic18f1220.h,
1914           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1915         * device/lib/pic16/Makefile.rules: added missing opening paren
1916         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1917           are provided in genutils.c,
1918           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1919           operand/result sizes,
1920           (genCmp): assert on NULL pointers first, then check deref'ed values
1921         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1922           result size
1923
1924 2005-09-18 Raphael Neider <rneider AT web.de>
1925
1926         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1927           as these are now unused,
1928           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1929         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1930           local, avoids uninitialized pointer dereference on r->name
1931         * src/pic16/ralloc.c (newReg): fixed indentation
1932
1933 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1934
1935         * src/SDCCval.c (constVal): fixed bug 730366
1936         * support/Util/SDCCerr.c,
1937         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1938
1939 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1940
1941         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1942
1943 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1944
1945         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1946
1947 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1948
1949         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1950           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1951         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1952           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1953         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1954         * packihx/packihx.c (hexDigit): made c unsigned char
1955         * as/mcs51/lklibr.c (fndsym),
1956         * link/z80/lkgb.c (gb),
1957         * link/z80/lklibr.c (fndsym),
1958         * link/z80/lkrloc.c (relr),
1959         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1960         * src/SDCC.lex (checkCurrFile, process_pragma),
1961         * src/SDCCglue.c (spacesToUnderscores),
1962         * src/SDCCmain.c (setParseWithComma, processFile),
1963         * src/asm.c (tvsprintf, printCLine),
1964         * src/avr/gen.c (emitcode, aopPut),
1965         * src/ds390/gen.c (emitcode),
1966         * src/hc08/gen.c (emitcode, emitinline),
1967         * src/mcs51/gen.c (emitcode, genInline),
1968         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1969           tokenizeLineNode),
1970         * src/pic/ralloc.c (debugLog),
1971         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1972           tokenizeLineNode),
1973         * src/pic16/ralloc.c (debugLog),
1974         * src/z80/main.c (_process_pragma):
1975            made all ctype.h function calls safe
1976         * src/SDCCopt.c: include math.h for fabs
1977         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1978           and used them throughout the code to make ctype.h function calls safe
1979         * src/ds390/main.c (asmLineNodeFromLineNode),
1980         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1981         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1982            unsigned char*
1983         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1984           (newpCodeAsmDir): made ctype.h function calls safe
1985         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1986           pic16_emitcode):  made lbp unsigned char*
1987         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1988           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1989         * src/xa51/gen.c (emitcode),
1990         * src/z80/gen.c (_emit2): made lbp unsigned char*
1991         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1992            char*
1993
1994 2005-09-05 Raphael Neider <rneider AT web.de>
1995
1996         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1997           access bank splitpoint
1998
1999 2005-09-05 Raphael Neider <rneider AT web.de>
2000
2001         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2002
2003 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2004
2005         * .version: changed to version 2.5.3
2006         * doc/sdccman.lyx: changed version to 2.5.3,
2007           documented --codeseg and --constseg and pragma codeseg and constseg,
2008           documented bit parameters (reentrant) and bit returning
2009         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2010            currFunc->recvSize, but is this ok for all ports?
2011           (ast2iCode): result of ~ on unsigned char must be cast to int for
2012            bool to work
2013         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2014           function pointers in bit space
2015         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2016           (processFuncArgs): call port.reg_parm() with reentrancy info
2017         * src/port.h,
2018         * src/avr/main.c,
2019         * src/ds390/main.c,
2020         * src/hc08/main.c,
2021         * src/pic/main.c,
2022         * src/pic16/main.c,
2023         * src/xa51/main.c,
2024         * src/z80/main.c: port.reg_parm prototype extended with
2025           "bool reentrant" parameter
2026         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2027           options.stackAuto for allocating bit register parameters
2028         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2029           (genSend): set BitBankUsed if it is,
2030           (selectRegBank): factored out of genCall for use in genPcall,
2031           (genCall): removed redundant dtype assignmen, use selectRegBank,
2032           (genPcall): handle returning in Carry properly, save in F0 if needed,
2033           (genReceive): handle bit register parameters
2034         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2035           (mcs51_assignRegisters): enable bit registers for all reentrant
2036            functions and don't set BitBankUsed unconditionally
2037         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2038         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2039         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2040
2041 2005-08-27 Borut Razem <borut.razem AT siol.net>
2042
2043         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2044         ppc-osx (Darwin) does not support -u option. It seems that it is
2045         supported only on Linux - GNU cp
2046
2047 2005-08-25 Borut Razem <borut.razem AT siol.net>
2048
2049         * sim/ucsim/gui.src/serio.src/Makefile.in,
2050           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2051           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2052           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2053           install and strip, since the strip at /usr/ccs/bin should be used
2054           on solaris
2055
2056 2005-08-24 Borut Razem <borut.razem AT siol.net>
2057
2058         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2059
2060 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2061
2062         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2063         ffffffffu
2064
2065 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2066
2067         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2068         * as/mcs51/lkmain.c (link_main): fixed warning
2069         * device/include/stdbool.h: ds390 has no advanced bit support yet
2070         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2071         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2072         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2073           and updated their macros
2074         * src/SDCCval.c (constVal): updated comment for renamed b_long
2075
2076 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2077
2078         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2079         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2080           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2081           (oprio): set priority for '['
2082         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2083            and adb_24_bit
2084         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2085         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2086         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2087         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2088           added overlayable BIT_BANK area
2089         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2090           (summary2): explain 'T' in legenda
2091         * as/mcs51/lkrloc.c: replaced old K&R style,
2092           (relr): added R_BIT processing,
2093           (errmsg): added "Bit-addressable relocation error",
2094           (adb_bit): added for converting from byte- to bit-addressable space,
2095           (adb_24_bit): added for converting from byte- to bit-addressable space
2096         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2097            used in reentrant functions now even as return value
2098         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2099         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2100           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2101         * src/SDCCglobl.h: added indicator BitBankUsed
2102         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2103            the bit registers b0-b7
2104         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2105           (geniCodeCast): fixed bug 1263853,
2106           (geniCodeLogicAndOr): put result in bool or char,
2107           (geniCodeReceive): added parameter func for accessing the return type,
2108           (geniCodeFunctionBody): pass func to geniCodeReceive
2109         * src/SDCCmain.c: added indicator BitBankUsed
2110         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2111         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2112           (checkSClass): don't put automatic bool/bit on stack,
2113           (checkFunction): removed check on function cannot return bit
2114         * src/SDCCsymt.h: added newBoolLink prototype
2115         * src/mcs51/gen.c (rb1regs): added bit registers,
2116           (movc): created for assigning to carry,
2117           (pushReg, popReg): created for pushing registers,
2118           (sameRegs): check both AOP_REG and AOP_CRY types,
2119           (aopOp): handle bit registers,
2120           (aopPut): optimization no self-assign,
2121           (saveRegisters): push reg->base (bits) only once for bit registers,
2122            and use pushReg,
2123           (unsaveRegisters): pop reg->base only once and use popReg,
2124           (assignResultValue): added parameter func and return in carry for bits,
2125           (genIpush): optimization no reload in A if not changed,
2126           (genSend): bit parameters in reentrant functions are passed in bit
2127            registers by first assigning to bits in B, then save registers and
2128            copy B to bits,
2129           (genCall): handle returning in Carry properly, save it in F0 if needed,
2130           (genPcall): updated assignResultValue call, this is not safe yet for bit
2131            returning function !!!
2132           (genFunction): don't generate equ's for bit registers and use pushReg,
2133           (genEndFunction): take care of bit returning functions and use popReg,
2134           (genRet): return bit in Carry,
2135           (genIfx): optimize bit registers and other directly addressable bits,
2136           (genReceive): updated assignResultValue call
2137         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2138           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2139            registers when using stack-auto
2140         * src/mcs51/ralloc.c (_G): added allBitregs,
2141           (regs8051): added the bit registers,
2142           (createStackSpil): use macro IS_BIT,
2143           (getRegBit): added to allocate a bit register, else spill,
2144           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2145           (updateRegUsage): factored out to ease stepping while debugging,
2146           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2147            also allocate bit registers,
2148           (fillGaps): handle bit registers,
2149           (findAllBitregs): added to create bit vector with all bit registers,
2150           (mcs51_allBitregs): returns this bit vector,
2151           (mcs51_assignRegisters): when using stack-auto use bit registers for
2152            passing parameters and creating local variables
2153         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2154
2155 2005-08-22 Borut Razem <borut.razem AT siol.net>
2156
2157         * device/lib/Makefile.in: replaced find option -or with -o
2158           to make it run on solaris
2159
2160 2005-08-22 Raphael Neider <rneider AT web.de>
2161
2162         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2163           fixes #1265442 (crash on Solaris)
2164
2165 2005-08-20 Borut Razem <borut.razem AT siol.net>
2166
2167         * configure, configure.in: added tests for libsocket and libnsl libraries,
2168           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2169           from support/regression/Makefile.in
2170         * support/regression/Makefile.in: added
2171         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2172         * sim/ucsim/libtool: regenerated on sparc-solaris
2173         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2174           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2175           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2176           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2177           sparc-solaris, which doesn't use GNU ld linker
2178         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2179         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2180
2181 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2182
2183         * src/mcs51/peeph.def: updated comments
2184
2185 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2186
2187         * device/lib/_gptrget.c,
2188         * device/lib/_gptrput.c: slightly shorter
2189         * doc/sdccman.lyx: incremented version
2190         * src/mcs51/peeph.def: moved peephole comments to the line of first
2191           change to better keep line correlation, reanimated 186.e
2192         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2193
2194 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2195
2196         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2197           David Saxton with quotes around file name.
2198
2199 2005-08-15 Borut Razem <borut.razem AT siol.net>
2200
2201         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2202           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2203           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2204           make tests run on x86_64 platform
2205
2206 2005-08-13 Raphael Neider <rneider AT web.de>
2207
2208         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2209           as it might be executed DURING a build (parallel make is wonderful)
2210
2211 2005-08-13 Raphael Neider <rneider AT web.de>
2212
2213         * device/lib/Makefile.in (port-specific-objects-pic16):
2214           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2215         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2216           dependency
2217         * device/lib/pic16/Makefile.rules: build subdirs before creating
2218           the library, removed builddir rule, create $(builddir) early in
2219           recurse rule, use empty recurse rule for leaf directories
2220         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2221           mkdir errors (race condition), removed duplicate suffix "hex"
2222           from clean rules
2223         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2224         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2225           prevents mkdir -p from aborting on Alpha
2226
2227 2005-08-12 Raphael Neider <rneider AT web.de>
2228
2229         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2230           db-statements in order to allow for arrays of pointers in code
2231           sections to be placed without interspersed 0-padding, fixes
2232           bug #1256215
2233         * (emitStatistics): fixed division by zero for pic18f1220
2234         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2235           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2236         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2237         * (pic16_pCodeConstString): keep track of already emitted string
2238           literals to prevent "duplicate definitions of symbol _str_NR"
2239         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2240           debug message
2241         * device/lib/Makefile.in: ignore failing PIC16 library builds
2242         * device/lib/pic16/Makefile: do not build if gputils are missing
2243         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2244
2245 2005-08-10 Raphael Neider <rneider AT web.de>
2246
2247         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2248           my last commit)
2249
2250 2005-08-10 Raphael Neider <rneider AT web.de>
2251
2252         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2253           Rokas' patch to add the new fixed point type "__fixed16x16"
2254         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2255           functions for __fixed16x16 arithmetics
2256         * device/lib/pic16: reimplemented the build system to support
2257           a separate build directory, better handling of libio (create
2258           the library in a separate subdir for each architecture) and
2259           easier configuration (centralized in Makefile.common)
2260
2261 2005-08-07 Raphael Neider <rneider AT web.de>
2262
2263         * src/pic16/gen.c (genrshTwo): fixed sign extension
2264         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2265         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2266           added T0CONbits
2267         * device/include/pic16/pic18f4220.h: NEW, header for
2268           pic18f4220 and pic18f4320
2269         * device/include/pic16/pic18fregs.h: added new devices,
2270           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2271         * device/include/pic16/signal.h: resolved name clashes
2272           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2273           to also allow testing for interrupt enable bits, added
2274           comments on how to use the macros
2275         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2276         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2277           register definitions for the devices
2278         * device/lib/pic16/pics.all: added new devices
2279         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2280           allocated memory
2281         * device/lib/pic16/libc/stdlib/memfree: do not count
2282           the block header as free memory
2283         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2284           simplified and added missing end-of-blocklist-marker
2285           (reported by Peter Onion, fixes #1252814)
2286         * (_mergeHeapBlock): fixed loop condition
2287         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2288           len==0, restructured code
2289         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2290           up a bit, reduced bitfield accesses, prevent endless loops
2291           in case of heap corruption
2292         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2293           "unreferenced arguments/must return a value" warnings
2294         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2295           replaced BAUDREG with SPBRG
2296         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2297           device/lib/pic16/debug/gstack/gstack.c: replaced
2298           _naked, _asm, _endasm with __naked, __asm, __endasm
2299
2300 2005-08-05 Raphael Neider <rneider AT web.de>
2301
2302         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2303           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2304
2305 2005-08-05 Borut Razem <borut.razem AT siol.net>
2306
2307         * device/lib/Makefile.in: added missing ';'
2308         * configure: removed ^M characters
2309
2310 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2311
2312         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2313           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2314           License
2315
2316 2005-08-04 Borut Razem <borut.razem AT siol.net>
2317
2318         * configure.in: pic16 libraries build 2nd try - enable running
2319           configure in device/lib/pic16
2320         * configure: regenerated from configure.in
2321         * device/lib/Makefile.in: create $(PORT)/bin directory
2322
2323 2005-08-03 Raphael Neider <rneider AT web.de>
2324
2325         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2326           to get/set values via pointers
2327         * (genUnpackBits,genPackBits): changed detection of
2328           ptr->bitfield vs. sym.bitfield, fixed access via generic
2329           pointers, removed dead (wrong) code for multibyte bitfields
2330         * (genNearPointerGet, genGenPointerGet): removed useless code,
2331           fixed bitfield detection, fixes #1250594
2332         * (genNearPointerSet): removed useless code
2333         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2334           and introduced macro pic16_emitpcode that conditionally emits
2335           the origin of the following pCode (useful for debugging SDCC)
2336         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2337         * (createDefmap): fixed handling of LFSR for --optimize-df
2338
2339 2005-08-02 Borut Razem <borut.razem AT siol.net>
2340
2341         * device/lib/Makefile.in: pic16 libraries build enabled since
2342           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2343
2344 2005-08-02 Raphael Neider <rneider AT web.de>
2345
2346         * src/pic16/gen.c (genPackBits): removed deprecated warning
2347         * (genGenPointerSet): fixed bitfield detection
2348
2349 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2350
2351         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2352
2353 2005-07-31 Raphael Neider <rneider AT web.de>
2354
2355         * device/lib/pic16/libdev/pic18f458.c,
2356           device/include/pic16/pic18f458.h: added missing T0CONbits
2357
2358 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2359
2360         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2361
2362 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2363
2364         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2365
2366 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2367
2368         * device/include/mcs51/at89c51ed2.h: added.
2369
2370 2005-07-23 Raphael Neider <rneider AT web.de>
2371
2372         * src/pic/gen.h: added emitpcode macro for debugging
2373         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2374           and replace by macro adding debug information on demand
2375         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2376         * (gencjne): tried to fix; replaced with correct (slower) code
2377         * (gen{Unp,P}ackBits): fixed single bit access
2378         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2379         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2380           previous instruction
2381         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2382           register has to be handled with care (forbidding movement
2383           of assignments/uses, removing assignments completely, ...)
2384         * (pCodeOptime2pCodes): make use of regIsSpecial
2385         * added lots of debugging output (commented out)
2386         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2387           from being reused as result UNLESS it is known to work
2388
2389 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2390
2391         * support/Util/dbuf.h: include <stddef.h> for size_t
2392         * .version: changed to version 2.5.2
2393
2394 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2395
2396         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2397
2398 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2399
2400         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2401           (genModOneByte): removed needless psha/pula
2402
2403 2005-07-22 Raphael Neider <rneider AT web.de>
2404
2405         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2406           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2407         * src/pic/gen.c (resolveIfx): do not "invent" labels
2408         * (genSkipc): changed to positive logic
2409         * (genSkipCond): removed as no longer needed
2410         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2411           backport from PIC16
2412         * (genLeftShift): check operands are in different registers
2413         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2414           INCF does not update CARRY...
2415         * src/pic/main.c: fixed _linkCmd
2416         * src/pic/pcode.c (unlinkpCode): added inactive code
2417         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2418           alive (do not assign result and operand overlapping registers)
2419
2420 2005-07-22 Raphael Neider <rneider AT web.de>
2421
2422         * src/pic/device.c (dump_sfr): replaced register declaration with
2423           call to emitSymbolToFile() to avoid duplicate symbols
2424         * (assignRelocatableRegisters): do not declare external symbols
2425         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2426           right (take size of type, not etype)
2427         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2428         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2429         * (packRegsForAccUse): disabled assignment of WREG as
2430           the result reg to prevent occurence of just fixed #1235003,
2431           fixes #1242954
2432         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2433           symbols (avoids duplicate symbols in .asm file)
2434         * (pic14emitRegularMap): use emitSymbolToFile()
2435         * src/pic/gen.c (aopOp): fixed spillLocation handling
2436         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2437         * (genDataPointerSet): removed unneccessary variables/output
2438
2439 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2440
2441         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2442         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2443
2444 2005-07-21 Raphael Neider <rneider AT web.de>
2445
2446         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2447           architecture cannot handle them efficiently, fixes bug #1235003
2448         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2449           check for empty sets before using them (fixes bug #1232190)
2450
2451 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2452
2453         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2454           (lnksect2): generate warnings for memory overlap
2455         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2456           constseg to set the name of these segments so you can instruct the linker
2457           to place them in banks
2458         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2459         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2460           added code_seg and const_seg to options
2461         * src/SDCCglue.c (emitMaps): use options.const_seg,
2462           (createInterruptVect): put interrupt vectors in segment HOME,
2463           (glue): put HOME before static segment and put the main glue in HOME,
2464           (glue): use options.code_seg
2465         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2466         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2467           these segments so you can instruct the linker to place them in banks
2468           (linkEdit): use code_loc for HOME segment which should be the first
2469           segment in code memory now
2470         * src/SDCCmem.c: fixed more stuff like bug 1238386
2471         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2472           (changePointer): don't change function pointers to code pointers for
2473           banked functions,
2474           (compareType): added exceptional check for banked function pointers
2475         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2476         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2477           after static in code memory
2478         * src/mcs51/gen.c: added aopLiteralLong prototype,
2479           (aopForSym): use getSize for functions,
2480           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2481           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2482           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2483           the segment,
2484           (genPcall): use call for literal function pointers and generate banked
2485           calls over the one trampoline so there's only one place for the user to
2486           modify according to his/hers hardware,
2487           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2488           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2489         * src/mcs51/main.c: added keyword banked,
2490           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2491         * support/Util/SDCCerr.c,
2492         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2493           needed for passing the bank and address to the trampoline
2494         * device/lib/mcs51/crtbank.asm: added for bankswitching
2495         * device/lib/mcs51/Makefile: added crtbank
2496
2497 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2498
2499         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2500           for fields at offset 0 of a struct or union as reported
2501           on 2005-07-07 in the developer mailing list.
2502
2503 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2504
2505         * src/SDCCmem.c: fixed bug 1238386
2506
2507 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2508
2509         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2510           (patch #1144962), added peephole 300, enabled 259.x
2511         * doc/sdccman.lyx: removed screenshot and provided link instead
2512
2513 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2514
2515         * doc/sdccman.lyx: added section about debugging with ddd
2516         * doc/figures/ddd_example.eps: screenshot of debugging session
2517
2518 2005-07-04 Raphael Neider <rneider AT web.de>
2519
2520         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2521           like CODE pointers, fixes #1115683
2522         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2523           call, fixes bugs #1232211, #1228110,
2524           fixed wrong casts to pCodeFlow from pCodeInstructions
2525
2526 2005-07-04 Raphael Neider <rneider AT web.de>
2527
2528         * src/pic/gen.c (popGet): changed assert to allow for
2529           bit operands
2530         * (popGetAddr): changed signature to provide
2531           an additional index, patched all call sites
2532         * (genCmpEq): handle literal-like operands correctly
2533         * (genAddrOf): added sanity checks on __code/__data pointers
2534         * (genAssign): added handling of symbols from __code section
2535         * (gencjne): do not generate code for comparisons whose result
2536           is neither stored nor used, fixes bug #1171114
2537         * (AccLsh, AccRsh): operate on operand instead of WREG
2538         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2539           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2540           by known count
2541         * rewrote complete shift-by-literal logic, commented unused
2542           functions out
2543         * (genConstPointerGet): get multiple bytes (if result size > 1),
2544           fixed handling of non-immediate addresses
2545         * (genPointerGet): handle CODE pointers like CONST pointers
2546         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2547         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2548           operand is to be treated as a literal or not
2549         * (mov2w,genPcall,genCmpEq),
2550           src/pic/genarith.c: use aop_isLitLike() to decide between
2551           literal/register contents
2552         * (addSign): added missing offset
2553         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2554           only emit comment in debug-mode,
2555           use {aop,op}_isLitLike throughout the file
2556         * src/pic/glue.c: fix initializers for pointers (work in progress)
2557         * src/pic/pcode.c (get_op): honor index on _const symbols
2558         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2559         * (dumppBlock): added pCode size estimation
2560         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2561           check for IS_SYMOP before OP_SYMBOL'ing
2562         * fixed indentation, compacted switch-statements
2563         * (allocReg): find free register and allocate it instead of
2564           allocating new registers all the time
2565         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2566           registers as its operands (necessary only for multibyte GETs)
2567
2568 2005-07-01 Raphael Neider <rneider AT web.de>
2569
2570         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2571           debugging .asm-output macros FENTRY + FEXIT
2572         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2573           way... I wonder...
2574         * (emitpComment): NEW, printf to pCode
2575         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2576           offset handling
2577         * (popGetAddr): NEW, variant of popGet to access an immediates
2578           high(er) bytes instead of the n'th byte of memory they reference,
2579           replaced popGet with popGetAddr where neccessary
2580         * (genDataPointerGet): reactivated and fixed implementation
2581         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2582           accesses
2583         * (genDataPointerSet): fixed multibyte assignments
2584         * (genpic14Code): fixed --i-code-in-asm handling
2585         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2586         * (genPlus): fixed index-out-of-bounds error
2587         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2588         * src/pic/ralloc.c: added debugging output macro FENTRY2
2589         * (spillThis): fixed indentation, enbraced for-body for clarity
2590         * (rematStr): commented out as now unused
2591         * (regTypeNum): commented out special spill case (overwrites
2592           arbitrary values)
2593         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2594
2595 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2596
2597         * doc/sdccman.lyx: documented sfr16/sfr32,
2598           added example for using storage class with function pointers
2599         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2600
2601 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2602
2603         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2604         * device/lib/_itoa.c,
2605         * device/lib/_ltoa.c: optimized codesize
2606         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2607           but don't know how to suppress the double warning.
2608         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2609         * support/Util/SDCCerr.c,
2610         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2611
2612 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2613
2614         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2615           fixed old K&R prototypes
2616         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2617         * device/lib/_gptrget.c,
2618         * device/lib/_gptrgetc.c,
2619         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2620           also new versions for small generic pointers and banked generic pointers
2621         * src/port.h: added const_name
2622         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2623         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2624         * src/SDCCcse.c (findPrevIc): check all associative operators
2625         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2626         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2627         * src/SDCCmem.c: updated comments,
2628           set far-space to 0 for pdata, results in optimized code
2629         * src/SDCCmem.h: added macro CONST_NAME
2630         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2631           moving the info into the highest bits, see also gptrget/gptrput
2632         * src/src.dsp: added sdcc.ico to project files
2633         * src/avr/gen.c (genCast): fixed bug 0x%d
2634         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2635         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2636           relation between ptr_type and DCL_TYPE,
2637           (genCast): fixed bug 0x%d
2638         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2639           (CODE)" for const_name
2640         * src/hc08/gen.c (genCast): fixed bug 0x%d
2641         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2642           (hc08_port): added "CONST (CODE)" for const_name
2643         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2644           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2645           between ptr_type and DCL_TYPE,
2646           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2647           operand* and took AOP() inside function so sfr-ness can be checked,
2648           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2649           new prototype,
2650           (genFunction, genEndFunction): optimized stack setup,
2651           (genMinus): optimized for literals with ending zeroes (in bytes),
2652           (genCast): fixed bug 0x%d
2653         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2654           (mcs51_port): added "CONST (CODE)" for const_name
2655         * src/mcs51/peeph.def: made rule 226 more generic
2656         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2657         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2658         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2659         * src/z80/main.c (z80_port): added NULL for const_name,
2660           (gbz80_port): added NULL for const_name
2661         * support/regression/tests/bug663539.c,
2662         * support/regression/tests/sfr16.c: new tests
2663
2664 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2665
2666         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2667
2668 2005-06-24 Raphael Neider <rneider AT web.de>
2669
2670         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2671           corrected typos...
2672         * device/include/pic16/signal.h: added USBIF
2673           and SIG_USB
2674
2675 2005-06-24 Raphael Neider <rneider AT web.de>
2676
2677         * device/lib/pic16/libdev/pic18f2455.c,
2678           device/include/pic16/pic18f2455.h: NEW
2679         * device/include/pic16/pic18fregs.h,
2680           device/lib/pic16/pics.all,
2681           src/pic16/device.c: added 18f2455
2682         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2683           device/include/pic16/{pic18f[68][567].h,usart.h}:
2684           replaced MULTIPLE_USARTS define with more relaible
2685           compatibility sfrs (for USART access)
2686
2687 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2688
2689         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2690           and the output asm file line is printed on two lines.
2691
2692 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2693
2694         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2695           BGT, BLE, BHI, and BLS instructions
2696         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2697           genCmpEq): removed
2698         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2699           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2700           fixes bug #1216342
2701         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2702
2703 2005-06-15 Raphael Neider <rneider AT web.de>
2704
2705         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2706         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2707         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2708           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2709           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2710
2711 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2712
2713         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2714           Marcel Telka in bug #1215704
2715
2716 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2717
2718         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2719           located in shared memory bank.
2720
2721 2005-05-31 Raphael Neider <rneider AT web.de>
2722
2723         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2724           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2725           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2726
2727 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2728
2729         * device/lib/_strncpy.c: fixed the fix
2730
2731 2005-05-26 Raphael Neider <rneider AT web.de>
2732
2733         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2734           initializers with \0, bug #1208187
2735         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2736           intializers with \0, bug #1208187
2737
2738 2005-05-26 Raphael Neider <rneider AT web.de>
2739
2740         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2741           initializers with \0, bug #1208187
2742         * src/pic16/main.c (_process_pragma): added sanity checks
2743           for stack position and size, emit warnings when appropriate
2744
2745 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2746
2747         * device/lib/_strncpy.c: fixed not filling with \0
2748
2749 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2750
2751         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2752           createFunction),
2753         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2754           compound_statement),
2755         * src/SDCCsymt.h,
2756         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2757
2758 2005-05-24 Raphael Neider <rneider AT web.de>
2759
2760         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2761
2762 2005-05-24 Raphael Neider <rneider AT web.de>
2763
2764         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2765           TRISE definitions, closes bug #1162453
2766
2767 2005-05-22 Raphael Neider <rneider AT web.de>
2768
2769         * src/pic16/main.c (_process_pragma): check for missing
2770           arguments to pragmas code and udata
2771         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2772           consistency fixes to match other headers (thanks to Jim Paris)
2773         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2774
2775 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2776
2777         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2778
2779 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2780
2781         * support/regression/tests/bug1198642.c: new test
2782         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2783         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2784         * support/scripts/resource.h,
2785         * support/scripts/resource.rc,
2786         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2787         * support/scripts/sdcc.ico: added 32x32 icon
2788
2789 2005-05-18 Raphael Neider <rneider AT web.de>
2790
2791         * device/lib/pic16/libdev/pic18f*.c,
2792         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2793           keywords to "__sfr" and "__at (X)"
2794         * device/include/pic16/pic18fregs.h: added pic18f4520
2795         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2796           #1203088 (MPLAB compatibility)
2797
2798 2005-05-17 Raphael Neider <rneider AT web.de>
2799
2800         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2801         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2802         * device/lib/pic16/pics.all: added new devices
2803         * src/pic16/device.c: added support for pic18f4520
2804
2805 2005-05-16 Raphael Neider <rneider AT web.de>
2806         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2807         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2808         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2809           convenience function for bit access
2810
2811 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2812
2813         * device/lib/printf_large.c: fixed bug 1193299
2814         * support/regression/tests/bug1057979.c: added test %3.3s
2815
2816 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2817
2818         * device/include/mcs51/8051.h,
2819         * device/include/mcs51/8052.h: made parseable with lint
2820         * device/include/mcs51/lint.h: added include file for (sp)lint
2821         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2822         * doc/cdbfileformat.lyx,
2823         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2824
2825 2005-05-14 Raphael Neider <rneider AT web.de>
2826
2827         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2828         * device/lib/pic16/libc/stdlib/itoa.c (new)
2829         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2830         * device/lib/pic16/libio/Makefile: exclude subdir according to
2831           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2832         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2833         * src/pic16/gen.c (genFunction): prevent annoying warning
2834         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2835           nameclashes on BeOS
2836         * support/cpp2/cppmain.c (cpp_output_string): new
2837         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2838           fixes bug 1116802
2839
2840 2005-05-13 Borut Razem <borut.razem AT siol.net>
2841
2842         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2843
2844 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2845
2846         * .version: changed to version 2.5.1; back to bleeding edge development
2847
2848 2005-05-11 Borut Razem <borut.razem AT siol.net>
2849
2850         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2851           generate PDF version 1.3 documents
2852
2853 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2854
2855         * .version: changed to version 2.5.0
2856
2857 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2858
2859         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2860
2861 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2862
2863         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2864         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2865         well as many smaller updates.
2866         * .version: changed to version 2.5.0-pre1
2867
2868 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2869
2870         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2871
2872 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2873
2874         * support/regression/tests/bug1185672.c: added
2875         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2876           bug 1185672
2877         * src/mcs51/gen.c (genCall): added comments, made it look safer
2878         * src/mcs51/gen.c (genEndFunction): simplified
2879
2880 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2881
2882         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2883
2884 2005-04-14 Borut Razem <borut.razem AT siol.net>
2885
2886         * fixed bug 1045046 - SIGSEGV with really simple code?:
2887           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2888           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2889
2890 2005-04-14 Borut Razem <borut.razem AT siol.net>
2891
2892         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2893           src/pic16/device.h: temporarily disabled experimental #inline pragma
2894           for 2.5.0 release
2895
2896 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2897
2898         * device/include/z80/stdio.h,
2899         * device/include/z80/string.h: removed these highly incomplete files so
2900           SDCC can use the default ones in device/include/
2901
2902 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2903
2904         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2905         gcc warning.
2906         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2907         fix sdcpp warnings.
2908
2909 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2910
2911         * device/include/malloc.h: removed redundant __reentrant prototypes
2912         * device/lib/_mullong.c: added working xstack variant in asm (C version
2913           doesn't pass regression tests)
2914         * device/lib/bpx.c: used __data and made bpx char for mcs51
2915         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2916           (createFunction): fixed bug with xstackPtr
2917         * src/SDCCcse.c: corrected comments
2918         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2919           (killDeadCode, eBBlockFromiCode): removed unused code
2920         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2921           corrected comments
2922         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2923           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2924           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2925           (genModOneByte): fixed warning in MSVC
2926         * src/mcs51/main.c (): added comments
2927         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2928
2929 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2930
2931         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2932
2933 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2934
2935         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2936
2937 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2938
2939         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2940         characters arrays of larger size than the declared one.
2941
2942 2005-04-10 Borut Razem <borut.razem AT siol.net>
2943
2944         * src/pic/gen.c (genInline),
2945           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2946           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2947           (findNextInstruction), (findPrevInstruction),
2948           (findInstructionUsingLabel),
2949           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2950         * src/pic/pcode.c (findLabel): added missing '\n'
2951         * src/src.dsp: added SDCCdwarf2.c to the project
2952
2953 2005-04-09 Borut Razem <borut.razem AT siol.net>
2954
2955         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2956
2957 2005-04-08 Raphael Neider <rneider AT web.de>
2958
2959         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2960           into the chain after a given one) and mergeDefmapSymbols (combine
2961           defmap entries for each symbol per pcode)
2962         * (createDefmap): have defmap entries merged in the end
2963         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2964           a symbol before replacing one access type's symbol, merge symbols in
2965           the end (replacement symbol might already have an entry)
2966         * (assignValnums): keep reference to written WREG intact
2967
2968 2005-04-08 Raphael Neider <rneider AT web.de>
2969
2970         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2971           Alpha)
2972
2973 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2974
2975         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2976         bytes
2977
2978 2005-04-07 Raphael Neider <rneider AT web.de>
2979
2980         * device/include/pic16/usart.h: added compatibility defines for
2981           devices with more than one USART
2982         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2983
2984 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2985
2986         * device/lib/Makefile.in: updated for port specific include
2987
2988 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2989
2990         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2991
2992 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2993
2994         * device/include/8051.h,
2995         * device/include/8052.h,
2996         * device/include/at89S8252.h,
2997         * device/include/at89c55.h,
2998         * device/include/at89x051.h,
2999         * device/include/at89x51.h,
3000         * device/include/at89x52.h,
3001         * device/include/mcs51reg.h,
3002         * device/include/reg51.h,
3003         * device/include/reg764.h,
3004         * device/include/regc515c.h,
3005         * device/include/sab80515.h: (re)moved these 12 files
3006         * device/include/mcs51/8051.h,
3007         * device/include/mcs51/8052.h,
3008         * device/include/mcs51/at89S8252.h,
3009         * device/include/mcs51/at89c55.h,
3010         * device/include/mcs51/at89x051.h,
3011         * device/include/mcs51/at89x51.h,
3012         * device/include/mcs51/at89x52.h,
3013         * device/include/mcs51/mcs51reg.h,
3014         * device/include/mcs51/reg51.h,
3015         * device/include/mcs51/reg764.h,
3016         * device/include/mcs51/regc515c.h,
3017         * device/include/mcs51/sab80515.h: and added them here
3018
3019 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3020
3021         * device/include/stdarg.h: changed SDCC specific keywords to double
3022           underlined form.
3023         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3024           mcs51 and ds390.
3025         * device/include/hc08/mc68hc908gp32.h,
3026         * device/include/hc08/mc68hc908jb8.h,
3027         * device/include/hc08/mc68hc908jkjl.h,
3028         * device/include/hc08/mc68hc908qy.h: fixed comments
3029         * device/include/mcs51/README: updated
3030         * device/include/mcs51/c8051f120.h: added PINRSF
3031         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3032         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3033           amidst code. Also inline is not supported.
3034
3035 2005-04-06 Raphael Neider <rneider AT web.de>
3036
3037         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3038         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3039           callers stack/frame pointers
3040
3041 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3042
3043         * device/include/pic16/usart.h: added, missing in previous commit,
3044         * device/include/pic16/adc.h: fixed typo,
3045         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3046         commit,
3047         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3048         <p18fxxx.inc>
3049         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3050         uninitialized because a bug appears with gplink
3051         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3052         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3053         complains for unrecognised option
3054
3055 2005-04-05 Raphael Neider <rneider AT web.de>
3056
3057         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3058           structs as well (using memcpy)
3059         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3060           on ISRs (GOTO has no label)
3061         * src/pic16/device.h: added OF_OPTIMIZE_DF
3062         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3063           new data flow analysis/optimization
3064         * src/pic16/pcode.c: added (prototypes for and implementation of)
3065           dataflow analysis functions, fixed pCodeInstructions' inCond and
3066           outCond values, made RCALL a branch instruction
3067         * (pic16_unlinkpCode): keep C line if possible
3068         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3069           C line moved if possible
3070         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3071         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3072           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3073         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3074           new flow)
3075         * (pic16_getJumptabpCode): NEW, needed in...
3076         * (LinkFlow): fixed handling of jumptables, calls and conditional
3077           branches
3078         * (pic16_InsertCommentAfter): NEW
3079         * (pic16_pCodeReplace): made verbose and flow preserving
3080         * (AnalyzeFlow): added call to data flow analysis
3081         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3082         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3083         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3084
3085 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3086
3087         * src/SDCCast.c (decorateType): fixed bug #1105626
3088
3089 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3090
3091         * device/include/asm/pic16/features.h,
3092         * pic18f*.h headers,
3093         * device/include/pic16/adc.h,
3094         * device/include/pic16/delay.h,
3095         * device/include/pic16/i2c.h,
3096         * device/include/pic16/malloc.h,
3097         * device/include/pic16/stdio.h,
3098         * device/include/pic16/stdlib.h,
3099         * device/include/pic16/string.h,
3100         * device/lib/pic16/libc/stdio/printf_tiny.c,
3101         * device/lib/pic16/libc/stdio/printf_small.c,
3102         * device/lib/pic16/libc/stdio/strmgpsim.c,
3103         * device/lib/pic16/libc/stdio/strmmssp.c,
3104         * device/lib/pic16/libc/stdio/strmusart.c,
3105         * device/lib/pic16/libc/stdio/vfprintf.c,
3106         * device/lib/pic16/libc/stdlib/ltoa.c,
3107         * device/lib/pic16/libc/stdlib/putchar.c,
3108         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3109         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3110         * device/lib/pic16/libc/stdlib/memchrram.c,
3111         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3112         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3113         * device/lib/pic16/libio/adc/adcbusy.c,
3114         * device/lib/pic16/libio/adc/adcread.c,
3115         * device/lib/pic16/libio/adc/adcsetch.c,
3116         * device/lib/pic16/libio/usart/ubaud.c,
3117         * device/lib/pic16/libio/usart/ubusy.c,
3118         * device/lib/pic16/libio/usart/udrdy.c,
3119         * device/lib/pic16/libio/usart/uopen.c,
3120         * device/lib/pic16/libio/usart/uputc.c,
3121         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3122         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3123         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3124         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3125         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3126         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3127         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3128         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3129         specific keywords to double underlined form,
3130         * device/lib/pic16/libc/Makefile.rules,
3131         * device/lib/pic16/libsdcc/Makefile.rules,
3132         * device/lib/pic16/libm/Makefile,
3133         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3134         to compile with C standard set in Makefile.common
3135         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3136         rand.c and crc.c in compilation process,
3137         * device/lib/pic16/libsdcc/int/divuint.c,
3138         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3139         `c' from signed to unsigned,
3140         * device/lib/pic16/startup/crt0.c,
3141         * device/lib/pic16/startup/crt0i.c,
3142         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3143         keywords to double underlined form, bug fixes in _do_cinit function
3144         which prevented the correct initialization of the .idata segment,
3145         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3146         core to enter a infinite loop
3147         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3148
3149 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3150
3151         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3152
3153 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3154
3155         * device/include/Makefile.in: add support for hc08 subdirectory
3156         * device/include/hc08/: new subdirectory
3157         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3158         Lucas Loizaga, thanks!
3159         * device/include/hc08/mc68hc908qy.h,
3160         * device/include/hc08/mc68hc908gp32.h,
3161         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3162         their own directory. Changed internal macro names to use the compiler
3163         reserved namespace. Changed SDCC specific keywords to double
3164         underlined form.
3165         * device/include/math.h,
3166         * device/include/malloc.h,
3167         * device/include/stdarg.h,
3168         * device/include/stdbool.h
3169         * device/include/string.h,
3170         * device/include/tinibios.h,
3171         * device/include/ds400rom.h,
3172         * device/include/8051.h,
3173         * device/include/8052.h,
3174         * device/include/80c51xa.h,
3175         * device/include/at89c55.h,
3176         * device/include/at89S8252.h,
3177         * device/include/at89x51.h,
3178         * device/include/at89x52.h,
3179         * device/include/ds80c390.h,
3180         * device/include/reg764.h,
3181         * device/include/regc515c.h,
3182         * device/include/sab80515.h,
3183         * device/include/mcs51/c8051f000.h,
3184         * device/include/mcs51/c8051f018.h,
3185         * device/include/mcs51/c8051f020.h,
3186         * device/include/mcs51/c8051f040.h,
3187         * device/include/mcs51/c8051f060.h,
3188         * device/include/mcs51/c8051f120.h,
3189         * device/include/mcs51/c8051f300.h,
3190         * device/include/mcs51/c8051f310.h,
3191         * device/include/mcs51/c8051f320.h,
3192         * device/include/mcs51/c8051f330.h,
3193         * device/include/mcs51/c8051f350.h,
3194         * device/include/z180.h: Changed SDCC specific keywords to double
3195         underlined form.
3196
3197 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3198
3199         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3200         18F4455,
3201         * (pic16_assignConfigWordValue): disable testing of configuration
3202         register value with config mask,
3203         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3204         function with port->fun_prefix,
3205         * (genFunction): when generating a naked interrupt function never
3206         create an absolute segment placed in interrupt vector address, place
3207         the actual interrupt function at IVA instead, when an interrupt
3208         function is generated with unspecified interrupt then do not create
3209         the absolute section,
3210         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3211         code for generating a call to generic pointer get/put function with
3212         a call to function pic16_callGenericPointer(),
3213         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3214         the call to the generic pointer get/put functions with prefixing the
3215         function name with port->fun_prefix,
3216         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3217         * src/pic16/main.c (_process_pragma): prefix function with
3218         port->fun_prefix,
3219         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3220         calling assembler, old 18Fxxxx macro is deprecated,
3221         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3222         PC_ASMDIR in while condition,
3223         * (findInstruction): add PC_ASMDIR in while condition,
3224         * (buildCallTree): prefix main with port->fun_prefix,
3225         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3226         identifier for variable with banked access in instructions BTFSS,
3227         BTFSC, BCF, BSF, BTG
3228         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3229         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3230         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3231         perform optimization when enviroment variable NO_REG_OPT is set,
3232         * (insideLRBlock): NEW, return 1 if register is inside an
3233         INF_LOCALREGS block,
3234         * (RemoveRegFromLRBlock): remove a register that is completely
3235         eliminated by register optimization, but it is still left in local
3236         register store/restore in/from stack block,
3237         * (Remove2pcodes): after removing register, check to see if it
3238         should be removed from local register store/restore in/from stack
3239         block,
3240         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3241         DUMMY_READ_VOLATILE,
3242
3243         * device/include/pic16/adc.h: minor prototype modifications and
3244         update,
3245         * device/include/pic16/malloc.h: added GPL notice various
3246         modifications,
3247         * device/include/pic16/stdint.h: NEW, standard header for ints
3248         * device/include/pic16/delay.h: NEW, header for delay functions,
3249         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3250         delay1mtcy,
3251         * device/include/pic16/signal.h: NEW, header providing helper macros
3252         for implementing signal handlers,
3253         * device/include/pic16/stdio.h: added prototypes for functions,
3254         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3255         prototypes for stdin and stdout, added macro PUTCHAR to
3256         automatically implement putchar function prototype,
3257         * device/include/pic16/usart.h: modified and updated USART library,
3258         * device/lib/pic16/libio/adc/,
3259         * device/lib/pic16/libio/i2c: some modifications to improve library
3260         performance,
3261         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3262         family of functions,
3263         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3264         family of functions and other sources,
3265         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3266         of the PIC18Fxx[28] devices,
3267         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3268         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3269         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3270         _do_cinit function, because the previous failed when local variables
3271         where not placed in the same memory bank,
3272         * device/lib/pic16/libsdcc/char/: various modifications to improve
3273         library performance,
3274         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3275         information on the new functions of the c library and more...
3276
3277 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3278
3279         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3280
3281 2005-03-26 Raphael Neider <rneider AT web.de>
3282
3283         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3284           if condition == CARRY)
3285         * (genCmp): adapted to new genSkipc semantics
3286         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3287           on rIfx (genCmp was broken)
3288
3289 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3290
3291         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3292         * src/z80/main.c (_keywords[]),
3293         * src/SDCCglobal.h (struct options),
3294         * src/SDCC.y,
3295         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3296         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3297         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3298         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3299         always available in leading double underscore form. The C99 support is
3300         mostly missing, but it's a start.
3301         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3302         reserved identifier "__data".
3303
3304 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3305
3306         * src/mcs51/peeph.def: fixed bug 1170013
3307
3308 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3309
3310         * device/include/mcs51reg.h: fixed bug 842007
3311
3312 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3313
3314         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3315         last time.
3316
3317 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3318
3319         * src/port.h (struct PORT),
3320         * src/avr/ralloc.c (avr_assignRegisters),
3321         * src/avr/main.c,
3322         * src/ds390/ralloc.c (ds390_assignRegisters),
3323         * src/ds390/main.c,
3324         * src/hc08/ralloc.c (hc08_assignRegisters),
3325         * src/hc08/main.c,
3326         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3327         * src/mcs51/main.c,
3328         * src/pic/ralloc.c (pic14_assignRegisters),
3329         * src/pic/main.c,
3330         * src/pic16/ralloc.c (pic16_assignRegisters),
3331         * src/pic16/main.c,
3332         * src/xa51/ralloc.c (xa51_assignRegisters),
3333         * src/xa51/main.c,
3334         * src/z80/ralloc.c (z80_assignRegisters),
3335         * src/z80/ralloc.h,
3336         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3337         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3338         * src/SDCCcse.h,
3339         * src/SDCCdflow.c (computeDataFlow),
3340         * src/SDCCdflow.h,
3341         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3342         * src/SDCCloop.h,
3343         * src/SDCCcflow.c (*),
3344         * src/SDCCcflow.h,
3345         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3346         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3347         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3348         immedDom() returning wrong block; probably fixes bug #1160833)
3349
3350 2005-03-20 Borut Razem <borut.razem AT siol.net>
3351
3352         * support/scripts/inc2h.pl: WIN32 port
3353
3354 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3355
3356         * device/lib/makefile.in: added abs.c and labs.c
3357
3358 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3359
3360         * device/include/stdint.h: added
3361         * device/lib/abs.c: added
3362         * device/lib/labs.c: added
3363         * device/include/stdlib.h: added abs() and labs() prototypes
3364         * device/lib/libsdcc.lib: added abs and labs
3365         * device/include/float.h,
3366         * device/lib/_fsmul.c,
3367         * device/lib/printf_fast.c,
3368         * device/lib/printf_tiny.c: updated comments
3369
3370 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3371
3372         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3373         bug #1164313
3374
3375 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3376
3377         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3378         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3379
3380 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3381
3382         * device/lib/printf_large.c: removed inline assembly for portability and
3383           readability. Use printf_fast if speed or size are more important.
3384         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3385         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3386
3387 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3388
3389         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3390         prevent compiler warning
3391
3392 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3393
3394         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3395         moved to level 0 and declared as static. Also they are explicit
3396         placed in access bank. This was necessery because some times they
3397         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3398         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3399         optimizations. Currently only compare to unsigned char is implemented,
3400         * src/pic16/gen.c: added fReturnIdx array,
3401         * (struct resolvedIfx) is moved to gen.h and made public,
3402         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3403         * (aopForSym): added an optimization to directly store in stack of
3404         the operand of a SEND iCode,
3405         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3406         but as registers instead (AOP_REG) using the fReturnIdx array,
3407         * (pic16_freeAsmop): remove the freed register from the
3408         _G.sregsAlloc field,
3409         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3410         a compare of 'WREG',
3411         * (pic16_popGetTempRegCond): changed function prototype, now
3412         function takes also a bitVector argument v which holds the current
3413         set of registers that are allocated for stack access by aopForSym,
3414         registers allocated in aopForSym for accessing stack symbols are not
3415         any more part of the functions usedRegs field,
3416         * (genCall): some times aopOp is called for a stack variable to be
3417         send, aopForSym might perform the push, if this is true make sure
3418         that genCall doesn't push the variable twice by testing _G.resDirect,
3419         * (genFunction): changed testing for unspecified interrupt number
3420         from 256 to INTNO_UNSPEC,
3421         * modified selection scheme of frame pointer generation. Previously
3422         if function did use local registers a frame pointer was generated,
3423         now a frame pointer is generated only if function has arguments
3424         (that need PLUSW2 register access), or has stack arguments, or the
3425         compiler is not instructed to omit the frame pointer,
3426         * (genEndFunction): before restoring local registers that were saved
3427         in the function preamble, also restore the registers that *might*
3428         have been allocated for stack access,
3429         * (genRet): removed some old comments,
3430         * (genCmp, the active (RN's) version): added a call to the
3431         pic16_genCmp_special function to perform the compare with a more
3432         robust and optimized way,
3433         * (genInline): a feature has been added in inline code generation,
3434         which allows a wildcard variable substitution when writing inline
3435         assembly. Code is incomplete and experimental therefore undocumented,
3436         * (genCast): changed order of aopOp for result and right to allow
3437         aopForSym to directly load the result if possible,
3438         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3439         perform an optimized compare on some selected special occasions,
3440         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3441         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3442         generate an IVT any more,
3443         * src/pic16/main.c (pic16_optionsTable): added command line option
3444         --optimize-cmp,
3445         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3446         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3447         macros,
3448         * src/pic16/NOTES: Raphael Neider added in list of active developers
3449         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3450         jumptable_end to prevent bug #,
3451         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3452         inCond and outCond fields,
3453         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3454         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3455         turn off register spilling,
3456         * (packRegsForOneUse): synced with other ports' versions although it
3457         is not used currently,
3458         * (pic16_packRegisters): added an optimization while reading
3459         structure bitfields, some registers may be saved (malloc code is
3460         decreased by 80 bytes)
3461
3462 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3463
3464         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3465         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3466         this can be optimized more?
3467
3468 2005-03-10 Raphael Neider <rneider AT web.de>
3469
3470         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3471           genNearPointerGet): (hopefully) fixed access to bitfields via
3472           pointers (p->bitN = x; and x = p->bitN; failed)
3473
3474 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3475
3476         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3477
3478 2005-03-09 Raphael Neider <rneider AT web.de>
3479
3480         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3481
3482 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3483
3484         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3485         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3486           (regTypeNum): set REG_BIT type if necessary
3487         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3488         * support/regression/tests/critical.c: check bug 1144613
3489
3490 2005-03-02 Raphael Neider <rneider AT web.de>
3491
3492         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3493
3494 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3495
3496         * src/avr/ralloc.c (serialRegAssign),
3497         * src/ds390/ralloc.c (serialRegAssign),
3498         * src/hc08/ralloc.c (serialRegAssign),
3499         * src/mcs51/ralloc.c (serialRegAssign),
3500         * src/pic/ralloc.c (serialRegAssign),
3501         * src/pic16/ralloc.c (serialRegAssign),
3502         * src/xa51/ralloc.c (serialRegAssign),
3503         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3504
3505 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3506
3507         * src/SDCCast.c (decorateType): fixed bug 1124787
3508
3509 2005-02-20 Hubert Sack <sack AT digiplan.de>
3510         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3511
3512         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3513         patch #1121755
3514
3515 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3516
3517         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3518         to keep the correct label reference count when adding/removing references
3519         to labels. A peephole file using this is appended to patch #1144962.
3520
3521 2005-02-14 Raphael Neider <rneider AT web.de>
3522
3523         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3524         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3525         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3526           retrievals of result operand's value on assignment
3527
3528 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3529
3530         * device/include/pic16/string.h: modified prototype for memccpy()
3531         to memccpy(void *, void *, char, size_t)
3532         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3533         check whether to omit frame pointer or not,
3534         * (genInline): convert all occurences of "\n" to LF in inline
3535         assembler blocks, this helps formatting the inline text,
3536         * (pic16_loadFSR0): modified prototype,
3537         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3538         removed some 8051 legacy code,
3539         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3540         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3541         before allocating temporary registers in functions,
3542
3543 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3544
3545         * support/regression/tests/bitvars.c: corrected the "fix"
3546
3547 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3548
3549         * support/regression/tests/bitvars.c,
3550         * support/regression/tests/bitwise.c,
3551         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3552
3553 2005-02-10 Raphael Neider <rneider AT web.de>
3554
3555         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3556           different size for Alpha
3557         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3558
3559 2005-02-09 Raphael Neider <rneider AT web.de>
3560
3561         * src/SDCC.lex(doPragma) : save and restore warning options as well
3562           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3563         * have #pragma less_pedantic set the errorlevel to WARNING
3564           (fixes #1117001)
3565         * (cloneOptimize) : fixed wrong malloc's size
3566         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3567           facilitate correct handling of #pragma (save|restore)
3568
3569 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3570
3571         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3572
3573 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3574
3575         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3576
3577 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3578
3579         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3580
3581 2005-02-02 Raphael Neider <rneider AT web.de>
3582
3583         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3584         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3585         * (pic16_storeForReturn): fixed to allow returning function pointers
3586         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3587         * device/include/pic16/{stddef.h,stdbool.h}: added
3588
3589 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3590
3591         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3592
3593 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3594
3595         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3596         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3597          appeared to be required
3598
3599 2005-01-31 Borut Razem <borut.razem AT siol.net>
3600
3601         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3602           include/mcs51 and include/z80 directories to the package
3603
3604 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3605
3606         * src/hc08/gen.c (genFunction): fixed bug #1112752
3607
3608 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3609
3610         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3611
3612 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3613
3614         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3615
3616 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3617
3618         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3619
3620 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3621
3622         * device/include/c8051fxxx.h: removed these 6 files
3623         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3624
3625 2005-01-26 Raphael Neider <rneider AT web.de>
3626
3627         * src/pic16/gen.c (genAssign): fixed assignment from longs
3628           in codespace (were cut to three bytes)
3629         * (genDummyRead): implemented (except for CODESPACE...),
3630           fixed bug #1108575
3631         * src/pic16/glue.c (emitStatistics): beautified
3632         * device/lib/pic16/libm/Makefile: added include path
3633
3634 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3635
3636         * src/z80/gen.c (aopPut): fixed bug #1103902
3637
3638 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3639
3640         * device/lib/expf.c: fixed bug #1095792
3641
3642 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3643
3644         * device/lib/pic16/libm: added Math library sources
3645
3646 2005-01-24 Raphael Neider <rneider AT web.de>
3647
3648         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3649           to enable upcast to pCodeOpReg2 (there is no type tag to
3650           differenciate the two and pic16_popGet2p cast into PCOR2)
3651         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3652           (sizeof(sectNames) changed to sizeof(sectName))
3653           Both patches fix segfaults under MinGW.
3654
3655 2005-01-23 Raphael Neider <rneider AT web.de>
3656
3657         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3658           Safe_[mc]?alloc()'ed variables
3659         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3660           of (byte sized) temporaries (assign them to WREG for now)
3661         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3662           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3663           this might fix SIGSEGVs on MinGW...
3664         * src/SDCCopt.c (killDeadCode): restored original behaviour
3665           (volatile operands might get thrown away though)
3666
3667 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3668
3669         * src/pic16/gen.c: fixed bug #1106975,
3670         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3671         pointer update, INTCON is saved, global interrupts are disabled and
3672         restored after updateing TOS.
3673         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3674         * added function attribute 'shadowregs' to take advantage of shadow
3675         registers,
3676         * added function attribute 'wparam' as an alternative to the wparam
3677         pragma,
3678         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3679         user declares a non-ISR function as 'shadowregs',
3680         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3681
3682 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3683
3684         * .version: bumped version number to 2.4.8
3685         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3686         pic16 port,
3687         * device/lib/pic16/libio/i2c/: I2C module support library,
3688         * device/include/pic16/i2c.h: I2C support library header,
3689         * device/lib/pic16/libc/stdio/: standard IO support sources,
3690         * (printf_small.c): printf_small() source, supports float print,
3691         * (printf_tiny.c): printf_tiny() source, does not support floats,
3692         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3693         enable global optimizations for entire library source, other
3694         Makefiles in the source tree are also modified to reflect this,
3695         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3696         function,
3697         * doc/sdccman.lyx: updated to reflect new changes,
3698         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3699         sym->onStack if-case,
3700         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3701         sbit, idata, _idata, xdata, _xdata,
3702         * added pragma library, to link an external library, (see doc),
3703         * removed command line options, --pomit-config-words, --pomit-ivt,
3704         --pleave-reset-vector,
3705         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3706         when calling assembler to reflect memory model used, also define
3707         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3708         reflect stack model used,
3709         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3710         on stack return NULL,
3711
3712 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3713
3714         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3715           of the operands is volatile. Fixes #1020220
3716
3717 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3718
3719         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3720         * (OptimizeRegUsage): make sure that there is really no other flow where
3721           the first pCode is used
3722
3723 2005-01-22 Raphael Neider <rneider AT web.de>
3724
3725         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3726           to fix #1106967 (pCode->seq are not set up correctly)
3727
3728 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3729
3730         * src/SDCCglue.c (glue): make sure code area is declared before the
3731         static initialization area.
3732
3733 2005-01-21 Raphael Neider <rneider AT web.de>
3734
3735         * device/lib/Makefile.in: fixed test for pic16 install dir
3736         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3737           optimizations
3738         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3739           added --optimize-goto compiler switch and pragma wparam documentation
3740         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3741         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3742           and PRODH closing bug #1071770 (peephole optimizer)
3743
3744 2005-01-19 Raphael Neider <rneider AT web.de>
3745
3746         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3747           cmdLine buffers (used when calling sdcpp...) are large enough
3748           (MAX_PATH=256 truncates arguments leading to system halts when
3749           used in MinGW...)
3750         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3751         * (genUminus): rewritten to for efficiency
3752         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3753           used uninitialized in some cases)
3754         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3755           copy the third byte from the int -- now assumes 0x80 (data memory)
3756         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3757           operands (genAddLit expects the iCode's operands to swapped as
3758           well), fixed leftover bytes (crashed for short left operands)
3759         * (pic16_genMinusDec): performance improvements, removed false
3760           PIC14 emitSKPNCs
3761         * (pic16_genMinus): fixed to cope with differently sized operands
3762         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3763           for --obanksel > 1
3764         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3765         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3766           new banksel optimization
3767         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3768           analysis for temporary registers (segfaults...)
3769         * src/pic16/peeph.def: added rule
3770
3771 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3772
3773         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3774         which converts a float number to its ASCII representation
3775         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3776         functions to convert the fractional and integer part of a float to ASCII,
3777         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3778         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3779         ram
3780         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3781         _STATMEM macros,
3782         * device/include/pic16/adc.h: added GPL info,
3783         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3784         a pCodeOp as tested operand,
3785         * (genNearPointerGet): optimized bit testing, does not use
3786         intermediate register for bit value, test directly instead with
3787         BTFSS, BTFSC, works only for single bits,
3788         * (genpic16Code): dump the name of the iCode in the asm,
3789         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3790         renamed to pic16_decodeOp,
3791         * (serialRegAssign): do not allocate a temporary register for iCode
3792         sequences that test a single bit for 1/0
3793
3794 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3795
3796         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3797         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3798         access stack and frame pointers. They are initially assigned to
3799         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3800         accessing SFRs. Updated all occurences of modification of stack or
3801         frame pointer in gen.c and pcode.c,
3802         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3803         assigning of a literal value to pointers,
3804         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3805         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3806         selected
3807
3808 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3809
3810         * doc/sdccman.lyx: update documentation about stack pragma, added
3811         some info for stack memory models
3812
3813 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3814
3815         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3816
3817 2005-01-08 Raphael Neider <rneider AT web.de>
3818
3819         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3820           udata sections to fix bug #1097823
3821
3822 2005-01-05 Raphael Neider <rneider AT web.de>
3823
3824         * src/pic16/gen.c (genGenericShift): added handling of differently
3825           sized left operand and result
3826
3827 2005-01-04 Raphael Neider <rneider AT web.de>
3828
3829         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3830         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3831           to hold the condition bit)
3832         * added new version of genCmp (old code available via #define)
3833         * added new version of genShiftLeft/genShiftRight in a generic
3834           way, now supports shifting by negative values
3835         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3836           shiftCount (expected by genGenericShift)
3837         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3838         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3839           dump
3840         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3841           is an invalid literal too...)
3842
3843 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3844
3845         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3846         from Raphael Neider,
3847         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3848         for 8-bit literals. This fixes some literal operands which are sign
3849         extended to 16-bits ints when instruction needs only 8-bits.
3850
3851 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3852
3853         * device/lib/logf.c: added mcs51 assembly version
3854         * device/lib/expf.c: added mcs51 assembly version
3855         * device/lib/_logexpf.c: new shared asm code for expf and logf
3856         * device/include/math.h: add defines for assembly math library
3857         * device/lib/Makefile.in: build new _logexpf.c
3858         * device/lib/libfloat.lib: use new _logexpf.c
3859
3860 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3861
3862         * src/pic/device.c
3863         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3864           device types which have less than 0x7f registers.
3865
3866 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3867
3868         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3869
3870 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3871
3872         * device/lib/printf_fast.c: only build on supported arch.
3873         * device/lib/printf_tiny.c: only build on supported arch.
3874         * device/lib/printf_fast_f.c: only build if asm float lib
3875         * device/lib/_fsget1arg.c: only build if asm float lib
3876         * device/lib/_fsget2args.c: only build if asm float lib
3877         * device/lib/_fsnormalize.c: only build if asm float lib
3878         * device/lib/_fsreturnval.c: only build if asm float lib
3879         * device/lib/_fsrshift.c: only build if asm float lib
3880         * device/lib/_fsswapargs.c: only build if asm float lib
3881         * device/include/stdio.h: don't provide print_fast,
3882           print_fast_f, print_tiny prototypes if --xstack used
3883
3884 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3885
3886         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3887         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3888           to the SOURCES
3889
3890 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3891
3892         * device/lib/printf_fast_f.c: same as printf_fast, but
3893           with floating point enabled
3894         * device/lib/printf_fast.c: minor tweaks
3895         * device/include/stdio.h: add printf_fast_f
3896
3897 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3898
3899         * src/SDCCmain.c: make --float-reent default for mcs51
3900         * device/lib/_fsadd.c: added mcs51 assembly version
3901         * device/lib/_fssub.c: added mcs51 assembly version
3902         * device/lib/_fsmul.c: added mcs51 assembly version
3903         * device/lib/_fsdiv.c: added mcs51 assembly version
3904         * device/lib/_fseq.c: added mcs51 assembly version
3905         * device/lib/_fsneq.c: added mcs51 assembly version
3906         * device/lib/_fsgt.c: added mcs51 assembly version
3907         * device/lib/_fslt.c: added mcs51 assembly version
3908         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3909         * device/lib/Makefile.in: add _fscmp to build
3910         * device/lib/libfloat.lib: add _fscmp to build
3911
3912 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3913
3914         * device/lib/_fs2slong.c: added mcs51 assembly version
3915         * device/lib/_fs2sint.c: added mcs51 assembly version
3916         * device/lib/_fs2schar.c: added mcs51 assembly version
3917         * device/lib/_fs2ulong.c: added mcs51 assembly version
3918         * device/lib/_fs2uint.c: added mcs51 assembly version
3919         * device/lib/_fs2uchar.c: added mcs51 assembly version
3920         * device/lib/_slong2fs.c: added mcs51 assembly version
3921         * device/lib/_sint2fs.c: added mcs51 assembly version
3922         * device/lib/_schar2fs.c: added mcs51 assembly version
3923         * device/lib/_ulong2fs.c: added mcs51 assembly version
3924         * device/lib/_uint2fs.c: added mcs51 assembly version
3925         * device/lib/_uchar2fs.c: added mcs51 assembly version
3926         * device/include/float.h: added #define to select asm vs c
3927
3928 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3929
3930         * device/lib/printf_fast.c: improvements to float output
3931         * device/include/float.h: add defines for assembly float library
3932         * device/lib/_fsget1arg.c: receive 1 float arg
3933         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3934         * device/lib/_fsnormalize.c: normalize a float
3935         * device/lib/_fsreturnval.c: return float, various helper routines
3936         * device/lib/_fsrshift.c: right shift a float's mantissa
3937         * device/lib/_fsswapargs.c: swap 2 floats
3938         * device/lib/Makefile.in: build these 6 new files for mcs51
3939         * device/lib/libfloat.lib: add these 6 files to the library
3940
3941 2004-12-26 Borut Razem <borut.razem AT siol.net>
3942
3943         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3944           built by gcc 3.4.2
3945
3946 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3947
3948         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3949           and fully reentrant and register bank neutral.
3950         * device/lib/printf_fast.c: added float (not enabled by default),
3951           added compact/slower integer (also not enabled by default),
3952           improved size/speed of fast integer code, other minor changes
3953         * device/include/stdio.h, device/lib/Makefile.in,
3954           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3955
3956 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3957
3958         * src/pic16/pcode.c: declaring variables other than at the start of a
3959           block is not supported in C by VC6.
3960
3961 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3962
3963         * applied a previous patch from Raphael Neider that wasn't included
3964         in the previous commits, which fixes infinite loops within jumptable
3965         improvements,
3966         * made some fixes that previous patches introduced
3967
3968 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3969
3970         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3971         that fixes an issue with AOP_PCODE asmop's offset,
3972         * (pic16_popCopyReg): update instance field too,
3973         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3974         function of pic port,
3975         * (genCmp, genAnd, genAssign),
3976         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3977
3978 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3979
3980         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3981         variables initial values to idata section,
3982         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3983         variables in some functions. This utilizes parmBytes field of iCode
3984         structure to hold the offset of the variable in stack. (might be
3985         able to use the stack field too?)
3986         * applied patch from Raphael Neider # ### , # ###
3987         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3988         variable initial values in idata section,
3989         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3990         for static variables with initial value
3991         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3992         applied fix in while loop from Raphael Neider.
3993
3994 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3995
3996         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3997         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3998         * src/ds390/ralloc.c (serialRegAssign): spill bits
3999         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4000         * support/Util/SDCCerr.c,
4001         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4002         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4003         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4004
4005 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4006
4007         * device/include/sdcc-lib.h: inserted LGPL, added includes
4008           asm/ds390/features.h and asm/mcs51/features.h
4009         * device/include/asm/default/features.h,
4010         * device/include/asm/gbz80/features.h,
4011         * device/include/asm/z80/features.h: added empty _AUTOMEM
4012           and _STATMEM
4013         * device/include/asm/ds390/features.h,
4014         * device/include/asm/mcs51/features.h: added files with defines for
4015           _AUTOMEM and _STATMEM indicating automatic and static storage class
4016         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4017         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4018         * src/SDCCicode.c (geniCodeCast),
4019         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4020         * src/SDCCloop.c (loopInduction): removed unused variable lr
4021         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4022           to convertToFcall to include char modulo (RFE 1065037), added check
4023           if left operand is unsigned and use abs of literal value
4024         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4025           as it doesn't work after conversion from peephole.def to peephole.rul
4026         * src/mcs51/gen.c (toBoolean): added check for size,
4027           (genModOneByte): optimized code for signed char modulo a literal
4028           power of 2 (thanks to Hubert Sack),
4029           (genRRC): removed unnecessary "clr c",
4030           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4031         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4032           jump optimization,
4033           swapped rules 256.c and 256.d,
4034           extended 256.d by using new multiple checks (thanks Erik),
4035           added rules 256.e and 256.f,
4036           updated rule 261.a and 261.b to new generated code
4037         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4038
4039 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4040
4041         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4042           induction related bugs, including first part of bug #1074377
4043
4044 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4045
4046         * applied patch from bug-report #1076292,
4047         * applied patches for genAnd and Goto-optimizations for Raphael
4048         Neider,
4049         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4050         dump a less iCode information,
4051         * src/pic16/device.h (pic16_options_t): added field debgen,
4052         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4053         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4054         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4055         puclic,
4056         * (various functions): added macros FENTRY and FENTRY2 to functions,
4057         to emit function prologue,
4058         * (various functions): fixed indentation,
4059         * (genNearPointerGet): fixed loading of FSR0,
4060         * (genPackBits): applied patch from Raphael Neider to fix updating
4061         of FSR0 and touching only the modified bits,
4062         * src/pic16/genarith.c (various functions): added macros FENTRY to
4063         emit function prologue in comments,
4064         * src/pic16/pcode.h: added functions debugf2, debugf3,
4065         * src/pic16/ralloc.c: partial fix for packForPush caused
4066         segmentation fault,
4067
4068 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4069
4070         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4071           <stsp AT users.sourceforge.net> with reversed byte order
4072         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4073
4074 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4075
4076         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4077           bug #1074377
4078         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4079         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4080
4081 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4082
4083         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4084
4085 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4086
4087         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4088           conditions,
4089           (setFromConditionArgs): friendly operand parser for peephole rules,
4090           (operandBaseName, operandsNotRelated): new peephole condition
4091           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4092           architecture specific register naming into account, handles n-way
4093           comparisons, and supports quoted literals
4094         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4095
4096 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4097
4098         * src/mcs51/peeph.def: fixed bug #1076940
4099
4100 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4101
4102         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4103
4104 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4105
4106         Adding support for replacing ljmps with sjmps in jumptables
4107         generated for switch statements. For now you need to set the
4108         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4109         Now 4 algorithms for mcs51 jumptable generation are used:
4110         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4111         addresses loaded pc-relative for up to 112 cases and stack-pushing
4112         target addresses loaded with offset from dptr for up to 256 cases.
4113
4114         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4115         * src/mcs51/main.c: adapted constants for switch table generation
4116         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4117
4118 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4119
4120         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4121         * support/regression/tests/bug1057979.c: added test for bug 1073386
4122
4123 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4124
4125         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4126         compilers
4127
4128 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4129
4130         * src/pic16/device.h,
4131         * src/pic16/genarith.c,
4132         * src/pic16/glue.c,
4133         * src/pic16/main.c,
4134         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4135
4136 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4137
4138         Large cummulative patch for pic16 port.
4139         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4140         to call when a stack overflow occurs,
4141         * (malloc.h): added CVS Id tag,
4142         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4143         variable,
4144         * added libc directory. The current version of LibC contains string
4145         functions, ctype functions and macros and some functions of the
4146         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4147         be extensively tested in the future. Standard disclaimer here.
4148         Library is not automatically build yet. But one can build it by
4149         invoking 'make' inside the libc directory.
4150         * added ADC library under libio. Preliminary version yet.
4151
4152         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4153         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4154         aopForRemat() now and not by pic16_aopOp(),
4155         * (pic16_popGetTempReg): removed warning messgae when allocating
4156         temporary registers, its a buggy feature and will be removed,
4157         * (pic16_popGet): set register instance field in AOP_CRY,
4158         * (pic16_outBitC): fixed for results in size greater than 1,
4159         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4160         * (pic16_storeForReturn): optimized return of 0,
4161         * (genCmp): experimental code for new genCmp which uses PIC18's
4162         special compare&skip instructions. Initial tests fail some times
4163         with variables grater than 1 byte in size, so new code is disabled,
4164         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4165         a single bit,
4166         * (genCast): began a fix to optimize the casting of a bit to another
4167         bit, now assigning a bitfield to another bitfield will fail, sorry,
4168         * src/pic16/main.c: disabled the use of lr-support feature,
4169         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4170         * added some function prototypes, added function _debugf prototype,
4171         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4172         bits with offset (case PO_GPR_BIT),
4173         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4174         command line,
4175         * (isBankInstruction): modified to return 0 for no banking instruction,
4176         and 1 for banking instruction,
4177         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4178         caused stop processing pCodes after a inline assembly block,
4179         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4180         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4181         registers when it shouldn't,
4182         * src/pic16/ralloc.c (allocReg): add preliminary support for
4183         supporting a limited set of temporary registers,
4184
4185 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4186
4187         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4188           genDataPointerSet): ensure assignments always copy in MSB to LSB
4189           order,
4190           (loadRegFromAop): recognize CLRH optimization,
4191           (genFunction): optimize RECEIVE iCodes in reentrant functions
4192
4193 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4194
4195         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4196           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4197           selected.
4198         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4199         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4200           contiguous with data
4201
4202 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4203
4204         * device/lib/_gptrget.c (_gptrget),
4205         * device/lib/_gptrgetc.c (_gptrgetc),
4206         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4207           instead of sjmp to ret
4208         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4209           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4210
4211 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4212
4213         * .version: bumped version to 2.4.7
4214         * device/lib/_gptrget.c (_gptrget): is now _naked
4215         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4216         * device/lib/_gptrput.c (_gptrput): is now _naked
4217         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4218           (createFunction): fixed xstack
4219         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4220         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4221           or bit either,
4222           (geniCodeCritical): store original interrupt state in an iTemp bit
4223           var unless stack-auto
4224         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4225         * src/SDCCmain.c (setIncludePath): added include/target to search path
4226         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4227         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4228           prototype,
4229           (processFuncArgs): put bit vars in bit area
4230         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4231           unsaveRBank): fixed xstack,
4232           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4233           (genFunction, genEndFunction): fixed xstack,
4234           (genAssign): optimization don't walk backwards through mem
4235         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4236         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4237         * support/regression/Makefile: also make library (for stack-auto) when
4238           making "all" and added "test-mcs51-xstack-auto"
4239         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4240         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4241         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4242         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4243         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4244           make-library by MAKE_LIBRARY
4245         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4246           regression tests for xstack
4247         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4248         * support/regression/tests/critical.c: test for critical on mcs51
4249
4250 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4251
4252         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4253           built version of sdcc instead of installed version
4254
4255 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4256
4257         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4258         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4259           vprintf.c now
4260         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4261         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4262           WARNING: remove device/lib/build/z80/printf.o by hand when
4263           updating from previous build!
4264         * device/lib/z80/printf.c: updated comment
4265         * support/regression/tests/bug1057979.c: test all ports now
4266         * support/regression/tests/bug1065458.c: file added
4267
4268 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4269
4270         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4271           *_start and *_end symbols for static functions
4272
4273 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4274
4275         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4276           and search crt0.o in all library paths,
4277           (setIncludePath): proper handling of --nostdinc,
4278           (setLibPath): proper handling of --nostdlib
4279         * support/regression/Makefile,
4280         * support/regression/ports/ds390/spec.mk,
4281         * support/regression/ports/gbz80/spec.mk,
4282         * support/regression/ports/hc08/spec.mk,
4283         * support/regression/ports/mcs51/spec.mk,
4284         * support/regression/ports/mcs51-large/spec.mk,
4285         * support/regression/ports/mcs51-stack-auto/spec.mk,
4286         * support/regression/ports/z80/spec.mk: use include and lib files from
4287           built version of sdcc instead of installed version
4288         * doc/sdccman.lyx: fixed typo in --nostdinc
4289
4290 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4291
4292         * src/pic/pcode.c,
4293         * src/pic/device.c,
4294         * src/pic/ralloc.c,
4295         * src/pic/gen.c : added support to generate code for struct bit fields.
4296
4297 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4298
4299         * as/xa51/xa_version.h,
4300         * device/include/errno.h,
4301         * device/include/regc515c.h,
4302         * device/lib/_itoa.c,
4303         * device/lib/_ltoa.c,
4304         * device/lib/ser_ir_cts_rts.c,
4305         * sim/ucsim/xa.src/glob.cc,
4306         * sim/ucsim/xa.src/inst_gen.cc,
4307         * sim/ucsim/xa.src/xa_bit.cc,
4308         * sim/ucsim/xa.src/xa_sfr.cc,
4309         * sim/ucsim/z80.src/inst_dd.cc,
4310         * sim/ucsim/z80.src/inst_fdcb.cc,
4311         * support/scripts/keil2sdcc.pl,
4312         * src/pic16/pic16.dsp,
4313         * src/pic16/pic16a.dsp: corrected cvs line endings
4314         * device/lib/printf_large.c: fixed bug 1057979
4315         * src/pic16/gen.c: fixed non-C standard code
4316         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4317         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4318         * support/regression/ports/mcs51/support.c: reload T1 asap
4319         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4320           pdata use and clear idata startup behaviour
4321         * support/regression/tests/bug1057979.c: added
4322
4323 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4324
4325         * device/examples/ds390/ow390/ad26.h,
4326         * device/examples/ds390/ow390/cnt1d.h,
4327         * device/examples/ds390/ow390/crcutil.c,
4328         * device/examples/ds390/ow390/ownet.h,
4329         * device/examples/ds390/ow390/owsesu.c,
4330         * device/examples/ds390/ow390/swt12.h,
4331         * device/examples/ds390/ow390/swtoper.c,
4332         * device/examples/ds390/ow390/temp10.h,
4333         * device/examples/ds390/ow390/thermodl.c,
4334         * device/examples/ds390/tinitalk/tinitalk.dsp,
4335         * device/examples/ds390/tinitalk/tinitalk.dsw,
4336         * device/examples/mcs51/clock/hw.h,
4337         * device/examples/mcs51/simple2/go.bat,
4338         * device/examples/serialcomm/windows/serial.h,
4339         * device/examples/xa51/dummy.c,
4340         * device/examples/xa51/hello.c,
4341         * device/include/80c51xa.h,
4342         * device/include/at89x051.h: corrected cvs line endings
4343
4344 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4345
4346         * src/pic16/main.c (options): added command line --gstack, to trace
4347         stack over/under flows,
4348         * added pragma 'wparam' to allow passing first byte of function
4349         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4350         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4351         call to __gstack_test function and sets up the symbol as extern,
4352         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4353         * popaop): added call to pic16_testStackOverflow,
4354         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4355         wparamList list,
4356         * (genCall, genPcall): now all parameters are passed via stack
4357         except in functions that are pass to wparam pragma in which WREG is
4358         used too,
4359         * (genPcall): REENTRANT flag is checked to see if variable prototype
4360         contains reentrant keyword, don't call a non-reentrant function, via
4361         a reentrant function pointer or vice versa, functions are never
4362         passed via WREG,
4363         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4364         D.Winkler,
4365         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4366         SIGSEGV when accessing a NULL register stucture,
4367         * (pic16_printGPointerType): modified to handle UPPER modifier for
4368         function initializers, changed prototype of function to simpler one,
4369         * (pic16_printIvalFuncPtr): check to see if function is already
4370         added in externs list,
4371         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4372         optimized a move from W to SFR with a move to the same register
4373         later after a CALL,
4374         * device/lib/pic16/debug: NEW directory, contains debug features
4375         which are enabled when linking with libdebug.lib, currently command
4376         line option --gstack enables stack pointer tracing for over/under
4377         flow, corresponding sources are in debug/gstack
4378
4379 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4380
4381         * doc/sdccman.lyx: updated SDCC version,
4382         * (PIC16 port): update list of command line options,
4383         * src/pic16/device.h (structure pic16_options_t): added field gstack
4384         to enable stack overflow tracing on push/pops,
4385         * src/pic16/device.c (statistics structure): added statistics
4386         structure,
4387         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4388         pic16_dump_int_registers): increase statistics counters for each
4389         * variable which is encountered
4390         * (pic16_dump_usection): emit each .udata variable to its own udata
4391         section,
4392         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4393         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4394         parameters via stack, otherwise use old scheme,
4395         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4396         assembler output file,
4397         * src/pic16/main.c: added command line options --gstack to enable
4398         push/pop tracing for stack overflow,
4399         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4400         instructions): added size of each instruction,
4401         * (pic16_countInstruction): estimate size of instructions in
4402         the_pFile list, inline assembly blocks are not counted,
4403         * (pic16_FixRegisterBanking): trace previous register usage, when
4404         banksel optimizations is greater than 0, don't emit a redudant
4405         banksel directive,
4406
4407 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4408
4409         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4410         * src/pic16/ralloc.c : applied same fix for pic16.
4411         * src/pic/gen.c : tidied it up a little.
4412
4413 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4414
4415         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4416         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4417
4418 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4419
4420         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4421
4422 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4423
4424         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4425         non-reentrant function __modsint in the interrupt function (thus
4426         corrupting math operations during serial I/O)
4427         * device/lib/ser_ir.c: as above, changed buffersize
4428         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4429         256.c,d for zeroing
4430         * doc/Makefile: added option -t for rsync
4431
4432 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4433
4434         * src/SDCCast.h (struct ast),
4435         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4436
4437 2004-10-20 Borut Razem <borut.razem AT siol.net>
4438
4439         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4440         package
4441
4442 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4443
4444         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4445         makefile targets,
4446         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4447         support functions to replace long sequences of MOVFF's from access
4448         bank registers to stack and vice versa,
4449         * src/pic16/device.h: added new field opt_flags, where optimization
4450         flags can be set to enable certain features,
4451         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4452         * pBlock, (genFunction, genEndFunction): surroung loop for
4453         saving/loading used registers in stack with PC_INFO pCodes,
4454         INF_LREGS. Code in between can then be optimized by pCode optimizer
4455         to support function calls,
4456         * (genDataPointerSet): fixed bug which loaded float fields in
4457         structures with corrupt data,
4458         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4459         in a standard way debug info on stderr. Feature used for developing
4460         and debugging only,
4461         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4462         obsolete chunks of code,
4463         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4464         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4465         * pic16/src/pcode.c (pic16_newpCodeInfo,
4466         * (pic16_newpCodeOpLocalRegs),
4467         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4468         feature,
4469         * (pic16_pCodeConstString): printing of the initial value of a
4470         symbol as a comment is inhibited since parsing was already done by
4471         copyStr and output is corrupt,
4472         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4473
4474 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4475
4476         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4477
4478 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4479
4480         * as/mcs51/lkarea.c: removed old K&R style,
4481           (lnksect): changed check on boundary error,
4482           (lnksect2): changed check on boundary error,
4483           (lnksect2): extend XSTK to end of page if size = 1
4484         * as/mcs51/lkmain.c: removed old K&R style,
4485           (Areas51): create l_IRAM symbol
4486         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4487         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4488           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4489         * device/lib/_mullong.c: added version to be compiled with xstack
4490         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4491         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4492         * device/lib/mcs51/crtxstack.asm: fixed comment
4493         * src/SDCCglue.c: maxInterrupts defaults to 0,
4494           (emitMaps): added pdata,
4495           (createInterruptVect): (re)moved default,
4496           (glue): added pdata,
4497           (glue): moved __start__xstack to XSTK with default size 1
4498         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4499           and options.float_rent when options.stackAuto is set,
4500           (linkEdit): only write XDATA_NAME if provided on command line
4501         * src/SDCCmem.h,
4502         * src/SDCCmem.c: added pdata
4503         * src/port.h: added pdata_name to PORT
4504         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4505           (saveRegisters, unsaveRegisters): removed usage of B,
4506           (genMinus): fixed accumulator clash,
4507           (genJumpTab): added comment, this needs another look
4508         * src/mcs51/gen.c: added check for "B in use" paranoia,
4509           added pushB() and popB()
4510         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4511           chance
4512         * src/avr/main.c,
4513         * src/ds390/main.c,
4514         * src/hc08/main.c,
4515         * src/mcs51/main.c,
4516         * src/pic/main.c,
4517         * src/pic16/main.c,
4518         * src/xa51/main.c,
4519         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4520           added PSEG (PAG,XDATA) or NULL to port specifier
4521         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4522         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4523           (_mcs51_genInitStartup): removed __start__xstack equ,
4524           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4525         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4526         * src/z80/gen.c (_rleAppend): fixed warnings
4527         * support/regression/tests/zeropad.c: added pdata test
4528         * .version: bumped to 2.4.6
4529
4530 2004-10-17 Borut Razem <borut.razem AT siol.net>
4531
4532         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4533         as a part of nightly build
4534
4535 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4536
4537         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4538         WREG holds the first byte function parameters,
4539         * (aopForSym): take special case for symbols which are in FARSPACE
4540         but in CODESPACE too,
4541         * (assignResultValue): modified to take into account _G.useWreg,
4542         * (genCall): don't use wreg for parameter passing when function is
4543         declared as reentrant, too, added optimization INCF to stack
4544         pointer when stack parameter count is 1,
4545         * (genFunction, genEndFunction): refurnished and fixed to not using
4546         wreg for passing parameters when function has varargs or is
4547         reentrant, fixed bug with symbol name compare for generating
4548         functions in absolute address,
4549         * (pic16_storeForReturn): refurnished,
4550         * (genCmp): began writing a new version of the function, not ready
4551         yet, therefore it is disabled,
4552         * (genAssign): do not read code memory when assigning a function to
4553         a pointer function,
4554         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4555         array of characters, not pointer,
4556         * (pic16initialComments): in debug mode emit an .ident directive for
4557         the assembler,
4558         * (_process_pragma): emit a new warning type (internal to pic16)
4559         when setting stack to default length, emit a similar warning when
4560         placing a function at absolute address and address is not word aligned
4561         * (_pic16_parseOptions): added 'return TRUE' statement,
4562         * (_pic16_linkEdit): if compiling a source, then add the source's
4563         file object, first in the list of objects to link,
4564
4565 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4566
4567         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4568         * src/pic/main.c : removed VC warning.
4569         * src/pic/gen.c : changed comment.
4570
4571 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4572
4573         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4574         reference to a deprecated symbol _GPTRREG was causing failure to
4575         link. Thanks G. M. Gallant for the info.
4576
4577 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4578
4579         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4580         comments for Bugs item #954788.
4581
4582 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4583
4584         * src/pic16/device.c (pic16_dump_gsection,
4585         * pic16_groupRegistersInSection): handle symbols declared to be in
4586         access bank differently,
4587         * src/pic16/gen.c (struct _G): added field resDirect,
4588         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4589         send values read from stack directly to result and don't allocate
4590         temporary values,
4591         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4592         same registers,
4593         * (pic16_sameRegsOfs): NEW,
4594         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4595         free because they were not allocated from temporary pool,
4596         * pic16_popRegFromString): workaround to fix a problem with
4597         allocating variables twice or never,
4598         * (genGenPointerGet): using PRODL instead of FSR0H,
4599         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4600         instead of FSR0H,
4601         * (genAssign): take advantage of the _G.resDirect flag,
4602         * (genCast): around line 11844, use mov2f instead of directly
4603         MOVFF'ing between operands to account for literal values,
4604         * src/pic16/genutils.c: some new debug functions for gpsim have been
4605         added,
4606         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4607         float with integer part only,
4608         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4609         place variables in access bank
4610         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4611         updated sources to reflect recent changes in gen.c
4612
4613 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4614
4615         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4616         sources that searched for headers in installation path, now the
4617         device/include/pic16 is used,
4618         * src/pic16/glue.c (pic16glue),
4619         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4620         .line directives if not in debug mode, this suppresses assembler's
4621         warnings for ignored directives
4622
4623 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4624
4625         * src/port.h: made reset_regparms prototype void parameter explicit.
4626         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4627         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4628         * doc/sdccman.lyx: documented warning disabling and how to use
4629           printf_large to make it print floats.
4630         * device/include/stdbool.h: NEW
4631         * device/lib/_atof.c,
4632         * device/lib/_divuint.c,
4633         * device/lib/_divulong.c,
4634         * device/lib/expf.c,
4635         * device/lib/printf_large.c,
4636         * device/lib/sincosf.c,
4637         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4638         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4639           a completely reentrant lib.
4640
4641 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4642
4643         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4644         * device/include/pic16/stdio.h: fixed bug with colon
4645
4646 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4647
4648         * device/include/pic16/stdio.h,
4649         * device/include/pic16/stdlib.h,
4650         * device/include/pic16/math.h: NEW
4651         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4652         declared as _naked to reduce overhead
4653         * device/lib/Makefile.in (target port-specific-objects-pic16):
4654         changed * to *.* so to ignore the CVS directory,
4655         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4656         stacked variables back in stack,
4657         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4658         corruption
4659
4660 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4661
4662         * .version: bumped version number to 2.4.5
4663         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4664         * support/Util/SDCCerr.c (messages structure): added entry for
4665         W_POSSBUG2
4666
4667         Large cumulative patch for pic16 port and libraries.
4668         * device/include/pic16/sdcc-lib.h,
4669         * device/include/pic16/stdarg.h,
4670         * device/include/asm/pic16/features.h,
4671         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4672         * device/include/pic16/float.h: changes reentrant keyword with
4673         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4674         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4675         updated target build-libraries to include objects from gptr,
4676         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4677         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4678         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4679         all function headings,
4680         * src/SDCCmain.c: added global parameter userIncDirsSet,
4681         * (parseCmdLine): when option -I is encountered add directory to
4682         userIncDirsSet too,
4683         * src/version.awk: added space between control and long,
4684         * src/pic16/NOTES: added some notes for the port,
4685         * src/pic16/gen.c: added prototype for mov2fp function,
4686         * (fReturnpic16[]): properly named return value registers,
4687         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4688         * (aopForSym): added code to handle symbols with onStack flag set,
4689         symbols onStack are allocated PTRSIZE bytes,
4690         * (aopFreeAsmop): handles special case where asmops are stack objects,
4691         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4692         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4693         added argument lock to trace flaws in allocating temporary registers
4694         when developing port,
4695         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4696         * (pic16_popRegFromString): reenabled allocating a direct register
4697         from string,
4698         * (assignResultValue): various beautifications,
4699         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4700         referenced function argument,
4701         * (genIpush): reenabled to allow stacked arguments, handles only
4702         ic->parmPush iCodes,
4703         * (genCall, genPcall): major changes to allow for variable argument
4704         functions, fixed a bug with falsely restoring stack pointer after
4705         returning from call,
4706         * (genFunction): pending code for critical function,
4707         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4708         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4709         * (genNearPointerGet): fixed bug with indirect reading, was always
4710         reading from INDF0
4711         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4712         pointers,
4713         * (genAddrOf): rewrote code to take address of a stacked function parameter
4714         * (genCast): fixed casting to generic pointer type,
4715         * src/pic16/gen.h: added AOP_STA,
4716         * (struct asmop): added field stk,
4717         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4718         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4719         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4720         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4721         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4722         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4723         generic pointers,
4724         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4725         and library paths,
4726         * (pic16_port structure): generic pointer size is set to 3,
4727         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4728         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4729         compiler warning,
4730         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4731         operand is an iTemp,
4732
4733 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4734
4735         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4736         * debugger/mcs51/simi.c: addapt new syntax of s51
4737
4738 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4739
4740         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4741         * src/pic16/pcode.c: commented out some calls to free() in order to
4742         fix bug #989576,
4743
4744 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4745
4746         * src/SDCCicode.h,
4747         * src/SDCCicode.c (isiCodeInFunctionCall),
4748         * src/avr/ralloc.c (selectSpil),
4749         * src/pic/ralloc.c (selectSpil),
4750         * src/pic16/ralloc.c (selectSpil),
4751         * src/ds390/ralloc.c (selectSpil),
4752         * src/hc08/ralloc.c (selectSpil),
4753         * src/xa51/ralloc.c (selectSpil),
4754         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4755         stack in the middle of a function call sequence (fixes bug #1020268)
4756         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4757         costs associated with the minimum switch case.
4758
4759 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4760
4761         * src/SDCC.lex: fixed bug #1030549
4762
4763 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4764
4765         * src/SDCCcse.h (struct cseDef),
4766         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4767         over a function call if the CSE is derived from a symbol whose
4768         address has been taken (fixes bug #1029883)
4769         * support/regression/tests/bug-1029883: a new regression test for
4770         this bug
4771
4772 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4773
4774         * src/hc08/gen.c (emitinline): fixed bug #1029778
4775         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4776         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4777         and starts toward RFE #905167)
4778
4779 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4780
4781         * src/pic16/gen.c (mov2f): New function to move an operand to
4782         another without considering if it is a literal or a register,
4783         * (pic16_sameRegs): don't check if they are both AOP_REG,
4784         * (AccRsh): removed andmask=0 lines,
4785         * (genLeftShift): duplicated to be improved in future versions,
4786         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4787         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4788         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4789         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4790         * (insertBankSwitch): fixed inserting banksel directives algorithm
4791         for instructions that follow a skip instruction, this fixes a report
4792         for broken subtraction code generation,
4793         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4794         iCode is a left op, just in case result and right share the same
4795         registers
4796
4797 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4798
4799         * src/hc08/main.c,
4800         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4801         preservation of HX
4802         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4803         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4804         on 2004-09-12; it was buggy
4805
4806 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4807
4808         * src/SDCCsymt.h: removed RESULT_CHECK
4809         * src/SDCCast.c,
4810         * src/SDCCglue.c,
4811         * src/SDCCval.c,
4812         * src/pic/glue.c,
4813         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4814
4815 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4816
4817         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4818         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4819         configuration values no more rejected by compiler, they are assigned
4820         to configuration registers with a warning message instead,
4821         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4822         the for-loop so last conf register is emitted too,
4823         * (_pic16_initPaths): link library libsdcc.lib by default,
4824         * (_hasNativeMulFor): modified test for multiplication according to
4825         Raphael Neider's remarks. Integer multiplication is also done with
4826         support functions,
4827         * device/include/pic16/pic18fregs.h: corrected type error in while
4828         testing and including 18f6720 header file
4829
4830 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4831
4832         * src/pic16/device.h (pic16_options): removed field use_crt,
4833         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4834         until an optimization to handle single bits is added,
4835         * (pic16_loadFSR0): moved before genUnpackBits,
4836         * (genAnd): some white lines removed,
4837         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4838         leave_reset flags in pic16_options when using crt modules,
4839
4840 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4841
4842         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4843           for bugs 898889 & 979599. Also used some safer print instructions.
4844
4845 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4846
4847         * src/pic16/device.h (pic16_options_t): added field use_crt,
4848         crt_name, no_crt,
4849         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4850         catch a probable future bug,
4851         * src/pic16/gen.c: aopIdx function commented out,
4852         * (genAssign): commented out old code which used aopIdx,
4853         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4854         code, added if conditionals to take into account the --use-crt
4855         command line options,
4856         * src/pic16/main.c (pic16_optionsTable): added new command line
4857         options, --use-crt= and --no-crt,
4858         * (_pic16_linkEdit): now the proper crt object is added in the
4859         linker command line except than when --no-crt is specified,
4860         * src/pic16/pcode.c,
4861         * src/pic16/pcode.h: added some structures and functions for a new
4862         optimization scheme to compansate for instruction overhead between
4863         same iCodes, this scheme is currently under development and is not
4864         working in any way,
4865         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4866         to && operator,
4867         * device/lib/pic16/startup/crt0i.c,
4868         * device/lib/pic16/startup/crt0iz.c: added global char variable
4869         __uflags to force the generation of an idata section
4870
4871 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4872
4873         * doc/Makefile,
4874         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4875         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4876
4877 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4878
4879         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4880         Frieder) and clarified the default code optimization mode
4881
4882 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4883
4884         * src/SDCC.lex (doPragma, process_pragma),
4885         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4886         "opt_code_size", and "opt_code_balanced"
4887         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4888         regrouped options by category, added support for category headers
4889         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4890         and "--opt-code-size"
4891         * doc/sdccman.lyx: documented these new options and pragmas
4892         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4893         preference into account
4894
4895 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4896
4897         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4898           geniCodePreDec): Fixed bug 904237 by generating a warning
4899         * src/SDCCerr.h,
4900         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4901
4902 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4903
4904         * src/pic/device.c : When no max ram set validate full memory range.
4905         * src/pic/pcode.c,
4906         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4907
4908 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4909
4910         * device/lib/_gptrget.c,
4911         * device/lib/_gptrput.c: updated comment
4912         * device/lib/calloc.c,
4913         * device/lib/free.c,
4914         * device/lib/malloc.c,
4915         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4916         * src/SDCCcse.c (cseBBlock),
4917         * src/SDCCicode.c (printOperand, geniCodeArray),
4918         * src/SDCCicode.h (struct operand): fixed bug 868103
4919         * support/regression/tests/bug-868103.c: added
4920         * src/SDCCast.c (searchLitOp),
4921         * src/SDCCcse.h (struct cseDef),
4922         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4923         * src/SDCCicode.h (struct operand),
4924         * src/SDCCsymt.h (struct sym_link),
4925         * src/avr/gen.c (hasInc),
4926         * src/ds390/gen.c (hasInc),
4927         * src/hc08/gen.c (genPlusIncr, hasInc),
4928         * src/mcs51/gen.c (hasInc),
4929         * src/pic16/glue.c (pic16_printIvalChar),
4930         * src/pic16/ralloc.c (regWithIdx),
4931         * src/xa51/gen.c (hasInc) : removed warnings
4932         * src/SDCCast.c (createBlock): added comment ???
4933         * src/hc08/ralloc.c: updated comments
4934
4935 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4936
4937         * doc/sdccman.lyx: updated section on switch statements, added
4938         section about semaphore locking
4939         * doc/Makefile: added option -info for latex2html
4940         * device/lib/_gptrget.c,
4941         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4942
4943 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4944
4945         * src/pic/device.h,
4946         * src/pic/device.c,
4947         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4948          maxram is less than 0x100.
4949
4950 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4951
4952         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4953
4954 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * src/port.h,
4957         * src/mcs51/main.c,
4958         * src/ds390/main.c,
4959         * src/z80/main.c,
4960         * src/hc08/main.c,
4961         * src/pic/main.c,
4962         * src/pic16/main.c,
4963         * src/avr/main.c,
4964         * src/xa51/main.c
4965         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4966         a jump table is the best form for a switch statement, including
4967         automatic insertion of missing cases to make the case range
4968         continuous. Developed in collaboration with Frieder Ferlemann.
4969
4970 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4971
4972         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4973         accumulator result if it needs sign extension
4974
4975 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4976
4977         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4978
4979 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4980
4981         * device/lib/gbz80/printf.c,
4982         * device/lib/z80/printf.c: removed define for NULL
4983
4984 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4985
4986         * as/xa51/xa_link.c,
4987         * device/examples/ds390/ow390/ad26.c,
4988         * device/examples/ds390/ow390/cnt1d.c,
4989         * device/examples/ds390/ow390/counter.c,
4990         * device/examples/ds390/ow390/ds2480.h,
4991         * device/examples/ds390/ow390/ds2480ut.c,
4992         * device/examples/ds390/ow390/findtype.c,
4993         * device/examples/ds390/ow390/gethumd.c,
4994         * device/examples/ds390/ow390/owllu.c,
4995         * device/examples/ds390/ow390/ownetu.c,
4996         * device/examples/ds390/ow390/swt12.c,
4997         * device/examples/ds390/ow390/swtloop.c,
4998         * device/examples/ds390/ow390/temp.c,
4999         * device/examples/ds390/ow390/temp10.c,
5000         * device/examples/ds390/ow390/thermo21.c,
5001         * device/examples/ds390/ow390/tinilnk.c,
5002         * device/examples/ds390/ow390/tstfind.c,
5003         * device/examples/serialcomm/windows/serial.cpp,
5004         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5005         * device/include/reg51.h: fixed line endings for cvs
5006
5007 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5008
5009         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5010         packRegsForAccUse, packRegisters): new accumulator register
5011         packing algorithm
5012         * support/regression/ports/hc08/support.c (_putchar): suppress
5013         warning of unused variable
5014         * src/SDCCicode.c: added SWAP entry to codeTable
5015
5016 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5017
5018         * device/lib/sprintf.c: forgot to add this file before previous commit
5019
5020 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5021
5022         * src/pic16/gen.c (genPackBits): added operand right in function
5023         parameters, load result directly if p_type is POINTER (that is
5024         called by genNearPointerSet)
5025         * (genUnPackBits): added operand left in function parameters,
5026         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5027         FSR0 if accessing bitfields,
5028
5029 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5030
5031         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5032           _print_format; updated printf, sprintf, vsprintf
5033         * device/include/asm/default/features.h: corrected comment/define
5034         * device/lib/Makefile.in: added sprintf.c
5035         * device/lib/libsdcc.lib: added sprintf module
5036         * device/lib/printf_large.c,
5037         * device/lib/vprintf.c,
5038         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5039           into these 3 files
5040         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5041         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5042         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5043           hc08 test
5044         * support/regression/tests/zeropad.c: define idata as data for hc08
5045
5046 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5047
5048         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5049         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5050         labels are referenced at least once (even if a reference is not found)
5051         * src/hc08/gen.c (emitcode): set isComment flag for comments
5052         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5053         loads), rules 6a..6b (optimize jumps to return)
5054
5055 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5056
5057         * device/lib/acosf.c (acosf),
5058         * device/lib/asinf.c (asinf),
5059         * device/lib/atanf.c (atanf),
5060         * device/lib/ceilf.c (ceilf),
5061         * device/lib/cosf.c (cosf),
5062         * device/lib/coshf.c (coshf),
5063         * device/lib/cotf.c (cotf),
5064         * device/lib/fabsf.c (fabsf),
5065         * device/lib/floorf.c (floorf),
5066         * device/lib/log10f.c (log10f),
5067         * device/lib/logf.c (logf),
5068         * device/lib/sinf.c (sinf),
5069         * device/lib/sinhf.c (sinhf),
5070         * device/lib/sqrtf.c (sqrtf),
5071         * device/lib/tanf.c (tanf),
5072         * device/lib/tanhf.c (tanhf),
5073         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5074         replaced all instances of "reentrant" in the library functions
5075         defined in math.h with this macro.
5076         * support/regression/tests/float_trans.c: reenabled test for hc08
5077
5078 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5079
5080         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5081         erroneously deleted
5082
5083 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5084
5085         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5086         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5087         multi-byte volatile operands are used
5088         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5089         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5090         initialization to area GSINIT0 so that it would always precede
5091         any static initializers in GSINIT
5092         * support/regression/tests/zeropad.c: fixed idata define for hc08
5093         * support/regression/tests/bug-927659.c,
5094         * support/regression/tests/float_trans.c: disabled tests for hc08
5095         pending missing library routines
5096         * .version: increased version number to 2.4.4 - hc08 port now passes
5097         regression tests
5098
5099
5100 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5101
5102         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5103         * Makefile.common.in,
5104         * as/Makefile,
5105         * as/hc08/Makefile.in,
5106         * as/mcs51/Makefile.in,
5107         * as/z80/Makefile.in,
5108         * debugger/mcs51/Makefile.in,
5109         * device/include/Makefile.in,
5110         * device/lib/Makefile.in,
5111         * doc/Makefile,
5112         * link/Makefile,
5113         * link/z80/Makefile.in,
5114         * packihx/Makefile.in,
5115         * sim/ucsim/main_in.mk,
5116         * sim/ucsim/avr.src/Makefile.in,
5117         * sim/ucsim/doc/Makefile.in,
5118         * sim/ucsim/gui.src/serio.src/Makefile.in,
5119         * sim/ucsim/hc08.src/Makefile.in,
5120         * sim/ucsim/s51.src/Makefile.in,
5121         * sim/ucsim/xa.src/Makefile.in,
5122         * sim/ucsim/z80.src/Makefile.in,
5123         * src/Makefile.in,
5124         * support/cpp2/Makefile.in,
5125         * support/librarian/Makefile,
5126         * support/makebin/Makefile: added DESTDIR to the install path proposed
5127         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5128         * doc/sdccman.lyx: added DESTDIR documentation
5129
5130 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5131
5132         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5133         instruction for interrupt handlers, use fast returns when returning
5134         from high priority interrupts
5135
5136 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5137
5138         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5139         code generation
5140         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5141         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5142         bugs, ported much of Bernhard's code from mcs51
5143         * src/mcs51/gen.c (genSend),
5144         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5145         than one when calling a reentrant function
5146         * device/lib/_mullong.c: defined an alternate struct layout for big
5147         endian ports (hc08)
5148
5149 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5150
5151         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5152         test
5153
5154 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5155
5156         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5157         are sane and complete before asking the port its prefered parameter
5158         passing method (fixes bug #1017633)
5159         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5160         and _ret3
5161
5162 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5163
5164         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5165         problem in bitfields >= 8 bits.
5166
5167 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5168
5169         * src/SDCCsymt.c: undid changes that were not meant to be committed
5170
5171 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5172
5173         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5174
5175 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5176
5177         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5178           copied and wrong bit got inverted
5179
5180 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5181
5182         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5183         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5184         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5185         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5186         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5187         assignments to bitfields at known addresses
5188         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5189         reads from bitfields at known addresses
5190         * src/hc08/ralloc.c (packRegisters),
5191         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5192         genhc08Code): optimize pointer get values used as conditionals
5193         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5194         and branch
5195
5196 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5199         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5200         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5201         as conditionals
5202
5203 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5204
5205         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5206
5207 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5208
5209         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5210         related problems
5211
5212 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5213
5214         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5215
5216 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5217
5218         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5219         mcs51 port
5220
5221 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5222
5223         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5224
5225 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5226
5227         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5228         cases use more compact code.
5229
5230 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5231
5232         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5233
5234 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5235
5236         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5237
5238 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5239
5240         * src/SDCCsymt.h,
5241         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5242         parameter of changePointer() from symbol* to sym_link*
5243         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5244         * src/SDCCsymt.c (compareType): void* type is castable to other
5245         pointers, but not necesarily an exact match.
5246         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5247         is no longer blindly treated as an exact match.
5248         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5249
5250 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5251
5252         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5253
5254 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5255
5256         * src/pic/gen.c,
5257         * src/pic/pcode.c,
5258         * src/pic/ralloc.h,
5259         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5260
5261 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5262
5263         * src/pic/device.c,
5264         * src/pic/device.h,
5265         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5266
5267 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5268
5269         * src/mcs51/gen.c (emitcode): fixed bug #992819
5270
5271 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5272
5273         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5274           there's no need to make it worse
5275
5276 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5277
5278         * src/mcs51/ralloc.c (deassignLR),
5279         * src/ds390/ralloc.c (deassignLR),
5280         * src/hc08/ralloc.c (deassignLR),
5281         * src/z80/ralloc.c (deassignLR),
5282         * src/pic/ralloc.c (deassignLR),
5283         * src/pic16/ralloc.c (deassignLR),
5284         * src/avr/ralloc.c (deassignLR),
5285         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5286         rlivePoint): fixed another part of bug #971834
5287
5288 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5289
5290         * src/z80/main.c: enabled "critical" keyword
5291         * src/z80/mappings.i,
5292         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5293         functions (fixes bug #979646)
5294         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5295
5296 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5297
5298         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5299           such as c:\mydir.
5300
5301 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5302
5303         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5304           doesn't disable too much optimizations
5305
5306 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5307
5308         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5309
5310 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5311
5312         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5313
5314 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5315
5316         * src/pic/gen.c tidied up tabs
5317         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5318         * src/pic/main.c tidied up tabs
5319         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5320         * src/pic/pcoderegs.c tidied up tabs
5321         * src/pic/ralloc.c tidied up tabs
5322
5323 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5324
5325         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5326         to S_FIXED for pic16 port and when symbol is not in level 0,
5327         allocate for S_REGISTER storage class and pic16 port, too,
5328         * src/pic16/device.h: prototype for checkSym,
5329         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5330         * (pic16_assignConfigWordValue): test the value and the mask to
5331         validate that the value is suitable for the configuration word,
5332         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5333         collect extern declared symbols, don't emit symbol twice, check
5334         first if symbol is in publics set first,
5335         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5336         * added command line '--fstack' which enables an experimental
5337         feature for stack access, too buggy to be used yet...
5338         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5339         * (pic16_allocDirReg): when register has storage class S_REGISTER
5340         allocate in pic16_dynAccessRegs,
5341         * device/include/pic16/pic18f????.h: modified configuration word
5342         naming convention, words started as CONFIG0H but should be CONFIG1H
5343
5344 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5345
5346         * device/include/mcs51reg.h: fixed bug 970993
5347
5348 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5349
5350         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5351         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5352         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5353         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5354         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5355         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5356           error/warning numbers,
5357           added function setWarningDisabled()
5358         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5359         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5360           _memcmp.c _memmove.c calloc.c realloc.c free.c
5361         * support/regression/tests/malloc.c: added tests for new functionality
5362         * support/regression/tests/zeropad.c: added tests for truncated initializers
5363           and initialized char arrays starting with '\x0'
5364         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5365
5366 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5367
5368         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5369
5370 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5371
5372         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5373         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5374         peephole 177.e. Thanks to anonymous
5375
5376 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5377
5378         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5379         function isn't used in the source but referenced as a
5380         variable initializer then declare it as extern in .asm file
5381
5382 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5383
5384         * .version: increased version number to 2.4.3
5385
5386         Adding version extension according to ChangeLog CVS revision
5387         * src/Makefile.in (target all): added dependency 'version.h'
5388         * (rule version.h): added rule to create version.h from ChangeLog,
5389         * (rule dep): added dependency version.h,
5390         * src/version.awk: AWK script to create version.h
5391         * src/SDCCdwarf2.c (dwWriteModule),
5392         * src/SDCCglue.c (initialComments),
5393         * src/SDCCmain.c (printVersionInfo): modified to write after
5394         version string the version extension number,
5395         * src/SDCCutil.c: included "version.h"
5396         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5397         number,
5398         * src/SDCCutil.h: added prototype for getBuildNumber
5399
5400         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5401         includeDirsSet, too,
5402         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5403         const char [] is found in function prototype...
5404
5405         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5406         moving to WREG with source is already in WREG,
5407         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5408         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5409         * (aopForSym): stack'ed symbols are partially supported, added
5410         if-clause to support symbols in FARSPACE,
5411         * (sameRegs): added test for AOP_ACC to see if registers are same,
5412         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5413         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5414         * (pic16_popRegFromString): will not allocate a new register if it
5415         doesn't find one by name, bug may have introduced...
5416         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5417         * (genIpush): revived to use pic16 port's stack,
5418         * (genAddrOf): added incomplete case for stack'ed operand,
5419         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5420         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5421         can handle multibyte operands,
5422         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5423         * (pic16initialComments): added message for MPLAB compatibility
5424         mode enabled,
5425         * src/pic16/main.h: prototype for pic16_mplab_comp,
5426         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5427         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5428         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5429         because of increased complexity of procedure,
5430         * (_process_pragma): stack pragma changed to format 'stack pos len',
5431         emit symbol '_stack_end' to conform with gplink,
5432         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5433         to search for register,
5434         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5435         PO_GPR_REGISTER,
5436         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5437         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5438         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5439         case for PO_GPR_REGISTER,
5440         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5441         dies, the new era is ahead !...
5442         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5443         pic16_dynInternalRegs,
5444         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5445         * (pic16_allocDirReg): minor optimizations and bug fixes,
5446         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5447
5448         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5449         load stack and frame pointer with address of 'stack_end' symbol
5450
5451 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5452
5453         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5454         without source code but only variable initializers
5455
5456 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5457
5458         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5459         external are not declared as extern to reduce overhead while linking
5460
5461 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5462
5463         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5464
5465 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5466
5467         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5468           Yee Keat for the patch
5469         * src/SDCCast.c (decorateType): fixed bug #979599
5470         * src/ds390/gen.h: removed local fReturnSizeDS390
5471         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5472         * src/ds390/gen.c (genAnd, genOr, genXor),
5473         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5474
5475 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5476
5477         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5478         add relFilesSet to $3, manipulate $2 to handle linking of object
5479         files without source files in command line,
5480         * device/include/pic16 (all headers): added ID location macros,
5481         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5482         entries for ID location bytes,
5483         * (pic16_assignIdByteValue): NEW,
5484         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5485         added field dumpcalltree to pic16_options_t,
5486         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5487         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5488         emitting rFalseIfx label after check_carry label,
5489         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5490         pic16_emitDIRegs), NEW
5491         * (pic16glue): dump .calltree file when option --calltree found,
5492         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5493         * (_pic16_genAssemblerPreamble): emit ID locations after
5494         configuration registers,
5495         * (pic16_linkCmd): modifications of the link command,
5496         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5497         * (pic16_pCodeInitRegisters): don't init stack registers,
5498         * (pic16_findPrevInstruction): fixed bug,
5499         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5500         bug with immediate registers,
5501         * (buildCallTree): traces stack push and pop,
5502         * (pct2): dump also stack usage for each function,
5503         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5504         * (pic16_allocDirReg): various modifications,
5505         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5506         fixed to 1,
5507
5508 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5509
5510         * src/pic16/pcode.c: removed buggy double colon
5511
5512 2004-07-01 Borut Razem <borut.razem AT siol.net>
5513
5514         * support/scripts/sdcc.nsi: added include/pic16 to setup
5515
5516 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5517
5518         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5519         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5520         target 'clean',
5521         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5522         specific command line arguments. Also added sample lkr script
5523         for placing a variable at a specific memory bank.
5524         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5525         at a specific memory bank,
5526         * (pic16_dump_isection): fixed bug which caused string literals to
5527         be omitted when dumping idata section,
5528         * (pic16_groupRegistersInSection): added code to handle registers
5529         in specific memory banks,
5530         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5531         public, all references are renamed too,
5532         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5533         AOP_DPTR2,
5534         * (pic16_storeForReturn): added case to handle when dest is WREG,
5535         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5536         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5537         pic16_rel_udata, check to see if that register is marked as being
5538         a member of a specific memory bank,
5539         * (pic16_printIvalCharPtr): added code to add string literals either
5540         to code or the idata sections,
5541         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5542         also accept the 'udata' pragma,
5543         * src/pic16/main.h: new structure types sectName and sectSym
5544         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5545         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5546         * (pic16_findPrevInstruction): fixed, it returned nothing,
5547         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5548         instruction combinations,
5549         * (pic16_FixRegisterBanking): heavily reorganised,
5550         * (pic16_AnalyzeBanking): if generating banksel directives is
5551         disabled, then don't call FixRegisterBanking at all,
5552         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5553         completely removed,
5554         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5555
5556 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5557
5558         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5559         Phuah Yee Keat <yk.phuah AT nestac.com>
5560
5561 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5562
5563         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5564         correctly the IVT even if it is relocated to some other location
5565
5566 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5567
5568         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5569         * device/include/pic16/pic18f2220.h: NEW,
5570         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5571         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5572         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5573         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5574         nodefaultlibs, ivt_loc is the location of the interrupt vector
5575         table, and nodefaultlibs signs that default libraries should not be
5576         linked in link stage,
5577         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5578         according to --ivt-loc argument,
5579         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5580         when pragma stack is found,
5581
5582 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5583
5584         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5585         256 (range check), 257 (do while), 258.a-f (bit banging
5586         f.e. on 3-wire SPI bus)
5587
5588 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5589
5590         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5591         variables used exclusively within a loop
5592
5593 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5594
5595         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5596
5597 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5598
5599         * src/SDCClrange.c (computeClash): fixed bug #971834
5600
5601 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5602
5603         * src/mcs51/gen.c (genCmp): fixed bug #975903
5604         * src/hc08/gen.c (operandsEqu),
5605         * src/ds390/gen.c (operandsEqu),
5606         * src/z80/gen.c (operandsEqu),
5607         * src/pic/gen.c (operandsEqu),
5608         * src/pic16/gen.c (operandsEqu),
5609         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5610         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5611
5612 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5613
5614         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5615
5616 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5617
5618         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5619         default case in switch statement,
5620         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5621         to eliminate problem with initialisation of pointers, but problem
5622         still exists,
5623         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5624         * (emitStaticSegment): removed various lines emitting debug info,
5625         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5626         added processor registers for utilizing EEPROM,
5627         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5628         configurable and set 8
5629
5630 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5631
5632         * .version: increased version number to 2.4.2,
5633
5634         Cumulative patch for pic16 port
5635         * src/pic16/device.c: changed scheme to dump initial values for
5636         variables in idata segment, all print_idata* functions were removed,
5637         now the pic16_printIval* will be called,
5638         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5639         * _pic16_printPointerType, pic16_printPointerType,
5640         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5641         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5642         NEW, similar to the respective functions in SDCCglue.c,
5643         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5644         way, emitting hex bytes,
5645         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5646
5647 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5648
5649         * src/avr/ralloc.c (serialRegAssign),
5650         * src/xa51/ralloc.c (serialRegAssign),
5651         * src/pic/ralloc.c (serialRegAssign),
5652         * src/pic16/ralloc.c (serialRegAssign),
5653         * src/hc08/ralloc.c (serialRegAssign),
5654         * src/z80/ralloc.c (serialRegAssign),
5655         * src/ds390/ralloc.c (serialRegAssign),
5656         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5657
5658 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5659
5660         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5661         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5662
5663 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5664
5665         Cumulative patch for pic16 port:
5666         * src/pic16/device.h (typedef PIC16_device) modified fields for
5667         defining microcontrollers,
5668         * src/pic16/device.c: added new info for all devices in Pics16 array,
5669         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5670         to be optimised out by the pCode optimiser,
5671         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5672         specially, bug reported by G.M. Gallant,
5673         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5674         as force'd so that cannot be optimised out by pCode optimiser,
5675         * src/pic16/pcode.c,
5676         * src/pic16/pcodepeeph.c,
5677         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5678         they are disabled by default, but can be enabled explicit with
5679         command argument --denable-peeps, for testing,
5680         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5681         --pomit-ivt in COMPILE_FLAGS
5682
5683 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5684
5685         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5686           compilation on MSVC
5687
5688 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5689
5690         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5691
5692 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5693
5694         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5695         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5696
5697 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5698
5699         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5700         would only assign 0x300001 register.
5701
5702 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5703
5704         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5705         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5706
5707 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5708
5709         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5710         for ds80c400
5711         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5712         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5713         added peephole 254 (left shift), 255 (jump table)
5714
5715 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5716
5717         * device/lib/Makefile.in: removed comment line with model-pic16,
5718         * (target port-specific-objects-pic16): the libraries and objects
5719         are copied to the build directory form the device/lib/pic16/bin
5720         directory
5721
5722         Cumulative patch concerning pic16 port:
5723         * library directory has been re-organized,
5724         * added support for PIC18F1220,
5725         * added headers and library sources for chips 18f1220,18f6520,
5726         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5727
5728         * configuration registers setting has changed, now each supported
5729         device has a complete description of the registers it uses,
5730         * all initialisations are moved to idata sections, these section
5731         can be absolute or relocatable,
5732         * fixed initialisation of codespace variables,
5733         * fixed warning about PCLATU and gpsim,
5734         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5735         * (genAssign): use table reads when assigning from variables in codespace,
5736         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5737         char/int variables placed in codespace,
5738         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5739         registers set in .asm file, no need for --pomit-config-words anymore,
5740         * (pic16glue): some 8051 legacy segments are commented out
5741         (to be removed completely),
5742         * added support for alternative assembler and linker with --asm=
5743         and --link= command line arguments,
5744         * peepholes are disabled automatically in the port, no need to
5745         specify on command line,
5746         * port supports natively char/int/long multiplication, but converts
5747         all divisions to support functions,
5748         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5749         to the file set in variable $2,
5750         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5751         strings in ASCII format and not in hex,
5752         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5753         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5754         allocate proper register if iCodes aren't temporary,
5755
5756 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5757
5758         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5759
5760 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5761
5762         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5763         is commented out
5764
5765 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5766
5767         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5768         computed address is reused
5769         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5770         multi-byte bitfields
5771
5772 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5773
5774         * src/z80/gen.c: (genArrayInit): must check for pointers too
5775
5776 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5777
5778         * support/regression/tests/zeropad.c: never meant to commit the
5779           nestedstruct test: removed, added check for GCC version
5780
5781 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5782
5783         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5784         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5785         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5786           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5787           bugs 928906 and 954082 half-empty initializers
5788         * src/SDCCsymt.h,
5789         * src/SDCCsymt.c (getAllocSize): added for above fix
5790         * src/z80/gen.c (genArrayInit): fixed bug 741044
5791         * support/regression/tests/zeropad.c: added tests
5792
5793 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5794
5795         * src/pic16/device.c (pic16_dump_section): corrected bug which
5796         caused some symbols of the libraries to be misplaced
5797
5798 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5799
5800         * src/pic16/glue.c,
5801         * src/pic16/ralloc.h,
5802         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5803         to fix conflict with pic port
5804
5805 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5806
5807         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5808         externs configuration variables,
5809         * src/pic16/ralloc.h,
5810         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5811         prototype in header, commented out some debug messages
5812
5813 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5814
5815         * src/pic16/glue.c,
5816         * src/pic16/main.c,
5817         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5818         for gpasm COFF object generation. Thanks to D. Hawkins for
5819         his patch info
5820
5821 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5822
5823         * src/ds390/main.c,
5824         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5825         Brock for spotting this)
5826         * src/ds390/gen.c (genEndFunction),
5827         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5828         interrupt handler and critical. Disable push/pop optimizations when
5829         peephole optimizations disabled.
5830
5831 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5832
5833         Updated pic16 library sources and headers.
5834         * device/lib/pic16/pic18f*/ ,
5835         * device/include/pic16/*.h: modified to handle structured SFR
5836         definitions
5837
5838 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5839
5840         * src/port.h (PORT structure): added hook initPaths, now each
5841         port can declare its own default search paths,
5842         which can been seen with the --print-search-dirs option,
5843         see pic16 port for example,
5844         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5845         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5846         * (doPrintSearchDirs): NEW, replaces in a central manner the
5847         printing of search dirs which was split in set*Paths functions,
5848         * (main): added call to port->initPaths and doPrintSearchDirs,
5849         * src/avr/main.c,
5850         * src/ds390/main.c,
5851         * src/hc08/main.c,
5852         * src/izt/i186.c,
5853         * src/izt/tlcs900h.c,
5854         * src/mcs51/main.c,
5855         * src/pic/main.c,
5856         * src/pic16/main.c: modified port structures to reflect addition of
5857         initPaths hook,
5858
5859         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5860         * (pic16_dump_section): for registers in same address reserve memory once,
5861         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5862         to no_banksel,
5863         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5864         result is greater in size than right or left,
5865         * (pic16_genUMult8X8_8): there are some cases where the result can
5866         be 16 bits size, so handle these,
5867         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5868         * (pic16_outBitC): modified to emit pcodes,
5869         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5870         or not,
5871         * (genDivOneByte): implemented algorithm to divide 8-bits,
5872         * (genCmp): uncommented goto, but issues still exist,
5873         * (genAnd): fixed a bug with variables >8bits,
5874         * (genPackBits): optimization added that uses BCF/BSF to change a
5875         single bit,
5876         * (genAssign): fixed bug when assigning floating point literals,
5877         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5878         __sdcc_gsinit_startup label,
5879         * src/pic16/main.c (_pic16_init): removed search directory
5880         initialisations,
5881         * (_pic16_initPaths): NEW, used to initialise search directories,
5882         * (_hasNativeMulFor): support functions for all except char/int
5883         multiplication, and char division,
5884         * (PIC16_port struct): modified entry for native mul support,
5885         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5886         no_banksel option,
5887         * (buildCallTree): call to register_usage is ifdef'ed out,
5888
5889 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5890
5891         * device/include/string.h: applied Stas Sergeev's patch to make this
5892         header file compatible with the preprocessor -Wundef option
5893         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5894         failure (fixes bug #941458)
5895
5896 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5897
5898         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5899         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5900         that the variable, not the function, should be static
5901         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5902         to be consistent with non-literal case
5903
5904 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5905
5906         * src/SDCCast.c (isConformingBody): fixed bug #949967
5907         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5908         convilong): fixed bug #952086
5909
5910 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         * src/SDCCmem.c (allocVariables): fixed bug #955321
5913
5914 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5915
5916         * src/hc08/main.c (_hc08_genAssemblerEnd),
5917         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5918         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5919         completely eliminated the use of a temporary file
5920         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5921         when more than one file linked
5922         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5923
5924 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5925
5926         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5927         which fixes bug #543481
5928         * support/regression/tests/bug-751703.c: fixed comments left from a
5929         cut and paste error
5930         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5931         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5932         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5933         scopes
5934         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5935         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5936         are now changed to underscores in moduleName
5937
5938 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5939
5940         * as/mcs51/lkmem.c: better fix for bug #954173
5941
5942 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5943         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5944
5945         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5946         * device/include/c8051f000.h,
5947         * device/include/c8051f120.h,
5948         * device/include/c8051f300.h,
5949         * device/include/c8051f310.h,
5950         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5951         PWM16) and detab'ed
5952
5953 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5954
5955         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5956         and mailing lists, doc'ed --no-peep-comments, removed reference
5957         to knoppix (newest version has no LyX/LaTeX), other minor changes
5958         * src/SDCCglue.c (glue): save 2 bytes stack space with
5959         option --main-return. The ljmp could probably be avoided too
5960
5961 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5962
5963         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5964
5965 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5966
5967         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5968         * src/SDCCopt.c (isLocalWithoutDef),
5969         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5970         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5971         (credit to Maarten Brock for patch #949363, on which this is based)
5972         * support/regression/tests/bug-751703.c: some test cases of extern used
5973         within inner scopes.
5974
5975 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5976
5977         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5978         SPEC_STRUCT
5979         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5980         struct definitions
5981         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5982         dwWriteLabel): fix to create valid debugger symbols even when
5983         the module name has non-alphanumeric symbols in it
5984         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5985         when a variable's allocation has been optimized away
5986
5987
5988 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5989
5990         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5991         * src/hc08/main.c,
5992         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5993         * src/mcs51/main.c,
5994         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5995         * src/ds390/main.c,
5996         * src/z80/gen.c (z80_emitDebuggerSymbol),
5997         * src/z80/main.c,
5998         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5999         * src/pic/main.c,
6000         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6001         * src/pic16/main.c,
6002         * src/avr/gen.c (avr_emitDebuggerSymbol),
6003         * src/avr/main.c,
6004         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6005         * src/xa51/main.c,
6006         * src/SDCCdebug.c (emitDebuggerSymbol),
6007         * src/SDCCdebug.h,
6008         * src/port.h: added a debugger struct to the port struct. Added a
6009         callback for defining debugger symbols
6010
6011         * src/SDCCast.c (createLabel),
6012         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6013         with isitmp = 1
6014         * src/SDCCicode.h,
6015         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6016         iCode back to the ast for the function
6017
6018         * src/hc08/ralloc.c (hc08_assignRegisters),
6019         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6020         unneeded fields from the regs struct.
6021         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6022         pushReg() & pullReg() functions instead of emitcode()
6023
6024         * src/hc08/gen.c (genLabel, genhc08Code),
6025         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6026
6027         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6028         debugger hooks
6029
6030         * src/hc08/gen.c (genEndFunction, genhc08Code),
6031         * src/hc08/gen.h,
6032         * src/mcs51/gen.c (genEndFunction, gen51Code),
6033         * src/mcs51/gen.h,
6034         * src/ds390/gen.c (genEndFunction, gen390Code),
6035         * src/ds390/gen.h,
6036         * src/z80/gen.c (genEndFunction, genZ80Code),
6037         * src/z80/gen.h,
6038         * src/z80/z80.h,
6039         * src/pic/gen.c (genEndFunction, genpic14Code),
6040         * src/pic/gen.h,
6041         * src/pic16/gen.c (genEndFunction, genpic16Code),
6042         * src/pic16/gen.h,
6043         * src/avr/gen.c (genEndFunction, genAVRCode),
6044         * src/avr/gen.h,
6045         * src/xa51/gen.c (genEndFunction, genXA51Code),
6046         * src/xa51/gen.h,
6047         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6048         specific code to cdbFile.c and out of the backend code generators
6049
6050         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6051         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6052         starting address is now 0
6053
6054         * as/hc08/asm.h,
6055         * as/hc08/m08pst.c,
6056         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6057         assembler directive for DWARF support
6058         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6059
6060         * src/src.dsp,
6061         * src/Makefile.in,
6062         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6063
6064 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6065
6066         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6067         and inappropriate peephole optimization in jump tables
6068
6069 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6070
6071         * as/hc08/m08pst.c,
6072         * src/SDCCglue.c: sdccopt works for the hc08 port now
6073
6074 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6075
6076         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6077
6078 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6079
6080         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6081
6082 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6083
6084         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6085         rules
6086         * src/SDCCmain.c,
6087         * src/SDCCglobl.h,
6088         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6089         comments from the peephole optimizer replacement rules
6090         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6091         symbols
6092         * src/SDCCcse.c (updateSpillLocation),
6093         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6094         equivalents
6095         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6096         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6097         objects far pointers
6098
6099 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6100
6101         * src/SDCCsymt.h: a missing part of my last change
6102         * src/pic/ralloc.c (regTypeNum),
6103         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6104
6105 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6106
6107         * src/SDCCicode.h,
6108         * src/SDCCicode.c (aggrToPtrDclType),
6109         * src/SDCCptropt.h,
6110         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6111         ptrPseudoSymConvert),
6112         * src/pic/ralloc.c (regTypeNum),
6113         * src/pic16/ralloc.c (regTypeNum),
6114         * src/hc08/ralloc.c (regTypeNum),
6115         * src/ds390/ralloc.c (regTypeNum),
6116         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6117         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6118
6119 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6120
6121         * link/z80/lkmain.c (afile),
6122         * as/hc08/lkmain.c (afile),
6123         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6124         prevent a pointer problem when a filename has no directory and
6125         no extension specified.
6126
6127 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6128
6129         * link/z80/lkmain.c (afile): allow periods in directory names
6130         * link/z80/lkmain.c (afile),
6131         * as/mcs51/lkmain.c (afile),
6132         * as/hc08/lkmain.c (afile): allow linker script file to have an
6133         extension other than ".lnk"
6134         * link/z80/lklex.c (getfid),
6135         * link/z80/lkmain.c (parse),
6136         * as/mcs51/lklex.c (getfid),
6137         * as/mcs51/lkmain.c (parse),
6138         * as/hc08/lklex.c (getfid),
6139         * as/hc08/lkmain.c (parse): Support comments in the linker script
6140         file on lines by themselves and after filenames
6141
6142 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6143
6144         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6145
6146 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6147
6148         * src/z80/peeph-z80.def: removed some peephole rules that don't
6149         work with multibyte arithmetic (fixed bug #937126)
6150         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6151         to registers and not global variables
6152         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6153         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6154         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6155         checking for assignments not internally generated (fixed bug #931895)
6156         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6157         structure member (fixed bug #930072)
6158
6159 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6160
6161         * src/SDCCmain.c (linkEdit),
6162         * src/hc08/main.c (_hc08_parseOptions),
6163         * as/hc08/Makefile.in,
6164         * as/hc08/aslink.h,
6165         * as/hc08/asm.h,
6166         * as/hc08/m08pst.c,
6167         * as/hc08/lkrloc.c (relr, rele),
6168         * as/hc08/lkarea.c (lnkarea)
6169         * as/hc08/lkmain.c (afile, parse),
6170         * as/hc08/lkelf.c: support for ELF output
6171         * as/hc08/lks19.c (s19),
6172         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6173
6174 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6175
6176         * as/mcs51/lkihx.c: Fixed bug #899105.
6177
6178 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6179
6180         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6181         .dsp files from Unix to DOS.
6182
6183 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6184
6185         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6186         function pointers; we have been compliant for several months now.
6187         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6188         change that was accidently commented out
6189         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6190         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6191         bug #922319
6192
6193 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6194
6195         * src/hc08/gen.c: output of all of the internal debugging information
6196         is now controlled by the D() macro; it is disabled by default
6197
6198 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6199
6200         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6201         harder to keep the same registers during a CAST iCode
6202         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6203         long via int can be done in a single cast, if the signedness is
6204         correct.
6205         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6206         putchar() in tinibios.c in ds390's library
6207
6208 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6209
6210         * src/SDCCast.c (decorateType): fixed bug #898889,
6211         cast result of a literal complement too
6212         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6213         fixed check for bitfields
6214
6215 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6216
6217         * src/SDCCicode.c (geniCodeLogic): made it static,
6218         (geniCodeLogicAndOr): added in order to fix bug #905492,
6219         (ast2iCode): fixed bug #905492
6220         * support/regression/tests/bug-905492.c: added
6221         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6222         (processParms): fixed bug #927659: don't copy parms, this will clear
6223         decorated flag
6224         * support/regression/tests/bug-927659.c: added
6225
6226 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6227
6228         * src/SDCCast.c (addCast): don't cast float to char
6229         * device/lib/libsdcc.lib: added _memmove
6230
6231 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6232
6233         * device/lib/large/Makefile: fixed parallel execution by
6234         replacing `make` by `$(MAKE)`
6235
6236 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6237
6238         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6239         offsets (fixes bug #923936)
6240
6241 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6242
6243         * device/lib/small/Makefile: fixed parallel execution by
6244         replacing `make` by `$(MAKE)`
6245
6246 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6247
6248         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6249
6250 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6251
6252         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6253         * src/regression/Makefile: Regression test was not running.
6254
6255 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6256
6257         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6258         complement if possible
6259         * src/SDCCval.c (valComplement),
6260         * src/SDCCicode.c (operandOperation): fixed complement of literal
6261         * support/regression/tests/onebyte.c (testComplement): added
6262
6263 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6264
6265         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6266         return an optimized tree; actually replace actParm with the new tree
6267         * src/SDCCast.h: added some parantheses to remove side effects
6268         * support/regression/tests/bug-920866.c
6269
6270 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6271         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6272         Bit operands were not being handled properly in the pic14 port.
6273         (now src/regression/add.c passes again).
6274
6275 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6276
6277         * src/SDCC.y (labeled_statement): case and default no longer require
6278         a following statement (RFE #893037)
6279
6280 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6281
6282         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6283         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6284         disabled (fixes bug #916294)
6285         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6286         "mov a,acc"; patch provided by Lenny Story
6287         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6288
6289 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6290
6291         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6292         functions
6293         * src/ds390/gen.c (genFunction, genEndFunction),
6294         * src/ds390/ralloc.c (ds390_assignRegisters),
6295         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6296         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6297         pushed if there are parameters passed on the stack. Also, a cleaner
6298         way to decide if r0/r1 should be pushed/popped. (Together they fix
6299         bug #918693)
6300
6301 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6302
6303         * doc/sdccman.lyx,
6304         * device/lib/mcs51/crtpagesfr.asm,
6305         * device/lib/mcs51/crtxinit.asm,
6306         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6307         to avoid confusion with Si Lab's SFRPAGE register.
6308
6309 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6310
6311         * src/SDCCglue.c (emitMaps): allow public sfr variables
6312         * src/SDCCglue.c (initialComments): include compiler build date
6313         with compiler version and put the timestamp of the generated
6314         assembly file on a serperate line to be less confusing.
6315         * src/port.h: added genInitStartup hook
6316         * src/avr/main.c,
6317         * src/ds390/main.c,
6318         * src/hc08/main.c,
6319         * src/pic/main.c,
6320         * src/pic16/main.c,
6321         * src/xa51/main.c,
6322         * src/z80/main.c: genInitStartup initialize as NULL (default to
6323         historical behaviour)
6324         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6325         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6326         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6327         library instead of hard coding it into the compiler.
6328         * support/regression/ports/mcs51-stack-auto/spec.mk,
6329         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6330         * device/lib/mcs51/Makefile,
6331         * device/lib/small/Makefile,
6332         * device/lib/large/Makefile,
6333         * device/lib/mcs51/crtpagesfr.asm,
6334         * device/lib/mcs51/crtstart.asm,
6335         * device/lib/mcs51/crtxclear.asm,
6336         * device/lib/mcs51/crtxinit.asm,
6337         * device/lib/mcs51/crtclear.asm,
6338         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6339         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6340         and into user configurable files.
6341         * device/lib/clean.mk: clean mcs51 directory too
6342         * support/regression/tests/longlit.c: added static to T1 declaration
6343         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6344         accesses in the initialization code
6345
6346 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6347
6348         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6349         OSCTRIMVAL as noted in bug #916008
6350
6351 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6352
6353         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6354         in loops with multiple exits (reported as incorrect registers
6355         used by Martin Helmling in Sdcc-user list)
6356
6357 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6358
6359         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6360         made ds390 register extensions look less like error messages
6361
6362 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6363
6364         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6365         reported by Adam Wozniak in Sdcc-user list
6366
6367 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6368
6369         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6370         arithmetic optimizations, added debug output
6371
6372 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6373
6374         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6375         * sdcc.spec: updated and split sdcc into 3 rpms
6376         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6377         needed for literals of LEFT_OP and '+'
6378         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6379         introduced RESULT_TYPE_NOPROM
6380         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6381         left shift
6382         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6383         limited promotion to int only for '*'
6384         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6385
6386 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6387
6388         * src/pic16/gen.c (genSkip),
6389         (genc16bit2lit), (gencjneshort): commented out
6390         (is_LitOp): new helper function, checks operand type
6391         (genCmpEq): rewritten
6392
6393 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6394
6395         * support/regression/tests/bug-908454.c: added
6396
6397 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6398
6399         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6400         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6401         (geniCodeCast): cosmetic, don't preserve bit storage class
6402         (geniCodeLeftShift): added promotion
6403         (geniCodeLogic): fixed regression
6404         * src/SDCCsymt.c (computeTypeOr): accept bits too
6405         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6406
6407 2004-03-07  Borut Razem <borut.razem AT siol.net>
6408
6409         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6410
6411 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6412
6413         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6414         version of pic16_genPackRegisters which does not check if ic is a
6415         CAST operator,
6416         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6417         function cause string1.c regression test fails
6418
6419 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6420
6421         * sim/ucsim/configure.in,
6422         * sim/ucsim/configure,
6423         * sim/ucsim/doc/Makefile.in: use docdir
6424         * src/SDCC.y: fixed sbit atrributes
6425         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6426         * src/SDCCast.c (decorateType): |^& need special promotion handling
6427         * src/SDCCast.h,
6428         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6429         * src/SDCCsymt.h (computeType),
6430         * src/SDCCicode.c: computeType() needs op
6431         * src/SDCCsymt.c (checkTypeSanity),
6432         * doc/sddman.lyx: "plain" bitfields are unsigned
6433         * src/SDCCsymt.c (computeTypeOr): added
6434         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6435         |^& ops
6436         * src/SDCCval.c (val*): computeType() needs op
6437         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6438         * support/regression/tests/onebyte.c: added tests for |^&
6439
6440 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6441
6442         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6443         for writing icode into asm output.
6444
6445 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6446
6447         * src/pic16/device.c: added some debug lines enabled
6448         with macro DEBUG_CHECK,
6449         * src/pic16/genarith.c: more debug in genPlus,
6450         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6451         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6452         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6453         * (aopForSym): onStack symbols are re-placed in data memspace,
6454         and onStack flag is cleared,
6455         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6456         copy temporary pcodeop,
6457         * (genPcall): added warning for not updating PCLATU,
6458         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6459         always true for pic16 port,
6460         * (genMultOneWord): NEW, supports integer multiplication,
6461         * (genMult): modified to call genMultOneWord,
6462         * (ifxForOp): added warning when return NULL,
6463         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6464         flag is set before call to operandFromSymbol for implicit
6465         added structures,
6466         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6467         options.intlong_rent are set by default,
6468         * (_hasNativeMulFor): modified to allow port generation of integer
6469         multiplication,
6470         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6471         set regtype to REG_SFR for all registers, restricting seting the
6472         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6473
6474 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6475
6476         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6477         more than 500 times in the regression tests
6478
6479 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6480
6481         * support/Util/SDCCerr.h,
6482         * support/Util/SDCCerr.c,
6483         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6484         enumerator_list),
6485         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6486         for symbol conflicts.
6487         * support/valdiags/tests/enum.c,
6488         * support/valdiags/tests/tentdecl.c,
6489         * support/valdiags/tests/struct.c: expect possible error messages
6490         referring to original symbol definitions.
6491         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6492         * src/SDCCsymt.h,
6493         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6494
6495 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6496
6497         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6498
6499 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6500
6501         * src/pic16/ralloc.c (newReg): fixed bug #908929
6502
6503 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6504
6505         * src/ds390/gen.c: added missing #include "main.h"
6506
6507 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6508
6509         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6510         checking if symbol is already in set,
6511         * src/pic16/device.h: prototype for checkAddSym,
6512         * src/pic16/gen.c: (_G): added entry interruptvector,
6513         * (assignResultValue): removed some commented out lines,
6514         * (genFunction): check for ISR via sym->type, absolute section for
6515         interrupt code is created via a new pBlock, the goto instruction is
6516         placed now correctly at the interrupt vector position, changed all
6517         references from ivec to _G.interruptvector,
6518         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6519         is the interrupt is a high priority one, same for return from ISR,
6520         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6521         externs to calls of checkAddSym,
6522         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6523         pic16_pcode_verbose flag is set,
6524         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6525         * src/pic16/pcoderegs.c: message about how many registers are saved
6526         will only be emitted if pic16_pcode_verbose flag is set,
6527
6528 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6529
6530         * src/ds390/ralloc.h,
6531         * src/ds390/ralloc.c (ds390_regWithIdx),
6532         * src/ds390/gen.c (emitcode),
6533         * src/ds390/main.h,
6534         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6535         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6536         ds390operandCompare, getRegsRead, getRegsWritten,
6537         initializeAsmLineNode): customized instruction size calculation for
6538         ds390, started basis for some register optimizations
6539         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6540         corresponding assembly output
6541         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6542         missing push/pop of r0/r1. Optimized push/pops
6543
6544 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6545
6546         * src/mcs51/main.c (instructionSize): fixed ACALL size
6547         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6548
6549 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6550
6551         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6552         the sorting of rlist with NULL elements
6553         * (print_idataType, print_idata): NEW to create idata sections
6554         * src/pic16/device.h: idataSymSet new variable
6555         * src/pic16/gen.c (genFunction): fixed some bugs in string
6556         comparing, improved the absolute section creation for ISRs,
6557         added FSR0L/FSR0H in registers that are saved in an ISR,
6558         * (genInline): fixed the processing of inline snippets,
6559         now they undergo no process by the peephole optimizer
6560         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6561         are placed in idataSymSet,
6562         * (pic16emitStaticSeg): extern symbols are added in externs,
6563         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6564         switching when aboslute variables are placed in access bank memory
6565         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6566         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6567         commented out with #if,
6568         * (pic16_packRegisters): reintroduce the check for CAST because some
6569         symbols are not correctly handled,
6570         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6571         pCodeInstruction instead of pCode,
6572         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6573         pCodeAsmDir definition,
6574         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6575         directive, then the argument directive is emitted without the leading
6576         tab, hack for inline labels which must be in the first column,
6577         * (compareLabel,pic16_findNextInstruction),
6578         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6579         * (insertBankSwitch): modified for the new pCodeAsmDir,
6580
6581 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6582         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6583
6584         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6585         instance,
6586         * (pushSide): commented out with #if,
6587         * (assignResultValue): fixed some typos in saving
6588         registers,
6589         * (genPcall): FIXED and sync'ed with genCall,
6590         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6591         * (genNearPointerGet): fixed to handle some more cases,
6592         implementation scheme via table reads,
6593         * (genConstPointerGet): modified to access code memory correct,
6594         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6595         and improved to handle some cases
6596         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6597         instead of "RETLW" for init data
6598         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6599         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6600         variables are placed in access bank memory (<0x80 and >=0xf80),
6601         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6602         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6603         TBLWT_POSTDEC,TBLWT_PREINC
6604         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6605         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6606         directives
6607         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6608         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6609         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6610         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6611
6612 2004-02-29  Borut Razem <borut.razem AT siol.net>
6613
6614         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6615         support/Util/findme.h, support/Util/system.h: enhance binary relative
6616         search for lib and include by using findProgramPath()
6617
6618 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6619
6620         * src/SDCCpeeph.h,
6621         * src/SDCCpeeph.c (pcDistance),
6622         * src/port.h,
6623         * src/mcs51/ralloc.h,
6624         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6625         * src/mcs51/main.h,
6626         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6627         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6628         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6629         size calculation port specific, started basis for some register
6630         optimizations
6631         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6632         missing push/pop of r0/r1. Optimized push/pops
6633         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6634         * device/lib/_modsint.c (_modsint),
6635         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6636         and stack version so regression tests pass
6637
6638 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6639
6640         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6641         * src/SDCCast.c (decorateType): catch another small optimization
6642         with '?' operator
6643         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6644         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6645         modified to finally use computeType() all over SDCC,
6646         see Feature Request #877103
6647         * src/SDCCval.h: cosmetic
6648         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6649         valCompare(); regression tested in muldiv.c
6650         * support/regression/tests/muldiv.c (testMod): mod sign follows
6651         dividend only
6652
6653 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6654
6655         * src/SDCCast.c (decorateType): fixed bug #902362
6656         * doc/INSTALL.txt: fixed install instructions for win32
6657
6658 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6659
6660         * device/include/Makefile.in (install): fixed by replacing spaces
6661         by tabs
6662         * doc/README.txt,
6663         * doc/INSTALL.txt: updated for release
6664         * doc/sdccman.lyx: added warning for --xstack being buggy
6665
6666 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6667
6668         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6669         to eliminate build warnings.
6670         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6671
6672 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6673            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6674
6675         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6676         removed -penable-stack, added comment for stack pragma, added
6677         warning for not initializing the stack/frame registers, removed
6678         comment at interrupts section
6679
6680         Stack is made permanent, there is no ability to disable stack usage.
6681         * src/pic16/device.h,
6682         * src/pic16/device.c: removed all references to USE_STACK macro,
6683         * src/pic16/device.c (pic16_dump_section): when no elements in
6684         rlist, free rlist before return,
6685         * (pic16_dump_int_registers): NEW, internal registers are a new set
6686         of general purpose registers reused by each function,
6687         * (checkAddReg): returns 1 if registers is added to set,
6688         * (pic16_groupRegistersInSection): when a registers is of type
6689         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6690         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6691         SRCASECMP macro is moved here from device.c
6692         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6693         PO_PCLATU, PO_PRODL, PO_PRODH,
6694         * (pic16_pCodeOpType, genMinus,
6695         changed compares to "a" register, with AOP_ACC,
6696         * (pic16_genPlus): fixed some bugs and indented properly,
6697         * (pic16_addSign): changed size to size+offset in the MOVWF
6698         instruction,
6699         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6700         multiply 8-bit operand by literal, result is 8-bit,
6701         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6702         multiply 2 8-bit operand, result is 8-bit,
6703         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6704         genUMult8X*_16,
6705         * src/pic16/gen.c: changed accUse to contain WREG only,
6706         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6707         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6708         true, do not use immediate addressing any more unless sym is a
6709         pointer in codespace,
6710         * (aopForRemat): do not use immediate addressing when symbol not in
6711         codespace and when symbol's address is requested,
6712         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6713         accUse size (= 1),
6714         * (aopGet): added case for AOP_ACC and don't return "accumulator
6715         bug" but WREG instead,
6716         * (popGetTempReg): pushes contents of temporary register in stack,
6717         * (popReleaseTempReg): pops contents of temporary register from
6718         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6719         * (pic16_popGet): separated case AOP_ACC to return register WREG
6720         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6721         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6722         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6723         the use of immediate pointers to certain cases only.
6724
6725         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6726         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6727         * (assignResultValue, genCall, genRet): modified to use the new
6728         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6729         genPcall is still broken,
6730         * (genFunction): added code to create 'A' type pBlocks when
6731         interrupt functions are generated, code not extensively tested yet,
6732         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6733         * (genEndFunction): modified so ISRs pop stored registers from stack,
6734         * (genMultOneByte): cleanup,
6735         * (AccRsh): added flag andmask, to and result with appropriate mask,
6736         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6737         * (genDataPointerGet): fixed and reenabled its use,
6738         * (genNearDataPointerGet): bugs fixed,
6739         * (genDataPointerSet): bugs fixed,
6740         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6741         pic16_DumpSymbol, pic16_DumpOp,
6742         * src/pic16/genutils.h: function prototypes for the above functions,
6743         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6744         pointers,
6745         * (pic16emitRegularMap): many many many improvements, but needs a
6746         major cleanup,
6747         * src/pic16/main.c: enable_stack in pic16_options is removed,
6748         * (_pic16_parseOptions): removed command line options -penable-stack,
6749         * (_process_pragma): emit stack symbol only when stack pragma is
6750         processed,
6751         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6752         redirected to FSR0L/FSR0H pair,
6753         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6754         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6755         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6756         for immediates,
6757         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6758         * (dumpPicOptype): NEW,
6759         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6760         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6761         with movff instruction,
6762         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6763         added pic16_int_regs, some packRegsFor* functions are commented out,
6764         because produce errors,
6765         * src/pic16/NOTES: minor modifications
6766
6767 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6768
6769         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6770         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6771         --pack-iram.
6772         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6773         * as/mcs51/lkaomf51.c: fixed bug #895763
6774
6775 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6776
6777         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6778
6779 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6780
6781         * doc/sdccman.lyx: added details about the HC08 storage classes and
6782         interrupts, fixed the register usage info for z80 & gbz80
6783
6784 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6785
6786         * doc/sdccman.lyx: added more pic16 port documentation
6787         * device/include/pic16/: added header pic18fregs.h
6788
6789 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6790
6791         * doc/sdccman.lyx: added Vangelis' contribution
6792
6793 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6794
6795         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6796         extend to the next CALL or PCALL, not just to the next CALL.
6797
6798 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6799
6800         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6801
6802 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6803
6804         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6805         bug #895752 and a better fix for bug #716790
6806
6807 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6808
6809         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6810
6811 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6812
6813         * doc/sdccman.lyx: minor changes, minor changed
6814
6815 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6816
6817         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6818         which can't handle SDCC_NEWONEBYTEOPS,
6819         (geniCodeMultiply): removed conversion from mult to shift for pic14
6820         and pic16
6821
6822 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6823
6824         * src/hc08/gen.h,
6825         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6826         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6827         thus fixing bug #895406
6828
6829 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6830
6831         * device/lib/_modsint.c,
6832         * device/lib/_modslong.c: sign follows divisor only
6833         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6834         signs or signedness can be ignored
6835         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6836         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6837         added optimization for IFX,
6838         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6839         arguments;
6840         reenabled optimization for IFX, which was removed on 2004-01-11
6841         * src/SDCCast.h: added return type IFX
6842         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6843         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6844         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6845         SDCC_OLDONEBYTEOPS selects the old behaviour
6846         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6847         changed again and commented promotion rule
6848         * src/SDCCval.c (valDiv): promotion no longer necessary
6849         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6850         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6851         rewritten
6852         * support/regression/tests/onebyte.c: added
6853
6854 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6855
6856         * gen.c (genInline): reverted to old code for assemnling inline
6857         code because of bug reported James Chadd
6858
6859 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6860
6861         * ralloc.h: missing declarations from previous patch,
6862         seems that patch for ralloc.h was never applied, fixed
6863
6864 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6865            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6866
6867         * pcode.c,
6868         * pcode.h,
6869         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6870         indirect addressing. Marked FSR0 as deprecated
6871         * gen.c (pointerCode): commented out, not needed now
6872         (pic16_popGet2p): new MOVFF helper function
6873         (genGenPointerGet),
6874         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6875         (shiftRLong): removed duplicate debugging info
6876
6877 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6878
6879         * src/ds390/gen.c (genNearPointerGet),
6880         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6881         optimization with bits, but not bitfields.
6882         * src/ds390/ralloc.c (packRegisters),
6883         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6884
6885 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6886
6887         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6888
6889 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6890
6891         * src/SDCCsymt.h,
6892         * src/SDCCicode.c (operandFromSymbol),
6893         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6894         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6895         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6896         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6897         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6898         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6899         bug #892038
6900         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6901         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6902         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6903         * src/SDCCsymt.c (newSymbol),
6904         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6905         enumerator_list),
6906         * src/SDCCval.h,
6907         * src/SDCCval.c (newiList): fixed bug #885705
6908
6909 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6910
6911         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6912         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6913
6914 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6915
6916         * device/include/c8051f120.h,
6917         * device/include/c8051f300.h,
6918         * device/include/c8051f310.h: added/updated header files for Silicon
6919         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6920         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6921         in new section Submitting patches
6922
6923 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6924
6925         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6926         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6927         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6928         genGenPointerSet),
6929         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6930         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6931         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6932         genGenPointerSet),
6933         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6934         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6935         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6936         genGenPointerSet),
6937         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6938         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6939         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6940         genGenPointerSet): fixed bug #892400
6941         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6942         to eliminate build warnings.
6943         * src/SDCCast.c (processParms),
6944         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6945         fixed bug 751859
6946         * support/valdiag/valdiag.py: added GCC to the list of defines active
6947         when compiling with gcc
6948
6949 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         * support/Util/SDCCerr.h,
6952         * support/Util/SDCCerr.c,
6953         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6954         with an incomplete type (fixed bug #883734)
6955         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6956
6957 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6958
6959         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6960
6961 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6962
6963         * src/SDCCast.c (decorateType),
6964         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6965         function pointer implementation
6966         * support/regression/tests/funptrs.c: added tests to verify both forms
6967         of function pointers work correctly. Added tests to verify parameters
6968         are passed in the correct order.
6969
6970 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6971
6972         * device.c (regCompare): registers are sorted by ascending
6973         address and increasing size,
6974         * main.c (_pic16_finaliseOptions): removed the declaration
6975         of compiler macro MCU. Now a macro of the format pic18fxxxx
6976         will be defined from the command line
6977
6978 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6979             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6980
6981         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6982         PCOP_RLCF was overwritten!
6983         * gen.c (genSkip): commented out calls to pic16_emitcode,
6984         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6985         * (genlshTwo),
6986         * (genRRC): added debugging info,
6987         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6988         overwritten while shifting,
6989         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6990         overwritten while shifting,
6991         * (AccLsh),
6992         * (AccRsh),
6993         * (shiftLLeftOrResult),
6994         * (shiftRLeftOrResult),
6995         * (shiftRLong),
6996         * (shiftLLong): Implemented with pic16_emitpcode
6997         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6998         * (genLeftShift): Fixed bug, operand for shift by variable always
6999         was "and"ed with 0x0f,
7000         * (genLeftShiftLiteral),
7001         * (genrshTwo),
7002         * (genRightShiftLiteral): added debugging info,
7003         * (genrshFour): added comment,
7004         * (genRightShift): determined signedness from operand "left"
7005         instead of "result"
7006
7007 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7008
7009         * src/SDCCicode.c (geniCodeParms),
7010         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7011         function pointers, fixed function pointer bugs #861242 and #861896
7012
7013 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7014
7015         * device/include/c8051f000.h,
7016         * device/include/c8051f120.h,
7017         * device/include/c8051f300.h: added header files for Silicon
7018         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7019
7020 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7021
7022         * src/SDCCast.c (processParams): added new type flow and restructured
7023         (gatherAutoInit): added new type flow
7024         (addCast): cosmetic changes
7025         (getLeftResultType): added new type flow for array indices, patch
7026         provided by Stas, see FR #877103
7027         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7028         array index patch by Stas
7029         * src/SDCCast.h: added prototype getResultTypeFromType()
7030         * src/SDCCval.h,
7031         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7032         * src/pic/glue.c (pic14emitStaticSeg),
7033         * src/pic16/glue.c (pic16emitStaticSeg),
7034         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7035         for initialization of symbols
7036         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7037         * support/Util/SDCCerr.h:
7038         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7039         * .version: bumped version number to 2.3.8
7040         * device/include/Makefile.in (install),
7041         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7042         avoid warnings
7043
7044 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7045
7046         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7047         Slade Rich fixed an optimization bug
7048         * src/pic/pcodepeep.c,
7049         * src/pic/pcoderegs.c
7050         * doc/Makefile (install): added test for directory
7051
7052 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7053
7054         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7055         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7056         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7057         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7058         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7059         * as/mcs51/asexpr.c (term),
7060         * as/hc08/asexpr.c (term): fixed bug #887146
7061
7062 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7063
7064         * src/z80/gen.c (genMult): handle single byte result product
7065         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7066         DUMMY_READ_VOLATILE (fixed bug #886367)
7067
7068 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7069
7070         * support/regression/tests/libmullong.c: fixed logic, on little endian
7071         hosts we ended without a mullong_wrapper()
7072
7073 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7074
7075         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7076         virus/worm forged address usage.
7077
7078 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7079
7080         Fixed promotion, it should be done on AST level:
7081         * src/SDCCast.c (addCast): added promotion to int
7082         (decorateType): updated call to upCast()
7083         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7084         usualUnaryConversions()
7085
7086 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7087
7088         * support/regression/tests/literalop.c (mulWrapper): Added a
7089         wrapper to remove integer overflow warnings.
7090
7091         * support/regression/tests/float_trans.c: Made work on host.
7092
7093         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7094         location of sz80.
7095
7096         * support/regression/generate-cases.py (main): Changed from inline
7097         to a main method.
7098
7099         * doc/Makefile (install): Changed to depth first to get rid of
7100         missing directory install warning.
7101
7102         * as/Makefile (install-doc): Made work on Mac.
7103
7104 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7105
7106         * src/SDCCast.c: added an additional type flow in decorateType() of
7107         opposite direction, see feature request #860006; it's enabled at runtime
7108         by setting the environment variable SDCC_NEWTYPEFLOW
7109         * src/SDCCast.h: changed prototype of decorateType()
7110         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7111         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7112         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7113         see feature request #877103
7114         * src/SDCCval.c: updated call of decorateType()
7115         (valBitwise): fixed bug #882876
7116         (valMinus): added promotion
7117         (valLogicAndOr): result is unsigned
7118         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7119         * src/SDCCsymt.c (computeType),
7120         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7121         must not cause an unsigned operation
7122         * src/pic/glue (pic14emitRegularMap),
7123         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7124
7125 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7126
7127         * src/pic/pcode.c (PCodeID): commented out left over debug code
7128
7129 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7130
7131         * support/valdiag/tests/overflow.c: added shift tests
7132         * src/pic/device.c,
7133         * src/pic/gen.c,
7134         * src/pic/gen.h,
7135         * src/pic/glue.c,
7136         * src/pic/main.c,
7137         * src/pic/pcode.c,
7138         * src/pic/pcode.h,
7139         * src/pic/pcodepeep.c,
7140         * src/pic/pcoderegs.c,
7141         * src/pic/ralloc.c,
7142         * src/pic/ralloc.h: applied patch from Slade Rich;
7143         added support for multiple code pages and multiple RAM banks on the
7144         PIC 14 port. The ASM files now no longer simply assume all the
7145         code / RAM are in the same page / bank. This means the linker can
7146         safely allocate code/RAM of separate ASM files to different pages/banks.
7147         * doc/sdccman.lyx: added Slade's tips
7148         * src/mcs51/peeph.def: fixed bug #880768
7149
7150 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7151
7152         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7153         * src/SDCCast.c (decorateType): fixed bug #880197
7154
7155 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7156
7157         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7158         getopt.h.
7159
7160         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7161         strtof is not part of C89 and isn't included with Mac OS X.
7162
7163 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7164
7165         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7166         shiftL2Left2Result): fixed bug #879326
7167         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7168         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7169         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7170         address fetch for clr instruction
7171         * device/lib/hc08/_mulint.c: created optimized assembly version
7172         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7173
7174 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7175
7176         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7177         proposed in FR #877103
7178
7179 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7180
7181         * src/SDCCval.c (cheapestVal): added missing checks
7182         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7183         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7184
7185 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7186
7187         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7188         equal operands
7189
7190 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7191
7192         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7193         loaded with the linker search paths (-L arguments) and the libraries
7194         to be linked with the current source (-l arguments). Changes
7195         currently will affect only the pic16 port.
7196         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7197         include path the port specific paths and port specific libraries,
7198         * gplink command now contains the $3 argument,
7199         * src/pic16/device.h,
7200         * src/pic16/device.c,: structure PIC_device is made public and
7201         renamed to PIC16_device, the same for variable Pics which is renamed
7202         to Pics16. Updated all references to them.
7203         * src/pic16/glue.c (pic16glue): corrected bug with code
7204         initialization which bypassed the variable initializations block.
7205
7206         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7207         COMPILE_FLAGS and added the --nostdinc option
7208
7209 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7210
7211         * device/include/mc68hc908jb8.h: Register defs for another member
7212         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7213
7214 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7215
7216         Documenting changes from previous commits.
7217         * configure.in (version 1.56),
7218         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7219         when generating output files to configure the pic16 library,
7220         but now I've commented it out, since gputils aren't installed in the
7221         SF compile farm, so library won't compile
7222
7223         * device/lib/Makefile.in (version 1.56): initially I've added in
7224         target 'all' the prerequestive 'model-pic16' so it compiled the
7225         pic16 library, but now I've commented it out for the same reasons
7226         above,
7227         * added targets 'model-pic16' and 'objects-pic16' to compile the
7228         library
7229         * added target 'port-specific-objects-pic16' to handle the
7230         generated libraries and copy them into the build/ directory
7231         * added target 'clean-intermediate-pic16' to clean intermediate
7232         files into pic16 directory
7233         * in target 'installdirs' added line to create directory pic16 in
7234         the installation path
7235
7236         * device/include/Makefile.in (version 1.11): in target 'install'
7237         added lines to copy all header files to installation path,
7238         * in target 'installdirs' added line create directory for pic16
7239         headers in the installation path
7240
7241 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7242
7243         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7244          a function call
7245
7246 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7247
7248         * configure,
7249         * device/lib/configure.in,
7250         * device/lib/configure: fixed for autoconf 2.57
7251
7252 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7253
7254         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7255         option so that it actually works. Made it specific to the z80, since
7256         the gbz80 doesn't have these kinds of I/O ports.
7257
7258 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7259
7260         * device/include/z180.h,
7261         * device/lib/_memcpy.c,
7262         * device/lib/_memmove.c,
7263         * device/lib/_mulint.c,
7264         * device/lib/ser_ir.c,
7265         * device/lib/ser_ir_cts_rts.c,
7266         * device/lib/_strcmp.c,
7267         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7268         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7269         portmode; added deprecation warning for bank= and protmode= forms.
7270         Also, guard against buffer overflow.
7271         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7272
7273 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7274
7275         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7276         changed interrupt vector table generation to only emit declared vectors.
7277         * device/include/Makefile.in: added missing backslash
7278         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7279
7280 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7281
7282         Mainly changes to support compilation of the device libraries
7283         * src/pic16/device.c: stack is allocated via symbol and not
7284         via literal number. The symbol is placed in the corresponding
7285         position of the data ram
7286         * (pic16_dump_section): relocatable and absolute uninitialized
7287         data are now emitted in sorted order to reduce section naming,
7288         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7289         weren't marked as being in the access bank,
7290
7291 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7292
7293         Added portion of GNU PIC Library under the directory
7294         device/include/pic16 and device/lib/pic16. These files
7295         contain the declarations of SFRs for the PIC18Fxx2 devices.
7296         The directory is initialized via configure from toplevel.
7297
7298 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7299
7300         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7301         the spilllocations to be compared correctly
7302
7303 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7304
7305         * src/SDCCast.c (decorateType): fixed bug introduced today
7306
7307 2004-01-12  Borut Razem <borut.razem AT siol.net>
7308
7309         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7310         doc/sdccman.lyx: upper case pragmas are deprecated
7311
7312 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7313
7314         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7315         in simpler and even better code
7316
7317 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7318
7319         * src/SDCCicode.c (operandOperation): fixed bug #874819
7320         * src/SDCCast.c (decorateType): fixed
7321         char foo (unsigned long ul) { return ul > 0; }
7322
7323 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7324
7325         * doc/sdccman.lyx: Moved and added some sections, small changes
7326         all over. Telling LaTeX to be less strict with word spacing
7327         to better keep the right margin. Changed some notes about
7328         maintainance of the ports in section 3.2.1 - is it OK like this?
7329
7330 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7331
7332         SDCC source changes:
7333         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7334         convilong): modified to inform the pic16 port that builtin functions
7335         are external
7336
7337         PIC16 PORT specific changes:
7338         * src/pic16/device.c pic16_dump_equates() added,
7339         processor registers declared internally by the port are emitted in
7340         the translation as equates,
7341         * src/pic16/gen.c: inline code is passed unprocessed to the
7342         translation,
7343         * (pic16_popGetLit2): fnuction modified to take second operand as
7344         pCodeOp pointer and not as literal,
7345         * (popRegFromIdx): prefixed with pic16_,
7346         * (pic16_popCombine2): modified to receive already allocated pCode
7347         operands,
7348         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7349         * (genFunction): initializes local stack frame and pushes on stack
7350         all the registers used by this function,
7351         * (genEndFunction): restores all registers from stack and restores
7352         stack frame,
7353         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7354         improvements,
7355         * (pic16glue): changed the program startup sequence,
7356         * added new dbName code 'A' for functions placed in absolute section
7357         * src/pic16/main.c: added function attribute _naked,
7358         * added pragma 'code' to place a fnuction at an absolute address,
7359         * added command line arguments --debug-ralloc and --pcode-verbose,
7360         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7361         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7362         * (pic16_newpCodeOpLit2): modified to take the second operand as
7363         pCodeOp pointer,
7364         * (pic16_printpBlock): modified to emit each function in a separate
7365         section,
7366         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7367         UPPER for immediate operands,
7368         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7369         instruction,
7370         * src/pic16/peeph.def: all peepholes with movff are commented out,
7371         because there is a problem in the pcode peep optimizer,
7372         * src/pic16/ralloc.c: the register allocator can now reuse local
7373         function symbols for another function. This saves register usage.
7374         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7375
7376         Added file src/pic16/NOTES with information about program writing on
7377         the current port version.
7378
7379 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7380
7381         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7382         and peephole 252 (array access)
7383
7384 2004-01-09  Borut Razem <borut.razem AT siol.net>
7385
7386         * src/SDCCmain.c : fixed #872250: -l command line defined library
7387           files are scanned before standard library files
7388
7389 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7390
7391         * src/SDCCast.c (decorateType): fixed bug #874046
7392
7393 2004-01-09  Borut Razem <borut.razem AT siol.net>
7394
7395         * support/scripts/sdcc.nsi: remove previous installation
7396
7397 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7398
7399         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7400         bytes for last interrupt vector (mcs51)
7401         * sdcc.spec: fixed typo
7402
7403 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7404
7405         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7406         gen51Code): more efficient parameter receive for --model-large
7407         ("bug" #845294)
7408
7409 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7410
7411         * src/ds390/main.c,
7412         * src/z80/main.c: added missed needLinkerScript flags (more than
7413         one port structure defined in these file)
7414         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7415         bug #795325
7416
7417 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7418
7419         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7420         * src/port.h: added flag needLinkerScript in port->linker
7421         structure to inform whether to create a .lnk file or not,
7422         * src/avr/main.c,
7423         * src/ds390/main.c,
7424         * src/hc08/main.c,
7425         * src/mcs51/main.c,
7426         * src/pic/main.c,
7427         * src/pic16/main.c,
7428         * src/xa51/main.c,
7429         * src/z80/main.c: changed appropriately to configure
7430         needLinkerScript flag
7431         * src/pic/gen.c,
7432         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7433         * src/pic/glue.c: added variable udata_section_name to
7434         override default uninitialized data segment definition for
7435         devices only with SHAREBANK memory (reported from Erik Epetrich)
7436         * (pic14emitOverlay): modified to emit a commented overlay segment
7437         directive when no overlay data exist
7438         * (picglue): modified to emit uninitialized data segment
7439         according to udata_section_name
7440         * src/pic/main.c (_pic14_parseOptions): added command line
7441         options --udata-section-name=[name] to override default
7442         udata definition name
7443         * modified _linkCmd and _asmCmd to include compiler passed
7444         arguments via -W option
7445         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7446         object file from '.rel' to '.o' in port->linker structure,
7447         changed size of fptr from 2 to 3 in port structure
7448
7449 2004-01-07  Borut Razem <borut.razem AT siol.net>
7450
7451         * support/scripts/sdcc.nsi: update PATH
7452         * support/scripts/sdcc.ico: craeted
7453
7454 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7455
7456         * device/include/Makefile.in: fix install
7457         * doc/Makefile: fix install
7458
7459 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7460
7461         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7462         in bug #860505
7463         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7464         how the function variable allocation summary is displayed; also
7465         include information about variables allocated to the overlay
7466         segment
7467
7468 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7469
7470         * as/mcs51/lkmain.c: Help about -Y option
7471         * as/mcs51/lkarea.c: Fixed gcc warnings
7472
7473 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7474
7475         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7476         fixed warning
7477         * support/valdiag/tests/overflow.c: added
7478         * src/SDCCast.c (decorateType),
7479         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7480         LEFT_OP (left shift)
7481
7482 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7483
7484         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7485         (default behaviour).
7486
7487 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7488
7489         A python script to validate compiler diagnostic messages. It can be
7490         used to verify that sdcc complains about bad c source code and
7491         gives a good location of the error.
7492         * support/valdiag/Makefile,
7493         * support/valdiag/valdiag.py,
7494         * support/valdiag/tests/*
7495
7496 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7497
7498         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7499         * src/SDCCsymt.c (newEnumType),
7500         * src/SDCCsymt.h
7501         * support/Util/SDCCerr.c,
7502         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7503         enum related bugs.
7504         * support/regression/tests/enum.c: added test for enum values that
7505         require at least 2 bytes of storage.
7506
7507 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7508
7509         * src/common.h: added ifndef/define/endif macros
7510         around the header file.
7511         Bug reported from Jesus Calvino-Fraga
7512
7513 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7514
7515         * sdcc.spec: updated
7516         * device/include/Makefile.in: don't install CVS directories
7517         * device/lib/Makefile.in: added removal of CVS directories after install
7518         * doc/Makefile: fixed install, added local_icons
7519         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7520         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7521         * src/ds390/gen.c (genRightShift): fixed bug #870788
7522         * src/SDCCast.c (decorateType): fixed bug #870781
7523
7524 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7525
7526         PIC16 port related changes:
7527         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7528         added variable stackPos,
7529
7530         * gen.c: genCall, assignResultValue: added support for
7531         pushing/retrieving function parameters to/from stack,
7532         genFunction,genEndFunction: setup stack frame for the
7533         generated function,
7534         genAddrOf: will be changed according to bug 863624
7535
7536         * added files genutils.c and genutils.h which contain gen*
7537         debugged and optimised functions extracted from gen.c
7538
7539         * glue.c: added variable 'externs' which holds extern symbols,
7540         pic16emitRegularMap: is modified to properly handle relocatable
7541          symbols under the new scheme,
7542         pic16createInterruptVect: is modified
7543         pic16printPublics: is modified to emit 'global' assembler directives,
7544         added pic16_printExterns to print extern symbols,
7545         pic16glue: initializes stack/frame pointer in the beginning of
7546         the assembly output. Temporary hack, will be corrected later,
7547         because gplink yet does not support stack and SDCC does not
7548         yet support a type of crt0.o object to create the final binary.
7549
7550         * Removed many lines that contain 8051 legacy code.
7551         * The code is finally placed under a 'code' directive.
7552         * Added port specific options.
7553
7554         * _process_pragma: simplified since now we do not need *special*
7555         include file to define SFR registers. But a separate header
7556         will be needed. This will be developed later.
7557         * _pic16_parseOptions: added, parses port specific options:
7558         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7559         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7560         --preplace-udata-with=
7561
7562         * _pic16_setDefaultOptions: modified to initialize section names,
7563         but hack is temporarly out of order since it needs improvement.
7564         * _pic16_genAssemblerPreamble: configuration words are emitted by
7565         their address instead of their name. This part is incomplete and
7566         supports only the 18Fxx2 devices. Other devices will emit an error
7567         during assembly since they do not contain the same set of config
7568         registers
7569         * _pic16_genIVT: is modified,
7570
7571         * pcode.c: added definitions for some hardware registers that are needed
7572         for stack support
7573         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7574         All PCI entries are updated. Now LFSR is supported.
7575         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7576         * added pic16_newpCodeOpLit2 to support instructions with
7577         two literal arguments
7578         * pic16_pCode2str: corrected code that emits assembler instructions
7579         with two literal operands and those that have an access bit modifier
7580         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7581         this fixes a bug which caused some labels to be lost, when an
7582         assembler directive was added, i.e. banksel,
7583         * pic16_FixRegisterBanking: improved logic that causes the insertion
7584         of bank switching,
7585         * InlineFunction: functions that are called once, are not any more
7586         inlined. This can be a port option in the future,
7587
7588         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7589
7590         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7591         hold the corresponding uninitialized symbols,
7592         * pic16_allocProcessorRegister: registers have explicit marked the
7593         accessBank field,
7594         * pic16_allocInternalRegister: registers are explicit marked as
7595         not used,
7596         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7597         processing list, so bit registers were lost,
7598         *
7599
7600         * ralloc.h: added field 'accessBank' and original symbol operand
7601         in register definition,
7602         * removed the field isMapped from register definition,
7603
7604         ** Several functions have been removed from various sources:
7605         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7606         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7607         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7608         pic16_assignRelocatableRegisters
7609
7610         ** others have been introduced:
7611         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7612         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7613
7614 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7615
7616         * support/scripts/inc2h.pl: changed definition of BIT_AT
7617         to emit 'sbit at' instead of 'bit at'. This was a request.
7618
7619         PIC16 port related preliminary changes:
7620         * gen.c: prefixed function popRegFromString with
7621         pic16_ and all references to it corrected
7622         * pcode.c: all pic16_pc_* hardware registers prefixed
7623         with underscore (_),
7624         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7625         * ralloc.c: newReg(): when register is REG_SFR then
7626         set address to rIdx,
7627         pic16_allocProcessorRegister(): marks register wasUsed=0
7628         pic16_writeUsedRegs(): added a call to assign processor
7629         registers via pic16_assignFixedRegisters
7630
7631 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7632
7633         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7634         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7635         variables in unused register banks.  Also the SSEG is placed
7636         wherever there is enough space for it, and IDATA can be anywhere
7637         in internal RAM.  For now compile using -Wl-Y[stack_size].
7638         The mem file is different for this option as well, since it
7639         makes no sense of talking about DSEG lenght.
7640
7641 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7642
7643         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7644         in certain cases, e.g. when ROM assignment, patch provided
7645         from Albert den Haan.
7646
7647 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7648
7649         Many signedness and type propagation fixes:
7650         * src/SDCCicode.c: made geniCodeCast() static
7651         replaced SPEC_ by IS_ (cosmetic)
7652         (operandOperation): fixed div and mod operation
7653         (usualBinaryConversions): added support for promotion of char
7654         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7655         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7656         (geniCodeAdd): an array index will stay unsigned, even if promoted
7657         from char to int
7658         (geniCodeArray): ditto
7659         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7660         * src/SDCCsymt.c (computeType): added more support for char;
7661         promotion of char is selectable by promoteCharToInt, fixed signedness
7662         for all cases
7663         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7664         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7665         * src/SDCCval (val*): replaced signedness calculation by
7666         computeType()
7667         rearranged if-branches (cosmetic)
7668         (valShift): added warning W_SHIFT_CHANGED
7669         (valCompare): fixed problem with different types
7670         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7671         * support/regression/tests/literalop.c: added many cases
7672         * support/regression/tests/ast_constant_folding.c: changed finally to
7673         'unsigned int'
7674         * .version: new year, new version: 2.3.7
7675         * src/SDCCmain.c (main): applied patch #866468
7676         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7677         provided by Scott Bronson
7678         * doc/sdccman.lyx: updated documentation for sdcdb
7679         updated and added chapter tips
7680
7681 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7682
7683         * src/SDCCsymt.h: missing from yesterday's commits
7684
7685 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7686
7687         * src/SDCC.y (struct_or_union_specifier),
7688         * support/Util/SDCCerr.c,
7689         * support/Util/SDCCerr.h: verify that struct & union tags are used
7690         as declared.
7691
7692 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7693
7694         * src/SDCCglobl.h: missing from yesterday's commits
7695
7696 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7697
7698         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7699         sft_attributes, struct_declaration, parameter_declaration,
7700         type_name, start_block, declaration_list),
7701         * src/SDCC.lex (check_type): support redefinition of typedef names
7702
7703 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7704
7705         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7706         aligned xdata arrays. Erik helped me with the if clause.
7707
7708 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7709
7710         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7711         warning
7712
7713 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7714
7715         * src/SDCCast.h,
7716         * src/SDCCast.c (newAst_),
7717         * src/SDCCicode.h,
7718         * src/SDCCicode.c (ast2iCode, newiCode),
7719         * src/SDCCglobl.h,
7720         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7721         expr, statement, expression_statement, selection_statement,
7722         iteration_statement, expr_opt, jump_statement): foundation for tracking
7723         sequence points
7724         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7725         point code too)
7726
7727 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7728
7729         * support/Util/SDCCerr.c,
7730         * src/SDCCast.h,
7731         * src/SDCCast.c (createCase, createDefault, decorateType),
7732         * src/SDCClabel.c (labelUnreach),
7733         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7734         to error messages.
7735         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7736         (with thanks to Stas Sergeev)
7737         * device/include/time.h,
7738         * device/lib/time.c (CheckTime): suppress unreachable code warning
7739
7740 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7741
7742         * src/SDCCast.c (createIvalCharPtr),
7743         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7744         bug #753752)
7745         * support/regression/tests/nullstring.c: tests for these two bugs
7746
7747 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7748
7749         * support/Util/SDCCerr.h,
7750         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7751         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7752         about storage class and 'at' used inside struct or union
7753         * src/SDCCBBlock.c (iCodeFromeBBlock),
7754         * src/SDCCcse.c (ifxOptimize),
7755         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7756         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7757         printIval, emitStaticSeg, emitOverlay),
7758         * src/SDCClabel.c (deleteIfx),
7759         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7760         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7761         gatherAutoInit, processParms),
7762         * support/Util/SDCCerr.h,
7763         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7764         reporting for post-parse errors.
7765
7766 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7767
7768         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7769         implicit casts via union; they don't work on big endian systems
7770         (possible fix for bug #861138)
7771
7772 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7773
7774         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7775         * src/mcs51/main.c: fixed the fix for bug #737001
7776
7777 2003-12-15  Borut Razem <borut.razem AT siol.net>
7778
7779         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7780
7781 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7782
7783         * support/makebin/makebin.c: put output in binary mode
7784
7785 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7786
7787         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7788         xdata and data memory on startup. Set the environment variable
7789         SDCC_NOGENRAMCLEAR to disable this.
7790         * src/mcs51/peephole.def,
7791         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7792         (allows non-interrupt and interrupt code to safely compete for a resource
7793         without the non-interrupt code having to disable interrupts)
7794
7795 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7796
7797         * src/SDCCicode.c (geniCodeAdd),
7798         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7799         with valFromType if type might be a pointer and host is big endian).
7800         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7801         types, not just integer types.
7802         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7803         multiply defined with mismatching "at" address.
7804
7805 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7806
7807         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7808         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7809         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7810         with embedded nulls (fixed bug #753752)
7811
7812 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7813
7814         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7815         Apparently this did not see much testing (endless loop)
7816
7817 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7818
7819         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7820
7821 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7822
7823         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7824         gracefully handle NULL memmap pointers
7825
7826 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7827
7828         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7829         instead of deleting the iCode when an operand is volatile
7830         * src/z80/gen.c (genDummyRead),
7831         * src/mcs51/gen.c (genDummyRead),
7832         * src/ds390/gen.c (genDummyRead),
7833         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7834         not just IC_RIGHT
7835         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7836         * src/SDCC.y: fixed bug #850420
7837
7838 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7839
7840         Applied z80 i/o port patch from Peter Townson and fixed some operators
7841         to better handle operands in A register.
7842         * device/include/z180.h
7843         * src/SDCC.y
7844         * src/SDCCglue.c
7845         * src/z80/gen.c
7846         * src/z80/gen.h
7847         * src/z80/main.c
7848         * src/z80/peeph-z80.def
7849         * src/z80/peeph.def
7850         * src/z80/z80.h
7851
7852 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7853
7854         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7855
7856 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7857
7858         * device/lib/hc08/_mullong.c: Removed extra #endif
7859
7860 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7861
7862         * sim/ucsim/hc08.src/inst.cc,
7863         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7864         carries from x to h
7865         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7866         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7867         * device/include/stdarg.h: fixed varargs for hc08
7868         * device/lib/Makefile.in,
7869         * device/lib/hc08/Makefile,
7870         * device/lib/hc08/_mulint.c,
7871         * device/lib/hc08/_mullong.c: fixed some endian problems
7872
7873 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7874
7875         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7876         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7877         * device/lib/_gptrget.c,
7878         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7879
7880 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7881
7882         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7883         * src/SDCCast.c (astErrors): fixed bug #846007
7884         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7885
7886 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7887
7888         * src/SDCCast.c (decorateType): disabled a transformation I added in
7889         revision 1.188 (access to fields of a structure at an absolute address);
7890         it breaks with bitfields, extern declarations, and gcse analysis.
7891         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7892         could be assigned through a pointer, so don't complain.
7893         * src/SDCCast.c (astErrors),
7894         * src/SDCCast.h,
7895         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7896
7897 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7898
7899         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7900         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7901         output of __config directives, since gpasm now supports them
7902         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7903         pre-processor macro, i.e. -DMCU=p18f452
7904         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7905         and modified to handle 'cast' icode similarly to '=' icode
7906         * src/pic16/device.h (typedef struct PIC_device): added field
7907         'extMIface' to indicate that chip has external memory interface
7908         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7909         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7910         18F8720
7911
7912 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7913
7914         * src/SDCC.y (pointer): fixed bug #846006
7915         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7916         * src/SDCCast.c (decorateType): fixed bug #846009
7917         * src/ds390/peeph.def,
7918         * src/ds390/gen.c (genAnd, genOr),
7919         * src/mcs51/peeph.def,
7920         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7921
7922 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7923
7924         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7925         * src/SDCCdflow.c
7926         * src/SDCCcse.c
7927         * src/SDCCcse.h
7928         * src/SDCCBBlock.h
7929         * src/SDCCBBlock.c
7930
7931 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7932
7933         fixed bug #845089
7934         * src/SDCCbitv.h,
7935         * src/SDCCbitv.c: added function to free a bitvector
7936         * src/SDCClrange.h,
7937         * src/SDCClrange.c: added function to recompute the liveranges
7938         * src/avr/ralloc.c,
7939         * src/ds390/ralloc.c,
7940         * src/hc08/ralloc.c,
7941         * src/mcs51/ralloc.c,
7942         * src/pic/ralloc.c,
7943         * src/pic16/ralloc.c,
7944         * src/xa51/ralloc.c,
7945         * src/z80/ralloc.c: recompute the liveranges after register packing
7946
7947 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7948
7949         * src/SDCCloop.c (newInduction): fixed bug #845630
7950
7951 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7952
7953         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7954         inadvertantly left behind from my 2003-11-12 change
7955
7956 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7957
7958         Updated headers I neglected to commit yesterday.
7959         * src/SDCClrange.h,
7960         * src/SDCCicode.h
7961
7962 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7963
7964         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7965         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7966         * src/SDCCopt.c (eBBlockFromiCode),
7967         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7968         the creation of the key hash table from the sequencing so it can be used
7969         earlier (for some GCSE bug fixes still pending)
7970
7971 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7972
7973         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7974         * support/regression/tests/addsub.c: testing genPlus shortcut
7975
7976 2003-11-15  Borut Razem <borut.razem AT siol.net>
7977
7978         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7979
7980 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7981
7982         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7983         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7984         ordering is immaterial.
7985         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7986
7987 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7988
7989         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7990         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7991         (SIGSEV) of bug #840381
7992         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7993         unlink new file before rename if new and old filenames are the same)
7994
7995 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7996
7997         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7998         uninitialized variables) for the mcs51. Set environment variable
7999         SDCC_GENRAMCLEAR to test.
8000         xdata initialization slightly shorter
8001
8002 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8003
8004         * src/SDCCsymt.h,
8005         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8006         #838241 & 780691 (basicly the same bug)
8007         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8008         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8009
8010 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8011
8012         * src/SDCCmain.c (linkEdit): "fix" #834252
8013
8014 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8015
8016         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8017         * src/SDCCast.h,
8018         * src/SDCC.y: fixed bug #819403
8019
8020 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8021
8022         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8023         the reentrant attribute.
8024         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8025         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8026         simulation
8027         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8028         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8029         erroneously reduced to a literal.
8030         * src/hc08/ralloc.c (packRegisters, rematStr),
8031         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8032         some cases
8033
8034 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8035
8036         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8037         * doc/sdccman.lyx: changed from 'article' to 'book'
8038         * doc/Makefile: readded test_suite_spec and cdbfileformat
8039
8040 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8041
8042         * device/include/stdlib.h: include malloc.h to comply with ANSI
8043         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8044
8045 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8046
8047         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8048         * doc/clean.mk: also remove *.out files
8049         * doc/sdccman.lyx: some additions, larger top/bottom margins
8050
8051 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8052
8053         * src/SDCC.y: fixed bug #837365
8054         * support/regression/tests/bitopcse.c
8055         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8056         a symbol (might be valop instead)
8057         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8058         * device/lib/clean.mk: added hc08 to the cleaning list
8059
8060 2003-11-04  Borut Razem <borut.razem AT siol.net>
8061
8062         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8063           made 2003-11-04
8064         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8065           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8066           malloc is declared in standard stdlib.h
8067
8068 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8069
8070         * device/lib/hc08/Makefile: need to clean .rel not .o files
8071         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8072
8073 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8074
8075         * src/port.h,
8076         * src/hc08/main.c,
8077         * src/mcs51/main.c,
8078         * src/ds390/main.c,
8079         * src/z80/main.c,
8080         * src/avr/main.c,
8081         * src/pic/main.c,
8082         * src/pic16/main.c,
8083         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8084         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8085         tests (which uses the port's oclsExpense function)
8086         * src/SDCC.y,
8087         * src/SDCCast.c,
8088         * src/SDCCicode.c,
8089         * src/hc08/gen.c,
8090         * src/ds390/gen.c,
8091         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8092
8093 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8094
8095         * src/SDCCcse.c (ifxOptimize),
8096         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8097         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8098         deleting the IFX iCode.
8099         * src/hc08/ralloc.c: reduced unneeded slocs
8100         * src/hc08/gen.c: fixed bug in asmopToBoolean
8101
8102 2003-11-04  Borut Razem <borut.razem AT siol.net>
8103
8104         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8105           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8106           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8107           transferred to configure
8108
8109 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8110
8111         Use headers defined in the C[++] standards:
8112         * sim/ucsim/gui.src/serio.src/fileio.cc
8113         * sim/ucsim/gui.src/serio.src/frontend.cc
8114         * sim/ucsim/gui.src/serio.src/main.cc
8115         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8116         * support/Util/NewAlloc.c
8117         * as/hc08/lklibr.c
8118         * as/mcs51/lklibr.c
8119         * as/z80/aslist.c
8120         * as/z80/assym.c
8121
8122 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8123
8124         * Added MSVC projects for hc08 assembler and linker:
8125         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8126         /as/hc08/link_hc08.dsp
8127
8128 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8129
8130         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8131
8132 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8133
8134         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8135
8136 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8137
8138         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8139
8140 2003-10-31  Borut Razem <borut.razem AT siol.net>
8141
8142         * support/cpp2/cpplib.h,
8143           support/cpp2/cpplib.c,
8144           support/cpp2/cpplex.c,
8145           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8146           to switch _asm block preprocessing on / off. Default is
8147           #pragma preproc_asm +
8148
8149 2003-10-31  Borut Razem <borut.razem AT siol.net>
8150
8151         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8152           when outputting comment blocks (when executed with -C option) and
8153           _asm (SDCPP specific) blocks
8154
8155 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8156
8157         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8158
8159 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8160
8161         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8162
8163 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8164
8165         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8166         * src/SDCCast.c (decorateType): fixed bug #832664
8167
8168 2003-10-31  Borut Razem <borut.razem AT siol.net>
8169
8170         * support\cpp2\cpplex.c: fixed for SDCPP:
8171           comments(when executed with -C option) and _asm blocks
8172           were included even if they where in skipped #if block.
8173           Applied solution from GCC cpp 3.3.2
8174
8175 2003-10-31  Borut Razem <borut.razem AT siol.net>
8176
8177         * src/SDCC.lex: sdcc now understands both formats:
8178           '# <line_number> <file_name>' and
8179           '#line <line_number> <file_name>'
8180         * support/cpp2/cppmain.c: sdcpp now generates the standard
8181           '# <line_number> <file_name>' instead of former
8182           '#line <line_number> <file_name>'
8183
8184 2003-10-30  Borut Razem <borut.razem AT siol.net>
8185
8186         * support/cpp2/cpphash.h,
8187         * support/cpp2/cpplib.h
8188         * support/cpp2/cpplex.c,
8189         * support/cpp2/cppmain.c,
8190         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8191
8192 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8193
8194         Fixed a number of problems revealed by bug #827883.
8195         * src/SDCCloop.c (loopInvariants): Spill location of the
8196         result operand should be recomputed if extracted from
8197         a loop. Also, don't extract assignments of an iTemp
8198         from a literal.
8199         * src/SDCCast.c (isConformingBody): loop reversal should
8200         not occur if the control variable is involved with a
8201         relational operator.
8202
8203 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8204
8205         * .version: bumped to 2.3.6 to reflect the big improvements
8206         made by Erik and Klaus. Thanks!
8207
8208 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8209
8210         Replaced the livrange code.
8211         * src/SDCClrange.c: added new LR code
8212         * src/SDCCloop.c,
8213         * src/SDCCBBlock.h: removed remainig parts from old LR code
8214         * src/ds390/ralloc.c,
8215         * src/ds390/gen.c: minor fixes to make it work with new code
8216
8217 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8218
8219         * as/hc08/asm.h,
8220         * as/hc08/lkrloc.c,
8221         * src/hc08/gen.c,
8222         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8223         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8224         (tweaked fix for bug #818696)
8225
8226 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8227
8228         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8229
8230 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8231
8232         * src/SDCCmain.c,
8233         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8234         * src/mcs51/gen.c (gencjneshort),
8235         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8236         more efficient (per Scott Bronson's suggestion)
8237
8238 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8239
8240         Extended the semantics of the critical keyword to include
8241         individual statements. See RFE #827755 and #799831
8242         * src/SDCC.y
8243         * src/SDCCicode.c
8244         * src/SDCCopt.c
8245         * src/SDCCast.c
8246         * support/Util/SDCCerr.c
8247         * support/Util/SDCCerr.h
8248         * src/mcs51/gen.c
8249         * src/ds390/gen.c
8250         * src/hc08/gen.c
8251
8252 2003-10-19  Borut Razem <borut.razem AT siol.net>
8253
8254         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8255
8256 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8257
8258         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8259         Fixed bug #818696
8260         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8261         and predecrement operand is displayed
8262
8263 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8264
8265         * src/SDCCval.c (valMinus): fixed bug #826041
8266
8267 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8268
8269         Some hc08 related updates that I missed earlier
8270         * sim/ucsim/stypes.h
8271         * support/regression/ports/hc08/spec.mk
8272
8273 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8274
8275         New target "hc08" for the Motorola 68hc08 family of micros
8276
8277         * configure
8278         * configure.in
8279         * Makefile
8280         * src/hc08/*
8281         * src/SDCCmain.c
8282         * src/port.h
8283         * sim/ucsim/hc08.src/*
8284         * sim/ucsim/configure.in
8285         * src/ucsim/configure
8286         * sim/ucsim/packages_in.mk
8287         * as/hc08/*
8288         * as/Makefile
8289         * device/include/mc68hc908qy.h
8290         * device/lib/hc08/*
8291         * device/lib/Makefile.in
8292         * support/regression/ports/hc08/*
8293         * support/regression/Makefile
8294
8295 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8296
8297         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8298         regression test
8299         * src/ds390/gen.c (genCast): fixed bug #821957
8300
8301 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8302
8303         * device/lib/logf.c: "fixed" overlay bug
8304         * support/regression/ports/host/spec.mk: added m library
8305         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8306         * support/regression/tests/float_trans: added (for Eric)
8307
8308 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8309
8310         * src/mcs51/gen.c (genCpl): fixed bug
8311         http://sf.net/mailarchive/message.php?msg_id=6263915
8312
8313 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8314
8315         * src/SDCCast.c (decorateType): added extended constant folding
8316         * src/SDCCsymt.c (computeType): cleanup
8317         * src/SDCCval.c (valShift): minor optimization
8318         * support/regression/tests/ast_constant_folding.c: added
8319
8320 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8321
8322         * src/SDCCmain.c: removed some unintended changes
8323
8324 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8325
8326         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8327         * src/z80/gen.c: fixed part of bug #817589
8328         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8329
8330 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8331
8332         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8333         * src/SDCCcflow.c
8334         * src/SDCCcse.c
8335         * src/SDCCdflow.c
8336         * src/SDCClabel.c
8337         * src/SDCClrange.c
8338         * src/SDCCmem.c
8339         * src/SDCCopt.c
8340         * src/SDCCpeeph.c
8341         * src/SDCCset.c
8342         * src/avr/ralloc.c
8343         * src/ds390/ralloc.c
8344         * src/izt/ralloc.c
8345         * src/mcs51/ralloc.c
8346         * src/pic/ralloc.c
8347         * src/pic16/ralloc.c
8348         * src/xa51/ralloc.c
8349         * src/z80/ralloc.c
8350         * src/z80/gen.c: removed unused label "release:"
8351
8352 2003-10-06  Borut Razem <borut.razem AT siol.net>
8353
8354         * src/SDCC.lex: removed definition of unused variables
8355           save_optimize and save_options
8356
8357 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8358
8359         * clean.mk: removed '=' in "-maxdepth=1"
8360         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8361         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8362
8363 2003-10-06  Borut Razem <borut.razem AT siol.net>
8364
8365         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8366           my_unput() replaced by unput()
8367
8368 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8369
8370         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8371         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8372         type-punned pointer will break strict-aliasing rules"
8373         Old LR behaviour is again default; Klaus' LR can be choosen by
8374         defining the environment variable LRKLAUS
8375         * src/SDCCBBlock.h
8376         * src/SDCCloop.c
8377         * src/SDCClrange.c
8378         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8379         * clean.mk: fixed removal of files in bin/CVS/
8380         * device/lib/clean.mk: fixed removal of directories small and large
8381         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8382         * src/SDCCicode.c,
8383         * src/SDCCval.c: removed superflous test for pedantic
8384
8385 2003-10-05  Borut Razem <borut.razem AT siol.net>
8386
8387         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8388           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8389           message "unmatched #pragma SAVE and #pragma RESTORE"
8390
8391 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8392
8393         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8394           assembly, critical functions, atomic, nojtbound)
8395
8396 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8397
8398         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8399         * src/SDCCBBlock.h
8400         * src/SDCCloop.c
8401         * src/SDCCloop.h
8402         * src/SDCClrange.c
8403
8404 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8405
8406         * src/z80/gen.h,
8407         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8408         * src/mcs51/gen.h
8409         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8410         * src/ds390/gen.h
8411         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8412         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8413         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8414
8415 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8416
8417         * src/z80/gen.c (genRet): fixed bug #524753
8418         * src/z80/gen.c (genCast): fixed internal error on cast from
8419         pointer to long
8420         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8421         fix for bug #477835 to the z80
8422         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8423         for tracking iCodes in the peephole optimizer for z80
8424
8425 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8426
8427         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8428         the other part of bug #814548
8429         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8430
8431 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8432
8433         * src/SDCCcse.c: fixed part of bug #814548
8434
8435 2003-09-28  Borut Razem <borut.razem AT siol.net>
8436
8437         * src/asm.c: rewrite of printILine() to use temporary file instead
8438           a pipe
8439         * src/xa51/main.c: commented out declaration of int rewinds
8440
8441 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8442
8443         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8444
8445 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8446
8447         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8448         * src/asm.c (printILine): Fixed bug #811015
8449
8450 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8451
8452         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8453         freeing.
8454
8455 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8456
8457         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8458         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8459         to correctly handle general case of AOP_PAIRPTR
8460         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8461
8462 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8463
8464         * src/mcs51/ralloc.c (fillGaps),
8465         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8466         register positioning bug)
8467
8468 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8471
8472 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8473
8474         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8475         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8476         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8477         (ralloc doesn't intentionally do this now, but perhaps later)
8478         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8479         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8480         register positioning bugs (Fixed bug #762602 and #795325)
8481         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8482         (Fixed bug #808779)
8483         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8484         lines that --i-code-in-asm generates
8485
8486 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8487
8488         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8489         trying to fclose a FILE* that was already closed.
8490
8491 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8492
8493         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8494         of const struct should be treated as if const themselves)
8495
8496 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8497
8498         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8499
8500 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8501
8502         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8503         Unix (/n) and DOS (/r/n) line terminations.
8504
8505 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8506
8507         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8508         bug #613775
8509
8510 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8511
8512         * src/mcs51/gen.c (genFunction, genEndFunction),
8513         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8514         and restore of EA so that stack offsets to parameters are
8515         correct when using both critical and reentrant/stack-auto.
8516         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8517         size (can be triggered in error if sloc is shared between
8518         different sized objects)
8519         * device/include/float.h: fixed macros to explicitly use
8520         unsigned long where needed
8521
8522 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8523
8524         Feature req. 799831: added code to allow nesting of critical functions
8525         * src/mcs51/gen.c (genFunction, genEndFunction)
8526         * src/ds390/gen.c (genFunction, genEndFunction)
8527
8528 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8529
8530         * src/SDCCsymt.c (sclsFromPtr),
8531         * src/SDCCsymt.h,
8532         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8533         support for standard C idiom of memory mapped variables; for
8534         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8535         to xdata int at 0x1234 tempvar = 1.
8536         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8537         provided by Akiya ISHIDA
8538
8539 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8540
8541         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8542         * src/SDCCval.c (constVal): added reduction from int to char
8543         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8544         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8545         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8546         to ignore the sign
8547         * support/regression/tests/shifts.c: fixed
8548
8549 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8550
8551         * src/z80/gen.c (genXor): Fixed bug #805445
8552
8553 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8554
8555         Fixed bug #621531 (const & volatile confusion in the type chain).
8556         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8557         refer to the const or volatile state of the pointer itself.
8558
8559         * src/SDCCast.c
8560         * src/SDCCglue.c
8561         * src/SDCCicode.c
8562         * src/SDCCsymt.c
8563         * src/SDCCval.c
8564         * src/SDCC.y
8565         * src/SDCCsymt.h
8566         * src/pic/gen.c
8567         * src/pic/ralloc.c
8568         * src/pic16/gen.c
8569         * src/pic16/ralloc.c
8570         * support/regression/tests/const.c
8571
8572 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8573
8574         When checking for duplicated modules, use absolute paths
8575         instead of relative paths.  Files changed:
8576
8577         * as/mcs51/lklib.c
8578         * link/z80/lklib.c
8579
8580 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8581
8582         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8583
8584 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8585
8586         * device/include/string.h: added size_t typedef, changed
8587         prototypes to use size_t, eliminated separate reentrant and
8588         non-reentrant declarations, added _memmove declaration
8589         * device/lib/_memcpy.c: changed to use size_t instead of int,
8590         changed /4 to >>2 to avoid division library call
8591         * device/lib/_memcmp.c,
8592         * device/lib/_memset.c,
8593         * device/lib/_strncat.c,
8594         * device/lib/_strncpy.c,
8595         * device/lib/_strncmp.c: changed to use size_t instead of int
8596         * device/lib/_memmove.c: new file (fixed bug #772294)
8597         * device/lib/Makefile.in: added _memmove.c
8598         * device/lib/z80/asm_strings.s: fixed bug #772290
8599         * support/regression/tests/bitfields.c: attempt to fix host assertion
8600         failure on amd64-unknown-linux2.2
8601
8602 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8603
8604         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8605         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8606         * as/z80/asmain.c (main): fixed bug #801766
8607
8608 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8609
8610         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8611         compilers
8612
8613 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8614
8615         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8616         reported in bug #800609
8617
8618 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8619
8620         * Top header beautifications in src/pic16 directory:
8621           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8622           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8623           pcoderegs.h, ralloc.c, ralloc.h
8624         * main.c: added top header and GPL license notice
8625         * pcode.c: fixed the if-conditional warning
8626
8627 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8628
8629         * device/lib/_mullong.c: replaced int by short for gcc
8630
8631 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8632
8633         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8634         and JUMPTABLE iCodes properly now (worked by accident before)
8635         * src/mcs51/gen.c (leftRightUseAcc),
8636         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8637         iCode properly now. Use getSize instead of nRegs since a & b
8638         aren't part of the nRegs tally.
8639
8640 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8641
8642         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8643         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8644           before instructions that use the _STATUS register
8645
8646 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8647
8648         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8649         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8650         fetching of the pointer
8651         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8652         copied from genNearPointerSet()
8653         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8654         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8655         If they pop r0/r1 they must be called in the opposite order than aopOp().
8656         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8657         (resp. --stack-auto), prepared for --xstack
8658
8659 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8660
8661         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8662
8663 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8664
8665         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8666         these ports have their own __sdcc_external_start()
8667
8668 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8669
8670         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8671         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8672         type for bits was changed. It resulted in bit variables becoming
8673         global, which is not permitted in PIC 14 assembly output.
8674
8675 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8676
8677         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8678
8679 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8680
8681         Z80 and MCS51 linkers complaint if a public symbol is defined
8682         in more than one library module:
8683
8684         * as/mcs51/lklib.c
8685         * link/z80/lklib.c
8686         * as/mcs51/Makefile.in
8687
8688 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8689
8690         A few small changes that speed up the peephole optimizer.
8691
8692         * src/SDCCpeeph.c
8693
8694 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8695
8696         Try to make the peephole optimizer smarter by maintaining
8697         an association between the assembly source code and the
8698         iCodes that originated them. Put this information to use
8699         with a new peephole rule condition "notVolatile" so that
8700         the rules can be aggressive yet still safe.
8701
8702         * src/SDCCpeeph.c
8703         * src/SDCCpeeph.h
8704         * src/mcs51/gen.c
8705         * src/mcs51/peeph.def
8706
8707 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8708
8709         Fixed bug #741761
8710
8711         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8712         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8713         if the left or right operand symbols have the accuse flag set.
8714
8715 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8716
8717         Changed the type of the result of the ! (NOT) operator to char;
8718         previously it returned the same type as the source. This allows
8719         us to eliminate all the genFloatNot functions (all of its target
8720         implementations were very buggy) since !float can use the same
8721         code as !long now.
8722
8723         * src/SDCCicode.c (ast2iCode): ! returns char
8724         * src/mcs51/gen.c (genNot, genNotFloat),
8725         * src/ds390/gen.c (genNot, genNotFloat),
8726         * src/z80/gen.c (genNot, genNotFloat),
8727         * src/pic/gen.c (genNot, genNotFloat),
8728         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8729
8730 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8731
8732         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8733         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8734            during interrupts. Ensure WSAVE is located at a shared bank address.
8735         2. Fixed page selection in some places
8736         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8737            the registers name strings.
8738         4. Fixed "signed / unsigned compare" compiler warnings.
8739         5. The PIC port manages its own allocation of the general purpose
8740            registers, but makes no attempt to reuse them. As a result when
8741            compiling it soon runs out of general purpose registers. Some
8742            additional code was added to the files pcode.c and device.c to walk
8743            through the function call tree and rename the registers so that they
8744            get reused.
8745
8746         * src/pic/device.c
8747         * src/pic/gen.c
8748         * src/pic/glue.c
8749         * src/pic/pcode.c
8750         * src/pic/pcode.h
8751         * src/pic/ralloc.c
8752         * src/pic/ralloc.h
8753         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8754         genPlus() & genMinus() when the result is the same as left or right
8755
8756 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8757
8758         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8759
8760 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8761
8762         Made bitfield a distinct type from bit so that bitfields
8763         convert as per ANSI C and bits retain their traditional
8764         boolean style behaviour. Implemented bitfield support in
8765         the z80 port.
8766
8767         * src/SDCCsymt.h,
8768         * src/SDCCsymt.c,
8769         * src/SDCCast.c,
8770         * src/cdbFile.c,
8771         * src/mcs51/gen.c,
8772         * src/ds390/gen.c: bit v bitfield split
8773         * src/z80/gen.c: New support for bitfields
8774         * support/regression/tests/bitfields.c: reenabled z80,
8775         added more tests
8776
8777 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8778
8779         Rules 246.x, 247.x relate to bitfields, the others speed up
8780         access to xdata mapped I/O devices.
8781
8782         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8783
8784 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8785
8786         Cleaned up genPackBits and genUnpackBits and added two helper
8787         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8788         for literal assignments in genPackBits (thanks to Frieder for
8789         reminding me).
8790
8791         * src/mcs51/gen.c
8792         * src/ds390/gen.c
8793
8794 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8795
8796         Fixed bug #748310 (pointer to function type mishandled when the
8797         function name is omitted). Also fixed a SIGSEGV when a function
8798         attribute (reentrant, etc) is used on a non-function or on a
8799         function but misplaced before the parameter list.
8800
8801         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8802         bug #748310
8803         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8804         * support/Util/SDCCerr.h,
8805         * support/Util/SDCCerr.c: Added func attr misuse error msg
8806
8807 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8808
8809         Fixed bug #787649 by anonymous
8810         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8811         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8812
8813 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8814
8815         Fixed numerous bitfield problems.
8816
8817         * src/SDCC.y: More bitfield related error checking
8818         * src/SDCCsymt.h,
8819         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8820         * support/Util/SDCCerr.h,
8821         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8822         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8823         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8824         * support/regression/tests/bitfields.c: tests added
8825
8826 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8827
8828         Made the constant following the "interrupt" keyword optional. If
8829         omitted, the function will not automatically be given an entry
8830         in the interrupt vector table (similar to #pragma NOIV, but
8831         less syntacticly kludgy). The interrupt number is also now
8832         range checked. Also fixed a bug in the high order bit example
8833         in the manual.
8834
8835         * src/SDCC.y
8836         * src/SDCCmem.c
8837         * src/SDCCglue.c
8838         * src/SDCCsymt.h
8839         * support/Util/SDCCerr.c
8840         * support/Util/SDCCerr.h
8841         * doc/sdccman.lyx
8842
8843 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8844
8845         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8846         * src/SDCCicode.c (operandOperation): rewritten some ops
8847         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8848         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8849         other type
8850         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8851         be re-activated by defining REDUCE_LITERALS)
8852         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8853         unsigned, but are signed by default
8854         * src/SDCCval.c (constVal): rearranged
8855         * src/SDCCval.c (valMod): preliminary fix
8856         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8857         * support/regression/literalop.c: added, work in progress
8858
8859 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8860
8861         Generate warnings for useless declarations like "char data;"
8862         that don't do what new users expect.
8863
8864         * src/SDCC.y
8865         * support/Util/SDCCerr.h
8866         * support/Util/SDCCerr.c
8867
8868 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8869
8870         * src/SDCCval.c (valMult): fix overflow detection of negative int
8871
8872 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8873
8874         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8875
8876         Changes to support big endian targets:
8877
8878         * src/ports.h
8879         * src/SDCCglue.c
8880         * src/avr/main.c
8881         * src/ds390/main.c
8882         * src/izt/i186.c
8883         * src/mcs51/main.c
8884         * src/pic/main.c
8885         * src/pic16/main.c
8886         * src/xa51/main.c
8887         * src/z80/main.c
8888
8889 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8890
8891         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8892         * device/lib/time.c: fixed warning "integer overflow in expression"
8893
8894 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8895
8896         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8897         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8898         constants are unsigned; added recognition of "u" flag for unsigned
8899         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8900         * src/SDCCval.c (valDiv, valMod): fixed signdness
8901         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8902         signedness of modulo, left and right shift
8903         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8904         * support/Util/SDCCerr.h: added warning W_INT_OVL
8905         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8906         * src/SDCCast.c (ast_print): improved output of constants
8907
8908 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8909
8910         Fixed some warnings when building with MSVC:
8911
8912         * as\mcs51\asdata.c
8913         * as\z80\asdata.c
8914         * as\mcs51\asm.h
8915         * as\z80\asm.h
8916         * link\z80\aslink.h
8917         * link\z80\lkdata.c
8918         * link\z80\lkeval.c
8919         * link\z80\lkgb.c
8920         * link\z80\lkihx.c
8921         * link\z80\lks19.c
8922         * link\z80\lksym.c
8923         * support\cpp2\cpplib.c
8924         * src\ds390\gen.c
8925         * src\mcs51\gen.c
8926
8927 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8928
8929         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8930
8931 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8932
8933         * support\librarian\clean.mk: Do not remove Makefile.
8934         * support\librarian\Makefile: added.
8935
8936 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8937
8938         Added librarian to MSVC build:
8939         * all.dsp
8940         * sdcc.dsw
8941         * support\librarian\librarian.dsp
8942
8943         'configure' not needed for librarian, removed:
8944         * support\librarian\configure
8945         * support\librarian\configure.in
8946         * support\librarian\config_in.h
8947         * support\librarian\Makefile.in
8948
8949         Hopefully these ones built the librarian and the rest of sdcc properly:
8950         * Makefile
8951         * Makefile.common.in
8952
8953         Messed up 'configure', so revert to previous version:
8954         * configure
8955         * configure.in
8956
8957 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8958
8959         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8960         there, while the mantissa of a double is "only" 53 bits wide.
8961
8962 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8963
8964         Adding sdcclib to the build.  MSVC project coming soon.
8965         Files added/changed:
8966
8967         * support\librarian\clean.mk
8968         * support\librarian\configure
8969         * support\librarian\configure.in
8970         * support\librarian\config_in.h
8971         * support\librarian\Makefile.bcc
8972         * support\librarian\Makefile.in
8973         * support\librarian\sdcclib.c
8974         * Makefile.bcc
8975         * Makefile
8976         * Makefile.common.in
8977         * configure
8978         * configure.in
8979
8980 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8981
8982         Linker now complaints if linked modules have conflicting options, for
8983         example, one compiled using --model-large and another one compiled with
8984         --model-small.  The following files were modified:
8985
8986         * as\mcs51\asdata.c
8987         * as\mcs51\aslink.h
8988         * as\mcs51\asm.h
8989         * as\mcs51\asmain.c
8990         * as\mcs51\asout.c
8991         * as\mcs51\i51pst.c
8992         * as\mcs51\lkdata.c
8993         * as\mcs51\lklibr.c
8994         * as\mcs51\lkmain.c
8995         * as\z80\asdata.c
8996         * as\z80\asm.h
8997         * as\z80\asmain.c
8998         * as\z80\asout.c
8999         * as\z80\z80pst.c
9000         * link\z80\aslink.h
9001         * link\z80\lkdata.c
9002         * link\z80\lklibr.c
9003         * link\z80\lkmain.c
9004         * src\SDCCglue.c
9005
9006 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9007
9008         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9009         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9010
9011 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9012
9013         * src/z80/mappings.i: fix _mul[us][int,long] entries
9014
9015 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9016
9017         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9018
9019 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9020
9021         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9022         * support/regression/tests/bitopcse.c: added
9023         fixed warning:
9024         * src/avr/gen.c:
9025         * src/pic/gen.c:
9026         * src/pic16/gen.c:
9027         * src/z80/gen.c:
9028         * src/xa51/gen.c:
9029
9030 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9031
9032         added support for new library format to z80, gbz80 linkers:
9033         *link/z80/aslink.h
9034         *link/z80/lklex.c
9035         *link/z80/lklib.c
9036         *link/z80/lklist.c
9037
9038 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9039
9040         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9041         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9042
9043 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9044
9045         added DUMMY_READ_VOLATILE:
9046         * src/SDCC.y:
9047         * src/avr/gen.c:
9048         * src/xa51/gen.c:
9049         * src/z80/gen.c:
9050         * src/pic/gen.c:
9051         * src/pic16/gen.c:
9052         * src/mcs51/gen.c:
9053         * src/ds390/gen.c:
9054         * src/SDCCcse.c (algebraicOpts): many improvements
9055         * src/SDCCcse.h: removed algebraicOpts()
9056         * src/SDCCicode.c (picDummyRead): added
9057
9058 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9059
9060         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9061         "Insufficient space in data memory".
9062
9063 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9064
9065         * src/mcs51/gen.c: fixed bug #771358
9066         * src/z80/gen.c: fixed bug #759087
9067
9068 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9069
9070         * src/pic16/glue.c: minor cleanup by Vangelis
9071
9072 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9073
9074         * device/include/regc515c.h: fixed #758477
9075         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9076         * device/lib/_gptrput.c: saved a few bytes
9077         * my tab spacing is 8, yours too?)
9078         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9079         * device/lib/serial.c: process RX bytes earlier than TX bytes
9080         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9081
9082 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9083
9084         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9085
9086 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9087
9088     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9089
9090 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9091
9092         * device/lib/Makefile.in: bad fix, reverted to 1.43
9093
9094 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9095
9096         * device/lib/Makefile.in: added missing z80 object files
9097
9098 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9099
9100         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9101         pic16 progress by Vangelis:
9102         * src/SDCCglobl.h:
9103         * src/SDCCmain.c:
9104         * src/pic/Makefile:
9105         * src/pic:
9106         * pic/Makefile:
9107         * pic16/device.c:
9108         * pic16/device.h:
9109         * pic16/gen.c:
9110         * pic16/gen.h:
9111         * pic16/genarith.c:
9112         * pic16/glue.c:
9113         * pic16/main.c:
9114         * pic16/pcode.c:
9115         * pic16/pcode.h:
9116         * pic16/pcodepeep.c:
9117         * pic16/peeph.def:
9118
9119 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9120
9121     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9122
9123 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9124
9125     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9126     added gbz80 build to MSVC project.
9127     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9128     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9129     from 8051 stuff and setup so it links using a .lnk file.
9130
9131 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9132
9133     * support/librarian/sdcclib.c: sdcc librarian.
9134     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9135     with sdcclib.
9136
9137 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9138
9139     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9140
9141 2003-07-02  Borut Razem <borut.razem AT siol.net>
9142
9143         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9144         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9145         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9146         src/xa51/main.c, src/z80/main.c:
9147         virtualization of glue() function: each port has it's own glue function,
9148         which is accessed by do_glue function pointer in PORT.general structure
9149
9150 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9151
9152         * DS800C400 fun, improved ROM interface and tinibios.
9153
9154 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9155
9156         * More support for DS80C400. Now includes beginning of interface to ROM.
9157
9158 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9159
9160         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9161
9162 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9163
9164         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9165
9166 2003-06-19  Borut Razem <borut.razem AT siol.net>
9167
9168         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9169
9170 2003-06-19  Borut Razem <borut.razem AT siol.net>
9171
9172         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9173         fixed Z80 port - crt0.o: cannot open.
9174
9175 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9176
9177         * support/Util/MySystem.c (merge_command): revert bad fix
9178
9179 2003-06-18  Borut Razem <borut.razem AT siol.net>
9180
9181         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9182
9183 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9184
9185         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9186         option --use-stdout sends errors to stdout instead of stderr.
9187
9188 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9189
9190         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9191
9192 2003-06-15  Borut Razem <borut.razem AT siol.net>
9193
9194         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9195         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9196         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9197         fixed width array of pointers replaced with sets;
9198         multiple include and lib paths ared transferred to preprocessor and linker
9199         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9200         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9201         fixed width array of pointers
9202         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9203         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9204         fixupPath(), getPathDifference()
9205         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9206         fixed width array of pointers
9207
9208 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9209
9210         * src/pic16/ralloc.c: fix warnings
9211         * src/pic16/pcode.c: fix warning
9212
9213 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9214
9215          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9216         know all the details, but essentially this set of changes enable
9217         the pic16 port to generate movff instructions and generate assembler
9218         directives,
9219         * src/SDCCmain.c:
9220         * src/pic16/gen.c:
9221         * src/pic16/glue.c:
9222         * src/pic16/pcode.c:
9223         * src/pic16/device.c:
9224         * src/pic16/main.c:
9225         * src/pic16/pcode.h:
9226         * src/pic16/pcoderegs.c:
9227         * src/pic16/ralloc.c:
9228         * src/pic16/ralloc.h:
9229
9230 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9231
9232         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9233         added option --vc, so sdcc errors and warnings are compatible with
9234         Microsoft Visual Studio.
9235
9236 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9237
9238         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9239           device/lib/libfloat.lib: added atof function.
9240
9241 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9242
9243         * doc/sdccman.lyx: updated to Lyx 1.3
9244         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9245         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9246         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9247
9248 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9249
9250         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9251
9252 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9253
9254         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9255           additions to the "related tools/documentation" section
9256
9257 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9258
9259         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9260
9261 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9262
9263         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9264         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9265
9266 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9267
9268         * doc/sdccman.lyx: fix double dash and other minor things
9269         * doc/Makefile: fix double dash
9270
9271 2003-05-28  Karl Bongers(patches from Martin Helmling)
9272         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9273           condition and ignore commands.
9274
9275 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9276
9277         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9278           is in parts still quite out of date, I did changes as far as I felt makes sense
9279           for a non-native english speaker.
9280           Please feel free to add to the manual or to correct my changes.
9281         * doc/Makefile: undid touching the date of intermediate tex files.
9282
9283 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9284
9285         * doc/sdccman.lyx: Manual has an index now
9286
9287 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9288
9289         Finalize muluint/mulsint and mululong/mulslong merging:
9290         * device/lib/_mulint.c
9291         * device/lib/_mullong.c
9292         * device/lib/gbz80/mul.s
9293         * device/lib/gbz80/stubs.s
9294         * device/lib/z80/mul.s
9295         * device/lib/z80/stubs.s
9296         * src/SDCCsymt.c (initCSupport)
9297
9298 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9299
9300         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9301         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9302           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9303           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9304           instead of /Zm500.
9305
9306 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9307
9308         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9309           the regression tests I'm not brave enough to enable 245.b, 245.c
9310         * doc/sdccman.lyx: added latex preamble for hyperref package.
9311           Using pdflatex this will give you a hyperlinked pdf file with
9312           bookmarks. (prepend '%' before /usepackage if this breaks something)
9313
9314 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9315
9316          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9317
9318 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9319
9320         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9321
9322 2003-05-21    <johan AT balder>
9323
9324         * src/SDCCglue.c (printIval): fixed bug #739934
9325
9326 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9327
9328         Applied patch from bug 737905 (renamed yylineo to mylineno):
9329         * src/altlex.c
9330         * src/SDCCast.c
9331         * src/SDCglobl.h
9332         * src/SDCC.lex
9333         * src/SDCCsymt.c
9334         * src/SDCCval.c
9335         * src/pic16/pcode.c: Cleaned warnings
9336         * src/pic16/pcodeflow.c: Cleaned warnings
9337         * src/pic16/pcoderegs.c: Cleaned warnings
9338
9339 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9340
9341         * src/pic16/pcode.c: Cleaned warnings
9342         * src/pic16/pcodepeep.c: Cleaned warnings
9343         * src/pic16/ralloc.c: Cleaned warnings
9344
9345 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9346
9347         * doc/sdccman.lyx: fixed bug 739745
9348         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9349
9350 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9351
9352         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9353         it can be defined with CFLAGS when running configure
9354         * src/SDCCmain.c: fixed compiling + linking with object files
9355
9356 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9357
9358         * configure.in: configure for pic16 port,
9359             added --disable-pic16-port
9360         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9361         * src/SDCCmain.c: linkOptions is changed to set *,
9362             added if/endif conditional macros to remove options help
9363             messages from optionsTable when a port is not configured, added
9364             support for the PIc16 port in the ports table, when executing
9365             the compiler with no port specified on command line, a default
9366             port is selected with the new macro DEFAULT_PORT which is
9367             defined in port.h, in setDefaultOptions() linkOptions is removed
9368             from initialization assignment, since now it is a set,
9369             parseCmdLine uses setParseWithComma for linkOptions, in
9370             linkEdit() linkOptions are accessed with new function indexSet()
9371             which returns the i'th item of a set variable. See SDCCset.c, in
9372             linkEdit() when calling buildCmdLine(), added linkOptions as
9373             last argument. Now users can pass arguments to gplink via the
9374             -Wl option, main() uses pic16glue() to glue up pic16 programs
9375         * src/SDCCpeeph.c: various changes to support pic16
9376         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9377             return the i'th item of the set
9378         * src/SDCCset.h: added function prototype for indexSet()
9379         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9380         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9381         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9382             added macro DEFAULT_PORT
9383         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9384         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9385             generated
9386         * src/pic16/glue.c: commented out some error producing lines
9387         * src/pic16/main.c: __config directives are commented out to stop
9388             gpasm complaining and test the linkage with gplink, _linkCmd and
9389             _asmCmd changed to be more gplink and gpasm friendly
9390         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9391             produced an error when parsed, peep rule 12 is added to utilize
9392             movff, but it is commented out since the pCode does not support
9393             yet a command with 2 address arguments
9394
9395 2003-05-18    <johan AT balder>
9396
9397         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9398         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9399 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9400
9401         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9402   Added feature to script commands from file.
9403
9404 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9405
9406         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9407         * src/SDCCutil.c: include ctype.h for win32
9408
9409 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9410
9411         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9412
9413 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9414
9415         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9416   Fixed so you can set breakpoints prior to run, run does not stop
9417   on entry now.  Add tbreak.  Other enhancements and fixes for use
9418   with ddd.
9419
9420 2003-05-12  Borut Razem <borut.razem AT siol.net>
9421
9422         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9423
9424 2003-05-11  Borut Razem <borut.razem AT siol.net>
9425
9426         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9427         the path of bin directory, so that PATH is the only env. variable, which has to be set
9428         in case of standard installation.
9429         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9430         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9431         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9432
9433 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9434
9435         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9436         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9437         temp files are in the port dir; clean the gen/test directory when
9438         generating new test.c
9439         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9440         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9441         * support/regression/tests/zeropad.c: added
9442
9443 2003-05-09    <johan AT balder>
9444
9445         * src/SDCCglue.c: fixed bug #597940
9446
9447 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9448
9449         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9450   cache sfr, optimize next,step, fix off by one sourceline,
9451   support ddd list function.
9452         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9453
9454 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9455
9456         * support/regression/HTMLgen.py: added compare_s2f()
9457         * support/regression/Makefile: redo 1.27
9458         * support/regression/generate-cases.py: redo 1.5
9459
9460 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9461
9462         * support/regression/tests/float.c: workaround 33 bit hex constant
9463         * support/regression/tests/simplefloat.c: fix division for host
9464
9465 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9466
9467         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9468         that tame's the PIC's over-aggressive optimizer.
9469
9470 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9471
9472          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9473          support for MSVC.
9474
9475 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9476
9477         Initial support for DS80C400. "Hello world" runs on TINIm400
9478         (with polled I/O).
9479
9480 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9481
9482          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9483          * Some notes on ddd usage added in debugger/README
9484          Martin Helmling adding more features and fixes for ddd GUI debugger.
9485          Code added for nexti, stepi, up, down, and other adjustments.
9486
9487 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9488
9489         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9490         * src/pic/peeph.def Added two rules to optimize carry manipulation
9491         * src/pic/* removed debug printfs
9492
9493 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9494
9495         * debugger/mcs51/cmd.c: added header newalloc.h
9496
9497 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9498
9499         * as/Makefile: new EXEEXT
9500         * as/z80/Makefile: remove trailing slash of BUILDIR
9501         * as/z80/clean.mk: new EXEEXT
9502         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9503         * support/cpp2/Makefile.in: new EXEEXT
9504         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9505
9506 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9507
9508         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9509         EXEEXT was introduced to fix all related problems with targets
9510         "clean", "install" and "uninstall"; a couple of further flaws
9511         especially with "clean" have been fixed too
9512         * as/mcs51/Makefile.in
9513         * as/mcs51/clean.mk
9514         * as/z80/Makefile
9515         * Makefile
9516         * clean.mk
9517         * debugger/mcs51/Makefile.in
9518         * debugger/mcs51/clean.mk
9519         * link/z80/Makefile
9520         * link/z80/Makefile.in
9521         * link/z80/clean.mk
9522         * link/Makefile
9523         * packihx/Makefile.in
9524         * packihx/clean.mk
9525         * sim/ucsim/Makefile
9526         * sim/ucsim/clean.mk
9527         * sim/ucsim/avr.src/Makefile.in
9528         * sim/ucsim/avr.src/clean.mk
9529         * sim/ucsim/s51.src/Makefile.in
9530         * sim/ucsim/s51.src/clean.mk
9531         * sim/ucsim/xa.src/Makefile.in
9532         * sim/ucsim/xa.src/clean.mk
9533         * sim/ucsim/z80.src/Makefile.in
9534         * sim/ucsim/z80.src/clean.mk
9535         * sim/ucsim/main_in.mk
9536         * sim/ucsim/packages_in.mk
9537         * sim/ucsim/gui.src/Makefile.in
9538         * sim/ucsim/gui.src/serio.src/Makefile.in
9539         * sim/ucsim/gui.src/serio.src/clean.mk
9540         * src/Makefile.in
9541         * src/clean.mk
9542         * support/cpp2/Makefile.in
9543         * support/cpp2/clean.mk
9544         * support/makebin/Makefile
9545         * support/makebin/clean.mk
9546         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9547         * doc/sdccman.lyx: --program-suffix no longer needed
9548
9549 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9550
9551          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9552          Martin Helmling added support for ddd GUI debugger.
9553          Code added to display assembly, set variables, and other commands
9554          to interface to ddd.
9555
9556 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9557
9558         * as/Makefile: fix target clean
9559         * as/clean.mk: fix target clean
9560         * as/z80/clean.mk: fix target clean
9561
9562 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9563
9564         * Makefile.common.in: added  AT EXEEXT AT
9565         * configure.in: removed all mingw32 stuff
9566         * configure: rebuilt from configure.in
9567         * doc/sdccman.lyx: updated section "installation"
9568         * support/scripts/sdcc_mingw32: adapted to configure
9569         * support/scripts/sdcc_cygwin_mingw32: added
9570
9571 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9572
9573         * src/pic Added object file support for the PIC port
9574         * src/pic Applied patch from Craig Franklin (this started the object file support)
9575         * src/regression Updated the PIC regression tests for object files
9576
9577 2003-04-20  Borut Razem <borut.razem AT siol.net>
9578
9579         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9580           lklex.c: In function `getfid':
9581           lklex.c:203: warning: array subscript has type `char'
9582         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9583           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9584         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9585           stack handling macros
9586
9587 2003-04-19  Borut Razem <borut.razem AT siol.net>
9588
9589         * "handling space characters in file path" task:
9590         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9591         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9592         * support/Util/MySystem.h: make it self-sufficient
9593         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9594           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9595           handling space characters in file path
9596         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9597           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9598         * support/Util/MySystem.c: handling space characters in executable's path
9599
9600 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9601
9602         * as/z80/Makefile: fix permanent rebuild of z80
9603         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9604         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9605
9606 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9607
9608         * src/SDCCopt.c: add special case optimization to replace modulo by
9609           a power of two with a bitwise AND.
9610
9611 2003-04-18    <johan AT balder>
9612
9613         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9614
9615 2003-04-17    <johan AT balder>
9616
9617         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9618         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9619
9620 2003-04-13  Borut Razem <borut.razem AT siol.net>
9621
9622         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9623         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9624           fixed mingw problem in adl_NORMALIZE_PATH
9625
9626 2003-04-12  Borut Razem <borut.razem AT siol.net>
9627
9628         * fixed "#pragma SAVE/RESTORE can not be nested":
9629         * src/SDCC.lex: reworked pragma handling functions
9630         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9631         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9632
9633 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9634
9635         * src/SDCCutil.c (pathEquivalent): defined but not used
9636         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9637         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9638         * configure: rebuilt from configure.in
9639         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9640         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9641         * device/include/Makefile.in: replace sdcc_datadir
9642         * device/lib/Makefile.in: replace sdcc_datadir
9643         * Makefile.common.in: add LDFLAGS from configure
9644         * packihx/Makefile.in: use LDFLAGS
9645         * src/Makefile.in: use LDFLAGS
9646         * support/cpp2/Makefile.in: add LDFLAGS from configure
9647         * support/makebin/Makefile: use LDFLAGS
9648         * .version: bumped version number to 2.3.5
9649
9650 2003-04-12  Borut Razem <borut.razem AT siol.net>
9651
9652         * completed "different paths" task:
9653         * src/SDCCmacro.c: fixed bug in handling quotes
9654         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9655         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9656
9657 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9658
9659         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9660
9661 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9662
9663         * ds390/gen.c ds390/peeph.def: fix bug 706781
9664
9665 2003-04-11  Borut Razem <borut.razem AT siol.net>
9666
9667         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9668
9669 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9670
9671         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9672         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9673          set - this bit used to not be set...).
9674         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9675           bad code in PIC Port
9676         * src/regression/and2.c added to test bug 609268
9677         * src/regression/Makefile added and2.c to regression test
9678
9679
9680 2003-04-08    <johan AT CP255758-A>
9681
9682         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9683         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9684         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9685
9686 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9687
9688         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9689         fix bug #487815
9690         * support/cpp2/Makefile.in: fix bug #487815
9691         * configure: rebuilt from configure.in
9692         * Makefile.common.in: docdir changed, new path suffixes
9693         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9694         * sdcc_vc_in.h: reflect changes from sdccconf.h
9695         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9696         * src/SDCCutil.h: remove BINDIR hack
9697         * doc/sdccman.lyx: update new path hierarchy
9698
9699 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9700
9701         * src/SDCCpeeph.c: added okToRemoveSLOC test
9702
9703 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9704
9705         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9706
9707 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9708
9709         * src/SDCCpeeph.c: added labelIsReturnOnly test
9710         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9711
9712 2003-04-05    <johan AT balder>
9713
9714         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9715         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9716         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9717         * src/SDCCast.c: fixed a warning
9718         * src/SDCCast.h: fixed a warning
9719         * src/SDCCicode.c (operandFromAst): fixed a warning
9720
9721 2003-04-04    <johan AT balder>
9722
9723         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9724         * src/SDCCast.c (decorateType): fixed bug #715076
9725         * src/SDCC.y: fixed bug #702907
9726
9727 2003-04-03    <johan AT balder>
9728
9729         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9730         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9731         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9732         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9733         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9734
9735 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9736
9737         * _decdptr.c: fix return values
9738         * _gptrget.c: fix return values
9739         * _gptrgetc.c: fix return values
9740         * _gptrput.c: fix return values
9741         * _mulint.c: fix return values
9742         * as/z80/Makefile: fix 'make -j' problem
9743
9744 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9745
9746         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9747         * configure.in: big cleanup, updated to autoconf 2.5x
9748         * configure: rebuilt from configure.in
9749         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9750         * sdcc_vc_in.h: reflect changes from sdccconf.h
9751         * doc/Makefile: fixed a flaw in "make install"
9752
9753 2003-04-02    <johan AT balder>
9754
9755         * src/ds390/gen.c (genCmp): no comments
9756         * src/mcs51/gen.c (genCmp): no comments
9757         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9758         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9759
9760 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9761
9762         * support/regression/generate-cases.py: place generated file in given sub directory
9763         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9764         * support/regression/Makefile: improvements for 'make -j';
9765         side effect: it's simpler and faster now
9766
9767 2003-03-31  Borut Razem <borut.razem AT siol.net>
9768
9769         * src/z80/main.c: link-{port} and as-{port} defined without path
9770         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9771
9772 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9773
9774         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9775
9776 2003-03-30  Borut Razem <borut.razem AT siol.net>
9777
9778         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9779           changed type of list parameter to set
9780         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9781         * src/port.h: changed type of do_assemble() parameter to set
9782         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9783           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9784           definition of "cppoutfilename" macro with NULL value in preProcess()
9785         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9786         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9787         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9788           replaced with set *binPathSet
9789         * shash_add() deallocates the item, if allready exsists, before adding the new one
9790         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9791
9792 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9793
9794         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9795           a nested for loop bug in the PIC port
9796         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9797           for loops
9798
9799 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9800
9801         * support/Util/dbuf.h: remove C++ stuff to make it portable
9802
9803 2003-03-28  Borut Razem <borut.razem AT siol.net>
9804
9805         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9806           literal strings in stringLiteral()
9807         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9808         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9809           to the project
9810
9811 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9812
9813         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9814
9815 2003-03-26    <johan AT balder>
9816
9817         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9818         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9819         * src/SDCCast.c (decorateType): fixed " -v < 3"
9820
9821 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9822
9823         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9824         Added Lenny Story's debug infrastructure changes:
9825         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9826         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9827         * src/cdbFile.c: added
9828         * src/SDCCdebug.c: added
9829         * src/SDCCdebug.h: added
9830         * src/SDCCast.c (createFunction)
9831         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9832         * src/SDCCmain.c (parseCmdLine, main)
9833         * src/SDCCmem.c (redoStackOffsets)
9834         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9835         * src/SDCCsymt.h
9836         * src/common.h
9837         * src/avr/gen.c (genAVRCode)
9838         * src/ds390/gen.c (gen390Code)
9839         * src/mcs51/gen.c (gen51Code)
9840         * src/pic/gen.c (genpic14Code)
9841         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9842         * src/xa51/gen.c (genXA51Code)
9843         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9844
9845 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9846
9847         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9848         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9849
9850 2003-03-22    <johan AT balder>
9851
9852         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9853
9854 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9855
9856         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9857         * doc/cdbfileformat.lyx: added, written by Lenny Story
9858         * doc/Makefile: added cdbfileformat.lyx
9859         * doc/clean.mk: added cdbfileformat.lyx
9860
9861 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9862
9863         * src/mcs51/peeph.def: fix bug #705773
9864
9865 2003-03-20    <johan AT balder>
9866
9867         An sfr/sbit can have an "at #" AND an initializer
9868         * src/SDCCsymt.c (checkSClass):
9869         * src/SDCCmem.c (allocGlobal):
9870         * src/SDCCmem.c (allocLocal):
9871         * src/SDCCast.c (createBlock):
9872
9873 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9874
9875         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9876
9877 2003-03-16    <johan AT balder>
9878
9879         Undid the hackup of const and volatile, the problem is much bigger
9880         * src/SDCC.y:1.65
9881         * src/SDCCast.c:1.171
9882         * src/SDCCglue.c:1.138
9883         * src/SDCCicode.c:1.146
9884         * src/SDCCsymt.c:1.150
9885         * src/SDCCval.c:1.65
9886
9887 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9888
9889         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9890         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9891
9892 2003-03-13    <johan AT balder>
9893
9894         Hackup const and volatile modifiers in type chains a bit:
9895         * src/SDCC.y:1.63
9896         * src/SDCCast.c:1.169
9897         * src/SDCCglue.c:1.136
9898         * src/SDCCicode.c:1.143
9899         * src/SDCCsymt.c1.146
9900         * src/SDCCsymt.h1.59
9901         * src/SDCCval.c:1.63
9902
9903 2003-03-12    <johan AT balder>
9904
9905         * src/SDCCBBlock.h: more LRH debugging junk
9906         * src/SDCCcflow.h: more LRH debugging junk
9907         * src/SDCCloop.c: more LRH debugging junk
9908         * src/SDCC.y (struct_declaration): fixed bug #697590
9909         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9910         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9911         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9912
9913 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9914         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9915         test function names must now match exactly).
9916         * src/SDCCcse.c: added special case in findCheaperOp to allow
9917         extending a short integer. Makes less awful code for bug 700121 test case.
9918
9919 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9920
9921         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9922         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9923
9924 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9925
9926         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9927         actually called (operandsNotEqual() was called for all
9928         operandsNotEqualX tests).
9929
9930 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9931
9932         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9933         with shorter literals. Fixes bug 700121.
9934
9935 2003-03-11    <johan AT balder>
9936
9937         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9938
9939 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9940
9941         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9942         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9943
9944 2003-03-10  Borut Razem <borut.razem AT siol.net>
9945
9946         * src/SDCCmain.c: pipe preprocessor's output
9947         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9948         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9949         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9950         which closes all pipes in pipeSet set
9951         * src/SDCCset.c: free deleted item in function deleteSetItem()
9952         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9953         moved from z80 to src subproject
9954         * .version: increased version number to 2.3.4
9955
9956 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9957
9958         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9959         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9960         * support/regression/ports/xa51/spec.mk: fix typo
9961
9962 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9963
9964         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9965
9966 2003-03-09  Borut Razem <borut.razem AT siol.net>
9967
9968         * src/SDCCmain.c: pipe preprocessor's output
9969         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9970         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9971         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9972         which closes all pipes in pipeSet set
9973         * src/SDCCset.c: free deleted item in function deleteSetItem()
9974         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9975         moved from z80 to src subproject
9976
9977 2003-03-09  Borut Razem <borut.razem AT siol.net>
9978
9979         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9980         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9981         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9982         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9983         * src/SDCCglobl.h: unification of WIN32 native definitions
9984
9985 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9986
9987         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9988
9989 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9990
9991         * src/configure.in:   check for endianess (even while cross-compiling)
9992         * src/configure:      check for endianess (even while cross-compiling)
9993         * src/configure_in.h: check for endianess (even while cross-compiling)
9994         * src/avr/gen.c:        remove old endianess stuff
9995         * src/mcs51/gen.c:      remove old endianess stuff
9996         * src/ds390/gen.c:      remove old endianess stuff
9997         * src/pic/gen.c:        remove old endianess stuff
9998         * src/pic/genarith.c:   remove old endianess stuff
9999         * src/pic/glue.c:       fix endianess check
10000         * src/pic16/gen.c:      remove old endianess stuff
10001         * src/pic16/genarith.c: remove old endianess stuff
10002         * src/pic16/glue.c:     fix endianess check
10003         * src/xa51/gen.c:       remove old endianess stuff
10004         * src/z80/gen.c:        fix endianess check
10005         * src/SDCCglue.c:       fix endianess check
10006         * src/ds390/peeph.def: fix bug 700036
10007
10008 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10009
10010         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10011         * src/configure: find appropriate data-types on host for SDCC's int and long
10012         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10013         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10014         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10015
10016 2003-03-07    <johan AT balder>
10017
10018         Just a big NOOP:
10019                 some minor cleanups before the big shot
10020                 OP_DEFS and OP_USES now use Kevin's protection
10021                 new option --nolabelopt
10022
10023         * src/SDCCBBlock.c:
10024         * src/SDCCast.c,:
10025         * src/SDCCcflow.c:
10026         * src/SDCCcse.c:
10027         * src/SDCCicode.c:
10028         * src/SDCCicode.h:
10029         * src/SDCClabel.c:
10030         * src/SDCCloop.c:
10031         * src/SDCCmain.c:
10032         * src/ds390/ralloc.c:
10033         * src/mcs51/ralloc.c:
10034         * src/pic/ralloc.c:
10035         * src/xa51/ralloc.c:
10036         * src/z80/ralloc.c:
10037
10038 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10039
10040         * src/pic/pcode.c (get_op): fix 64 bit warnings
10041         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10042         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10043         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10044         * support/regression/tests/malloc.c: fix 64 bit warnings
10045
10046 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10047
10048         * src/mcs51/gen.c (genMinus): fixed bug 696436
10049
10050 2003-03-02  Borut Razem <borut.razem AT siol.net>
10051
10052         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10053
10054 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10055
10056         * configure.in: test for mkstemp
10057         * sdccconf_in.h: add HAVE_MKSTEMP
10058
10059 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10060
10061         * device/include/ctype.h: removed warning while using --stack-auto
10062         * device/include/malloc.h: removed warning while using --stack-auto
10063         * device/include/string.h: removed warning while using --stack-auto
10064
10065 2003-02-23  Borut Razem <borut.razem AT siol.net>
10066
10067         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10068         because NDEBUG is defined (see man assert)
10069         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10070
10071 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10072
10073         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10074         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10075
10076 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10077
10078         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10079         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10080
10081 2003-02-18    <johan AT balder>
10082
10083         * as/mcs51/asmain.c (asmbl): module can start with a digit
10084         * as/z80/asmain.c (asmbl): module can start with a digit
10085
10086 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10087
10088         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10089         * src/asm.c: fix pipe() for Mingw32
10090
10091 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10092
10093         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10094         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10095         make -V work again; --c1mode reads now from stdin
10096         * doc/sdccman.lyx: added --c1mode
10097         * support/Util/SDCCerr.c: new messages for c1 mode
10098         * support/Util/SDCCerr.h: new messages for c1 mode
10099         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10100
10101 2003-02-15    <johan AT balder>
10102
10103         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10104
10105 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10106
10107         * doc/sdccman.lyx: Environment variables, -o and other minor things
10108
10109 2003-02-14    <johan AT balder>
10110
10111         * src/xa51/main.c: before anyone really tries to use it :)
10112
10113         * Install doc's in share/sdcc/doc
10114         * removed some obsolete files
10115         * Do a proper make distclean and uninstall
10116         M Makefile.common.in
10117         R sdccbuild.sh
10118         M as/Makefile
10119         M device/include/Makefile.in
10120         M device/lib/Makefile.in
10121         M doc/sdccman.lyx
10122         M link/Makefile
10123         M sim/ucsim/doc/Makefile.in
10124         M src/clean.mk
10125         R src/avr/peeph.rul
10126         R src/xa51/peeph.rul
10127         M support/cpp2/Makefile.in
10128         M support/makebin/Makefile
10129
10130
10131 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10132
10133         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10134
10135 2003-02-10  Borut Razem <borut.razem AT siol.net>
10136
10137         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10138         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10139         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10140         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10141         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10142         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10143         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10144         src/z80/Makefile.bcc: Borland Makefile cleanup
10145         * as/z80/Makefile.bcc: Added Borland Makefile
10146         * support/cpp2/borland.h: Removed
10147
10148 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10149
10150         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10151         * src/SDCC.lex: new pragma NOIV
10152         * src/SDCCglobl.h: new pragma NOIV
10153         * src/SDCCmem.c: new pragma NOIV
10154
10155 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10156
10157         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10158
10159 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10160
10161         * src/SDCCmain.c: signal handling is switched off by --debug
10162         * doc/Makefile: small fix for install; use clean.mk again
10163         * doc/clean.mk: clean *.pdf and *.html too
10164
10165 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10166
10167         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10168         * device/lib/printfl.c: fix a ds390 bug by making it portable
10169         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10170         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10171         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10172         * debugger/mcs51/cmd.c: converted multi-line string literals
10173         * sim/ucsim/globals.cc: converted multi-line string literals
10174         * src/SDCCmain.c: introduced signal handler to remove temp files
10175         * doc/Makefile: small tweaks, implement clean
10176         * doc: removed generated files
10177
10178 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10179
10180         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10181         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10182         Address Record is not correctly generated for DS390."
10183
10184 2003-02-02  Borut Razem <borut.razem AT siol.net>
10185
10186         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10187         * as/mcs51/asm.h: fixed compilation with Borland C
10188         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10189         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10190         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10191         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10192         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10193         src/z80/Makefile.bcc: delete $(LIB) only if exist
10194         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10195
10196 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10197
10198         * device/include/malloc.h: introduced NULL
10199         * device/include/string.h: introduced NULL
10200         * device/include/stdlib.h: introduced NULL
10201         * device/lib/_memcpy.c: removed NULL
10202         * device/lib/_strcat.c: removed NULL
10203         * device/lib/_strchr.c: removed NULL
10204         * device/lib/_strcmp.c: removed NULL
10205         * device/lib/_strcpy.c: removed NULL
10206         * device/lib/_strcspn.c: removed NULL
10207         * device/lib/_strlen.c: removed NULL
10208         * device/lib/_strncat.c: removed NULL
10209         * device/lib/_strncmp.c: removed NULL
10210         * device/lib/_strncpy.c: removed NULL
10211         * device/lib/_strpbrk.c: removed NULL
10212         * device/lib/_strrchr.c: removed NULL
10213         * device/lib/_strspn.c: removed NULL
10214         * device/lib/_strstr.c: removed NULL
10215         * device/lib/_strtok.c: removed NULL
10216         * device/lib/malloc.c: removed NULL, include own header
10217
10218 2003-02-02    <johan AT balder>
10219
10220         * 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
10221         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10222         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10223         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10224         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10225         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10226
10227 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10228
10229         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10230         area 'DATA'"
10231
10232 2003-02-01    <johan AT balder>
10233
10234         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10235
10236 2003-01-31    <johan AT CP255758-A>
10237
10238         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10239
10240 2003-01-30    <johan AT balder>
10241
10242         * src/SDCCBBlock.c: automatic bug detection
10243         * src/SDCCicode.c: automatic bug detection
10244
10245 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10246
10247         * src/SDCCglobl.h:   now --xram-size 0 works
10248         * src/SDCCmain.c:    now --xram-size 0 works
10249
10250 2003-01-29    <johan AT balder>
10251
10252         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10253
10254 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10255
10256         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10257         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10258         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10259         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10260         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10261         * src/SDCCmain.c:    Added options --xram-size and --code-size
10262
10263 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10264
10265         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10266         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10267
10268 2003-01-27    <johan AT balder>
10269
10270         * src/SDCC.y: fixed bug #613764
10271
10272 2003-01-26    <johan AT balder>
10273
10274         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10275         * src/SDCCsymt.h: fixed bug #673374
10276         * src/SDCCglue.c: fixed bug #661910
10277         * src/SDCCast.c: fixed bug #458099 and 673374
10278
10279 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10280
10281         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10282         * as/mcs51/strcmpi.h: added
10283         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10284         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10285         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10286         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10287         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10288         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10289         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10290         * as/mcs51/Makefile.aslink: new module strcmpi
10291         * as/mcs51/Makefile.asx8051: new module strcmpi
10292         * as/mcs51/Makefil.bcc: new module strcmpi
10293         * as/mcs51/Makefile.in: new module strcmpi
10294         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10295
10296 2003-01-26    <johan AT balder>
10297
10298         * src/SDCCglue.c: reverted back to 1.124
10299         * src/SDCCast.c: reverted back to 1.156
10300         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10301
10302 2003-01-25    <johan AT balder>
10303
10304         * src/SDCCglue.c: A better fix for bug #661910
10305         * src/SDCCast.c: A better fix for bug #661910
10306         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10307
10308 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10309
10310         * src/Makefile.in: remove spawn.o
10311         * src/SDCCmain.c: remove spawn.h
10312         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10313         * src/spawn.c: removed
10314         * src/spawn.h: removed
10315         * support/regression/ports/ds390/spec.mk: link with -r
10316
10317 2003-01-24    <johan AT CP255758-A>
10318
10319         * src/ds390/gen.c (aopOp): fixed bug #667458
10320         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10321         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10322         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10323
10324 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10325
10326         * src/mcs51/peeph.def: better assembler identation by Frieder
10327         * src/mcs51/gen.c: better assembler identation by Frieder
10328
10329 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10330
10331         * as/z80/string.h: removed for gcc 3.2
10332         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10333         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10334
10335 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10336
10337         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10338         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10339         * support/regression/Makefile: separate temp files for ports
10340         * support/regression/generate-cases.py: separate temp files for ports
10341         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10342         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10343
10344 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10345
10346         * moved tinitalk to device/examples/ds390
10347
10348 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10349
10350         * as/mcs51/lkmem.c: rflag is for DS390
10351         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10352         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10353                          (linkEdit): move mem- and map-files the same way as ihx-files
10354         * src/z80/main.c (_setDefaultOptions): removed --generic
10355         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10356         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10357         * src/pic/glue.c (picglue): --c1mode works again
10358         * src/pic16/glue.c (pic16glue): --c1mode works again
10359         * src/asm.c (printCLine): fix #660034
10360
10361 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10362
10363         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10364         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10365         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10366         * as/mcs51/lkmem (summary): better fix for sp problem
10367         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10368         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10369         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10370                                               remove --stack-after-data
10371
10372 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10373
10374         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10375         * src/SDCCutil.c (join): ugly bug: missing '\0'
10376         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10377
10378 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10379
10380         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10381         * src/port.h: typo
10382         * src/pic/main.c (_asmCmd): gpasm supports -o
10383         * src/z80/main.c: more general macros
10384         * device/lib/Makefile.in: remove intermediate files
10385
10386 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10387
10388         * .version: Bumped version number to 2.3.3
10389         * src/SDCCBBlock.c: new option -o
10390         * src/SDCCglobl.h: new option -o
10391         * src/SDCCglue.c: new option -o
10392         * src/SDCCmain.c: new option -o
10393         * src/asm.c: new option -o
10394         * src/ds390/main.c: new option -o
10395         * src/pic/glue.c: new option -o
10396         * src/pic/pcode.c: new option -o
10397         * src/pic/ralloc.c: new option -o
10398         * src/pic16/glue.c: new option -o
10399         * src/pic16/pcode.c: new option -o
10400         * src/pic16/ralloc.c: new option -o
10401         * src/z80/main.c: new option -o
10402         * device/lib/Makefile.in: use -o
10403         * support/regression/ports/ds390/spec.mk: use -o
10404         * support/regression/ports/gbz80/spec.mk: use -o
10405         * support/regression/ports/mcs51/spec.mk: use -o
10406         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10407         * support/regression/ports/z80/spec.mk: use -o
10408         * support/regression/ports/ucz80/spec.mk: use -o
10409         * support/regression/ports/xa51/spec.mk: use -o
10410         * support/regression/fwk/lib/timeout.c: fix usage string
10411
10412 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10413         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10414
10415 2003-01-07    <johan AT balder>
10416
10417         * src/SDCCast.c (decorateType): fixed bug #600035
10418
10419 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10420         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10421         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10422         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10423         * src/pic/pcode.c: outcommented unused variable to remove warnings
10424         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10425
10426 2003-01-06    <karl AT turbobit.com>
10427         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10428    regression tests.
10429
10430 2003-01-06    <johan AT balder>
10431
10432         * src/SDCCicode.c: fixed array add
10433
10434 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10435         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10436         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10437
10438 2003-01-04    <johan AT balder>
10439
10440         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10441
10442 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10443         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10444
10445 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10446         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10447         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10448
10449 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10450         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10451
10452 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10453         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10454
10455 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10456         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10457
10458 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10459
10460     * in \sdcc\as\mcs51\ changed these files in order to create an
10461     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10462     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10463     following files to include the previous two files: aslink.dsp,
10464     Makefile.aslink, Makefile.bcc, and Makefile.in.
10465
10466     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10467     .adb instead of .cdb
10468
10469 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10470
10471         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10472         value from option --iram-size.
10473
10474 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10475
10476         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10477         dram[] array.
10478
10479 2002-09-18    <wiml AT hhhh.org>
10480
10481         * SDCClrange.h: exposed setFromRange() and setToRange()
10482         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10483           packRegsForAccUse() (bug 542397)
10484         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10485           multiple times and emitting the fetch operations more than once
10486           added aopGetUsesAcc() function to allow binary operators to
10487           fetch their operands in the correct order; made genMinus() emit
10488           compact code for X = LITERAL - Y
10489
10490 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10491         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10492         sprintf() in line 1267.
10493
10494 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10495         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10496         like ports.
10497
10498 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10499         Changes to aslink (All the changes are marked with 'JCF'):
10500
10501         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10502         summary().
10503
10504         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10505         area BSEG.  Also moves, if possible, the DATA area down into the internal
10506         ram so more space is available.
10507
10508         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10509         sflag.
10510
10511         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10512         not bytes.  Function summary() which creates a memory usage summary
10513         file with extension .mem.  Reports of overlaping stack and small stack
10514         size.  If the space for the stack is less than 16 bytes aslink trows a
10515         warning.
10516
10517         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10518         the 8051.  Option 'y' for memory summary output file.
10519
10520         Changes to sdcc (All the changes are marked with 'JCF'):
10521
10522         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10523
10524         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10525         overlaying area for it (uses RegBankUsed[4]).
10526
10527         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10528         bank zero as used by default.  By default aslink locates the stack
10529         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10530         the creation of the .mem file.  Delegates the allocation of data area
10531         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10532         the begining of the stack area to aslink.
10533
10534         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10535         glue() in SDCCglue.c creates an area for it.
10536
10537 2002-09-03  Borut Razem <borut.razem AT siol.net>
10538         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10539         sdcc/src/pic/glue.c:
10540         introduced atexit() handler for teporay files removal in case of
10541         errors, assertions, ...
10542
10543 2002-08-29  Borut Razem <borut.razem AT siol.net>
10544         * sdcc/support/cpp2/auto-host_vc_in.h:
10545         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10546         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10547         Maybe there is a similar problem with BORLANDC? It should be checked!
10548
10549         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10550         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10551         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10552         was not executed, and the compiler (cl) launched a warning:
10553         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10554
10555 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10556         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10557
10558 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10559         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10560
10561         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10562           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10563           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10564           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10565           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10566           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10567           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10568         - added Release configuration in VS projects
10569         - review of compiler an linker options
10570         - VC .exe files are generated in bin_vc directory, not to interfere
10571           with binaries generated from other projects (cygwin, mingw, bcc ...)
10572
10573         * sdcc/src/yacc.dsp: added
10574
10575         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10576         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10577         and insert the version number definitions from .version
10578
10579         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10580
10581         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10582         added - genarate auto-host.h using auto-host_vc_in.h as template
10583
10584         * sdcc/sdcc_vc.h,
10585         removed from CVS, generated automatically
10586
10587 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10588         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10589
10590 2002-08-11  Borut Razem <borut.razem AT siol.net>
10591         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10592
10593 2002-08-10  Borut Razem <borut.razem AT siol.net>
10594         * src/SDCCmain.c (main):
10595         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10596         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10597         The consequence was that some temporary files were not removed.
10598
10599         * src/SDCCglue.c:
10600         unification of code in functions tempfilename() and tempfile():
10601         function tempnam() is defined in Visual Studio 6.0 and .NET
10602
10603         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10604
10605         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10606           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10607         - removed compiler command line option /WX: Treats all warnings as errors
10608         - update a list of source files, included into the project
10609
10610         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10611           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10612         changed project type to Generic Project so that can be correcly converted to VS.NET project
10613
10614         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10615
10616         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10617
10618         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10619
10620         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10621         added return 0 statements after assert() to make compiler happy
10622
10623         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10624         added newline in the def file to keep MSC compiler satisfied
10625
10626         * sdcc/src/z80/gen.c:
10627         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10628           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10629         - solved MSC error in function aopDump()
10630
10631         * sdcc_vc.h: define PREFIX as "\\sdcc"
10632
10633 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10634         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10635
10636 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10637         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10638         - Rewrote the register banking algorithm.
10639         - Added pCode live-range analysis to registers (for now, only non-used and
10640         singly-used registers optimized away)
10641
10642         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10643
10644         * 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.
10645
10646 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10647         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10648
10649 2002-04-22  Michael Hope  <michaelh AT vroom>
10650
10651         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10652
10653         * configure.in (DD_COPT): Added include support required for gbdk.
10654
10655         * .version: Bumped version number just to increase it.
10656
10657         * src/SDCCmain.c: Added -nostdinc to the default options.
10658
10659 2002-04-15  Michael Hope  <michaelh AT vroom>
10660
10661         * device/lib/z80/printf.c (sprintf): Added.
10662
10663         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10664
10665         * src/z80/peeph.def: Added transpose redundent load rule.
10666
10667         * src/z80/main.c: Added force callee saves for jaune.
10668
10669         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10670
10671         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10672
10673 2002-03-28  Johan Knol  <johan AT balder>
10674
10675         * src/SDCCval.c: fixed bug #532436
10676
10677 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10678         * /src/port.h:
10679         Added "char *Processor" field to the port structure.
10680
10681         * /src/SDCCmain.c:
10682         Added -p option. Allows port dependent processor to be specified.
10683
10684         * all ports:
10685         Initialized the new field char *Processor field to NULL in all ports
10686
10687         * /src/pic/*:
10688         Compiler generated registers for interrupt context saving
10689         were not getting allocated.
10690
10691 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10692
10693         * /src/SDCCast.c:
10694         Fixed left shift. Will promote the left side of a left shift
10695         if a) left shifting more than size of operand or b) when assigned
10696         to something size > size of left side
10697
10698 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10699         * src/pic/*
10700         tons of changes. Register allocation has been
10701         rewritten. Added customization for the various PICs. Flow
10702         analysis is restructured. ...
10703
10704         * src/pic/device.h:
10705         Added
10706
10707         * src/pic/device.c:
10708         Added. device.c is a PIC port hack to accomodate variations
10709         in PIC devices.
10710
10711 2002-03-13  Michael Hope  <michaelh AT vroom>
10712
10713         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10714
10715 2002-03-04  johanknol  <johanknol AT manik>
10716
10717         * /src/SDCCval.c: fixed
10718
10719         const unsigned char arr[][2] = { { 0, 1 } };
10720         t18.c:1: error: Initializer element is not constant
10721
10722 2002-03-04  bela  <bela AT manik>
10723
10724         * /device/include/mcs51reg.h:
10725         ds89c420 register definition update
10726
10727 2002-03-03    <johan AT FRIJA>
10728
10729         * support/Util/SDCCerr.c: did something, but don't no why anymore
10730
10731         * support/regression/tests/bug-524691.c: made it a little less shy
10732
10733         * src/SDCCast.c (decorateType): fixed bug #524697
10734
10735         * src/SDCCast.c: made some lineno improvements
10736
10737         * src/SDCCval.c (getNelements): changed warning to error
10738
10739         * src/SDCCglue.c (printIvalArray): changed warning to error
10740
10741         * src/SDCCicode.c: fixed a warning for mingw
10742
10743         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10744
10745         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10746
10747 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10748
10749         * src/ds390/peeph.def:
10750         Added some more peephole rules
10751
10752         * src/ds390/gen.c: Various fixes & enhancements
10753
10754         * src/SDCClrange.c, src/SDCClrange.h:
10755         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10756
10757         * src/ds390/ralloc.c:
10758         various fixes & enhancements (ds390) specific
10759
10760         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10761         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10762         from rallocs.
10763
10764         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10765
10766 2002-03-02    <johan AT FRIJA>
10767
10768         * src/SDCCast.c (decorateType): fixed bug #524708
10769
10770         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10771
10772         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10773
10774 2002-03-01  Michael Hope  <michaelh AT vroom>
10775
10776         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10777
10778         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10779
10780 2002-03-01    <johan AT FRIJA>
10781
10782         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10783
10784         * src/SDCCast.c (decorateType): fixed bug #524209
10785
10786         * src/SDCCval.c (valNot): fixed bug #524195
10787
10788 2002-02-26    <johan AT balder>
10789
10790         * src/xa51/gen.c: fixed a warning
10791
10792         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10793
10794         * src/SDCCast.c (decorateType): fixed bug #522534
10795
10796 2002-02-23    <johan AT balder>
10797
10798         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10799
10800 2002-02-22    <johan AT balder>
10801
10802         * src/SDCCast.c: fixed bug #514865
10803
10804         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10805
10806 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10807
10808         * sdcc/src/SDCCloop.c:
10809         Previous fix was not good. basic blocks that have "break" or "return" are
10810         not really partof a loop , but live ranges used in these blocks should
10811         be live thru the entire loop, so set partOfLoop but don't add them to
10812         loop region
10813
10814 2002-02-21    <johan AT FRIJA>
10815
10816         * src/SDCCcse.c: fixed bug #514308
10817
10818 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10819
10820         * src/SDCCloop.c:
10821         Fixed BUG #519583. If a conditional block ended in a return/break
10822         statement inside a loop, it was not being considered part of the loop.
10823
10824         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10825
10826 2002-02-10  Karl Bongers <karl AT turbobit.com>
10827
10828         * debugger/*:
10829         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10830         with lots of comments and notes.
10831
10832         * device/examples/test2.c:
10833         Fix bug, "red" variable not being initialized(compiler complained).
10834
10835         * device/examples/Makefile, examples/test3.c:
10836         Add Makefile in device/examples folder, compiles test3.c
10837         for use as a multiple module SDCDB test case.
10838
10839         * sim/ucsim/cmd.src/cmdset.cc:
10840         Took out debug printfs in ucsim "next" command.
10841
10842         * sim/ucsim/xa.src:
10843         Karl and Johan start ucsim XA support.  Most dissassembly working,
10844         about 75% emulation done(plenty of work remaining).
10845
10846         * sim/ucsim/z80.src:
10847         Add Z80 support to ucsim, add test-ucz80 regression test,
10848         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10849         Notice z80 compiler fails on examples/test3.c/crc code.
10850
10851 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10852
10853         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10854         Added support for --parms-in-bank1
10855
10856         * src/ds390/peeph.def:
10857         added a few more peephole optimzations
10858
10859         * src/ds390/main.c:
10860         1) added __builtin_inp & __builtin_outp used to read in data of given length
10861            from a memory mapped port
10862         2) added __builtin_memcmp
10863         3) added __builtin_swapw swap bytes of a short
10864
10865         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10866         1) handle multiple send & receives from register bank1
10867         2) ralloc can now allocate DPTR1 to some liveRanges
10868
10869         * src/SDCCsymt.c, src/SDCCsymt.h:
10870         changes to handle multiple sends & receives
10871
10872         * src/SDCCptropt.h:
10873         added some pointer arithmetic optimization
10874
10875         * src/SDCCptropt.c:
10876         added some pointer arithmetic optimizations but not stable yet so not
10877         called from anywhere (will get this working shortly)
10878
10879         * src/SDCCopt.c: fixed for multiple sends & receives
10880
10881         * src/SDCCmain.c:
10882         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10883         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10884            set preprocessor defines (depending on options)
10885
10886         * src/SDCCicode.c, src/SDCCicode.h:
10887         changes made to handle multiple sends & receives
10888
10889         * src/SDCCglobl.h:
10890         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10891
10892         * src/SDCCcse.c, src/SDCCcse.h:
10893         added function findbackward def (to be used in upcoming optimization)
10894
10895         * src/SDCCcflow.c, src/SDCCcflow.h:
10896         added function returnAtEnd - to determine if a basic block terminates with
10897         a RETURN iCode
10898
10899         * src/SDCCast.c, src/SDCCast.h:
10900         added option parms-in-bank1
10901
10902         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10903         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10904         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10905         adjusted for --parms-in-bank1 option
10906
10907         * device/include/string.h:
10908         donot redefine "reentrant" keyword
10909
10910         * device/include/ds80c390.h: Added some more SFRs
10911
10912 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10913
10914         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10915
10916 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10917
10918         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10919
10920 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10921
10922         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10923
10924 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10925
10926         * Added --xram-movc option
10927
10928 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10929
10930         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10931
10932 2002-01-11  Johan Knol
10933
10934         * Added math lib of Jesus Calvino-Fraga
10935
10936 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10937
10938         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10939         * support/regression/Makefile: new target test-mcs51-stack-auto
10940         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10941
10942 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10943
10944         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10945
10946 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10947
10948         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10949
10950 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10951
10952         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10953
10954         * src/SDCCglue.h: add definition for printIvalChar()
10955
10956 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10957
10958         * src/SDCCast.c: fix #498138 by Johan
10959
10960         * src/SDCCglue.c: fix #498138 by Johan
10961
10962 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10963
10964         * support/regression/Makefile: fix clean
10965
10966         * support/regression/ports/ds390/support.c: fix transmission of last character
10967
10968 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10969
10970         * /sdcc/src/ds390/gen.c:
10971         a) improved computing address of stack variable
10972         b) took out some #if 0 code
10973         c) improved parmBytes adjustment
10974         d) improved genPlusIncr & genMinusIncr
10975         e) genCmp could generate bad code (when left assigned to DPTR)
10976         f) Fixed bug in hasInc
10977
10978         * /sdcc/src/ds390/ralloc.c:
10979         a) packRegsForSupport could mess up live information (Fixed)
10980         b) packRegsDPTRuse could be incorrect for left & right shift
10981
10982         * /sdcc/src/mcs51/ralloc.c:
10983         packRegsForSupport could mess up the live information (Fixed)
10984
10985         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10986
10987         * /sdcc/src/SDCCast.c:
10988         can reverse a loop even if function call is present as long
10989         as the loop control variable is local & is not passed as parameter
10990
10991 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10992
10993         * /sdcc/ChangeLog: *** empty log message ***
10994
10995         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10996         More builtin function additions for TININative
10997
10998         * /sdcc/src/ds390/ralloc.c:
10999         Had broken the regression testsuite
11000
11001         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11002
11003         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11004         Added funcattr hasStackParms will be set for reentrant functions when there
11005         are paramteres on the stack, this helps in minimizing frame pointer generation
11006         typeFromStr can handle function pointers now
11007
11008         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11009         *** empty log message ***
11010
11011 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11012
11013         * /src/ds390/gen.c, /src/ds390/main.c:
11014         More builtin function additions for TININative
11015
11016         * /src/ds390/ralloc.c:
11017         Had broken the regression testsuite
11018
11019         * /src/SDCCast.c: Fixed a bug in dumptree
11020
11021         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11022         Added funcattr hasStackParms will be set for reentrant functions when there
11023         are paramteres on the stack, this helps in minimizing frame pointer generation
11024         typeFromStr can handle function pointers now
11025
11026         * /doc/builtins.txt, /doc/TININative.txt:
11027         *** empty log message ***
11028
11029
11030 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11031
11032         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11033         ALPHA version for -mTININative
11034
11035         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11036         updated to reflect changes in the port structure
11037
11038         * /src/port.h:
11039         added function do_assemble (similar to do_link) if non-null this function
11040         will be called to do assembly (-mTININative) requires a multi command
11041         assembly
11042         added function genAssemblerEnd will be called to generate assembler Epilogue
11043
11044         * /src/SDCCsymt.c:
11045         added _JavaNative to debug info printing
11046
11047         * /src/SDCCmain.c: added option --tini-libid
11048         added port->do_assemble function (-mTININative) has a multi command assemble
11049
11050         * /src/SDCCglue.c: Disabled "constExpr" check
11051         added port->genAssemblerEnd function
11052
11053         * /src/SDCCglobl.h: Added option --tini-libid value
11054
11055         * /src/SDCCast.h:
11056         tookout optimizeCompare from the header (has no external references)
11057
11058         * /src/SDCCast.c: made one more function "static"
11059
11060 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11061
11062         * src/z80/mappings.i: Added z80asm support.
11063
11064         * src/z80/main.c: Added z80asm support on --asm=z80asm
11065
11066         * src/z80/gen.c: Fixed asm portability issues.
11067
11068         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11069
11070         * src/SDCCglue.c (printExterns): Added global/extern split.
11071
11072 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11073
11074         * support/regression/Makefile: added test for mcs51 model large
11075
11076         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11077
11078         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11079
11080 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11081
11082         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11083
11084 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11085
11086         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11087
11088         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11089
11090 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11091
11092         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11093
11094         * support/regression/tests/simplefloat.c: Port to mcs51.
11095
11096 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11097         * support/regression/tests/bug-485362.c: Added.
11098
11099         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11100
11101         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11102
11103         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11104
11105         * src/z80/gen.c (aopDump): Added a dump function.
11106
11107 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11108         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11109
11110         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11111
11112         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11113
11114         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11115
11116         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11117
11118         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11119
11120         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11121
11122         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11123
11124         * support/regression/ports/ds390/support.c: Use tinibios.
11125
11126         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11127
11128 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11129
11130         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11131         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11132
11133         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11134
11135         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11136
11137 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11138
11139         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11140
11141         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11142         (packRegsForIYUse): Created and optimised.
11143
11144 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11145
11146         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11147 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11148
11149         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11150
11151         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11152
11153         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11154
11155 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11156
11157         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11158
11159         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11160
11161 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11162
11163         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11164
11165         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11166
11167         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11168
11169 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11170
11171         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11172         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11173         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11174
11175         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11176
11177         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11178         (genNotFloat): Added.
11179         (genUminusFloat): Added.
11180
11181         * device/lib/z80/Makefile: Added floating pt stubs.
11182
11183         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11184
11185         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11186
11187         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11188
11189 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11190
11191         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11192
11193         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11194
11195         * sdcc/support/regression/Makefile: Add port ds390.
11196
11197         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11198
11199         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11200
11201         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11202
11203         * sdcc/support/regression/ports/ds390/support.c: Added.
11204
11205         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11206
11207         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11208
11209         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11210
11211 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11212
11213         * device/include/malloc.h: Added z80 and gbz80 support.
11214
11215         * device/lib/gbz80/heap.s: Added.
11216
11217         * device/lib/z80/heap.s: Added.
11218
11219         * device/lib/malloc.c: Added z80 and gbz80 support.
11220
11221         * support/regression/tests/malloc.c (testMalloc): Added.
11222
11223         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11224
11225         * support/regression/tests/bug-478094.c: Added.
11226
11227         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11228
11229 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11230
11231         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11232
11233         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11234
11235         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11236
11237         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11238
11239         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11240
11241 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11242
11243         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11244
11245 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11246
11247         * support/regression/tests/bug-477927.c: Added.
11248
11249         * src/z80/peeph.def: Added minor rules.
11250
11251         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11252
11253         * src/z80/peeph.def: Added jump optimisation modification.
11254
11255 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11256
11257         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11258
11259 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11260
11261         * support/regression/tests/funptrs.c: Added.
11262
11263 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11264
11265         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11266
11267 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11268
11269         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11270
11271         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11272
11273         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11274         (movLeft2ResultLong): Created.
11275
11276         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11277         (joinPushes): Added.  Joins two char pushes into a word push.
11278
11279 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11280
11281         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11282
11283         * support/makebin/Makefile (install): Added creation of dest dir.
11284
11285 2001-10-24 Karl Bongers <karl AT turbobit.com>
11286
11287         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11288
11289 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11290
11291         * src/z80/ralloc.c: Turned off faulty pack for one use.
11292
11293         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11294
11295         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11296
11297 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11298
11299         * support/regression/Makefile: Improved clean
11300
11301         * support/regression/ports/gbz80/spec.mk: Added clean
11302
11303         * support/regression/ports/host/spec.mk: Added clean
11304
11305         * support/regression/ports/z80/spec.mk: Added clean
11306
11307         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11308
11309         * support/regression/ports/mcs51/timeout.c: little improvements
11310
11311 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11312
11313         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11314
11315         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11316
11317         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11318
11319 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11320
11321         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11322
11323         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11324
11325 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11326         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11327
11328         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11329
11330         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11331
11332         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11333
11334         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11335
11336         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11337
11338         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11339
11340         * support/regression/tests/longor.c: Added.
11341
11342 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11343
11344         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11345
11346         * as/mcs51/aslink.h: define PATH_MAX
11347
11348         * as/mcs51/asm.h: define PATH_MAX
11349
11350         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11351
11352         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11353
11354         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11355
11356         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11357
11358         * src/SDCCglobl.h: define PATH_MAX
11359
11360         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11361
11362         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11363
11364 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11365
11366         * src/z80/gen.c (gencjneshort): Fixed
11367
11368         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11369
11370 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11371
11372         * support/regression/tests/bug-469671.c: Added.
11373
11374         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11375
11376 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11377
11378         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11379
11380         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11381
11382 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11383
11384         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11385
11386         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11387
11388         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11389
11390         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11391
11392         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11393
11394         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11395
11396         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11397
11398 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11399
11400         * 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.
11401
11402         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11403
11404         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11405
11406 2001-10-07    <johan AT FRIJA>
11407
11408         * device/lib/gets.c (gets): fixed the return value.
11409
11410 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11411         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11412
11413         * 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.
11414
11415         * 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.
11416
11417         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11418
11419         * src/pic/gen.c: Removed Safe_strdup.
11420
11421         * configure.in: Added option to enable libgc support.
11422
11423         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11424         (bitVectUnion): Optimised.
11425         (bitVectIntersect): Optimised.
11426         (bitVectBitsInCommon): Optimised.
11427         (bitVectCplAnd): Optimised.
11428
11429         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11430
11431 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11432
11433         * src/SDCCmain.c: distinguish between assembler debug and plain options
11434
11435         * src/avr/main.c:   remove standard assembler options
11436
11437         * src/ds390/main.c: remove standard assembler options
11438
11439         * src/mcs51/main.c: remove standard assembler options
11440
11441         * src/port.h: removed "PENDING" comment
11442
11443 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11444
11445         * src/device/lib/_mulint.c  : new, with assember functions
11446
11447         * src/device/lib/_mullong.c : new, with assember functions
11448
11449         * src/device/lib/_divuint.c : with assember functions
11450
11451         * src/device/lib/_divsint.c : with assember functions
11452
11453         * src/device/lib/_divulong.c: with assember functions
11454
11455         * src/device/lib/_divslong.c: with assember functions
11456
11457         * src/device/lib/_moduint.c : with assember functions
11458
11459         * src/device/lib/_modsint.c : with assember functions
11460
11461         * src/device/lib/_modulong.c: with assember functions
11462
11463         * src/device/lib/_modslong.c: with assember functions
11464
11465         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11466
11467         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11468
11469         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11470                                       replaced _mululong.c and _mulslong.c by _mullong.c
11471
11472 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11473
11474         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11475
11476 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11477
11478         * src/SDCCglue.c: test, if win32api is available for MINGW
11479
11480 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11481
11482         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11483         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11484         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11485         * support/regression/ports/host/spec.mk: removed GENERIC
11486         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11487         * support/regression/ports/z80/spec.mk: removed GENERIC
11488
11489 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11490
11491         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11492
11493         * support/regression/tests/bug-467035.c: Created.
11494
11495 2001-10-01    <johan AT FRIJA>
11496
11497         * src/SDCC.y: fixed bug #466586 part 1
11498
11499 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11500
11501         * SDCCicode.c: z80 has no generic pointers
11502         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11503
11504 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11505
11506         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11507
11508 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11509
11510         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11511
11512         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11513
11514 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11515
11516         * configure.in: Fixed up so that ucsim is only configured once.
11517
11518         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11519
11520         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11521         (getPathDifference): As above.
11522
11523         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11524
11525         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11526
11527 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11528         * .version: Updated to 2.3.1
11529
11530         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11531         Added copyright header.
11532
11533         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11534         (assemble): Added support for macro based assembler commands.
11535         (linkEdit): Added support for macro based linker commands.
11536         (preProcess): Changed the pre-processor to use macros.
11537         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11538         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11539
11540         * device/lib/z80/crt0.s: Added module name for debugging.
11541
11542 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11543
11544         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11545
11546         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11547
11548         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11549
11550         * src/Makefile.in: Added SDCCmacro and SDCCutil
11551
11552 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11553
11554         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11555
11556 2001-09-16    <johan AT FRIJA>
11557
11558         * 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.
11559
11560 2001-09-15    <johan AT FRIJA>
11561
11562         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11563         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11564
11565 2001-09-11    <johan AT FRIJA>
11566
11567         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11568
11569 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11570
11571         * support/regression/tests/bug-460444.c: Added test case.
11572
11573         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11574         (genCast): Added justification for all of the asserts.
11575
11576 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11577
11578         * support/regression/support.c: _xdata replaced by xdata
11579
11580         * support/regression/spec.mk: removed _generic
11581
11582 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11583
11584         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11585
11586         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11587         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11588
11589         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11590
11591         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11592
11593         * support/regression/tests/bug-460010.c: Added test case.
11594
11595         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11596
11597 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11598
11599         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11600
11601         * support/regression/testfwk.c: removed workaround for bug #436344
11602
11603         * support/regression/tests/bp.c: use less memory with mcs51
11604
11605         * support/regression/tests/bug-441448.c: use less memory
11606
11607         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11608
11609         * support/regression/collate-results.py: typo
11610
11611 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11612
11613         * support/regression/tests/fetchoverlap.c: Added new test case.
11614
11615         * support/regression/tests/bp.c: Added new test case.
11616
11617         * support/regression/tests/bug-448984.c: Added new test case.
11618
11619         * support/regression/tests/pow2shifts.c: Added new test case.
11620
11621         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11622         (genlshTwo): Fixed right shift for count > 8.
11623
11624         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11625
11626 2001-09-08    <johan AT FRIJA>
11627
11628         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11629
11630 2001-09-07    <johan AT FRIJA>
11631
11632         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11633
11634         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11635
11636 2001-09-06    <johan AT FRIJA>
11637
11638         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11639         * bernhard noted me at this: "() equals to (void)" (1.38)
11640
11641 2001-09-05    <johan AT FRIJA>
11642
11643         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11644
11645 2001-09-04    <johan AT FRIJA>
11646
11647         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11648
11649
11650 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11651
11652         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11653
11654 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11655
11656         * link/z80/aslink.h: Fixed path for PATH_MAX
11657
11658 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11659
11660         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11661
11662         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11663
11664         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11665
11666         * 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.
11667
11668 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11669
11670         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11671         (genCmp): Fixed up genCmp for the GB with longs.
11672
11673         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11674
11675         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11676
11677         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11678
11679         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11680
11681 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11682
11683         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11684
11685 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11686
11687         * 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.
11688
11689         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11690
11691 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11692
11693         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11694
11695         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11696
11697 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11698
11699   * sim/ucsim/configure:    little improvement of Cygwin-detection
11700   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11701   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11702   * support/regression/tests/bug-221100.c: small changes for mcs51
11703   * support/regression/tests/bug-221168.c: small changes for mcs51
11704   * support/regression/tests/bug-227710.c: small changes for mcs51
11705   * support/regression/tests/staticinit.c: small changes for mcs51
11706   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11707   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11708   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11709
11710 $Revision$