* src/port.h (struct PORT): added field gp_tags, to hold the tag
[fw/sdcc] / ChangeLog
1 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
2
3         * src/port.h (struct PORT): added field gp_tags, to hold the tag
4         value of generic pointers,
5         * src/avr/main.c,
6           src/ds390/main.c,
7           src/hc08/main.c,
8           src/izt/i186.c,
9           src/izt/tlcs900h.c,
10           src/mcs51/main.c,
11           src/pic/main.c,
12           src/pic16/main.c,
13           src/xa51/main.c,
14           src/z80/main.c: PORT structure, added elements for gp_tags field,
15         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
16         fields in the PORT structure of each port,
17         * src/SDCCast.c (decorateType): allow processing of generic pointers
18         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
19         S_FIXED symbols
20
21 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
22
23         * link/z80/lkgb.c,
24         * link/z80/lkgg.c,
25         * src/pic16/gen.c,
26         * src/pic16/main.c,
27         * src/pic16/pcode.c,
28         * src/pic/main.c,
29         * src/pic/pcoderegs.c,
30         * src/SDCCicode.c,
31         * src/SDCCmain.c,
32         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
33           bug 1504689 on minGW
34
35 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
36
37         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
38
39 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
40
41         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
42
43 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
44
45         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
46           for optimization
47
48 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
49
50         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
51         to a char variable. Fixed bug #1504211
52         * device/include/pic16/adc.h,
53         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
54         and fixed bug #1364390
55
56 2006-06-10 Borut Razem <borut.razem AT siol.net>
57
58         * CVSROOT: removed the CVS left-over
59
60 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
61
62         * as/hc08/asmain.c (asexit),
63         * as/hc08/lkmain.c (lkexit),
64         * as/mcs51/asmain.c (asexit),
65         * as/mcs51/lkmain.c (lkexit),
66         * src/SDCCglue.c (DEFSETFUNC),
67         * src/SDCCmain.c (linkEdit, assemble),
68         * support/librarian/sdcclib.c (AddRel),
69           replaced unlink() by standard C remove()
70         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
71         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
72           gatherImplicitVariables): new, added to fix bug 608752,
73           (createFunction): added gatherImplicitVariables()
74         * src/SDCCast.h: added createRMW prototype
75         * src/SDCCsymt.h (struct symbol): added infertype
76         * support/regression/tests/bug608752.c: new, added
77
78 2006-06-10 Raphael Neider <rneider AT web.de>
79
80         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
81           multibyte dummy reads (fixes #1503234)
82
83 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
84
85         * device/include/mcs51/compiler.h: new, added header file to enable
86           creating common sfr definition header files for different compilers
87
88 2006-06-05 Raphael Neider <rneider AT web.de>
89
90         * src/pic16/{pcode.h,genarith.c}:
91           introduced pCodeOp combining any two pCodeOps (previously only
92           two register operands could be combined), removed pcop2 from
93           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
94         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
95         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
96           rewritten to use new PO_TWO_OPS
97         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
98         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
99           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
100           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
101           (pic16_get_op): embraced return arg to allow #define return(x),
102             added new case for combined opcodes
103           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
104           (pic16_pCode2str,pic16_getRegFrompCodeOp,
105            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
106
107 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
108
109         * src/SDCCval.c (checkConstantRange): added
110         * src/SDCCval.h: added checkConstantRange
111         * support/Util/SDCCerr.c,
112         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
113         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
114         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
115         * src/SDCCast.c (decorateType): added checkConstantRange,
116         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
117         can be emitted with the correct always true/false warning,
118         added optimization for double '!';
119         result of decorateType() must be assigned back to the tree, because
120         decorateType() can change the tree
121         * src/SDCCicode.c (geniCodeLogic),
122         (geniCodeAssign): replaced new checkConstantRange, added warnings,
123         (checkConstantRange): removed, it was only a fragment which never
124         emitted a warning
125         * src/SDCCsymt.c (computeType): fixed promotion for
126         "-1 < (unsigned bit) b"
127         * src/pic/ralloc.c (packRegsForAssign),
128         * src/pic16/ralloc.c (packRegsForAssign),
129         * src/hc08/ralloc.c (packRegsForAssign),
130         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
131         from mcs51
132         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
133         * support/regression/tests/constantRange.c: added
134         * support/valdiag/tests/constantRange.c: added
135         * support/valdiag/valdiag.py: added -DPORT_HOST=1
136
137 2006-06-02 Borut Razem <borut.razem AT siol.net>
138
139         * support/regression/ports/pic16/support.c: increase stack size
140           to 255 bytes
141         * support/regression/Makefile.in: sort tests by name so that the
142           resutlts can be compared on different machines / platforms
143
144 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
145
146         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
147         * src/ds390/gen.c (emitLabel): new, added,
148           (genDjnz): fixed stack overflow bug,
149           (throughout): cosmetic changes to sync with mcs51/gen.c,
150           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
151         * src/mcs51/gen.c (genEndFunction): small optimization,
152           (throughout): cosmetic changes to sync with ds390/gen.c
153
154 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
155
156         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
157           (_print_format): fixed printing pointers
158         * src/mcs51/gen.c (emitLabel, movb): new, added,
159           (genAssign): small optimization,
160           (genDjnz): fixed stack overflow bug,
161           (throughout): replaced sprintf with SNPRINTF,
162           replaced mcs51_regWithIdx with REG_WITH_INDEX,
163           replaced emitcode("mov", "b,...") with MOVB(...),
164           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
165           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
166         * src/mcs51/peeph.def: added rules 140 and 264
167         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
168           so they may get optimized into registers
169
170 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
171
172         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
173           immediately when encountered,
174           (printUsage): always use stderr even on windows
175
176 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
177
178         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
179         (processParms): fixed bug #1247551
180         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
181         parseCmdLine, main): print '--version' to stdout,
182         print 'help' to stdout if --help is given,
183         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
184         arguments are given; fixed --help
185
186 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
187
188         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
189         * support/regression/tests/bug-1493710.c: added
190
191 2006-05-27 Borut Razem <borut.razem AT siol.net>
192
193         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
194           static instead auto
195         * support/regression/ports/pic16/support.c: increase stack size
196           from default 64 bytes to 128 bytes
197         * support/regression/tests/staticinit.c,
198           support/regression/tests/float.c: regression tests fully enabled
199           for pic16 port by putting the initialized data arrays into the code
200           section
201         * support/regression/ports/pic16/spec.mk: don't link default libraries.
202           This was changed by mistake in the previous version.
203
204 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
205
206         * src/pic16/gen.c (genFunction, genEndFunction): some
207         beautifications, fixed bug with falsely restoring FSR2 in large
208         stack model, thanks to Beau E. Cox for reporting the bug
209
210 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
211
212         * debugger/mcs51/break.c,
213         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
214           use %p to print pointers, made address variables unsigned
215         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
216         * debugger/mcs51/symtab.c (parseSymbol): must return something
217         * src/mcs51/gen.c (aopForSym): small optimization,
218            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
219           (freeAsmop): added missing break,
220           (aopPut): removed parameter bvolatile, determine it inside the function,
221           (saveRegisters, unsaveRegisters): small optimization,
222           (genIpush): removed pointless check,
223           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
224           replaced sprintf with SNPRINTF,
225           replaced strcpy with strncpyz,
226           updated aopPut calls,
227           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
228         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
229
230 2006-05-24 Borut Razem <borut.razem AT siol.net>
231
232         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
233           modification of test for the pic16 port, put the array to the code
234           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
235
236 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
237
238         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
239         * support/Util/pstdint.h: added
240
241 2006-05-22 Borut Razem <borut.razem AT siol.net>
242
243         * src/regression/Makefile: removed bool2.c test, added -q linker option
244         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
245           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
246           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
247           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
248           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
249           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
250           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
251           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
252           define SUPPORT_BIT_TYPES 0, removed unused bit variables
253
254 2006-05-22 Raphael Neider <rneider AT web.de>
255
256         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
257           bug #1492360 (problematic due to generic pointers, see code)
258
259 2006-05-22 Borut Razem <borut.razem AT siol.net>
260
261         * support/regression/ports/pic16/specs.mk: removed stack size linker
262           directive
263         * support/regression/tests/array.c,
264           support/regression/tests/bitopcse.c,
265           support/regression/tests/bug-908454.c,
266           support/regression/tests/malloc.c: modified for pic16 regression test
267         * support/regression/tests/bitfields.c:
268           pic16 - excluded bitfileds of size > 8
269         * support/regression/tests/bp.c: pic16 - reduced data size
270         * support/regression/tests/bug-221100.c: pic16 - reduced data size
271         * support/regression/tests/bug-460010.c:
272           pic16 - used the absolute address the fits in memory
273         * support/regression/tests/bug-716242.c:
274           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
275         * support/regression/tests/float.c:
276           pic16 - excluded - data size too big
277         * support/regression/tests/onebyte.c:
278           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
279         * support/regression/tests/shifts.c:
280           pic16 - function names probably have to differ in first X characters
281           (gpasm limitation?)
282         * support/regression/tests/staticinit.c:
283           pic16 - excluded some tests due error: no target memory available for
284           section ".idata"
285
286 2006-05-22 Borut Razem <borut.razem AT siol.net>
287
288         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
289           second try. Thanks Stas Sergeev once more.
290
291 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
292
293         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
294           (genLeftShift, genRightShift): fixed bug 1491627
295         * src/hc08/peeph.def (rules 7, 8.x): added
296         * support/regression/tests/shifts.c (ShiftLeftByParam,
297           ShiftRightByParam, testShiftByParam): added to test variable shifting
298
299 2006-05-20 Raphael Neider <rneider AT web.de>
300
301         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
302         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
303           (allocReg): add only new registers to dynAllocRegs,
304           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
305             #1489055, #1445850, and probably #1483693
306
307 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
308
309         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
310         bug in for-loop that didn't emit the last of CONFIG and ID registers
311
312 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
313
314         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
315           with offset
316         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
317           1489016, 1434401 and 1490124
318         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
319           1489016, 1434401 and 1490124
320
321 2006-05-17 Borut Razem <borut.razem AT siol.net>
322
323         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
324           thanks Stas Sergeev
325
326 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
327
328         * device/include/mcs51/P89c51RD2.h,
329         * device/include/mcs51/P89LPC901.h,
330         * device/include/mcs51/P89LPC922.h,
331         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
332
333 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
334
335         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
336         to fix missing stack pragma in compiled binary object file,
337
338 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
339
340         * support/packihx/configure.in,
341         * support/packihx/configure: removed warning, autoconf >= 2.5x can
342         determine sizeof basic types even while cross compiling
343
344 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
345
346         * src/avr/gen.c (aopop),
347         * src/ds390/gen.c (aopOp),
348         * src/hc08/gen.c (aopOp),
349         * src/mcs51/gen.c (aopop),
350         * src/pic16/gen.c (pic16_aopOp),
351         * src/pic/gen.c (aopOp),
352         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
353         if size of operand is smaller than spill location
354
355 2006-05-12 Borut Razem <borut.razem AT siol.net>
356
357         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
358           have to have CR/LF line endings even if they are checked out on *nix
359           or on WIN32 in cygwin binmode
360
361 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
362
363         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
364         * device/include/ds80c390.h: added sfr16 definitions
365         * src/ds390/gen.c,
366         * src/ds390/gen.h,
367         * src/ds390/main.c,
368         * src/ds390/ralloc.c,
369         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
370           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
371           bit returning functions
372         * support/regression/tests/sfr16.c: enabled test on ds390
373
374 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
375
376         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
377         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
378
379 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
380
381         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
382         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
383           (cl_address_space constructor): removed expensive initialization,
384           (cl_address_space::get_cell): extended for late initialization,
385           (cl_address_space::*): use late initialization,
386           (cl_address_decoder::activate): removed expensive initialization,
387           This reduced regression test running time by 25%
388
389 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
390
391         * packihx/,
392         * configure.in,
393         * configure,
394         * sdcc.dsw,
395         * Makefile.bcc,
396         * Makefile.in,
397         * support/packihx/Makefile.in,
398         * support/packihx/clean.mk,
399         * support/packihx/Makefile.bcc,
400         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
401
402 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
403
404         * src/SDCCval.c (valNot): fix for regression test failure
405           of not.c on big endian hosts
406
407 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
408
409         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
410
411 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
412
413         * device/lib/mcs51/Makefile.in: changed string comparison operator
414           to = for POSIX compliance; == is bash extension
415
416 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
417
418         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
419           kosmonaut_pirx
420
421 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
422
423         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
424         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
425         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
426         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
427         bug report #1478657,
428
429 2006-05-05 Borut Razem <borut.razem AT siol.net>
430
431         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
432           making the html
433
434 2006-05-02 Borut Razem <borut.razem AT siol.net>
435
436         * doc/Makefile.in: removed *.ind dependency since there is no rule to
437           create *.ind, which made make to fail if invoked with -j 2
438
439 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
440
441         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
442           Hubert Sack for patch 1479782
443
444 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
445
446         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
447
448 2006-05-01 Raphael Neider <rneider AT web.de>
449
450         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
451           (create_pic): store only prefix-free device name,
452           (init_pic): check for device names with "16" prefix,
453           (list_valid_pics),
454         * src/pic/device.h (struct PIC_device),
455         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
456             stored device name,
457         * device/include/pic/pic12f{635,675,629,683}.h,
458         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
459         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
460         * device/include/pic/pic16f505.h,
461         * device/lib/pic/libdev/pic16f505.c: removed
462         * device/include/pic/pic14devices.txt: added support for pic12f
463             devices, removed unsupported non 16-bit devices
464             [above changes provided by patch from Zik Saleeba]
465         * src/pic/*, src/pic16/*, device/include/pic16/*,
466           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
467
468 2006-05-01 Borut Razem <borut.razem AT siol.net>
469
470         * configure.in, configure, doc/Makefile.in:
471           sync with nightly build makefile - latex, dvipdf and dvips
472           not needed any more
473
474 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
475
476         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
477         in the library source
478
479 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
480
481         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
482
483 2006-04-28 Raphael Neider <rneider AT web.de>
484
485         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
486         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
487           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
488         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
489
490 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
491
492         * device/lib/pic/libdev/Makefile.in,
493         * device/lib/hc08/Makefile.in,
494         * device/lib/gbz80/Makefile.in,
495         * device/lib/z80/Makefile.in,
496         * device/lib/ds390/Makefile.in,
497         * device/lib/ds400/Makefile.in: added srcdir to include search path,
498         thanks to Borut for the bug report
499         * configure.in,
500         * configure: always create doc/Makefile independent from --enable-doc
501         * Makefile.in: always install from directory doc independent from
502         --enable-doc
503         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
504         removed
505         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
506         * doc/Makefile.in: install *.txt if present
507         * device/include/Makefile.in (install): added installation of pic/*.inc
508         and pic/*.txt files again, they were erroneously removed
509
510 2006-04-28 Raphael Neider <rneider AT web.de>
511
512         * src/pic/{gen.c,main.h,pcode.c},
513         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
514             concerning signedness with casts
515
516 2006-04-28 Raphael Neider <rneider AT web.de>
517
518         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
519             definition of an interrupt handler,
520         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
521             interrupt handler stuff from picglue() to separate routine,
522           (picglue): enabled definition of intr handlers in files w/o main()
523
524 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
525
526         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
527           compilation with MSVC 2005 Express Edition (VC8)
528
529 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
530
531         * device/lib/Makefile: fixed build of gbz80 lib
532
533 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
534
535         * support/regression/tests/bug-460010.c,
536         * support/regression/tests/bug-524691.c,
537         * support/regression/tests/bug-716242.c: removed conditional defines
538           that are already in testfwk.h
539
540 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
541
542         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
543           (AccAXRsh1): added, shift right by 1,
544           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
545            AccAXLrl1
546         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
547
548 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
549
550         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
551         remove cast to same type
552         * src/SDCCast.c (decorateType): fix for RFE 1475742,
553         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
554         * as/z80/Makefile,
555         * link/z80/Makefile: removed, they have moved to
556         Makefile.in files
557         * configure,
558         * configure.in: replaced duplicate message about ucsim by missing sdcpp
559         * install-sh: fix bug #1204398 by setting umask 0022
560         * device/lib/Makefile: separate build of z80 and gbz80 lib
561
562 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
563
564         Enabled VPATH feature: changed nearly all Makefiles (149 files).
565         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
566
567         One basic decision: e.g. src/clean.mk includes further files. In order
568         to make this work there are two solutions:
569         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
570           run configure on them. This way they can use
571           'include $(srcdir)/port-clean.mk'
572         - always include clean.mk by the Makefile at the same level. To avoid
573           that `make clean` tries to include and build Makefile.dep the
574           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
575           implemented, because now even `make uninstall` doesn't create
576           Makefile.in. clean.mk could be eliminated by pasting it in
577           Makefile.in.
578
579         * debugger/mcs51/Makefile.in: build own objects from library sources
580         (SLIB, SDCC) in current directory
581
582         * configure, configure.in: renamed --disable-device-lib-build in
583         --disable-device-lib; added --enable-doc, the required tools are
584         searched by configure; added result message; the toolchain for the
585         belonging ports are now only built, if the port is enabled.
586
587         * support/regression/*: all output is written in directory gen, because
588         the fwk and ports directories don't livet in the build tree using vpath
589
590         * doc/sdccman.lyx: renamed --disable-device-lib-build to
591         --disable-device-lib, added --enable-doc, added section VPATH
592
593         * sim/ucsim/configure.in,
594         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
595         z80 are enabled by default
596
597 2006-04-24 Raphael Neider <rneider AT web.de>
598
599         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
600             to config word, "pic14_"-prefixed some extern functions
601           (pic14_emitConfigWord): emit __config directive(s) if assignment to
602             config word has been found
603         * src/pic/device.h: added prototypes
604         * src/pic/pcode.c: added "pic14_"-prefix where needed
605         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
606             fixup
607         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
608             words,
609           (pic14emitRegularMap): ignore config words,
610           (pic14createInterruptVect): moved generating __config directives away
611           (picglue): have __config directives emitted
612
613 2006-04-24 Borut Razem <borut.razem AT siol.net>
614
615         * doc/Makefile: sync with nightly build makefile
616
617 2006-04-24 Raphael Neider <rneider AT web.de>
618
619         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
620             registers that have not been assigned proper liveranges,
621             fixes #1469504 and #1474602,
622           (pCodeRegOptimizeRegUsage): fixed typo in comment
623
624 2006-04-24 Borut Razem <borut.razem AT siol.net>
625
626         * device/examples/main8051.c: deleted - it was removed from CVS
627           24.mar.2000 and after that modified 18.feb.2001, so it reappered
628           after the transition to Subversion
629         * src/SDCCalloc.h: deleted - it was removed  from CVS
630           3.feb.2001 and after that modified 18.feb.2001, so it reappered
631           after the transition to Subversion
632         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
633           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
634           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
635           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
636
637 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
638
639         * as/asx8051.dsp: added mcs51/strcmpi.h
640         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
641         * as/hc08/aslink.h: updated lnksect prototype
642         * as/hc08/asm.h,
643         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
644         * as/hc08/asmain.c,
645         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
646           (newdot): handle A_ABS
647         * as/hc08/asout.c,
648         * as/mcs51/asout.c (outarea): output address
649         * as/hc08/lkaomf51.c,
650         * as/mcs51/lkaomf51.c: disabled unused array UsageType
651         * as/hc08/m08pst.c,
652         * as/mcs51/i51pst.c,
653         * as/z80/z80pst.c: "ABS" is not A_OVR
654         * as/hc08/lkarea.c (newarea): read a_addr,
655           (lnkarea): added codemap array, sort absolute areas to the front,
656            combine all GSINITx/GSFINAL,
657           (find_empty_space, allocate_space): new functions,
658           (lnksect): return next address, handle absolute sections
659         * as/mcs51/lkarea.c (newarea): read a_addr,
660           lnksect2 prototype changed,
661           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
662           (find_empty_space, allocate_space): new, factored out of lnksect2,
663           (lnksect2): return next address, handle absolute sections
664         * as/hc08/lkhead.c,
665         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
666         * as/hc08/lklibr.c (addfile, fndsym),
667         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
668           index out of range and detect both '\' and '/'
669         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
670         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
671           regression tests (ds390 cannot return bool yet)
672         * doc/sdccman.lyx: changed version number, document changed --no-peep,
673           document critical interrupts on z80, document changed SDCC define
674         * src/asm.c (_asxxxx_mapping): fixed .org directive,
675           (_a390_mapping): added .org directive
676         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
677           (genMultOneByte): fixed warnings
678         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
679           ones
680         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
681         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
682           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
683         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
684         * src/pic16/main.c: removed newReg prototype
685         * src/pic16/pcode.c,
686         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
687           warnings
688         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
689           ones
690         * src/pic16/ralloc.c
691         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
692           to fix warnings
693         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
694           from short to PIC_OPTYPE
695         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
696         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
697           optype from short to PIC_OPTYPE
698         * src/port.h: made int_size unsigned to fix warnings
699         * src/SDCC.y: fixed warning on MSVC
700         * src/SDCCicode.c (getArraySizePtr): return unsigned int
701         * src/SDCCopt.c (convertToFcall): fixed warnings
702         * src/SDCCsymt.h: removed double prototype for genSymName
703         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
704           offset int to fix warnings
705
706 2006-04-22 Borut Razem <borut.razem AT siol.net>
707
708         * doc/sdccman.lyx, */Makefile, */Makefile.in:
709           references to CVS replaced with Subversion
710
711 2006-04-21 Borut Razem <borut.razem AT siol.net>
712
713         * doc/sdccman.lyx, */Makefile, */Makefile.in:
714           references to CVS replaced with Subversion
715
716 2006-04-19 Borut Razem <borut.razem AT siol.net>
717
718         * src/version.awk: adapted for svn
719         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
720           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
721           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
722           /binutils-avr/etc/*.vi, *.jin: removed all properties
723           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
724
725 2006-04-19 Borut Razem <borut.razem AT siol.net>
726
727         * CVS to Subversion migration completed
728
729 2006-04-18 Borut Razem <borut.razem AT siol.net>
730
731         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
732           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
733
734 2006-04-17 Borut Razem <borut.razem AT siol.net>
735
736         * device/include/Makefile.in: added pic/*.inc to the installation
737
738 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
739
740         * support/regression/collate-results.py: fixed output in case of
741         a valdiag error
742         * support/regression/generate-cases.py: fixed splitting of pathnames
743         with dots
744         * as/hc08/lklibr.c (addfile),
745         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
746
747 2006-04-11 Raphael Neider <rneider AT web.de>
748
749         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
750         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
751         * src/pic16/pcode.c (assignValnums): fixed #1460578
752
753 2006-04-11 Raphael Neider <rneider AT web.de>
754
755         * device/lib/pic/libdev/*.c,
756         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
757           fixes #1468739, enables compilation in --std-c99 mode
758         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
759
760 2006-04-11 Raphael Neider <rneider AT web.de>
761
762         * src/pic/device.c (find_device): removed debug output
763           (list_valid_pics): enabled verbose listing of supported devices
764         * device/include/stdbool.h: define bool as char for pic14/16 as well
765
766 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
767
768         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
769
770 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
771
772         * .version: bumped version to 2.5.6
773         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
774
775 2006-04-06 Raphael Neider <rneider AT web.de>
776
777         * .version: bumped version to 2.5.6 (pic14 ABI changed)
778         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
779         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
780           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
781             pic14_constructAbsMap
782           (pic14printPublics): declare absolute global symbols as global
783           (pic14createInterruptVect),
784         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
785           (newReg): assume new registers unused, use correct name in
786             hashtable (reg->name instead of name), more debugLog output
787         * src/pic/device.h (PIC_device): added fields for verbose output
788         * src/pic/device.c: moved device definition to pic14devices.txt,
789             added routines for runtime parsing of pic14devices.txt,
790             added support for second config word
791         * src/pic/main.c (_process_pragma): removed #pragma maxram,
792           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
793           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
794           (_pic14_parseOptions): moved pCodeInitRegisters here
795           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
796         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
797           (pCodeInitRegisters): rewrapped comments, perpared new approach to
798             handling the pseudo stack
799         * device/lib/Makefile.in: ignore failures in objects-pic16,
800         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
801         * device/lib/pic/NEWS: document new dependency on picXXX.lib
802         * device/lib/pic/Makefile.subdir,
803         * device/lib/pic16/Makefile.subdir: improved clean rules
804         * device/lib/pic/libdev/: NEW, pic14 device libraries
805         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
806         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
807         * device/include/Makefile.in: create subdir and install pic14 headers
808         * device/include/pic/p16f_common.inc: removed unused declarations
809         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
810             PICs from inc2h.pl v1.6,
811             replaced BIT_AT macros with struct declarations
812         * device/include/pic/pic14devices.txt: definition of supported devices,
813             all above improvements contributed by Zik Saleeba, thanks
814         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
815         * support/scripts/sdcc.nsi: also install pic14 device libraries and
816             headers
817
818 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
819
820         * device/include/mcs51/c8051f410.h: added interrupt numbers,
821         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
822           thanks to Charles Olds
823
824 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
825
826         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
827
828 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
829
830         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
831         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
832         * support/regression/bug1464657.c: added, new test
833
834 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
835
836         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
837           version number
838
839 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
840
841         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
842           --no-peep and --peep-file <file> are used don't use default rules but
843           do use the <file>
844
845 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
846
847         * src/mcs51/gen.c (genCall): fixed bug 1457608
848
849 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
850
851         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
852         changes seem to cause (trigger?) problems with the build system.
853
854 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
855
856         * src/SDCCpeeph.c (operandsLiteral): new, added,
857           (callFuncByName): inserted operandsLiteral
858         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
859
860 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
861
862         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
863         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
864
865 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
866
867         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
868           implemented patch 1120823 Thanks to Willy De la Court (normal
869           interrupts need an interrupt number now if they are made critical),
870           and enabled nesting of critical functions though not for gbz80
871           (genCritical, genEndCritical): added functions
872           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
873         * src/z80/mappings.i: added "ei" to all mappings
874
875 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
876
877         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
878         submitted by the Debian SDCC maintainer Aurelien Jarno:
879         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
880         archive with gcc 4.1 on mips and wrote the patch"
881
882 2006-03-16 Raphael Neider <rneider AT web.de>
883
884         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
885           the left operand is shorter than the result (c* = lit-c* + int),
886           fixes bug #1450796
887         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
888           OP_SYMBOL
889
890 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
891
892         * src/.version: increased version number to 2.5.5
893         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
894         linking is done manually in pic16 port's _linkEdit,
895         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
896         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
897         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
898         allocate asmop as AOP_ACC,
899         (aopForRemat): added parameter 'bool result' in function declaration,
900         (pic16_aopGet): return AOP_ACC when accessing WREG,
901         (pic16_popGetTempReg): minor modification,
902         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
903         'pic16_allocWithIdx',
904         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
905         calling function in absolute addresses,
906         (genAssign): take into account AOP_ACC asmop,
907         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
908         * src/pic16/pcoderegs.c: some debug functions and lines added,
909         * src/pic16/ralloc.c (decodeRegType): added but commented out,
910         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
911         register too,
912         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
913         call to allocReg, not by manually allocating a new one,
914         (pic16_assignRegisters): now before going through the register
915         allocating functions mark all registers as free. This eliminates some
916         side effects resulting from peephole parser done earlier in the backbone
917
918 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
919
920         * src/SDCCicode.c (geniCodeLogic),
921         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
922
923 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
924
925         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
926           (genSend): bugfix, do not allocate and free twice,
927           (shiftRLong): handle partially overlapping aops
928         * support/regression/tests/bitopcse.c: fixed warning redefined idata
929
930 2006-03-08 Borut Razem <borut.razem AT siol.net>
931
932         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
933           for pic16
934
935 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
936
937         * support/regression/tests/bug1409955.c: new, added
938         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
939         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
940           (aopForSym, aopOp): increment asmop.allocated if reused,
941           (freeAsmop): decrement asmop.allocated and check for zero instead of
942           using asmop.freed,
943           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
944           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
945            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
946            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
947            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
948            genSignedRightShift, genRightShift, genDataPointerGet,
949            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
950            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
951             in reverse order from allocation,
952           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
953             added swappedLR to keep track
954         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
955           pdata & code for GCC, z80, gbz80 & hc08
956         * support/regression/tests/zeropad.c: moved defines to testfwk.h
957
958 2006-03-08 Raphael Neider <rneider AT web.de>
959
960         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
961
962 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
963
964         * device/include/mcs51/c8051f410.h: new SiLabs mcu
965         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
966         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
967
968 2006-03-06 Borut Razem <borut.razem AT siol.net>
969
970         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
971           made the linker quiet
972
973 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
974
975         * src/pic16/gen.c (genPcall): fixed bug #1443644
976         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
977         which dumps before the function entry point a data byte which represents
978         the number of the local variables used by the specified function, added
979         'xinst' for initial support for Extended Instruction Support,
980         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
981         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
982         port->fun_prefix anymore (may change later),
983         (genFunction, genEndFunction): do not store/restore local registers for
984         _main (this should take care the --main-return command line option in
985         the future),
986         (genOr): removed some legacy pic-port instructions,
987         * src/pic16/genarith.c (genAddLit): re-enabled old code because
988         performing operations with SFR's causes data to be written more than
989         once to each SFR. Perhaps SFRs should be handled in special cases...
990         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
991         pcode.h
992         * src/pic16/main.c (_process_pragma): stack bound checking did not take
993         into account for stack starting position,
994         (struct OPTIONS pic16_optionsTable): added command line argument
995         --extended or -y for Extended Instruction Support,
996         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
997         (deassignLRs): *** perhaps the most important change, old 'for' code
998         (commented out for reference), didn't account for some registers which
999         were left marked 'not free' after a pointer operation. The change
1000         reduces register usage a lot in some cases
1001
1002 2006-03-04 Borut Razem <borut.razem AT siol.net>
1003
1004         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1005           _clean
1006         * support/regression/tests/bug-524697.c: decreased array size for
1007           mcs51 to fit into the internal RAM
1008         * support/regression/Makefile.in: a little bit more verbose
1009
1010 2006-03-03 Borut Razem <borut.razem AT siol.net>
1011
1012         * support/regression/fwk/lib/testfwk.c,
1013           support/regression/fwk/include/testfwk.h: introduced function
1014           _prints(), nonrecursive _printn(), call _initEmu() from main()
1015         * support/regression/ports/gbz80/support.asm,
1016           support/regression/ports/ucz80/support.asm,
1017           support/regression/ports/z80/support.asm,
1018           support/regression/ports/ds390/support.c,
1019           support/regression/ports/hc08/support.c,
1020           support/regression/ports/host/support.c,
1021           support/regression/ports/mcs51/support.c,
1022           support/regression/ports/xa51/support.c: added empty _initEmu()
1023           function
1024         * support/regression/ports/pic16/gpsim.cmd,
1025           support/regression/ports/pic16/spec.mk,
1026           support/regression/ports/pic16/support.c,
1027           support/regression/Makefile.in: added pic16 regression test
1028
1029 2006-03-01 Raphael Neider <rneider AT web.de>
1030
1031         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1032           genConstPointerGet): use safe way of generating MOVFF to cover
1033             literals as well as registers, fixes bug #1440527
1034         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1035             dereference
1036           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1037             more correctly, fixes bug #1232186
1038           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1039         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1040             gplink guess the correct processor in more cases, applied patch
1041             from Till Riedel attached to and fixing bug #1436552
1042
1043 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1044
1045         * support/regression/tests/array.c: added, contains check for #1434401
1046         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1047
1048 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1049
1050         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1051         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1052         * device/include/mcs51/c8051f326.h,
1053         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1054         * device/include/mcs51/c8051f000.h,
1055         * device/include/mcs51/c8051f018.h,
1056         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1057           PCON_IDLE,PCON_STOP and added sfr16 definitions
1058
1059 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1060
1061         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1062           genGetWord): fixed bug 1409955
1063
1064 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1065
1066         * device/include/hc08/mc68hc908gp32.h,
1067         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1068
1069 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1070
1071         * src/SDCCast.c (constExprValue): return NULL if not a value
1072         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1073         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1074         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1075
1076 2006-02-13 Borut Razem <borut.razem AT siol.net>
1077
1078         * src/regression/ptrarg.c: added, fails due to bug #1430967
1079         * src/regression/Makefile: ptrarg.c added, ...
1080
1081 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1082
1083         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1084         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1085
1086 2006-02-11 Borut Razem <borut.razem AT siol.net>
1087
1088         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1089           print "Processor: xxx" message to stdout only if --verbose
1090
1091 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1092
1093         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1094         * support/regression/tests/bug1426356.c: added
1095         * support/regression/tests/bitfields.c: removed 2 tests
1096
1097 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1098
1099         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1100         * device/include/mcs51/c8051f330.h,
1101         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1102           PCON_IDLE,PCON_STOP and added sfr16 definitions
1103         * device/lib/_divsint.c,
1104         * device/lib/_divuint.c,
1105         * device/lib/_divulong.c,
1106         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1107           register bank bug for small stackauto
1108
1109 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1110
1111         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1112
1113 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1114
1115         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1116         * all.dsp: corrected several bin paths
1117         * device/include/mcs51/c8051f120.h,
1118         * device/include/mcs51/c8051f300.h,
1119         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1120           to PCON_IDLE,PCON_STOP
1121         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1122         * device/lib/printf_large.c (output_float): fixed bug 1388703
1123         * support/regression/tests/bug1057979.c: added test for bug 1388703
1124
1125 2006-02-08 Raphael Neider <rneider AT web.de>
1126
1127         * src/pic/pcode.c (pciTRIS): fixed typo,
1128           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1129           (LinkFlow): fixed handling of flows that end in a call,
1130           (ReuseReg): perform safety check earlier
1131         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1132             to work with flows at the beginning of a pBlock,
1133             fixes #1426557 (Symbol not previously defined),
1134           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1135             usage information
1136           (RemoveUnusedRegisters): update register usage info
1137         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1138             created, reuse existing ones instead
1139         * src/pic/gen.c (genPcall): fixed #1424719
1140
1141 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1142
1143         * link/z80/lkmain.c,
1144         * link/z80/lklex.c,
1145         * link/z80/lkdata.c,
1146         * link/z80/aslink.h: fixed build on current cygwin:
1147         replaced getline() by lk_getline()
1148
1149 2006-02-01 Borut Razem <borut.razem AT siol.net>
1150
1151         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1152           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1153           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1154           src/regression/bool1.c, src/regression/bool2.c,
1155           src/regression/bool3.c, src/regression/call1.c,
1156           src/regression/compare.c, src/regression/compare10.c,
1157           src/regression/compare2.c, src/regression/compare3.c,
1158           src/regression/compare4.c, src/regression/compare5.c,
1159           src/regression/compare6.c, src/regression/compare7.c,
1160           src/regression/compare8.c, src/regression/compare9.c,
1161           src/regression/configword.c, src/regression/for.c,
1162           src/regression/inline.c, src/regression/mult1.c,
1163           src/regression/nestfor.c, src/regression/or1.c,
1164           src/regression/pointer1.c, src/regression/ptrfunc.c,
1165           src/regression/rotate1.c, src/regression/rotate2.c,
1166           src/regression/rotate3.c, src/regression/rotate4.c,
1167           src/regression/rotate5.c, src/regression/rotate6.c,
1168           src/regression/rotate7.c, src/regression/string1.c,
1169           src/regression/struct1.c, src/regression/sub.c,
1170           src/regression/sub2.c, src/regression/switch1.c,
1171           src/regression/while.c, src/regression/xor.c,
1172           src/regression/create_stc, src/regression/simulate,
1173           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1174           regression tests
1175         * src/regression/gpsim_assert.h: added
1176
1177 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1178
1179         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1180         ((void (code *) (void)) 0) ();
1181         * as/hc08/aslex.c,
1182         * as/hc08/aslink.h,
1183         * as/hc08/asm.h,
1184         * as/hc08/asmain.c,
1185         * as/hc08/lkdata.c,
1186         * as/hc08/lklex.c,
1187         * as/hc08/lkmain.c,
1188         * as/mcs51/aslex.c,
1189         * as/mcs51/aslink.h,
1190         * as/mcs51/asm.h,
1191         * as/mcs51/asmain.c,
1192         * as/mcs51/lkdata.c,
1193         * as/mcs51/lklex.c,
1194         * as/mcs51/lkmain.c,
1195         * as/z80/aslex.c,
1196         * as/z80/asm.h,
1197         * as/z80/asmain.c: fixed build on current cygwin:
1198         replaced getline() by as_getline()
1199
1200 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1201
1202         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1203         declarator in the symbol chain
1204         * src/SDCCsymt.h,
1205         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1206         parameter list for function pointers
1207         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1208         * support/regression/tests/bug-716242.c: added
1209
1210 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1211
1212         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1213         offset if possible
1214         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1215
1216 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1217
1218         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1219         inifinitely recurseable, added static
1220         * support/regression/tests/bug-1408066.c: added
1221
1222 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1223
1224         * src/SDCCicode.h,
1225         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1226         renamed, added possibility to create "postLoopLbl"-labels
1227         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1228         newiTempLoopHeaderLabel
1229         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1230         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1231         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1232         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1233         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1234         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1235         (basicInduction): fixed bug #136564, made static,
1236         (loopInduction): changed parameter of basicInduction, made static,
1237         (addPostLoopBlock): added
1238         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1239         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1240         findLoopEndSeq
1241         * support/regression/tests/bug-136564.c: added
1242         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1243         --std-sdcc99 to LIBSDCCFLAGS
1244
1245 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1246
1247         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1248         while loop
1249         * support/regression/tests/bug-1406131.c: added
1250
1251 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1252
1253         * src/SDCCast.c (decorateType): fix promotion of unary minus
1254         * src/SDCCsymt.c (computeType): beautified
1255         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1256         (valUnaryPM, valComplement): fix sign and promotion,
1257         (valNot): ANSI: result type is int (SDCC: unsigned char)
1258         * support/regression/tests/uminus.c: speedup by removing superflous
1259         test case 'int'
1260         * support/regression/tests/onebyte.c: added promotion and signedness
1261         tests for unary minus
1262         * support/regressions/tests/bug-477927.c: disable warning about
1263         uninitialized variables
1264         * support/regression/tests/not.c: added
1265
1266 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1267
1268         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1269         * src/mcs51/gen.c (gen51Code): show final register usage after
1270         fillGaps in asm with --i-code-in-asm
1271         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1272         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1273         incUsed, rliveClear, adjustIChain): made static,
1274         (setFromRange): excluded because it's unused,
1275         (findPrevUseSym, markWholeLoop): added,
1276         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1277         through all branches of predecessors enables sdcc to emit the warning
1278         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1279         (rlivePoint): made static, added parameter emitWarnings which is only
1280         true during the first run out of two,
1281         (findRecursiveSucc, findRecursivePred): removed,
1282         (computeLiveRanges): made static, added parameter emitWarnings,
1283         (dumpIcRlive): added for debugging only
1284         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1285         removed prototype of setFromRange()
1286         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1287         in call of computeLiveRanges()
1288         * support/regression/tests/bug-895992.c: added
1289         * support/regression/tests/bug-971834.c: added
1290         * support/valdiag/tests/bug-895992.c: added
1291         * support/valdiag/tests/bug-971834.c: added
1292
1293 2005-12-18 Raphael Neider <rneider AT web.de>
1294
1295         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1296           (genUnpackBits): improved code for direct operands,
1297           (genPackBits): improved code for literal assignment to bitfields
1298             and for direct destination operands (no FSR indirection),
1299             prevented redundant AND, fixes #1362800,
1300           (AccLsh): added parameter to disable masking of the result
1301         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1302           skip instructions with side-effects (like incfsz),
1303           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1304         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1305         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1306           fixes #1375263
1307
1308 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1309
1310         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1311         volatile variables as spill location
1312
1313 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1314
1315         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1316         replacing literals
1317         * support/regression/tests/bug-1376320.c: added
1318
1319 2005-12-08 Raphael Neider <rneider AT web.de>
1320
1321         * src/pic/device.c: renamed is_shared to pic14_is_shared
1322         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1323         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1324           (is_valid_identifier): added for above workaround
1325
1326 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1327
1328         * device/lib/Makefile.in: fixed to enable port-specific-objects
1329         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1330           char, thanks Hubert Sack
1331         * doc/sdccman.lyx: documented --xstack-loc,
1332           elaborated a bit more on interrupts and pitfalls,
1333           removed "setjmp/longjmp unsupported",
1334           documented some unsupported C99 features
1335         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1336         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1337           if, thanks Hubert Sack
1338         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1339         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1340           make make_library
1341         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1342           regression tests can report resource usage (rfe 700441)
1343         * support/regression/collate-results.py: report resource usage
1344         * support/regression/ports/ds390/spec.mk,
1345         * support/regression/ports/hc08/spec.mk,
1346         * support/regression/ports/mcs51/spec.mk,
1347         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1348         * support/regression/ports/ds390/uCsim.cmd,
1349         * support/regression/ports/hc08/uCsim.cmd,
1350         * support/regression/ports/mcs51/uCsim.cmd,
1351         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1352         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1353           library, use the default one
1354         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1355           building the library
1356
1357 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1358
1359         * config.dsp: added dependency on .version and configure_vc.awk
1360         * device/include/setjmp.h: updated for --stack-auto and --xstack
1361         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1362         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1363         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1364         * device/lib/libsdcc.lib: added _setjmp
1365         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1366           (decorateType): fixed bug 1372851,
1367           (optimizeGetHbit): fixed warning
1368         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1369           array initialisation
1370         * support/regression/tests/bug1057979.c: added test for bug 1358192
1371         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1372
1373 2005-12-03 Borut Razem <borut.razem AT siol.net>
1374
1375         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1376           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1377
1378 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1379
1380         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1381         createIval): implement symbol independant "flexible array member",
1382         (createIvalCharPtr): implemented flexible array initialisation with a
1383         string
1384         * src/SDCCsymt.c (copyStruct): removed,
1385         (getSize): fixed misleading comment,
1386         (getAllocSize): removed, the additional allocation size is now in
1387         sym->flexArrayLength,
1388         (checkStructFlexArray): new, syntax checks for flexible array members,
1389         (compStructSize): added syntax checks for "flexible array members"
1390         (copyStruct): removed,
1391         (copyLinkChain): removed inefficient fix for bug 770487
1392         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1393         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1394         symbol->flexArrayLength
1395         * src/SDCCerr.c,
1396         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1397         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1398         * support/regression/tests/structflexarray.c: added
1399         * support/valdiag/tests/structflexiblearray.c: added
1400
1401 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1402
1403         * src/SDCCast.c (decorateType): fixed bug 1368489
1404         * support/Util/SDCCerr.c,
1405         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1406
1407 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1408
1409         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1410           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1411
1412 2005-11-27 Borut Razem <borut.razem AT siol.net>
1413
1414         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1415           support/cpp2/mkdeps.h: added command line option
1416           -obj-ext=<extension> to SDCPP to define object file externion, used
1417           for generation of make dependencies (-M)
1418         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1419
1420 2005-11-26 Borut Razem <borut.razem AT siol.net>
1421
1422         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1423           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1424           added pic and pic16 libraries
1425
1426 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1427
1428         * device/include/float.h: Corrected typo in prototype of __fsgt
1429
1430 2005-11-25 Borut Razem <borut.razem AT siol.net>
1431
1432         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1433           added creation of model-mcs51-stack-auto libraries
1434
1435 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1436
1437         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1438         and fields-list too
1439         * src/SDCCast.c (createIvalArray): removed obsolete comment
1440
1441 2005-11-24 Borut Razem <borut.razem AT siol.net>
1442
1443         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1444           added missing device/lib/mcs51/crt*.asm sources
1445
1446 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1447
1448         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1449
1450 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1451
1452         * device/lib/_fs2schar.c,
1453         * device/lib/_fs2sint.c,
1454         * device/lib/_fs2slong.c: optimized inline asm
1455
1456 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1457
1458         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1459           Better handling of floats between -1.0 and 0.0.
1460
1461 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1462
1463         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1464           (the missing "if"s prohibited removal of redundant labels)
1465
1466 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1467
1468         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1469           Properly convert floats between -1.0 and 0.0 to long, int, and char
1470           types (max integer value of negative floats tends to zero).
1471         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1472           Removed changes made so to work properly with floats between
1473           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1474           and _fs2char.c
1475
1476 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1477
1478         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1479         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1480         (genCast) cosmetic change
1481         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1482         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1483         from mcs51
1484         * support/regression/tests/bitfields (testSignedBitfields): added
1485
1486 2005-11-18 Borut Razem <borut.razem AT siol.net>
1487
1488         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1489         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1490           introduced SILENT option to make building of pic16 libraries less
1491
1492 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1493
1494         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1495           Now they work properly with floats between -1.0 and 0.0
1496         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1497
1498 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1499
1500         * src/SDCCicode.c (printOperand): added missing else
1501
1502 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1503
1504         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1505         reformatted for better readability
1506         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1507         signed bitfields
1508
1509 2005-11-17 Borut Razem <borut.razem AT siol.net>
1510
1511         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1512           introduced SILENT option to make building of pic16 libraries less
1513           verbose - used for nightly snapshot build
1514         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1515           available on Win32 platforms.
1516         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1517           medium, large, pic and pic16
1518
1519 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1520
1521         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1522           printf("%f"...) sets fraction to zero.
1523
1524 2005-11-16 Raphael Neider <rneider AT web.de>
1525
1526         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1527           fixes #1357221
1528         * src/pic/gen.c (genIfx): implemented for CARRY bit
1529         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1530           to generic pointers, fixes #1357332,
1531           (pic16_movLit2f): NEW,
1532           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1533
1534 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1535
1536         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1537
1538 2005-11-11 Raphael Neider <rneider AT web.de>
1539
1540         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1541         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1542           compute pointer's type from operand,
1543           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1544           improved single bit reads, fixes bug #1353379
1545
1546 2005-11-09 Borut Razem <borut.razem AT siol.net>
1547
1548         * support/scripts/sdcc.nsi: added lib/pic to the package
1549
1550 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1551
1552         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1553
1554 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1555
1556         * support/regression/tests/bug1348008.c: added
1557         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1558         * support/regression/tests/bug1337835.c: updated comment
1559
1560 2005-11-06 Borut Razem <borut.razem AT siol.net>
1561
1562         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1563           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1564           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1565           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1566           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1567           dynamic construction of cl_error_class and derivates - 2.nd try
1568
1569 2005-11-05 Borut Razem <borut.razem AT siol.net>
1570
1571         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1572           bug, which caused Bus Errors on sparc solaris
1573
1574 2005-11-04 Borut Razem <borut.razem AT siol.net>
1575
1576         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1577           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1578           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1579           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1580           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1581           and derivates to resolve the initialization problem on OSX
1582
1583 2005-11-02 Borut Razem <borut.razem AT siol.net>
1584
1585         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1586           corrected typo - #include <winsock2.h>
1587
1588 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1589
1590         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1591           (_asxxxx_mapping): added org directive for future enhancements
1592
1593 2005-11-01 Borut Razem <borut.razem AT siol.net>
1594
1595         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1596           enabled sockets on WIN32
1597         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1598
1599 2005-10-31 Borut Razem <borut.razem AT siol.net>
1600
1601         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1602           WIN32 backslash path delimiters should be escaped when used in C strings
1603         * support/regression/tests/bitfields.c: exclude failing assertions for
1604           __CYGWIN32__ and __MINGW32__ hosts
1605
1606 2005-10-30 Borut Razem <borut.razem AT siol.net>
1607
1608         * src/SDCCutil.c: corrected double comparison typo
1609
1610 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1611
1612         * device/lib/medium/Makefile: added for new memory model medium
1613         * device/include/asm/mcs51/features.h: updated for medium/pdata
1614         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1615           added Multiply & Accumulate sbit's and MAC0_PAGE define
1616         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1617         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1618         * device/lib/_mullong.c: update for medium model
1619         * device/lib/incl.mk: added medium model
1620         * doc/sdccman.lyx: documented medium model
1621         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1622         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1623         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1624         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1625           (allocParms): set SCLS and OCLS to pdata for medium model
1626         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1627           for pdata,
1628           (powof2): return <0 if not power of 2
1629         * src/avr/gen.c (genBitWise): use updated powof2
1630         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1631           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1632           (shiftLLeftOrResult): use B if necessary
1633         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1634         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1635         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1636         * support/regression/Makefile.in: added test-mcs51-medium
1637         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1638
1639 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1640
1641         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1642         specifier unsigned
1643         * device/lib/time.c (mktime): fixed bug 1334315
1644
1645 2005-10-28 Raphael Neider <rneider AT web.de>
1646
1647         * device/include/pic/p16f_common.inc: added common declarations
1648         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1649
1650 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1651
1652         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1653           (aopPutUsesAcc): added to predict accumulator use,
1654           (assignResultValue): save acc if necessary,
1655           (genMinusDec): store result if indirectly addressed,
1656           (genDivOneByte):  save acc if necessary,
1657           (movLeft2Result): bugfix if left already in acc,
1658           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1659             attention to accumulator use (esp. pdata),
1660           (genReceive): receive pdata correctly
1661         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1662         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1663
1664 2005-10-27 Raphael Neider <rneider AT web.de>
1665
1666         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1667
1668 2005-10-27 Raphael Neider <rneider AT web.de>
1669
1670         * .version: changed version to 2.5.4
1671         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1672         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1673           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1674             arithmetics support routines
1675         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1676         * device/lib/Makefile.in: also create installdir for pic
1677
1678         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1679           pic14 port as well
1680         * src/pic/device.c (dump_sfr): rewritten to delegate register
1681           placement to the linker (use `extern sym' rather than sym EQU addr),
1682           (validAddress): fixed to check last specified address
1683         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1684           (popGetLit): truncate literal value to 8 bit,
1685           (popGet): moved assert to more appropriate place
1686           (popGetExternal): create pCode operand from and mark the according
1687             symbol as being `extern'
1688           (popGetAddr): added sanity check on immediate's offset, provide
1689             GPOINTER tag on demand
1690           (aopPut): fixed for immediates,
1691           (mov2w_op): move operand's address or contents to WREG (depending on
1692             operand type), safer variant of mov2w,
1693           (movwf,call_libraryfunc): NEW, handy abbreviations,
1694           (get_argument_pcop,get_return_val_pcop,pass_argument,
1695           get_returnvalue): interface for accessing function parameters and
1696             return values,
1697           (assignResultValuei,genRet): use new parameter/return value interface
1698           (pic14_getDataSize): back to old version handling generic pointers,
1699           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1700             provided implementation and/or fixed old one,
1701           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1702             calls, removed legacy 8051 reference code
1703           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1704           (loadSignToC): NEW, move the operands sign bit to CARRY,
1705           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1706             genRightShiftSigned, accepts negative shift counts,
1707           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1708           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1709             generic pointers, __data pointers and __code pointers,
1710           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1711             and signed bitfields, limit bitfields to 8 bit,
1712           (genDataPointerGet): fixed number of bytes read,
1713           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1714           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1715             pointers to constant data are no longer assumed to point to __code
1716             space, removed invalid pointer types,
1717           (bitpatternFromVal): retrieve the PICs representation of an integer
1718             or float literal,
1719           (genDataPointerSet): fixed assigning to po_immediate operands,
1720           (genGenPointerSet): implemented as library call,
1721           (genIfx): fixed incorrect condition,
1722           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1723             provide GPOINTER tag according to destination's storage class,
1724           (genCast): added code to handle casting to generic pointers, added
1725             sign-/zero extension of the result
1726           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1727         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1728         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1729           extend the result
1730         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1731           address/register resides in the shared banks
1732           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1733             put all variables into separate sections (have the linker arrange
1734             them)
1735           (picglue): put init code and interrupt handlers in separate sections
1736         * src/pic/main.c: added port specific options table, modified to PORT
1737           structure to make GPOINTERs 3 byte, added pic14_options
1738           (_pic14_do_link): private linking routine (update paths to libraries,
1739             add libsdcc.lib by default)
1740         * src/pic/main.h: declare pic14_options
1741         * src/pic/pcode.c: fixed instructions i/o relations,
1742           (RegCond): reverted to correct version,
1743           (newpCodeOpLit): truncate literals to 8 bit,
1744           (genericPrint): added debug output,
1745           (getRegFromInstruction): fixed for various operand types, simplified
1746           (BuildFlow): fixed broken handling of isntructions with labels
1747           (LinkFlow): start at last instruction in flow (skip trailing comments),
1748             pass the flow on to the next instruction after CALL
1749           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1750           (insertPCodeInstruction): fixed inserting after a skip instruction,
1751           (DoBankSelect): fixed for labeled instructions
1752           (OptimizepBlock): honor --nopeep switch
1753           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1754         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1755         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1756           (pCodeOptime2pCodes): allow disabling this optimization via
1757             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1758             but is still buggy), started implementation of a dataflow based
1759             pCode optimization (CSE + dead code elimination)
1760           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1761         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1762           names are independant of the stack location and therefore portable across
1763           devices
1764
1765 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1766
1767         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1768           (selectSpil): fixed bug 1337835 by not spilling bit variables
1769         * support/regression/tests/bug1337835.c: added test for this bug
1770         * src/mcs51/peeph.def: restart after rule 3.c,
1771           addded rules 263.x to optimize loading constants
1772
1773 2005-10-26 Raphael Neider <rneider AT web.de>
1774
1775         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1776         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1777           (genAssign): emit warning when casting literals to generic pointer
1778             type, also applies when taking the address of a fixed variable,
1779           (genCast): improved casting to generic pointers
1780         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1781           extern variables, added verbose error message
1782         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1783
1784 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1785
1786         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1787         carry must be complemented too
1788         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1789         could be emitted by genMinus
1790         * src/SDCCval.c (constVal): fixed bug 1305065
1791
1792 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1793
1794         * src/SDCCast.c (addCast): added promotion for bit variables
1795         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1796         promotion casts + optimisation
1797         (optimizeGetWord): fix warning 'i' might be used uninitialized
1798         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1799         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1800
1801 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1802
1803         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1804         all chars are promoted to int; promotion should be handled in SDCCast.c
1805
1806 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1807
1808         * device/lib/_strcmp.c: Fixed bug 1326457
1809
1810 2005-10-11 Raphael Neider <rneider AT web.de>
1811
1812         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1813         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1814
1815 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1816
1817         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1818         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1819
1820 2005-10-04 Raphael Neider <rneider AT web.de>
1821
1822         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1823           device/lib/pic16/pics.all: added pic18f1320
1824         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1825
1826 2005-09-30 Raphael Neider <rneider AT web.de>
1827
1828         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1829         * src/pic16/devices.inc: NEW, provides device descriptions
1830         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1831
1832 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1833
1834         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1835           GETHBIT
1836
1837 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1838
1839         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1840           documented Any Order Bit, Higher Order Byte and Higher Order Word
1841         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1842         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1843           (optimizeGetAbit): new, to get any bit, not only the high bit,
1844           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1845           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1846           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1847           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1848             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1849             GETABIT, GETBYTE, GETWORD: decorate them,
1850           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1851           (ast_print): added GETABIT, GETBYTE, GETWORD
1852         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1853         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1854           (geniCodeBinary): new generic binary icode,
1855           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1856         * src/port.h: updated comment for PORT.hasExtBitOp
1857         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1858           (genGetByte): new, to get a single byte,
1859           (genGetWord): new, to get a word from a long,
1860           (gen51Code): added GETABIT, GETBYTE, GETWORD
1861         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1862
1863 2005-09-23 Raphael Neider <rneider AT web.de>
1864
1865         * configure.in, configure: have device/lib/pic configured
1866         * device/lib/Makefile.in: added model-pic14
1867         * device/lib/clean.mk: added pic/ to clean rule
1868         * device/lib/pic: added rudimentary pic14 library providing support
1869           functions for multiplication/division/generic pointer access
1870         * src/SDCCopt.c (convilong): mark support functions as extern
1871           for pic14 port as well
1872         * src/pic/gen.c (genMult): added assertions,
1873           (genpic14Code): emit warning on unhandled iCodes
1874         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1875         * src/pic/pcode.c (pCodeOpCopy),
1876         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1877           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1878           SFR_REGISTER}), made safe for future extensions
1879         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1880           instructions even if preceeded by SKIP instructions (also remove
1881           them); removed unused code
1882         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1883           prevents leaving parts of the structure uninitialized after copying
1884
1885 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1886
1887         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1888           ago by me
1889         * support/regression/tests/addsub.c: added test for the bug
1890
1891 2005-09-21 Raphael Neider <rneider AT web.de>
1892
1893         * device/include/pic16/pic18f1220.h,
1894           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1895         * device/lib/pic16/Makefile.rules: added missing opening paren
1896         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1897           are provided in genutils.c,
1898           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1899           operand/result sizes,
1900           (genCmp): assert on NULL pointers first, then check deref'ed values
1901         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1902           result size
1903
1904 2005-09-18 Raphael Neider <rneider AT web.de>
1905
1906         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1907           as these are now unused,
1908           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1909         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1910           local, avoids uninitialized pointer dereference on r->name
1911         * src/pic16/ralloc.c (newReg): fixed indentation
1912
1913 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1914
1915         * src/SDCCval.c (constVal): fixed bug 730366
1916         * support/Util/SDCCerr.c,
1917         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1918
1919 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1920
1921         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1922
1923 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1924
1925         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1926
1927 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1928
1929         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1930           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1931         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1932           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1933         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1934         * packihx/packihx.c (hexDigit): made c unsigned char
1935         * as/mcs51/lklibr.c (fndsym),
1936         * link/z80/lkgb.c (gb),
1937         * link/z80/lklibr.c (fndsym),
1938         * link/z80/lkrloc.c (relr),
1939         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1940         * src/SDCC.lex (checkCurrFile, process_pragma),
1941         * src/SDCCglue.c (spacesToUnderscores),
1942         * src/SDCCmain.c (setParseWithComma, processFile),
1943         * src/asm.c (tvsprintf, printCLine),
1944         * src/avr/gen.c (emitcode, aopPut),
1945         * src/ds390/gen.c (emitcode),
1946         * src/hc08/gen.c (emitcode, emitinline),
1947         * src/mcs51/gen.c (emitcode, genInline),
1948         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1949           tokenizeLineNode),
1950         * src/pic/ralloc.c (debugLog),
1951         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1952           tokenizeLineNode),
1953         * src/pic16/ralloc.c (debugLog),
1954         * src/z80/main.c (_process_pragma):
1955            made all ctype.h function calls safe
1956         * src/SDCCopt.c: include math.h for fabs
1957         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1958           and used them throughout the code to make ctype.h function calls safe
1959         * src/ds390/main.c (asmLineNodeFromLineNode),
1960         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1961         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1962            unsigned char*
1963         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1964           (newpCodeAsmDir): made ctype.h function calls safe
1965         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1966           pic16_emitcode):  made lbp unsigned char*
1967         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1968           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1969         * src/xa51/gen.c (emitcode),
1970         * src/z80/gen.c (_emit2): made lbp unsigned char*
1971         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1972            char*
1973
1974 2005-09-05 Raphael Neider <rneider AT web.de>
1975
1976         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1977           access bank splitpoint
1978
1979 2005-09-05 Raphael Neider <rneider AT web.de>
1980
1981         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1982
1983 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1984
1985         * .version: changed to version 2.5.3
1986         * doc/sdccman.lyx: changed version to 2.5.3,
1987           documented --codeseg and --constseg and pragma codeseg and constseg,
1988           documented bit parameters (reentrant) and bit returning
1989         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
1990            currFunc->recvSize, but is this ok for all ports?
1991           (ast2iCode): result of ~ on unsigned char must be cast to int for
1992            bool to work
1993         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
1994           function pointers in bit space
1995         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
1996           (processFuncArgs): call port.reg_parm() with reentrancy info
1997         * src/port.h,
1998         * src/avr/main.c,
1999         * src/ds390/main.c,
2000         * src/hc08/main.c,
2001         * src/pic/main.c,
2002         * src/pic16/main.c,
2003         * src/xa51/main.c,
2004         * src/z80/main.c: port.reg_parm prototype extended with
2005           "bool reentrant" parameter
2006         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2007           options.stackAuto for allocating bit register parameters
2008         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2009           (genSend): set BitBankUsed if it is,
2010           (selectRegBank): factored out of genCall for use in genPcall,
2011           (genCall): removed redundant dtype assignmen, use selectRegBank,
2012           (genPcall): handle returning in Carry properly, save in F0 if needed,
2013           (genReceive): handle bit register parameters
2014         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2015           (mcs51_assignRegisters): enable bit registers for all reentrant
2016            functions and don't set BitBankUsed unconditionally
2017         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2018         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2019         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2020
2021 2005-08-27 Borut Razem <borut.razem AT siol.net>
2022
2023         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2024         ppc-osx (Darwin) does not support -u option. It seems that it is
2025         supported only on Linux - GNU cp
2026
2027 2005-08-25 Borut Razem <borut.razem AT siol.net>
2028
2029         * sim/ucsim/gui.src/serio.src/Makefile.in,
2030           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2031           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2032           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2033           install and strip, since the strip at /usr/ccs/bin should be used
2034           on solaris
2035
2036 2005-08-24 Borut Razem <borut.razem AT siol.net>
2037
2038         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2039
2040 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2041
2042         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2043         ffffffffu
2044
2045 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2046
2047         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2048         * as/mcs51/lkmain.c (link_main): fixed warning
2049         * device/include/stdbool.h: ds390 has no advanced bit support yet
2050         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2051         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2052         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2053           and updated their macros
2054         * src/SDCCval.c (constVal): updated comment for renamed b_long
2055
2056 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2057
2058         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2059         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2060           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2061           (oprio): set priority for '['
2062         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2063            and adb_24_bit
2064         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2065         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2066         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2067         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2068           added overlayable BIT_BANK area
2069         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2070           (summary2): explain 'T' in legenda
2071         * as/mcs51/lkrloc.c: replaced old K&R style,
2072           (relr): added R_BIT processing,
2073           (errmsg): added "Bit-addressable relocation error",
2074           (adb_bit): added for converting from byte- to bit-addressable space,
2075           (adb_24_bit): added for converting from byte- to bit-addressable space
2076         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2077            used in reentrant functions now even as return value
2078         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2079         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2080           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2081         * src/SDCCglobl.h: added indicator BitBankUsed
2082         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2083            the bit registers b0-b7
2084         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2085           (geniCodeCast): fixed bug 1263853,
2086           (geniCodeLogicAndOr): put result in bool or char,
2087           (geniCodeReceive): added parameter func for accessing the return type,
2088           (geniCodeFunctionBody): pass func to geniCodeReceive
2089         * src/SDCCmain.c: added indicator BitBankUsed
2090         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2091         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2092           (checkSClass): don't put automatic bool/bit on stack,
2093           (checkFunction): removed check on function cannot return bit
2094         * src/SDCCsymt.h: added newBoolLink prototype
2095         * src/mcs51/gen.c (rb1regs): added bit registers,
2096           (movc): created for assigning to carry,
2097           (pushReg, popReg): created for pushing registers,
2098           (sameRegs): check both AOP_REG and AOP_CRY types,
2099           (aopOp): handle bit registers,
2100           (aopPut): optimization no self-assign,
2101           (saveRegisters): push reg->base (bits) only once for bit registers,
2102            and use pushReg,
2103           (unsaveRegisters): pop reg->base only once and use popReg,
2104           (assignResultValue): added parameter func and return in carry for bits,
2105           (genIpush): optimization no reload in A if not changed,
2106           (genSend): bit parameters in reentrant functions are passed in bit
2107            registers by first assigning to bits in B, then save registers and
2108            copy B to bits,
2109           (genCall): handle returning in Carry properly, save it in F0 if needed,
2110           (genPcall): updated assignResultValue call, this is not safe yet for bit
2111            returning function !!!
2112           (genFunction): don't generate equ's for bit registers and use pushReg,
2113           (genEndFunction): take care of bit returning functions and use popReg,
2114           (genRet): return bit in Carry,
2115           (genIfx): optimize bit registers and other directly addressable bits,
2116           (genReceive): updated assignResultValue call
2117         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2118           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2119            registers when using stack-auto
2120         * src/mcs51/ralloc.c (_G): added allBitregs,
2121           (regs8051): added the bit registers,
2122           (createStackSpil): use macro IS_BIT,
2123           (getRegBit): added to allocate a bit register, else spill,
2124           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2125           (updateRegUsage): factored out to ease stepping while debugging,
2126           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2127            also allocate bit registers,
2128           (fillGaps): handle bit registers,
2129           (findAllBitregs): added to create bit vector with all bit registers,
2130           (mcs51_allBitregs): returns this bit vector,
2131           (mcs51_assignRegisters): when using stack-auto use bit registers for
2132            passing parameters and creating local variables
2133         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2134
2135 2005-08-22 Borut Razem <borut.razem AT siol.net>
2136
2137         * device/lib/Makefile.in: replaced find option -or with -o
2138           to make it run on solaris
2139
2140 2005-08-22 Raphael Neider <rneider AT web.de>
2141
2142         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2143           fixes #1265442 (crash on Solaris)
2144
2145 2005-08-20 Borut Razem <borut.razem AT siol.net>
2146
2147         * configure, configure.in: added tests for libsocket and libnsl libraries,
2148           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2149           from support/regression/Makefile.in
2150         * support/regression/Makefile.in: added
2151         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2152         * sim/ucsim/libtool: regenerated on sparc-solaris
2153         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2154           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2155           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2156           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2157           sparc-solaris, which doesn't use GNU ld linker
2158         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2159         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2160
2161 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2162
2163         * src/mcs51/peeph.def: updated comments
2164
2165 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2166
2167         * device/lib/_gptrget.c,
2168         * device/lib/_gptrput.c: slightly shorter
2169         * doc/sdccman.lyx: incremented version
2170         * src/mcs51/peeph.def: moved peephole comments to the line of first
2171           change to better keep line correlation, reanimated 186.e
2172         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2173
2174 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2175
2176         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2177           David Saxton with quotes around file name.
2178
2179 2005-08-15 Borut Razem <borut.razem AT siol.net>
2180
2181         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2182           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2183           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2184           make tests run on x86_64 platform
2185
2186 2005-08-13 Raphael Neider <rneider AT web.de>
2187
2188         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2189           as it might be executed DURING a build (parallel make is wonderful)
2190
2191 2005-08-13 Raphael Neider <rneider AT web.de>
2192
2193         * device/lib/Makefile.in (port-specific-objects-pic16):
2194           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2195         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2196           dependency
2197         * device/lib/pic16/Makefile.rules: build subdirs before creating
2198           the library, removed builddir rule, create $(builddir) early in
2199           recurse rule, use empty recurse rule for leaf directories
2200         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2201           mkdir errors (race condition), removed duplicate suffix "hex"
2202           from clean rules
2203         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2204         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2205           prevents mkdir -p from aborting on Alpha
2206
2207 2005-08-12 Raphael Neider <rneider AT web.de>
2208
2209         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2210           db-statements in order to allow for arrays of pointers in code
2211           sections to be placed without interspersed 0-padding, fixes
2212           bug #1256215
2213         * (emitStatistics): fixed division by zero for pic18f1220
2214         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2215           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2216         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2217         * (pic16_pCodeConstString): keep track of already emitted string
2218           literals to prevent "duplicate definitions of symbol _str_NR"
2219         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2220           debug message
2221         * device/lib/Makefile.in: ignore failing PIC16 library builds
2222         * device/lib/pic16/Makefile: do not build if gputils are missing
2223         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2224
2225 2005-08-10 Raphael Neider <rneider AT web.de>
2226
2227         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2228           my last commit)
2229
2230 2005-08-10 Raphael Neider <rneider AT web.de>
2231
2232         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2233           Rokas' patch to add the new fixed point type "__fixed16x16"
2234         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2235           functions for __fixed16x16 arithmetics
2236         * device/lib/pic16: reimplemented the build system to support
2237           a separate build directory, better handling of libio (create
2238           the library in a separate subdir for each architecture) and
2239           easier configuration (centralized in Makefile.common)
2240
2241 2005-08-07 Raphael Neider <rneider AT web.de>
2242
2243         * src/pic16/gen.c (genrshTwo): fixed sign extension
2244         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2245         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2246           added T0CONbits
2247         * device/include/pic16/pic18f4220.h: NEW, header for
2248           pic18f4220 and pic18f4320
2249         * device/include/pic16/pic18fregs.h: added new devices,
2250           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2251         * device/include/pic16/signal.h: resolved name clashes
2252           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2253           to also allow testing for interrupt enable bits, added
2254           comments on how to use the macros
2255         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2256         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2257           register definitions for the devices
2258         * device/lib/pic16/pics.all: added new devices
2259         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2260           allocated memory
2261         * device/lib/pic16/libc/stdlib/memfree: do not count
2262           the block header as free memory
2263         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2264           simplified and added missing end-of-blocklist-marker
2265           (reported by Peter Onion, fixes #1252814)
2266         * (_mergeHeapBlock): fixed loop condition
2267         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2268           len==0, restructured code
2269         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2270           up a bit, reduced bitfield accesses, prevent endless loops
2271           in case of heap corruption
2272         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2273           "unreferenced arguments/must return a value" warnings
2274         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2275           replaced BAUDREG with SPBRG
2276         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2277           device/lib/pic16/debug/gstack/gstack.c: replaced
2278           _naked, _asm, _endasm with __naked, __asm, __endasm
2279
2280 2005-08-05 Raphael Neider <rneider AT web.de>
2281
2282         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2283           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2284
2285 2005-08-05 Borut Razem <borut.razem AT siol.net>
2286
2287         * device/lib/Makefile.in: added missing ';'
2288         * configure: removed ^M characters
2289
2290 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2291
2292         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2293           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2294           License
2295
2296 2005-08-04 Borut Razem <borut.razem AT siol.net>
2297
2298         * configure.in: pic16 libraries build 2nd try - enable running
2299           configure in device/lib/pic16
2300         * configure: regenerated from configure.in
2301         * device/lib/Makefile.in: create $(PORT)/bin directory
2302
2303 2005-08-03 Raphael Neider <rneider AT web.de>
2304
2305         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2306           to get/set values via pointers
2307         * (genUnpackBits,genPackBits): changed detection of
2308           ptr->bitfield vs. sym.bitfield, fixed access via generic
2309           pointers, removed dead (wrong) code for multibyte bitfields
2310         * (genNearPointerGet, genGenPointerGet): removed useless code,
2311           fixed bitfield detection, fixes #1250594
2312         * (genNearPointerSet): removed useless code
2313         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2314           and introduced macro pic16_emitpcode that conditionally emits
2315           the origin of the following pCode (useful for debugging SDCC)
2316         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2317         * (createDefmap): fixed handling of LFSR for --optimize-df
2318
2319 2005-08-02 Borut Razem <borut.razem AT siol.net>
2320
2321         * device/lib/Makefile.in: pic16 libraries build enabled since
2322           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2323
2324 2005-08-02 Raphael Neider <rneider AT web.de>
2325
2326         * src/pic16/gen.c (genPackBits): removed deprecated warning
2327         * (genGenPointerSet): fixed bitfield detection
2328
2329 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2330
2331         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2332
2333 2005-07-31 Raphael Neider <rneider AT web.de>
2334
2335         * device/lib/pic16/libdev/pic18f458.c,
2336           device/include/pic16/pic18f458.h: added missing T0CONbits
2337
2338 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2339
2340         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2341
2342 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2343
2344         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2345
2346 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2347
2348         * device/include/mcs51/at89c51ed2.h: added.
2349
2350 2005-07-23 Raphael Neider <rneider AT web.de>
2351
2352         * src/pic/gen.h: added emitpcode macro for debugging
2353         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2354           and replace by macro adding debug information on demand
2355         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2356         * (gencjne): tried to fix; replaced with correct (slower) code
2357         * (gen{Unp,P}ackBits): fixed single bit access
2358         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2359         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2360           previous instruction
2361         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2362           register has to be handled with care (forbidding movement
2363           of assignments/uses, removing assignments completely, ...)
2364         * (pCodeOptime2pCodes): make use of regIsSpecial
2365         * added lots of debugging output (commented out)
2366         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2367           from being reused as result UNLESS it is known to work
2368
2369 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2370
2371         * support/Util/dbuf.h: include <stddef.h> for size_t
2372         * .version: changed to version 2.5.2
2373
2374 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2375
2376         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2377
2378 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2379
2380         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2381           (genModOneByte): removed needless psha/pula
2382
2383 2005-07-22 Raphael Neider <rneider AT web.de>
2384
2385         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2386           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2387         * src/pic/gen.c (resolveIfx): do not "invent" labels
2388         * (genSkipc): changed to positive logic
2389         * (genSkipCond): removed as no longer needed
2390         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2391           backport from PIC16
2392         * (genLeftShift): check operands are in different registers
2393         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2394           INCF does not update CARRY...
2395         * src/pic/main.c: fixed _linkCmd
2396         * src/pic/pcode.c (unlinkpCode): added inactive code
2397         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2398           alive (do not assign result and operand overlapping registers)
2399
2400 2005-07-22 Raphael Neider <rneider AT web.de>
2401
2402         * src/pic/device.c (dump_sfr): replaced register declaration with
2403           call to emitSymbolToFile() to avoid duplicate symbols
2404         * (assignRelocatableRegisters): do not declare external symbols
2405         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2406           right (take size of type, not etype)
2407         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2408         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2409         * (packRegsForAccUse): disabled assignment of WREG as
2410           the result reg to prevent occurence of just fixed #1235003,
2411           fixes #1242954
2412         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2413           symbols (avoids duplicate symbols in .asm file)
2414         * (pic14emitRegularMap): use emitSymbolToFile()
2415         * src/pic/gen.c (aopOp): fixed spillLocation handling
2416         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2417         * (genDataPointerSet): removed unneccessary variables/output
2418
2419 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2420
2421         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2422         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2423
2424 2005-07-21 Raphael Neider <rneider AT web.de>
2425
2426         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2427           architecture cannot handle them efficiently, fixes bug #1235003
2428         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2429           check for empty sets before using them (fixes bug #1232190)
2430
2431 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2432
2433         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2434           (lnksect2): generate warnings for memory overlap
2435         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2436           constseg to set the name of these segments so you can instruct the linker
2437           to place them in banks
2438         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2439         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2440           added code_seg and const_seg to options
2441         * src/SDCCglue.c (emitMaps): use options.const_seg,
2442           (createInterruptVect): put interrupt vectors in segment HOME,
2443           (glue): put HOME before static segment and put the main glue in HOME,
2444           (glue): use options.code_seg
2445         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2446         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2447           these segments so you can instruct the linker to place them in banks
2448           (linkEdit): use code_loc for HOME segment which should be the first
2449           segment in code memory now
2450         * src/SDCCmem.c: fixed more stuff like bug 1238386
2451         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2452           (changePointer): don't change function pointers to code pointers for
2453           banked functions,
2454           (compareType): added exceptional check for banked function pointers
2455         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2456         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2457           after static in code memory
2458         * src/mcs51/gen.c: added aopLiteralLong prototype,
2459           (aopForSym): use getSize for functions,
2460           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2461           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2462           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2463           the segment,
2464           (genPcall): use call for literal function pointers and generate banked
2465           calls over the one trampoline so there's only one place for the user to
2466           modify according to his/hers hardware,
2467           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2468           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2469         * src/mcs51/main.c: added keyword banked,
2470           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2471         * support/Util/SDCCerr.c,
2472         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2473           needed for passing the bank and address to the trampoline
2474         * device/lib/mcs51/crtbank.asm: added for bankswitching
2475         * device/lib/mcs51/Makefile: added crtbank
2476
2477 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2478
2479         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2480           for fields at offset 0 of a struct or union as reported
2481           on 2005-07-07 in the developer mailing list.
2482
2483 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2484
2485         * src/SDCCmem.c: fixed bug 1238386
2486
2487 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2488
2489         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2490           (patch #1144962), added peephole 300, enabled 259.x
2491         * doc/sdccman.lyx: removed screenshot and provided link instead
2492
2493 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2494
2495         * doc/sdccman.lyx: added section about debugging with ddd
2496         * doc/figures/ddd_example.eps: screenshot of debugging session
2497
2498 2005-07-04 Raphael Neider <rneider AT web.de>
2499
2500         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2501           like CODE pointers, fixes #1115683
2502         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2503           call, fixes bugs #1232211, #1228110,
2504           fixed wrong casts to pCodeFlow from pCodeInstructions
2505
2506 2005-07-04 Raphael Neider <rneider AT web.de>
2507
2508         * src/pic/gen.c (popGet): changed assert to allow for
2509           bit operands
2510         * (popGetAddr): changed signature to provide
2511           an additional index, patched all call sites
2512         * (genCmpEq): handle literal-like operands correctly
2513         * (genAddrOf): added sanity checks on __code/__data pointers
2514         * (genAssign): added handling of symbols from __code section
2515         * (gencjne): do not generate code for comparisons whose result
2516           is neither stored nor used, fixes bug #1171114
2517         * (AccLsh, AccRsh): operate on operand instead of WREG
2518         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2519           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2520           by known count
2521         * rewrote complete shift-by-literal logic, commented unused
2522           functions out
2523         * (genConstPointerGet): get multiple bytes (if result size > 1),
2524           fixed handling of non-immediate addresses
2525         * (genPointerGet): handle CODE pointers like CONST pointers
2526         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2527         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2528           operand is to be treated as a literal or not
2529         * (mov2w,genPcall,genCmpEq),
2530           src/pic/genarith.c: use aop_isLitLike() to decide between
2531           literal/register contents
2532         * (addSign): added missing offset
2533         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2534           only emit comment in debug-mode,
2535           use {aop,op}_isLitLike throughout the file
2536         * src/pic/glue.c: fix initializers for pointers (work in progress)
2537         * src/pic/pcode.c (get_op): honor index on _const symbols
2538         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2539         * (dumppBlock): added pCode size estimation
2540         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2541           check for IS_SYMOP before OP_SYMBOL'ing
2542         * fixed indentation, compacted switch-statements
2543         * (allocReg): find free register and allocate it instead of
2544           allocating new registers all the time
2545         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2546           registers as its operands (necessary only for multibyte GETs)
2547
2548 2005-07-01 Raphael Neider <rneider AT web.de>
2549
2550         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2551           debugging .asm-output macros FENTRY + FEXIT
2552         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2553           way... I wonder...
2554         * (emitpComment): NEW, printf to pCode
2555         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2556           offset handling
2557         * (popGetAddr): NEW, variant of popGet to access an immediates
2558           high(er) bytes instead of the n'th byte of memory they reference,
2559           replaced popGet with popGetAddr where neccessary
2560         * (genDataPointerGet): reactivated and fixed implementation
2561         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2562           accesses
2563         * (genDataPointerSet): fixed multibyte assignments
2564         * (genpic14Code): fixed --i-code-in-asm handling
2565         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2566         * (genPlus): fixed index-out-of-bounds error
2567         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2568         * src/pic/ralloc.c: added debugging output macro FENTRY2
2569         * (spillThis): fixed indentation, enbraced for-body for clarity
2570         * (rematStr): commented out as now unused
2571         * (regTypeNum): commented out special spill case (overwrites
2572           arbitrary values)
2573         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2574
2575 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2576
2577         * doc/sdccman.lyx: documented sfr16/sfr32,
2578           added example for using storage class with function pointers
2579         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2580
2581 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2582
2583         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2584         * device/lib/_itoa.c,
2585         * device/lib/_ltoa.c: optimized codesize
2586         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2587           but don't know how to suppress the double warning.
2588         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2589         * support/Util/SDCCerr.c,
2590         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2591
2592 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2593
2594         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2595           fixed old K&R prototypes
2596         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2597         * device/lib/_gptrget.c,
2598         * device/lib/_gptrgetc.c,
2599         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2600           also new versions for small generic pointers and banked generic pointers
2601         * src/port.h: added const_name
2602         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2603         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2604         * src/SDCCcse.c (findPrevIc): check all associative operators
2605         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2606         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2607         * src/SDCCmem.c: updated comments,
2608           set far-space to 0 for pdata, results in optimized code
2609         * src/SDCCmem.h: added macro CONST_NAME
2610         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2611           moving the info into the highest bits, see also gptrget/gptrput
2612         * src/src.dsp: added sdcc.ico to project files
2613         * src/avr/gen.c (genCast): fixed bug 0x%d
2614         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2615         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2616           relation between ptr_type and DCL_TYPE,
2617           (genCast): fixed bug 0x%d
2618         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2619           (CODE)" for const_name
2620         * src/hc08/gen.c (genCast): fixed bug 0x%d
2621         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2622           (hc08_port): added "CONST (CODE)" for const_name
2623         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2624           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2625           between ptr_type and DCL_TYPE,
2626           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2627           operand* and took AOP() inside function so sfr-ness can be checked,
2628           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2629           new prototype,
2630           (genFunction, genEndFunction): optimized stack setup,
2631           (genMinus): optimized for literals with ending zeroes (in bytes),
2632           (genCast): fixed bug 0x%d
2633         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2634           (mcs51_port): added "CONST (CODE)" for const_name
2635         * src/mcs51/peeph.def: made rule 226 more generic
2636         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2637         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2638         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2639         * src/z80/main.c (z80_port): added NULL for const_name,
2640           (gbz80_port): added NULL for const_name
2641         * support/regression/tests/bug663539.c,
2642         * support/regression/tests/sfr16.c: new tests
2643
2644 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2645
2646         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2647
2648 2005-06-24 Raphael Neider <rneider AT web.de>
2649
2650         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2651           corrected typos...
2652         * device/include/pic16/signal.h: added USBIF
2653           and SIG_USB
2654
2655 2005-06-24 Raphael Neider <rneider AT web.de>
2656
2657         * device/lib/pic16/libdev/pic18f2455.c,
2658           device/include/pic16/pic18f2455.h: NEW
2659         * device/include/pic16/pic18fregs.h,
2660           device/lib/pic16/pics.all,
2661           src/pic16/device.c: added 18f2455
2662         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2663           device/include/pic16/{pic18f[68][567].h,usart.h}:
2664           replaced MULTIPLE_USARTS define with more relaible
2665           compatibility sfrs (for USART access)
2666
2667 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2668
2669         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2670           and the output asm file line is printed on two lines.
2671
2672 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2673
2674         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2675           BGT, BLE, BHI, and BLS instructions
2676         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2677           genCmpEq): removed
2678         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2679           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2680           fixes bug #1216342
2681         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2682
2683 2005-06-15 Raphael Neider <rneider AT web.de>
2684
2685         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2686         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2687         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2688           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2689           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2690
2691 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2692
2693         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2694           Marcel Telka in bug #1215704
2695
2696 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2697
2698         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2699           located in shared memory bank.
2700
2701 2005-05-31 Raphael Neider <rneider AT web.de>
2702
2703         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2704           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2705           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2706
2707 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2708
2709         * device/lib/_strncpy.c: fixed the fix
2710
2711 2005-05-26 Raphael Neider <rneider AT web.de>
2712
2713         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2714           initializers with \0, bug #1208187
2715         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2716           intializers with \0, bug #1208187
2717
2718 2005-05-26 Raphael Neider <rneider AT web.de>
2719
2720         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2721           initializers with \0, bug #1208187
2722         * src/pic16/main.c (_process_pragma): added sanity checks
2723           for stack position and size, emit warnings when appropriate
2724
2725 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2726
2727         * device/lib/_strncpy.c: fixed not filling with \0
2728
2729 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2730
2731         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2732           createFunction),
2733         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2734           compound_statement),
2735         * src/SDCCsymt.h,
2736         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2737
2738 2005-05-24 Raphael Neider <rneider AT web.de>
2739
2740         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2741
2742 2005-05-24 Raphael Neider <rneider AT web.de>
2743
2744         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2745           TRISE definitions, closes bug #1162453
2746
2747 2005-05-22 Raphael Neider <rneider AT web.de>
2748
2749         * src/pic16/main.c (_process_pragma): check for missing
2750           arguments to pragmas code and udata
2751         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2752           consistency fixes to match other headers (thanks to Jim Paris)
2753         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2754
2755 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2756
2757         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2758
2759 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2760
2761         * support/regression/tests/bug1198642.c: new test
2762         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2763         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2764         * support/scripts/resource.h,
2765         * support/scripts/resource.rc,
2766         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2767         * support/scripts/sdcc.ico: added 32x32 icon
2768
2769 2005-05-18 Raphael Neider <rneider AT web.de>
2770
2771         * device/lib/pic16/libdev/pic18f*.c,
2772         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2773           keywords to "__sfr" and "__at (X)"
2774         * device/include/pic16/pic18fregs.h: added pic18f4520
2775         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2776           #1203088 (MPLAB compatibility)
2777
2778 2005-05-17 Raphael Neider <rneider AT web.de>
2779
2780         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2781         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2782         * device/lib/pic16/pics.all: added new devices
2783         * src/pic16/device.c: added support for pic18f4520
2784
2785 2005-05-16 Raphael Neider <rneider AT web.de>
2786         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2787         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2788         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2789           convenience function for bit access
2790
2791 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2792
2793         * device/lib/printf_large.c: fixed bug 1193299
2794         * support/regression/tests/bug1057979.c: added test %3.3s
2795
2796 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2797
2798         * device/include/mcs51/8051.h,
2799         * device/include/mcs51/8052.h: made parseable with lint
2800         * device/include/mcs51/lint.h: added include file for (sp)lint
2801         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2802         * doc/cdbfileformat.lyx,
2803         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2804
2805 2005-05-14 Raphael Neider <rneider AT web.de>
2806
2807         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2808         * device/lib/pic16/libc/stdlib/itoa.c (new)
2809         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2810         * device/lib/pic16/libio/Makefile: exclude subdir according to
2811           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2812         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2813         * src/pic16/gen.c (genFunction): prevent annoying warning
2814         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2815           nameclashes on BeOS
2816         * support/cpp2/cppmain.c (cpp_output_string): new
2817         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2818           fixes bug 1116802
2819
2820 2005-05-13 Borut Razem <borut.razem AT siol.net>
2821
2822         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2823
2824 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2825
2826         * .version: changed to version 2.5.1; back to bleeding edge development
2827
2828 2005-05-11 Borut Razem <borut.razem AT siol.net>
2829
2830         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2831           generate PDF version 1.3 documents
2832
2833 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2834
2835         * .version: changed to version 2.5.0
2836
2837 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2838
2839         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2840
2841 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2842
2843         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2844         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2845         well as many smaller updates.
2846         * .version: changed to version 2.5.0-pre1
2847
2848 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2849
2850         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2851
2852 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2853
2854         * support/regression/tests/bug1185672.c: added
2855         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2856           bug 1185672
2857         * src/mcs51/gen.c (genCall): added comments, made it look safer
2858         * src/mcs51/gen.c (genEndFunction): simplified
2859
2860 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2861
2862         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2863
2864 2005-04-14 Borut Razem <borut.razem AT siol.net>
2865
2866         * fixed bug 1045046 - SIGSEGV with really simple code?:
2867           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2868           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2869
2870 2005-04-14 Borut Razem <borut.razem AT siol.net>
2871
2872         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2873           src/pic16/device.h: temporarily disabled experimental #inline pragma
2874           for 2.5.0 release
2875
2876 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2877
2878         * device/include/z80/stdio.h,
2879         * device/include/z80/string.h: removed these highly incomplete files so
2880           SDCC can use the default ones in device/include/
2881
2882 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2883
2884         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2885         gcc warning.
2886         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2887         fix sdcpp warnings.
2888
2889 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2890
2891         * device/include/malloc.h: removed redundant __reentrant prototypes
2892         * device/lib/_mullong.c: added working xstack variant in asm (C version
2893           doesn't pass regression tests)
2894         * device/lib/bpx.c: used __data and made bpx char for mcs51
2895         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2896           (createFunction): fixed bug with xstackPtr
2897         * src/SDCCcse.c: corrected comments
2898         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2899           (killDeadCode, eBBlockFromiCode): removed unused code
2900         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2901           corrected comments
2902         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2903           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2904           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2905           (genModOneByte): fixed warning in MSVC
2906         * src/mcs51/main.c (): added comments
2907         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2908
2909 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2910
2911         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2912
2913 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2914
2915         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2916
2917 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2918
2919         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2920         characters arrays of larger size than the declared one.
2921
2922 2005-04-10 Borut Razem <borut.razem AT siol.net>
2923
2924         * src/pic/gen.c (genInline),
2925           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2926           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2927           (findNextInstruction), (findPrevInstruction),
2928           (findInstructionUsingLabel),
2929           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2930         * src/pic/pcode.c (findLabel): added missing '\n'
2931         * src/src.dsp: added SDCCdwarf2.c to the project
2932
2933 2005-04-09 Borut Razem <borut.razem AT siol.net>
2934
2935         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2936
2937 2005-04-08 Raphael Neider <rneider AT web.de>
2938
2939         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2940           into the chain after a given one) and mergeDefmapSymbols (combine
2941           defmap entries for each symbol per pcode)
2942         * (createDefmap): have defmap entries merged in the end
2943         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2944           a symbol before replacing one access type's symbol, merge symbols in
2945           the end (replacement symbol might already have an entry)
2946         * (assignValnums): keep reference to written WREG intact
2947
2948 2005-04-08 Raphael Neider <rneider AT web.de>
2949
2950         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2951           Alpha)
2952
2953 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2954
2955         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2956         bytes
2957
2958 2005-04-07 Raphael Neider <rneider AT web.de>
2959
2960         * device/include/pic16/usart.h: added compatibility defines for
2961           devices with more than one USART
2962         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2963
2964 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2965
2966         * device/lib/Makefile.in: updated for port specific include
2967
2968 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2969
2970         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2971
2972 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2973
2974         * device/include/8051.h,
2975         * device/include/8052.h,
2976         * device/include/at89S8252.h,
2977         * device/include/at89c55.h,
2978         * device/include/at89x051.h,
2979         * device/include/at89x51.h,
2980         * device/include/at89x52.h,
2981         * device/include/mcs51reg.h,
2982         * device/include/reg51.h,
2983         * device/include/reg764.h,
2984         * device/include/regc515c.h,
2985         * device/include/sab80515.h: (re)moved these 12 files
2986         * device/include/mcs51/8051.h,
2987         * device/include/mcs51/8052.h,
2988         * device/include/mcs51/at89S8252.h,
2989         * device/include/mcs51/at89c55.h,
2990         * device/include/mcs51/at89x051.h,
2991         * device/include/mcs51/at89x51.h,
2992         * device/include/mcs51/at89x52.h,
2993         * device/include/mcs51/mcs51reg.h,
2994         * device/include/mcs51/reg51.h,
2995         * device/include/mcs51/reg764.h,
2996         * device/include/mcs51/regc515c.h,
2997         * device/include/mcs51/sab80515.h: and added them here
2998
2999 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3000
3001         * device/include/stdarg.h: changed SDCC specific keywords to double
3002           underlined form.
3003         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3004           mcs51 and ds390.
3005         * device/include/hc08/mc68hc908gp32.h,
3006         * device/include/hc08/mc68hc908jb8.h,
3007         * device/include/hc08/mc68hc908jkjl.h,
3008         * device/include/hc08/mc68hc908qy.h: fixed comments
3009         * device/include/mcs51/README: updated
3010         * device/include/mcs51/c8051f120.h: added PINRSF
3011         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3012         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3013           amidst code. Also inline is not supported.
3014
3015 2005-04-06 Raphael Neider <rneider AT web.de>
3016
3017         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3018         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3019           callers stack/frame pointers
3020
3021 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3022
3023         * device/include/pic16/usart.h: added, missing in previous commit,
3024         * device/include/pic16/adc.h: fixed typo,
3025         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3026         commit,
3027         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3028         <p18fxxx.inc>
3029         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3030         uninitialized because a bug appears with gplink
3031         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3032         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3033         complains for unrecognised option
3034
3035 2005-04-05 Raphael Neider <rneider AT web.de>
3036
3037         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3038           structs as well (using memcpy)
3039         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3040           on ISRs (GOTO has no label)
3041         * src/pic16/device.h: added OF_OPTIMIZE_DF
3042         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3043           new data flow analysis/optimization
3044         * src/pic16/pcode.c: added (prototypes for and implementation of)
3045           dataflow analysis functions, fixed pCodeInstructions' inCond and
3046           outCond values, made RCALL a branch instruction
3047         * (pic16_unlinkpCode): keep C line if possible
3048         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3049           C line moved if possible
3050         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3051         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3052           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3053         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3054           new flow)
3055         * (pic16_getJumptabpCode): NEW, needed in...
3056         * (LinkFlow): fixed handling of jumptables, calls and conditional
3057           branches
3058         * (pic16_InsertCommentAfter): NEW
3059         * (pic16_pCodeReplace): made verbose and flow preserving
3060         * (AnalyzeFlow): added call to data flow analysis
3061         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3062         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3063         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3064
3065 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3066
3067         * src/SDCCast.c (decorateType): fixed bug #1105626
3068
3069 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3070
3071         * device/include/asm/pic16/features.h,
3072         * pic18f*.h headers,
3073         * device/include/pic16/adc.h,
3074         * device/include/pic16/delay.h,
3075         * device/include/pic16/i2c.h,
3076         * device/include/pic16/malloc.h,
3077         * device/include/pic16/stdio.h,
3078         * device/include/pic16/stdlib.h,
3079         * device/include/pic16/string.h,
3080         * device/lib/pic16/libc/stdio/printf_tiny.c,
3081         * device/lib/pic16/libc/stdio/printf_small.c,
3082         * device/lib/pic16/libc/stdio/strmgpsim.c,
3083         * device/lib/pic16/libc/stdio/strmmssp.c,
3084         * device/lib/pic16/libc/stdio/strmusart.c,
3085         * device/lib/pic16/libc/stdio/vfprintf.c,
3086         * device/lib/pic16/libc/stdlib/ltoa.c,
3087         * device/lib/pic16/libc/stdlib/putchar.c,
3088         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3089         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3090         * device/lib/pic16/libc/stdlib/memchrram.c,
3091         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3092         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3093         * device/lib/pic16/libio/adc/adcbusy.c,
3094         * device/lib/pic16/libio/adc/adcread.c,
3095         * device/lib/pic16/libio/adc/adcsetch.c,
3096         * device/lib/pic16/libio/usart/ubaud.c,
3097         * device/lib/pic16/libio/usart/ubusy.c,
3098         * device/lib/pic16/libio/usart/udrdy.c,
3099         * device/lib/pic16/libio/usart/uopen.c,
3100         * device/lib/pic16/libio/usart/uputc.c,
3101         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3102         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3103         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3104         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3105         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3106         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3107         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3108         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3109         specific keywords to double underlined form,
3110         * device/lib/pic16/libc/Makefile.rules,
3111         * device/lib/pic16/libsdcc/Makefile.rules,
3112         * device/lib/pic16/libm/Makefile,
3113         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3114         to compile with C standard set in Makefile.common
3115         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3116         rand.c and crc.c in compilation process,
3117         * device/lib/pic16/libsdcc/int/divuint.c,
3118         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3119         `c' from signed to unsigned,
3120         * device/lib/pic16/startup/crt0.c,
3121         * device/lib/pic16/startup/crt0i.c,
3122         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3123         keywords to double underlined form, bug fixes in _do_cinit function
3124         which prevented the correct initialization of the .idata segment,
3125         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3126         core to enter a infinite loop
3127         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3128
3129 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3130
3131         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3132
3133 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3134
3135         * device/include/Makefile.in: add support for hc08 subdirectory
3136         * device/include/hc08/: new subdirectory
3137         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3138         Lucas Loizaga, thanks!
3139         * device/include/hc08/mc68hc908qy.h,
3140         * device/include/hc08/mc68hc908gp32.h,
3141         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3142         their own directory. Changed internal macro names to use the compiler
3143         reserved namespace. Changed SDCC specific keywords to double
3144         underlined form.
3145         * device/include/math.h,
3146         * device/include/malloc.h,
3147         * device/include/stdarg.h,
3148         * device/include/stdbool.h
3149         * device/include/string.h,
3150         * device/include/tinibios.h,
3151         * device/include/ds400rom.h,
3152         * device/include/8051.h,
3153         * device/include/8052.h,
3154         * device/include/80c51xa.h,
3155         * device/include/at89c55.h,
3156         * device/include/at89S8252.h,
3157         * device/include/at89x51.h,
3158         * device/include/at89x52.h,
3159         * device/include/ds80c390.h,
3160         * device/include/reg764.h,
3161         * device/include/regc515c.h,
3162         * device/include/sab80515.h,
3163         * device/include/mcs51/c8051f000.h,
3164         * device/include/mcs51/c8051f018.h,
3165         * device/include/mcs51/c8051f020.h,
3166         * device/include/mcs51/c8051f040.h,
3167         * device/include/mcs51/c8051f060.h,
3168         * device/include/mcs51/c8051f120.h,
3169         * device/include/mcs51/c8051f300.h,
3170         * device/include/mcs51/c8051f310.h,
3171         * device/include/mcs51/c8051f320.h,
3172         * device/include/mcs51/c8051f330.h,
3173         * device/include/mcs51/c8051f350.h,
3174         * device/include/z180.h: Changed SDCC specific keywords to double
3175         underlined form.
3176
3177 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3178
3179         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3180         18F4455,
3181         * (pic16_assignConfigWordValue): disable testing of configuration
3182         register value with config mask,
3183         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3184         function with port->fun_prefix,
3185         * (genFunction): when generating a naked interrupt function never
3186         create an absolute segment placed in interrupt vector address, place
3187         the actual interrupt function at IVA instead, when an interrupt
3188         function is generated with unspecified interrupt then do not create
3189         the absolute section,
3190         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3191         code for generating a call to generic pointer get/put function with
3192         a call to function pic16_callGenericPointer(),
3193         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3194         the call to the generic pointer get/put functions with prefixing the
3195         function name with port->fun_prefix,
3196         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3197         * src/pic16/main.c (_process_pragma): prefix function with
3198         port->fun_prefix,
3199         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3200         calling assembler, old 18Fxxxx macro is deprecated,
3201         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3202         PC_ASMDIR in while condition,
3203         * (findInstruction): add PC_ASMDIR in while condition,
3204         * (buildCallTree): prefix main with port->fun_prefix,
3205         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3206         identifier for variable with banked access in instructions BTFSS,
3207         BTFSC, BCF, BSF, BTG
3208         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3209         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3210         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3211         perform optimization when enviroment variable NO_REG_OPT is set,
3212         * (insideLRBlock): NEW, return 1 if register is inside an
3213         INF_LOCALREGS block,
3214         * (RemoveRegFromLRBlock): remove a register that is completely
3215         eliminated by register optimization, but it is still left in local
3216         register store/restore in/from stack block,
3217         * (Remove2pcodes): after removing register, check to see if it
3218         should be removed from local register store/restore in/from stack
3219         block,
3220         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3221         DUMMY_READ_VOLATILE,
3222
3223         * device/include/pic16/adc.h: minor prototype modifications and
3224         update,
3225         * device/include/pic16/malloc.h: added GPL notice various
3226         modifications,
3227         * device/include/pic16/stdint.h: NEW, standard header for ints
3228         * device/include/pic16/delay.h: NEW, header for delay functions,
3229         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3230         delay1mtcy,
3231         * device/include/pic16/signal.h: NEW, header providing helper macros
3232         for implementing signal handlers,
3233         * device/include/pic16/stdio.h: added prototypes for functions,
3234         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3235         prototypes for stdin and stdout, added macro PUTCHAR to
3236         automatically implement putchar function prototype,
3237         * device/include/pic16/usart.h: modified and updated USART library,
3238         * device/lib/pic16/libio/adc/,
3239         * device/lib/pic16/libio/i2c: some modifications to improve library
3240         performance,
3241         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3242         family of functions,
3243         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3244         family of functions and other sources,
3245         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3246         of the PIC18Fxx[28] devices,
3247         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3248         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3249         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3250         _do_cinit function, because the previous failed when local variables
3251         where not placed in the same memory bank,
3252         * device/lib/pic16/libsdcc/char/: various modifications to improve
3253         library performance,
3254         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3255         information on the new functions of the c library and more...
3256
3257 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3258
3259         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3260
3261 2005-03-26 Raphael Neider <rneider AT web.de>
3262
3263         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3264           if condition == CARRY)
3265         * (genCmp): adapted to new genSkipc semantics
3266         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3267           on rIfx (genCmp was broken)
3268
3269 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3270
3271         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3272         * src/z80/main.c (_keywords[]),
3273         * src/SDCCglobal.h (struct options),
3274         * src/SDCC.y,
3275         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3276         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3277         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3278         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3279         always available in leading double underscore form. The C99 support is
3280         mostly missing, but it's a start.
3281         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3282         reserved identifier "__data".
3283
3284 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3285
3286         * src/mcs51/peeph.def: fixed bug 1170013
3287
3288 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3289
3290         * device/include/mcs51reg.h: fixed bug 842007
3291
3292 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3293
3294         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3295         last time.
3296
3297 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3298
3299         * src/port.h (struct PORT),
3300         * src/avr/ralloc.c (avr_assignRegisters),
3301         * src/avr/main.c,
3302         * src/ds390/ralloc.c (ds390_assignRegisters),
3303         * src/ds390/main.c,
3304         * src/hc08/ralloc.c (hc08_assignRegisters),
3305         * src/hc08/main.c,
3306         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3307         * src/mcs51/main.c,
3308         * src/pic/ralloc.c (pic14_assignRegisters),
3309         * src/pic/main.c,
3310         * src/pic16/ralloc.c (pic16_assignRegisters),
3311         * src/pic16/main.c,
3312         * src/xa51/ralloc.c (xa51_assignRegisters),
3313         * src/xa51/main.c,
3314         * src/z80/ralloc.c (z80_assignRegisters),
3315         * src/z80/ralloc.h,
3316         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3317         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3318         * src/SDCCcse.h,
3319         * src/SDCCdflow.c (computeDataFlow),
3320         * src/SDCCdflow.h,
3321         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3322         * src/SDCCloop.h,
3323         * src/SDCCcflow.c (*),
3324         * src/SDCCcflow.h,
3325         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3326         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3327         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3328         immedDom() returning wrong block; probably fixes bug #1160833)
3329
3330 2005-03-20 Borut Razem <borut.razem AT siol.net>
3331
3332         * support/scripts/inc2h.pl: WIN32 port
3333
3334 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3335
3336         * device/lib/makefile.in: added abs.c and labs.c
3337
3338 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3339
3340         * device/include/stdint.h: added
3341         * device/lib/abs.c: added
3342         * device/lib/labs.c: added
3343         * device/include/stdlib.h: added abs() and labs() prototypes
3344         * device/lib/libsdcc.lib: added abs and labs
3345         * device/include/float.h,
3346         * device/lib/_fsmul.c,
3347         * device/lib/printf_fast.c,
3348         * device/lib/printf_tiny.c: updated comments
3349
3350 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3351
3352         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3353         bug #1164313
3354
3355 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3356
3357         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3358         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3359
3360 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3361
3362         * device/lib/printf_large.c: removed inline assembly for portability and
3363           readability. Use printf_fast if speed or size are more important.
3364         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3365         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3366
3367 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3368
3369         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3370         prevent compiler warning
3371
3372 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3373
3374         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3375         moved to level 0 and declared as static. Also they are explicit
3376         placed in access bank. This was necessery because some times they
3377         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3378         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3379         optimizations. Currently only compare to unsigned char is implemented,
3380         * src/pic16/gen.c: added fReturnIdx array,
3381         * (struct resolvedIfx) is moved to gen.h and made public,
3382         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3383         * (aopForSym): added an optimization to directly store in stack of
3384         the operand of a SEND iCode,
3385         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3386         but as registers instead (AOP_REG) using the fReturnIdx array,
3387         * (pic16_freeAsmop): remove the freed register from the
3388         _G.sregsAlloc field,
3389         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3390         a compare of 'WREG',
3391         * (pic16_popGetTempRegCond): changed function prototype, now
3392         function takes also a bitVector argument v which holds the current
3393         set of registers that are allocated for stack access by aopForSym,
3394         registers allocated in aopForSym for accessing stack symbols are not
3395         any more part of the functions usedRegs field,
3396         * (genCall): some times aopOp is called for a stack variable to be
3397         send, aopForSym might perform the push, if this is true make sure
3398         that genCall doesn't push the variable twice by testing _G.resDirect,
3399         * (genFunction): changed testing for unspecified interrupt number
3400         from 256 to INTNO_UNSPEC,
3401         * modified selection scheme of frame pointer generation. Previously
3402         if function did use local registers a frame pointer was generated,
3403         now a frame pointer is generated only if function has arguments
3404         (that need PLUSW2 register access), or has stack arguments, or the
3405         compiler is not instructed to omit the frame pointer,
3406         * (genEndFunction): before restoring local registers that were saved
3407         in the function preamble, also restore the registers that *might*
3408         have been allocated for stack access,
3409         * (genRet): removed some old comments,
3410         * (genCmp, the active (RN's) version): added a call to the
3411         pic16_genCmp_special function to perform the compare with a more
3412         robust and optimized way,
3413         * (genInline): a feature has been added in inline code generation,
3414         which allows a wildcard variable substitution when writing inline
3415         assembly. Code is incomplete and experimental therefore undocumented,
3416         * (genCast): changed order of aopOp for result and right to allow
3417         aopForSym to directly load the result if possible,
3418         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3419         perform an optimized compare on some selected special occasions,
3420         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3421         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3422         generate an IVT any more,
3423         * src/pic16/main.c (pic16_optionsTable): added command line option
3424         --optimize-cmp,
3425         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3426         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3427         macros,
3428         * src/pic16/NOTES: Raphael Neider added in list of active developers
3429         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3430         jumptable_end to prevent bug #,
3431         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3432         inCond and outCond fields,
3433         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3434         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3435         turn off register spilling,
3436         * (packRegsForOneUse): synced with other ports' versions although it
3437         is not used currently,
3438         * (pic16_packRegisters): added an optimization while reading
3439         structure bitfields, some registers may be saved (malloc code is
3440         decreased by 80 bytes)
3441
3442 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3443
3444         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3445         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3446         this can be optimized more?
3447
3448 2005-03-10 Raphael Neider <rneider AT web.de>
3449
3450         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3451           genNearPointerGet): (hopefully) fixed access to bitfields via
3452           pointers (p->bitN = x; and x = p->bitN; failed)
3453
3454 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3455
3456         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3457
3458 2005-03-09 Raphael Neider <rneider AT web.de>
3459
3460         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3461
3462 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3463
3464         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3465         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3466           (regTypeNum): set REG_BIT type if necessary
3467         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3468         * support/regression/tests/critical.c: check bug 1144613
3469
3470 2005-03-02 Raphael Neider <rneider AT web.de>
3471
3472         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3473
3474 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3475
3476         * src/avr/ralloc.c (serialRegAssign),
3477         * src/ds390/ralloc.c (serialRegAssign),
3478         * src/hc08/ralloc.c (serialRegAssign),
3479         * src/mcs51/ralloc.c (serialRegAssign),
3480         * src/pic/ralloc.c (serialRegAssign),
3481         * src/pic16/ralloc.c (serialRegAssign),
3482         * src/xa51/ralloc.c (serialRegAssign),
3483         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3484
3485 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3486
3487         * src/SDCCast.c (decorateType): fixed bug 1124787
3488
3489 2005-02-20 Hubert Sack <sack AT digiplan.de>
3490         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3491
3492         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3493         patch #1121755
3494
3495 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3496
3497         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3498         to keep the correct label reference count when adding/removing references
3499         to labels. A peephole file using this is appended to patch #1144962.
3500
3501 2005-02-14 Raphael Neider <rneider AT web.de>
3502
3503         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3504         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3505         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3506           retrievals of result operand's value on assignment
3507
3508 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3509
3510         * device/include/pic16/string.h: modified prototype for memccpy()
3511         to memccpy(void *, void *, char, size_t)
3512         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3513         check whether to omit frame pointer or not,
3514         * (genInline): convert all occurences of "\n" to LF in inline
3515         assembler blocks, this helps formatting the inline text,
3516         * (pic16_loadFSR0): modified prototype,
3517         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3518         removed some 8051 legacy code,
3519         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3520         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3521         before allocating temporary registers in functions,
3522
3523 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3524
3525         * support/regression/tests/bitvars.c: corrected the "fix"
3526
3527 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3528
3529         * support/regression/tests/bitvars.c,
3530         * support/regression/tests/bitwise.c,
3531         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3532
3533 2005-02-10 Raphael Neider <rneider AT web.de>
3534
3535         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3536           different size for Alpha
3537         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3538
3539 2005-02-09 Raphael Neider <rneider AT web.de>
3540
3541         * src/SDCC.lex(doPragma) : save and restore warning options as well
3542           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3543         * have #pragma less_pedantic set the errorlevel to WARNING
3544           (fixes #1117001)
3545         * (cloneOptimize) : fixed wrong malloc's size
3546         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3547           facilitate correct handling of #pragma (save|restore)
3548
3549 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3550
3551         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3552
3553 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3554
3555         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3556
3557 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3558
3559         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3560
3561 2005-02-02 Raphael Neider <rneider AT web.de>
3562
3563         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3564         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3565         * (pic16_storeForReturn): fixed to allow returning function pointers
3566         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3567         * device/include/pic16/{stddef.h,stdbool.h}: added
3568
3569 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3570
3571         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3572
3573 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3574
3575         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3576         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3577          appeared to be required
3578
3579 2005-01-31 Borut Razem <borut.razem AT siol.net>
3580
3581         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3582           include/mcs51 and include/z80 directories to the package
3583
3584 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3585
3586         * src/hc08/gen.c (genFunction): fixed bug #1112752
3587
3588 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3589
3590         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3591
3592 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3593
3594         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3595
3596 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3597
3598         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3599
3600 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3601
3602         * device/include/c8051fxxx.h: removed these 6 files
3603         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3604
3605 2005-01-26 Raphael Neider <rneider AT web.de>
3606
3607         * src/pic16/gen.c (genAssign): fixed assignment from longs
3608           in codespace (were cut to three bytes)
3609         * (genDummyRead): implemented (except for CODESPACE...),
3610           fixed bug #1108575
3611         * src/pic16/glue.c (emitStatistics): beautified
3612         * device/lib/pic16/libm/Makefile: added include path
3613
3614 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3615
3616         * src/z80/gen.c (aopPut): fixed bug #1103902
3617
3618 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3619
3620         * device/lib/expf.c: fixed bug #1095792
3621
3622 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3623
3624         * device/lib/pic16/libm: added Math library sources
3625
3626 2005-01-24 Raphael Neider <rneider AT web.de>
3627
3628         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3629           to enable upcast to pCodeOpReg2 (there is no type tag to
3630           differenciate the two and pic16_popGet2p cast into PCOR2)
3631         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3632           (sizeof(sectNames) changed to sizeof(sectName))
3633           Both patches fix segfaults under MinGW.
3634
3635 2005-01-23 Raphael Neider <rneider AT web.de>
3636
3637         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3638           Safe_[mc]?alloc()'ed variables
3639         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3640           of (byte sized) temporaries (assign them to WREG for now)
3641         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3642           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3643           this might fix SIGSEGVs on MinGW...
3644         * src/SDCCopt.c (killDeadCode): restored original behaviour
3645           (volatile operands might get thrown away though)
3646
3647 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3648
3649         * src/pic16/gen.c: fixed bug #1106975,
3650         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3651         pointer update, INTCON is saved, global interrupts are disabled and
3652         restored after updateing TOS.
3653         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3654         * added function attribute 'shadowregs' to take advantage of shadow
3655         registers,
3656         * added function attribute 'wparam' as an alternative to the wparam
3657         pragma,
3658         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3659         user declares a non-ISR function as 'shadowregs',
3660         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3661
3662 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3663
3664         * .version: bumped version number to 2.4.8
3665         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3666         pic16 port,
3667         * device/lib/pic16/libio/i2c/: I2C module support library,
3668         * device/include/pic16/i2c.h: I2C support library header,
3669         * device/lib/pic16/libc/stdio/: standard IO support sources,
3670         * (printf_small.c): printf_small() source, supports float print,
3671         * (printf_tiny.c): printf_tiny() source, does not support floats,
3672         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3673         enable global optimizations for entire library source, other
3674         Makefiles in the source tree are also modified to reflect this,
3675         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3676         function,
3677         * doc/sdccman.lyx: updated to reflect new changes,
3678         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3679         sym->onStack if-case,
3680         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3681         sbit, idata, _idata, xdata, _xdata,
3682         * added pragma library, to link an external library, (see doc),
3683         * removed command line options, --pomit-config-words, --pomit-ivt,
3684         --pleave-reset-vector,
3685         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3686         when calling assembler to reflect memory model used, also define
3687         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3688         reflect stack model used,
3689         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3690         on stack return NULL,
3691
3692 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3693
3694         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3695           of the operands is volatile. Fixes #1020220
3696
3697 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3698
3699         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3700         * (OptimizeRegUsage): make sure that there is really no other flow where
3701           the first pCode is used
3702
3703 2005-01-22 Raphael Neider <rneider AT web.de>
3704
3705         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3706           to fix #1106967 (pCode->seq are not set up correctly)
3707
3708 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3709
3710         * src/SDCCglue.c (glue): make sure code area is declared before the
3711         static initialization area.
3712
3713 2005-01-21 Raphael Neider <rneider AT web.de>
3714
3715         * device/lib/Makefile.in: fixed test for pic16 install dir
3716         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3717           optimizations
3718         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3719           added --optimize-goto compiler switch and pragma wparam documentation
3720         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3721         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3722           and PRODH closing bug #1071770 (peephole optimizer)
3723
3724 2005-01-19 Raphael Neider <rneider AT web.de>
3725
3726         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3727           cmdLine buffers (used when calling sdcpp...) are large enough
3728           (MAX_PATH=256 truncates arguments leading to system halts when
3729           used in MinGW...)
3730         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3731         * (genUminus): rewritten to for efficiency
3732         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3733           used uninitialized in some cases)
3734         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3735           copy the third byte from the int -- now assumes 0x80 (data memory)
3736         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3737           operands (genAddLit expects the iCode's operands to swapped as
3738           well), fixed leftover bytes (crashed for short left operands)
3739         * (pic16_genMinusDec): performance improvements, removed false
3740           PIC14 emitSKPNCs
3741         * (pic16_genMinus): fixed to cope with differently sized operands
3742         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3743           for --obanksel > 1
3744         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3745         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3746           new banksel optimization
3747         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3748           analysis for temporary registers (segfaults...)
3749         * src/pic16/peeph.def: added rule
3750
3751 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3752
3753         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3754         which converts a float number to its ASCII representation
3755         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3756         functions to convert the fractional and integer part of a float to ASCII,
3757         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3758         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3759         ram
3760         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3761         _STATMEM macros,
3762         * device/include/pic16/adc.h: added GPL info,
3763         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3764         a pCodeOp as tested operand,
3765         * (genNearPointerGet): optimized bit testing, does not use
3766         intermediate register for bit value, test directly instead with
3767         BTFSS, BTFSC, works only for single bits,
3768         * (genpic16Code): dump the name of the iCode in the asm,
3769         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3770         renamed to pic16_decodeOp,
3771         * (serialRegAssign): do not allocate a temporary register for iCode
3772         sequences that test a single bit for 1/0
3773
3774 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3775
3776         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3777         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3778         access stack and frame pointers. They are initially assigned to
3779         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3780         accessing SFRs. Updated all occurences of modification of stack or
3781         frame pointer in gen.c and pcode.c,
3782         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3783         assigning of a literal value to pointers,
3784         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3785         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3786         selected
3787
3788 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3789
3790         * doc/sdccman.lyx: update documentation about stack pragma, added
3791         some info for stack memory models
3792
3793 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3794
3795         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3796
3797 2005-01-08 Raphael Neider <rneider AT web.de>
3798
3799         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3800           udata sections to fix bug #1097823
3801
3802 2005-01-05 Raphael Neider <rneider AT web.de>
3803
3804         * src/pic16/gen.c (genGenericShift): added handling of differently
3805           sized left operand and result
3806
3807 2005-01-04 Raphael Neider <rneider AT web.de>
3808
3809         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3810         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3811           to hold the condition bit)
3812         * added new version of genCmp (old code available via #define)
3813         * added new version of genShiftLeft/genShiftRight in a generic
3814           way, now supports shifting by negative values
3815         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3816           shiftCount (expected by genGenericShift)
3817         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3818         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3819           dump
3820         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3821           is an invalid literal too...)
3822
3823 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3824
3825         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3826         from Raphael Neider,
3827         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3828         for 8-bit literals. This fixes some literal operands which are sign
3829         extended to 16-bits ints when instruction needs only 8-bits.
3830
3831 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3832
3833         * device/lib/logf.c: added mcs51 assembly version
3834         * device/lib/expf.c: added mcs51 assembly version
3835         * device/lib/_logexpf.c: new shared asm code for expf and logf
3836         * device/include/math.h: add defines for assembly math library
3837         * device/lib/Makefile.in: build new _logexpf.c
3838         * device/lib/libfloat.lib: use new _logexpf.c
3839
3840 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3841
3842         * src/pic/device.c
3843         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3844           device types which have less than 0x7f registers.
3845
3846 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3847
3848         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3849
3850 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3851
3852         * device/lib/printf_fast.c: only build on supported arch.
3853         * device/lib/printf_tiny.c: only build on supported arch.
3854         * device/lib/printf_fast_f.c: only build if asm float lib
3855         * device/lib/_fsget1arg.c: only build if asm float lib
3856         * device/lib/_fsget2args.c: only build if asm float lib
3857         * device/lib/_fsnormalize.c: only build if asm float lib
3858         * device/lib/_fsreturnval.c: only build if asm float lib
3859         * device/lib/_fsrshift.c: only build if asm float lib
3860         * device/lib/_fsswapargs.c: only build if asm float lib
3861         * device/include/stdio.h: don't provide print_fast,
3862           print_fast_f, print_tiny prototypes if --xstack used
3863
3864 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3865
3866         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3867         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3868           to the SOURCES
3869
3870 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3871
3872         * device/lib/printf_fast_f.c: same as printf_fast, but
3873           with floating point enabled
3874         * device/lib/printf_fast.c: minor tweaks
3875         * device/include/stdio.h: add printf_fast_f
3876
3877 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3878
3879         * src/SDCCmain.c: make --float-reent default for mcs51
3880         * device/lib/_fsadd.c: added mcs51 assembly version
3881         * device/lib/_fssub.c: added mcs51 assembly version
3882         * device/lib/_fsmul.c: added mcs51 assembly version
3883         * device/lib/_fsdiv.c: added mcs51 assembly version
3884         * device/lib/_fseq.c: added mcs51 assembly version
3885         * device/lib/_fsneq.c: added mcs51 assembly version
3886         * device/lib/_fsgt.c: added mcs51 assembly version
3887         * device/lib/_fslt.c: added mcs51 assembly version
3888         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3889         * device/lib/Makefile.in: add _fscmp to build
3890         * device/lib/libfloat.lib: add _fscmp to build
3891
3892 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3893
3894         * device/lib/_fs2slong.c: added mcs51 assembly version
3895         * device/lib/_fs2sint.c: added mcs51 assembly version
3896         * device/lib/_fs2schar.c: added mcs51 assembly version
3897         * device/lib/_fs2ulong.c: added mcs51 assembly version
3898         * device/lib/_fs2uint.c: added mcs51 assembly version
3899         * device/lib/_fs2uchar.c: added mcs51 assembly version
3900         * device/lib/_slong2fs.c: added mcs51 assembly version
3901         * device/lib/_sint2fs.c: added mcs51 assembly version
3902         * device/lib/_schar2fs.c: added mcs51 assembly version
3903         * device/lib/_ulong2fs.c: added mcs51 assembly version
3904         * device/lib/_uint2fs.c: added mcs51 assembly version
3905         * device/lib/_uchar2fs.c: added mcs51 assembly version
3906         * device/include/float.h: added #define to select asm vs c
3907
3908 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3909
3910         * device/lib/printf_fast.c: improvements to float output
3911         * device/include/float.h: add defines for assembly float library
3912         * device/lib/_fsget1arg.c: receive 1 float arg
3913         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3914         * device/lib/_fsnormalize.c: normalize a float
3915         * device/lib/_fsreturnval.c: return float, various helper routines
3916         * device/lib/_fsrshift.c: right shift a float's mantissa
3917         * device/lib/_fsswapargs.c: swap 2 floats
3918         * device/lib/Makefile.in: build these 6 new files for mcs51
3919         * device/lib/libfloat.lib: add these 6 files to the library
3920
3921 2004-12-26 Borut Razem <borut.razem AT siol.net>
3922
3923         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3924           built by gcc 3.4.2
3925
3926 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3927
3928         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3929           and fully reentrant and register bank neutral.
3930         * device/lib/printf_fast.c: added float (not enabled by default),
3931           added compact/slower integer (also not enabled by default),
3932           improved size/speed of fast integer code, other minor changes
3933         * device/include/stdio.h, device/lib/Makefile.in,
3934           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3935
3936 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3937
3938         * src/pic16/pcode.c: declaring variables other than at the start of a
3939           block is not supported in C by VC6.
3940
3941 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3942
3943         * applied a previous patch from Raphael Neider that wasn't included
3944         in the previous commits, which fixes infinite loops within jumptable
3945         improvements,
3946         * made some fixes that previous patches introduced
3947
3948 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3949
3950         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3951         that fixes an issue with AOP_PCODE asmop's offset,
3952         * (pic16_popCopyReg): update instance field too,
3953         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3954         function of pic port,
3955         * (genCmp, genAnd, genAssign),
3956         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3957
3958 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3959
3960         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3961         variables initial values to idata section,
3962         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3963         variables in some functions. This utilizes parmBytes field of iCode
3964         structure to hold the offset of the variable in stack. (might be
3965         able to use the stack field too?)
3966         * applied patch from Raphael Neider # ### , # ###
3967         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3968         variable initial values in idata section,
3969         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3970         for static variables with initial value
3971         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3972         applied fix in while loop from Raphael Neider.
3973
3974 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3975
3976         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3977         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3978         * src/ds390/ralloc.c (serialRegAssign): spill bits
3979         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3980         * support/Util/SDCCerr.c,
3981         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3982         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3983         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3984
3985 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3986
3987         * device/include/sdcc-lib.h: inserted LGPL, added includes
3988           asm/ds390/features.h and asm/mcs51/features.h
3989         * device/include/asm/default/features.h,
3990         * device/include/asm/gbz80/features.h,
3991         * device/include/asm/z80/features.h: added empty _AUTOMEM
3992           and _STATMEM
3993         * device/include/asm/ds390/features.h,
3994         * device/include/asm/mcs51/features.h: added files with defines for
3995           _AUTOMEM and _STATMEM indicating automatic and static storage class
3996         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
3997         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
3998         * src/SDCCicode.c (geniCodeCast),
3999         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4000         * src/SDCCloop.c (loopInduction): removed unused variable lr
4001         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4002           to convertToFcall to include char modulo (RFE 1065037), added check
4003           if left operand is unsigned and use abs of literal value
4004         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4005           as it doesn't work after conversion from peephole.def to peephole.rul
4006         * src/mcs51/gen.c (toBoolean): added check for size,
4007           (genModOneByte): optimized code for signed char modulo a literal
4008           power of 2 (thanks to Hubert Sack),
4009           (genRRC): removed unnecessary "clr c",
4010           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4011         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4012           jump optimization,
4013           swapped rules 256.c and 256.d,
4014           extended 256.d by using new multiple checks (thanks Erik),
4015           added rules 256.e and 256.f,
4016           updated rule 261.a and 261.b to new generated code
4017         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4018
4019 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4020
4021         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4022           induction related bugs, including first part of bug #1074377
4023
4024 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4025
4026         * applied patch from bug-report #1076292,
4027         * applied patches for genAnd and Goto-optimizations for Raphael
4028         Neider,
4029         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4030         dump a less iCode information,
4031         * src/pic16/device.h (pic16_options_t): added field debgen,
4032         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4033         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4034         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4035         puclic,
4036         * (various functions): added macros FENTRY and FENTRY2 to functions,
4037         to emit function prologue,
4038         * (various functions): fixed indentation,
4039         * (genNearPointerGet): fixed loading of FSR0,
4040         * (genPackBits): applied patch from Raphael Neider to fix updating
4041         of FSR0 and touching only the modified bits,
4042         * src/pic16/genarith.c (various functions): added macros FENTRY to
4043         emit function prologue in comments,
4044         * src/pic16/pcode.h: added functions debugf2, debugf3,
4045         * src/pic16/ralloc.c: partial fix for packForPush caused
4046         segmentation fault,
4047
4048 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4049
4050         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4051           <stsp AT users.sourceforge.net> with reversed byte order
4052         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4053
4054 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4055
4056         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4057           bug #1074377
4058         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4059         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4060
4061 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4062
4063         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4064
4065 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4066
4067         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4068           conditions,
4069           (setFromConditionArgs): friendly operand parser for peephole rules,
4070           (operandBaseName, operandsNotRelated): new peephole condition
4071           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4072           architecture specific register naming into account, handles n-way
4073           comparisons, and supports quoted literals
4074         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4075
4076 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4077
4078         * src/mcs51/peeph.def: fixed bug #1076940
4079
4080 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4081
4082         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4083
4084 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4085
4086         Adding support for replacing ljmps with sjmps in jumptables
4087         generated for switch statements. For now you need to set the
4088         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4089         Now 4 algorithms for mcs51 jumptable generation are used:
4090         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4091         addresses loaded pc-relative for up to 112 cases and stack-pushing
4092         target addresses loaded with offset from dptr for up to 256 cases.
4093
4094         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4095         * src/mcs51/main.c: adapted constants for switch table generation
4096         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4097
4098 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4099
4100         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4101         * support/regression/tests/bug1057979.c: added test for bug 1073386
4102
4103 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4104
4105         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4106         compilers
4107
4108 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4109
4110         * src/pic16/device.h,
4111         * src/pic16/genarith.c,
4112         * src/pic16/glue.c,
4113         * src/pic16/main.c,
4114         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4115
4116 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4117
4118         Large cummulative patch for pic16 port.
4119         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4120         to call when a stack overflow occurs,
4121         * (malloc.h): added CVS Id tag,
4122         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4123         variable,
4124         * added libc directory. The current version of LibC contains string
4125         functions, ctype functions and macros and some functions of the
4126         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4127         be extensively tested in the future. Standard disclaimer here.
4128         Library is not automatically build yet. But one can build it by
4129         invoking 'make' inside the libc directory.
4130         * added ADC library under libio. Preliminary version yet.
4131
4132         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4133         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4134         aopForRemat() now and not by pic16_aopOp(),
4135         * (pic16_popGetTempReg): removed warning messgae when allocating
4136         temporary registers, its a buggy feature and will be removed,
4137         * (pic16_popGet): set register instance field in AOP_CRY,
4138         * (pic16_outBitC): fixed for results in size greater than 1,
4139         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4140         * (pic16_storeForReturn): optimized return of 0,
4141         * (genCmp): experimental code for new genCmp which uses PIC18's
4142         special compare&skip instructions. Initial tests fail some times
4143         with variables grater than 1 byte in size, so new code is disabled,
4144         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4145         a single bit,
4146         * (genCast): began a fix to optimize the casting of a bit to another
4147         bit, now assigning a bitfield to another bitfield will fail, sorry,
4148         * src/pic16/main.c: disabled the use of lr-support feature,
4149         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4150         * added some function prototypes, added function _debugf prototype,
4151         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4152         bits with offset (case PO_GPR_BIT),
4153         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4154         command line,
4155         * (isBankInstruction): modified to return 0 for no banking instruction,
4156         and 1 for banking instruction,
4157         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4158         caused stop processing pCodes after a inline assembly block,
4159         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4160         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4161         registers when it shouldn't,
4162         * src/pic16/ralloc.c (allocReg): add preliminary support for
4163         supporting a limited set of temporary registers,
4164
4165 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4166
4167         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4168           genDataPointerSet): ensure assignments always copy in MSB to LSB
4169           order,
4170           (loadRegFromAop): recognize CLRH optimization,
4171           (genFunction): optimize RECEIVE iCodes in reentrant functions
4172
4173 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4174
4175         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4176           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4177           selected.
4178         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4179         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4180           contiguous with data
4181
4182 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4183
4184         * device/lib/_gptrget.c (_gptrget),
4185         * device/lib/_gptrgetc.c (_gptrgetc),
4186         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4187           instead of sjmp to ret
4188         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4189           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4190
4191 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4192
4193         * .version: bumped version to 2.4.7
4194         * device/lib/_gptrget.c (_gptrget): is now _naked
4195         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4196         * device/lib/_gptrput.c (_gptrput): is now _naked
4197         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4198           (createFunction): fixed xstack
4199         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4200         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4201           or bit either,
4202           (geniCodeCritical): store original interrupt state in an iTemp bit
4203           var unless stack-auto
4204         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4205         * src/SDCCmain.c (setIncludePath): added include/target to search path
4206         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4207         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4208           prototype,
4209           (processFuncArgs): put bit vars in bit area
4210         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4211           unsaveRBank): fixed xstack,
4212           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4213           (genFunction, genEndFunction): fixed xstack,
4214           (genAssign): optimization don't walk backwards through mem
4215         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4216         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4217         * support/regression/Makefile: also make library (for stack-auto) when
4218           making "all" and added "test-mcs51-xstack-auto"
4219         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4220         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4221         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4222         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4223         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4224           make-library by MAKE_LIBRARY
4225         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4226           regression tests for xstack
4227         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4228         * support/regression/tests/critical.c: test for critical on mcs51
4229
4230 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4231
4232         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4233           built version of sdcc instead of installed version
4234
4235 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4236
4237         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4238         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4239           vprintf.c now
4240         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4241         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4242           WARNING: remove device/lib/build/z80/printf.o by hand when
4243           updating from previous build!
4244         * device/lib/z80/printf.c: updated comment
4245         * support/regression/tests/bug1057979.c: test all ports now
4246         * support/regression/tests/bug1065458.c: file added
4247
4248 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4249
4250         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4251           *_start and *_end symbols for static functions
4252
4253 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4254
4255         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4256           and search crt0.o in all library paths,
4257           (setIncludePath): proper handling of --nostdinc,
4258           (setLibPath): proper handling of --nostdlib
4259         * support/regression/Makefile,
4260         * support/regression/ports/ds390/spec.mk,
4261         * support/regression/ports/gbz80/spec.mk,
4262         * support/regression/ports/hc08/spec.mk,
4263         * support/regression/ports/mcs51/spec.mk,
4264         * support/regression/ports/mcs51-large/spec.mk,
4265         * support/regression/ports/mcs51-stack-auto/spec.mk,
4266         * support/regression/ports/z80/spec.mk: use include and lib files from
4267           built version of sdcc instead of installed version
4268         * doc/sdccman.lyx: fixed typo in --nostdinc
4269
4270 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4271
4272         * src/pic/pcode.c,
4273         * src/pic/device.c,
4274         * src/pic/ralloc.c,
4275         * src/pic/gen.c : added support to generate code for struct bit fields.
4276
4277 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4278
4279         * as/xa51/xa_version.h,
4280         * device/include/errno.h,
4281         * device/include/regc515c.h,
4282         * device/lib/_itoa.c,
4283         * device/lib/_ltoa.c,
4284         * device/lib/ser_ir_cts_rts.c,
4285         * sim/ucsim/xa.src/glob.cc,
4286         * sim/ucsim/xa.src/inst_gen.cc,
4287         * sim/ucsim/xa.src/xa_bit.cc,
4288         * sim/ucsim/xa.src/xa_sfr.cc,
4289         * sim/ucsim/z80.src/inst_dd.cc,
4290         * sim/ucsim/z80.src/inst_fdcb.cc,
4291         * support/scripts/keil2sdcc.pl,
4292         * src/pic16/pic16.dsp,
4293         * src/pic16/pic16a.dsp: corrected cvs line endings
4294         * device/lib/printf_large.c: fixed bug 1057979
4295         * src/pic16/gen.c: fixed non-C standard code
4296         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4297         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4298         * support/regression/ports/mcs51/support.c: reload T1 asap
4299         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4300           pdata use and clear idata startup behaviour
4301         * support/regression/tests/bug1057979.c: added
4302
4303 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4304
4305         * device/examples/ds390/ow390/ad26.h,
4306         * device/examples/ds390/ow390/cnt1d.h,
4307         * device/examples/ds390/ow390/crcutil.c,
4308         * device/examples/ds390/ow390/ownet.h,
4309         * device/examples/ds390/ow390/owsesu.c,
4310         * device/examples/ds390/ow390/swt12.h,
4311         * device/examples/ds390/ow390/swtoper.c,
4312         * device/examples/ds390/ow390/temp10.h,
4313         * device/examples/ds390/ow390/thermodl.c,
4314         * device/examples/ds390/tinitalk/tinitalk.dsp,
4315         * device/examples/ds390/tinitalk/tinitalk.dsw,
4316         * device/examples/mcs51/clock/hw.h,
4317         * device/examples/mcs51/simple2/go.bat,
4318         * device/examples/serialcomm/windows/serial.h,
4319         * device/examples/xa51/dummy.c,
4320         * device/examples/xa51/hello.c,
4321         * device/include/80c51xa.h,
4322         * device/include/at89x051.h: corrected cvs line endings
4323
4324 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4325
4326         * src/pic16/main.c (options): added command line --gstack, to trace
4327         stack over/under flows,
4328         * added pragma 'wparam' to allow passing first byte of function
4329         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4330         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4331         call to __gstack_test function and sets up the symbol as extern,
4332         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4333         * popaop): added call to pic16_testStackOverflow,
4334         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4335         wparamList list,
4336         * (genCall, genPcall): now all parameters are passed via stack
4337         except in functions that are pass to wparam pragma in which WREG is
4338         used too,
4339         * (genPcall): REENTRANT flag is checked to see if variable prototype
4340         contains reentrant keyword, don't call a non-reentrant function, via
4341         a reentrant function pointer or vice versa, functions are never
4342         passed via WREG,
4343         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4344         D.Winkler,
4345         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4346         SIGSEGV when accessing a NULL register stucture,
4347         * (pic16_printGPointerType): modified to handle UPPER modifier for
4348         function initializers, changed prototype of function to simpler one,
4349         * (pic16_printIvalFuncPtr): check to see if function is already
4350         added in externs list,
4351         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4352         optimized a move from W to SFR with a move to the same register
4353         later after a CALL,
4354         * device/lib/pic16/debug: NEW directory, contains debug features
4355         which are enabled when linking with libdebug.lib, currently command
4356         line option --gstack enables stack pointer tracing for over/under
4357         flow, corresponding sources are in debug/gstack
4358
4359 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4360
4361         * doc/sdccman.lyx: updated SDCC version,
4362         * (PIC16 port): update list of command line options,
4363         * src/pic16/device.h (structure pic16_options_t): added field gstack
4364         to enable stack overflow tracing on push/pops,
4365         * src/pic16/device.c (statistics structure): added statistics
4366         structure,
4367         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4368         pic16_dump_int_registers): increase statistics counters for each
4369         * variable which is encountered
4370         * (pic16_dump_usection): emit each .udata variable to its own udata
4371         section,
4372         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4373         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4374         parameters via stack, otherwise use old scheme,
4375         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4376         assembler output file,
4377         * src/pic16/main.c: added command line options --gstack to enable
4378         push/pop tracing for stack overflow,
4379         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4380         instructions): added size of each instruction,
4381         * (pic16_countInstruction): estimate size of instructions in
4382         the_pFile list, inline assembly blocks are not counted,
4383         * (pic16_FixRegisterBanking): trace previous register usage, when
4384         banksel optimizations is greater than 0, don't emit a redudant
4385         banksel directive,
4386
4387 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4388
4389         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4390         * src/pic16/ralloc.c : applied same fix for pic16.
4391         * src/pic/gen.c : tidied it up a little.
4392
4393 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4394
4395         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4396         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4397
4398 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4399
4400         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4401
4402 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4403
4404         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4405         non-reentrant function __modsint in the interrupt function (thus
4406         corrupting math operations during serial I/O)
4407         * device/lib/ser_ir.c: as above, changed buffersize
4408         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4409         256.c,d for zeroing
4410         * doc/Makefile: added option -t for rsync
4411
4412 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4413
4414         * src/SDCCast.h (struct ast),
4415         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4416
4417 2004-10-20 Borut Razem <borut.razem AT siol.net>
4418
4419         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4420         package
4421
4422 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4423
4424         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4425         makefile targets,
4426         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4427         support functions to replace long sequences of MOVFF's from access
4428         bank registers to stack and vice versa,
4429         * src/pic16/device.h: added new field opt_flags, where optimization
4430         flags can be set to enable certain features,
4431         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4432         * pBlock, (genFunction, genEndFunction): surroung loop for
4433         saving/loading used registers in stack with PC_INFO pCodes,
4434         INF_LREGS. Code in between can then be optimized by pCode optimizer
4435         to support function calls,
4436         * (genDataPointerSet): fixed bug which loaded float fields in
4437         structures with corrupt data,
4438         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4439         in a standard way debug info on stderr. Feature used for developing
4440         and debugging only,
4441         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4442         obsolete chunks of code,
4443         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4444         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4445         * pic16/src/pcode.c (pic16_newpCodeInfo,
4446         * (pic16_newpCodeOpLocalRegs),
4447         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4448         feature,
4449         * (pic16_pCodeConstString): printing of the initial value of a
4450         symbol as a comment is inhibited since parsing was already done by
4451         copyStr and output is corrupt,
4452         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4453
4454 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4455
4456         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4457
4458 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4459
4460         * as/mcs51/lkarea.c: removed old K&R style,
4461           (lnksect): changed check on boundary error,
4462           (lnksect2): changed check on boundary error,
4463           (lnksect2): extend XSTK to end of page if size = 1
4464         * as/mcs51/lkmain.c: removed old K&R style,
4465           (Areas51): create l_IRAM symbol
4466         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4467         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4468           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4469         * device/lib/_mullong.c: added version to be compiled with xstack
4470         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4471         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4472         * device/lib/mcs51/crtxstack.asm: fixed comment
4473         * src/SDCCglue.c: maxInterrupts defaults to 0,
4474           (emitMaps): added pdata,
4475           (createInterruptVect): (re)moved default,
4476           (glue): added pdata,
4477           (glue): moved __start__xstack to XSTK with default size 1
4478         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4479           and options.float_rent when options.stackAuto is set,
4480           (linkEdit): only write XDATA_NAME if provided on command line
4481         * src/SDCCmem.h,
4482         * src/SDCCmem.c: added pdata
4483         * src/port.h: added pdata_name to PORT
4484         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4485           (saveRegisters, unsaveRegisters): removed usage of B,
4486           (genMinus): fixed accumulator clash,
4487           (genJumpTab): added comment, this needs another look
4488         * src/mcs51/gen.c: added check for "B in use" paranoia,
4489           added pushB() and popB()
4490         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4491           chance
4492         * src/avr/main.c,
4493         * src/ds390/main.c,
4494         * src/hc08/main.c,
4495         * src/mcs51/main.c,
4496         * src/pic/main.c,
4497         * src/pic16/main.c,
4498         * src/xa51/main.c,
4499         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4500           added PSEG (PAG,XDATA) or NULL to port specifier
4501         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4502         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4503           (_mcs51_genInitStartup): removed __start__xstack equ,
4504           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4505         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4506         * src/z80/gen.c (_rleAppend): fixed warnings
4507         * support/regression/tests/zeropad.c: added pdata test
4508         * .version: bumped to 2.4.6
4509
4510 2004-10-17 Borut Razem <borut.razem AT siol.net>
4511
4512         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4513         as a part of nightly build
4514
4515 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4516
4517         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4518         WREG holds the first byte function parameters,
4519         * (aopForSym): take special case for symbols which are in FARSPACE
4520         but in CODESPACE too,
4521         * (assignResultValue): modified to take into account _G.useWreg,
4522         * (genCall): don't use wreg for parameter passing when function is
4523         declared as reentrant, too, added optimization INCF to stack
4524         pointer when stack parameter count is 1,
4525         * (genFunction, genEndFunction): refurnished and fixed to not using
4526         wreg for passing parameters when function has varargs or is
4527         reentrant, fixed bug with symbol name compare for generating
4528         functions in absolute address,
4529         * (pic16_storeForReturn): refurnished,
4530         * (genCmp): began writing a new version of the function, not ready
4531         yet, therefore it is disabled,
4532         * (genAssign): do not read code memory when assigning a function to
4533         a pointer function,
4534         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4535         array of characters, not pointer,
4536         * (pic16initialComments): in debug mode emit an .ident directive for
4537         the assembler,
4538         * (_process_pragma): emit a new warning type (internal to pic16)
4539         when setting stack to default length, emit a similar warning when
4540         placing a function at absolute address and address is not word aligned
4541         * (_pic16_parseOptions): added 'return TRUE' statement,
4542         * (_pic16_linkEdit): if compiling a source, then add the source's
4543         file object, first in the list of objects to link,
4544
4545 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4546
4547         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4548         * src/pic/main.c : removed VC warning.
4549         * src/pic/gen.c : changed comment.
4550
4551 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4552
4553         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4554         reference to a deprecated symbol _GPTRREG was causing failure to
4555         link. Thanks G. M. Gallant for the info.
4556
4557 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4558
4559         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4560         comments for Bugs item #954788.
4561
4562 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4563
4564         * src/pic16/device.c (pic16_dump_gsection,
4565         * pic16_groupRegistersInSection): handle symbols declared to be in
4566         access bank differently,
4567         * src/pic16/gen.c (struct _G): added field resDirect,
4568         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4569         send values read from stack directly to result and don't allocate
4570         temporary values,
4571         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4572         same registers,
4573         * (pic16_sameRegsOfs): NEW,
4574         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4575         free because they were not allocated from temporary pool,
4576         * pic16_popRegFromString): workaround to fix a problem with
4577         allocating variables twice or never,
4578         * (genGenPointerGet): using PRODL instead of FSR0H,
4579         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4580         instead of FSR0H,
4581         * (genAssign): take advantage of the _G.resDirect flag,
4582         * (genCast): around line 11844, use mov2f instead of directly
4583         MOVFF'ing between operands to account for literal values,
4584         * src/pic16/genutils.c: some new debug functions for gpsim have been
4585         added,
4586         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4587         float with integer part only,
4588         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4589         place variables in access bank
4590         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4591         updated sources to reflect recent changes in gen.c
4592
4593 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4594
4595         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4596         sources that searched for headers in installation path, now the
4597         device/include/pic16 is used,
4598         * src/pic16/glue.c (pic16glue),
4599         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4600         .line directives if not in debug mode, this suppresses assembler's
4601         warnings for ignored directives
4602
4603 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4604
4605         * src/port.h: made reset_regparms prototype void parameter explicit.
4606         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4607         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4608         * doc/sdccman.lyx: documented warning disabling and how to use
4609           printf_large to make it print floats.
4610         * device/include/stdbool.h: NEW
4611         * device/lib/_atof.c,
4612         * device/lib/_divuint.c,
4613         * device/lib/_divulong.c,
4614         * device/lib/expf.c,
4615         * device/lib/printf_large.c,
4616         * device/lib/sincosf.c,
4617         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4618         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4619           a completely reentrant lib.
4620
4621 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4622
4623         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4624         * device/include/pic16/stdio.h: fixed bug with colon
4625
4626 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4627
4628         * device/include/pic16/stdio.h,
4629         * device/include/pic16/stdlib.h,
4630         * device/include/pic16/math.h: NEW
4631         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4632         declared as _naked to reduce overhead
4633         * device/lib/Makefile.in (target port-specific-objects-pic16):
4634         changed * to *.* so to ignore the CVS directory,
4635         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4636         stacked variables back in stack,
4637         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4638         corruption
4639
4640 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4641
4642         * .version: bumped version number to 2.4.5
4643         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4644         * support/Util/SDCCerr.c (messages structure): added entry for
4645         W_POSSBUG2
4646
4647         Large cumulative patch for pic16 port and libraries.
4648         * device/include/pic16/sdcc-lib.h,
4649         * device/include/pic16/stdarg.h,
4650         * device/include/asm/pic16/features.h,
4651         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4652         * device/include/pic16/float.h: changes reentrant keyword with
4653         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4654         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4655         updated target build-libraries to include objects from gptr,
4656         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4657         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4658         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4659         all function headings,
4660         * src/SDCCmain.c: added global parameter userIncDirsSet,
4661         * (parseCmdLine): when option -I is encountered add directory to
4662         userIncDirsSet too,
4663         * src/version.awk: added space between control and long,
4664         * src/pic16/NOTES: added some notes for the port,
4665         * src/pic16/gen.c: added prototype for mov2fp function,
4666         * (fReturnpic16[]): properly named return value registers,
4667         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4668         * (aopForSym): added code to handle symbols with onStack flag set,
4669         symbols onStack are allocated PTRSIZE bytes,
4670         * (aopFreeAsmop): handles special case where asmops are stack objects,
4671         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4672         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4673         added argument lock to trace flaws in allocating temporary registers
4674         when developing port,
4675         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4676         * (pic16_popRegFromString): reenabled allocating a direct register
4677         from string,
4678         * (assignResultValue): various beautifications,
4679         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4680         referenced function argument,
4681         * (genIpush): reenabled to allow stacked arguments, handles only
4682         ic->parmPush iCodes,
4683         * (genCall, genPcall): major changes to allow for variable argument
4684         functions, fixed a bug with falsely restoring stack pointer after
4685         returning from call,
4686         * (genFunction): pending code for critical function,
4687         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4688         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4689         * (genNearPointerGet): fixed bug with indirect reading, was always
4690         reading from INDF0
4691         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4692         pointers,
4693         * (genAddrOf): rewrote code to take address of a stacked function parameter
4694         * (genCast): fixed casting to generic pointer type,
4695         * src/pic16/gen.h: added AOP_STA,
4696         * (struct asmop): added field stk,
4697         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4698         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4699         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4700         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4701         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4702         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4703         generic pointers,
4704         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4705         and library paths,
4706         * (pic16_port structure): generic pointer size is set to 3,
4707         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4708         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4709         compiler warning,
4710         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4711         operand is an iTemp,
4712
4713 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4714
4715         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4716         * debugger/mcs51/simi.c: addapt new syntax of s51
4717
4718 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4719
4720         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4721         * src/pic16/pcode.c: commented out some calls to free() in order to
4722         fix bug #989576,
4723
4724 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4725
4726         * src/SDCCicode.h,
4727         * src/SDCCicode.c (isiCodeInFunctionCall),
4728         * src/avr/ralloc.c (selectSpil),
4729         * src/pic/ralloc.c (selectSpil),
4730         * src/pic16/ralloc.c (selectSpil),
4731         * src/ds390/ralloc.c (selectSpil),
4732         * src/hc08/ralloc.c (selectSpil),
4733         * src/xa51/ralloc.c (selectSpil),
4734         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4735         stack in the middle of a function call sequence (fixes bug #1020268)
4736         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4737         costs associated with the minimum switch case.
4738
4739 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4740
4741         * src/SDCC.lex: fixed bug #1030549
4742
4743 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4744
4745         * src/SDCCcse.h (struct cseDef),
4746         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4747         over a function call if the CSE is derived from a symbol whose
4748         address has been taken (fixes bug #1029883)
4749         * support/regression/tests/bug-1029883: a new regression test for
4750         this bug
4751
4752 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4753
4754         * src/hc08/gen.c (emitinline): fixed bug #1029778
4755         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4756         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4757         and starts toward RFE #905167)
4758
4759 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4760
4761         * src/pic16/gen.c (mov2f): New function to move an operand to
4762         another without considering if it is a literal or a register,
4763         * (pic16_sameRegs): don't check if they are both AOP_REG,
4764         * (AccRsh): removed andmask=0 lines,
4765         * (genLeftShift): duplicated to be improved in future versions,
4766         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4767         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4768         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4769         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4770         * (insertBankSwitch): fixed inserting banksel directives algorithm
4771         for instructions that follow a skip instruction, this fixes a report
4772         for broken subtraction code generation,
4773         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4774         iCode is a left op, just in case result and right share the same
4775         registers
4776
4777 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4778
4779         * src/hc08/main.c,
4780         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4781         preservation of HX
4782         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4783         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4784         on 2004-09-12; it was buggy
4785
4786 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4787
4788         * src/SDCCsymt.h: removed RESULT_CHECK
4789         * src/SDCCast.c,
4790         * src/SDCCglue.c,
4791         * src/SDCCval.c,
4792         * src/pic/glue.c,
4793         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4794
4795 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4796
4797         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4798         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4799         configuration values no more rejected by compiler, they are assigned
4800         to configuration registers with a warning message instead,
4801         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4802         the for-loop so last conf register is emitted too,
4803         * (_pic16_initPaths): link library libsdcc.lib by default,
4804         * (_hasNativeMulFor): modified test for multiplication according to
4805         Raphael Neider's remarks. Integer multiplication is also done with
4806         support functions,
4807         * device/include/pic16/pic18fregs.h: corrected type error in while
4808         testing and including 18f6720 header file
4809
4810 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4811
4812         * src/pic16/device.h (pic16_options): removed field use_crt,
4813         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4814         until an optimization to handle single bits is added,
4815         * (pic16_loadFSR0): moved before genUnpackBits,
4816         * (genAnd): some white lines removed,
4817         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4818         leave_reset flags in pic16_options when using crt modules,
4819
4820 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4821
4822         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4823           for bugs 898889 & 979599. Also used some safer print instructions.
4824
4825 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4826
4827         * src/pic16/device.h (pic16_options_t): added field use_crt,
4828         crt_name, no_crt,
4829         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4830         catch a probable future bug,
4831         * src/pic16/gen.c: aopIdx function commented out,
4832         * (genAssign): commented out old code which used aopIdx,
4833         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4834         code, added if conditionals to take into account the --use-crt
4835         command line options,
4836         * src/pic16/main.c (pic16_optionsTable): added new command line
4837         options, --use-crt= and --no-crt,
4838         * (_pic16_linkEdit): now the proper crt object is added in the
4839         linker command line except than when --no-crt is specified,
4840         * src/pic16/pcode.c,
4841         * src/pic16/pcode.h: added some structures and functions for a new
4842         optimization scheme to compansate for instruction overhead between
4843         same iCodes, this scheme is currently under development and is not
4844         working in any way,
4845         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4846         to && operator,
4847         * device/lib/pic16/startup/crt0i.c,
4848         * device/lib/pic16/startup/crt0iz.c: added global char variable
4849         __uflags to force the generation of an idata section
4850
4851 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4852
4853         * doc/Makefile,
4854         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4855         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4856
4857 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4858
4859         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4860         Frieder) and clarified the default code optimization mode
4861
4862 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4863
4864         * src/SDCC.lex (doPragma, process_pragma),
4865         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4866         "opt_code_size", and "opt_code_balanced"
4867         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4868         regrouped options by category, added support for category headers
4869         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4870         and "--opt-code-size"
4871         * doc/sdccman.lyx: documented these new options and pragmas
4872         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4873         preference into account
4874
4875 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4876
4877         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4878           geniCodePreDec): Fixed bug 904237 by generating a warning
4879         * src/SDCCerr.h,
4880         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4881
4882 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4883
4884         * src/pic/device.c : When no max ram set validate full memory range.
4885         * src/pic/pcode.c,
4886         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4887
4888 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4889
4890         * device/lib/_gptrget.c,
4891         * device/lib/_gptrput.c: updated comment
4892         * device/lib/calloc.c,
4893         * device/lib/free.c,
4894         * device/lib/malloc.c,
4895         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4896         * src/SDCCcse.c (cseBBlock),
4897         * src/SDCCicode.c (printOperand, geniCodeArray),
4898         * src/SDCCicode.h (struct operand): fixed bug 868103
4899         * support/regression/tests/bug-868103.c: added
4900         * src/SDCCast.c (searchLitOp),
4901         * src/SDCCcse.h (struct cseDef),
4902         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4903         * src/SDCCicode.h (struct operand),
4904         * src/SDCCsymt.h (struct sym_link),
4905         * src/avr/gen.c (hasInc),
4906         * src/ds390/gen.c (hasInc),
4907         * src/hc08/gen.c (genPlusIncr, hasInc),
4908         * src/mcs51/gen.c (hasInc),
4909         * src/pic16/glue.c (pic16_printIvalChar),
4910         * src/pic16/ralloc.c (regWithIdx),
4911         * src/xa51/gen.c (hasInc) : removed warnings
4912         * src/SDCCast.c (createBlock): added comment ???
4913         * src/hc08/ralloc.c: updated comments
4914
4915 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4916
4917         * doc/sdccman.lyx: updated section on switch statements, added
4918         section about semaphore locking
4919         * doc/Makefile: added option -info for latex2html
4920         * device/lib/_gptrget.c,
4921         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4922
4923 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4924
4925         * src/pic/device.h,
4926         * src/pic/device.c,
4927         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4928          maxram is less than 0x100.
4929
4930 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4931
4932         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4933
4934 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4935
4936         * src/port.h,
4937         * src/mcs51/main.c,
4938         * src/ds390/main.c,
4939         * src/z80/main.c,
4940         * src/hc08/main.c,
4941         * src/pic/main.c,
4942         * src/pic16/main.c,
4943         * src/avr/main.c,
4944         * src/xa51/main.c
4945         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4946         a jump table is the best form for a switch statement, including
4947         automatic insertion of missing cases to make the case range
4948         continuous. Developed in collaboration with Frieder Ferlemann.
4949
4950 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4951
4952         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4953         accumulator result if it needs sign extension
4954
4955 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4956
4957         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4958
4959 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4960
4961         * device/lib/gbz80/printf.c,
4962         * device/lib/z80/printf.c: removed define for NULL
4963
4964 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4965
4966         * as/xa51/xa_link.c,
4967         * device/examples/ds390/ow390/ad26.c,
4968         * device/examples/ds390/ow390/cnt1d.c,
4969         * device/examples/ds390/ow390/counter.c,
4970         * device/examples/ds390/ow390/ds2480.h,
4971         * device/examples/ds390/ow390/ds2480ut.c,
4972         * device/examples/ds390/ow390/findtype.c,
4973         * device/examples/ds390/ow390/gethumd.c,
4974         * device/examples/ds390/ow390/owllu.c,
4975         * device/examples/ds390/ow390/ownetu.c,
4976         * device/examples/ds390/ow390/swt12.c,
4977         * device/examples/ds390/ow390/swtloop.c,
4978         * device/examples/ds390/ow390/temp.c,
4979         * device/examples/ds390/ow390/temp10.c,
4980         * device/examples/ds390/ow390/thermo21.c,
4981         * device/examples/ds390/ow390/tinilnk.c,
4982         * device/examples/ds390/ow390/tstfind.c,
4983         * device/examples/serialcomm/windows/serial.cpp,
4984         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4985         * device/include/reg51.h: fixed line endings for cvs
4986
4987 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4988
4989         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
4990         packRegsForAccUse, packRegisters): new accumulator register
4991         packing algorithm
4992         * support/regression/ports/hc08/support.c (_putchar): suppress
4993         warning of unused variable
4994         * src/SDCCicode.c: added SWAP entry to codeTable
4995
4996 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
4997
4998         * device/lib/sprintf.c: forgot to add this file before previous commit
4999
5000 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5001
5002         * src/pic16/gen.c (genPackBits): added operand right in function
5003         parameters, load result directly if p_type is POINTER (that is
5004         called by genNearPointerSet)
5005         * (genUnPackBits): added operand left in function parameters,
5006         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5007         FSR0 if accessing bitfields,
5008
5009 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5010
5011         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5012           _print_format; updated printf, sprintf, vsprintf
5013         * device/include/asm/default/features.h: corrected comment/define
5014         * device/lib/Makefile.in: added sprintf.c
5015         * device/lib/libsdcc.lib: added sprintf module
5016         * device/lib/printf_large.c,
5017         * device/lib/vprintf.c,
5018         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5019           into these 3 files
5020         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5021         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5022         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5023           hc08 test
5024         * support/regression/tests/zeropad.c: define idata as data for hc08
5025
5026 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5027
5028         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5029         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5030         labels are referenced at least once (even if a reference is not found)
5031         * src/hc08/gen.c (emitcode): set isComment flag for comments
5032         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5033         loads), rules 6a..6b (optimize jumps to return)
5034
5035 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5036
5037         * device/lib/acosf.c (acosf),
5038         * device/lib/asinf.c (asinf),
5039         * device/lib/atanf.c (atanf),
5040         * device/lib/ceilf.c (ceilf),
5041         * device/lib/cosf.c (cosf),
5042         * device/lib/coshf.c (coshf),
5043         * device/lib/cotf.c (cotf),
5044         * device/lib/fabsf.c (fabsf),
5045         * device/lib/floorf.c (floorf),
5046         * device/lib/log10f.c (log10f),
5047         * device/lib/logf.c (logf),
5048         * device/lib/sinf.c (sinf),
5049         * device/lib/sinhf.c (sinhf),
5050         * device/lib/sqrtf.c (sqrtf),
5051         * device/lib/tanf.c (tanf),
5052         * device/lib/tanhf.c (tanhf),
5053         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5054         replaced all instances of "reentrant" in the library functions
5055         defined in math.h with this macro.
5056         * support/regression/tests/float_trans.c: reenabled test for hc08
5057
5058 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5059
5060         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5061         erroneously deleted
5062
5063 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5064
5065         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5066         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5067         multi-byte volatile operands are used
5068         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5069         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5070         initialization to area GSINIT0 so that it would always precede
5071         any static initializers in GSINIT
5072         * support/regression/tests/zeropad.c: fixed idata define for hc08
5073         * support/regression/tests/bug-927659.c,
5074         * support/regression/tests/float_trans.c: disabled tests for hc08
5075         pending missing library routines
5076         * .version: increased version number to 2.4.4 - hc08 port now passes
5077         regression tests
5078
5079
5080 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5081
5082         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5083         * Makefile.common.in,
5084         * as/Makefile,
5085         * as/hc08/Makefile.in,
5086         * as/mcs51/Makefile.in,
5087         * as/z80/Makefile.in,
5088         * debugger/mcs51/Makefile.in,
5089         * device/include/Makefile.in,
5090         * device/lib/Makefile.in,
5091         * doc/Makefile,
5092         * link/Makefile,
5093         * link/z80/Makefile.in,
5094         * packihx/Makefile.in,
5095         * sim/ucsim/main_in.mk,
5096         * sim/ucsim/avr.src/Makefile.in,
5097         * sim/ucsim/doc/Makefile.in,
5098         * sim/ucsim/gui.src/serio.src/Makefile.in,
5099         * sim/ucsim/hc08.src/Makefile.in,
5100         * sim/ucsim/s51.src/Makefile.in,
5101         * sim/ucsim/xa.src/Makefile.in,
5102         * sim/ucsim/z80.src/Makefile.in,
5103         * src/Makefile.in,
5104         * support/cpp2/Makefile.in,
5105         * support/librarian/Makefile,
5106         * support/makebin/Makefile: added DESTDIR to the install path proposed
5107         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5108         * doc/sdccman.lyx: added DESTDIR documentation
5109
5110 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5111
5112         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5113         instruction for interrupt handlers, use fast returns when returning
5114         from high priority interrupts
5115
5116 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5117
5118         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5119         code generation
5120         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5121         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5122         bugs, ported much of Bernhard's code from mcs51
5123         * src/mcs51/gen.c (genSend),
5124         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5125         than one when calling a reentrant function
5126         * device/lib/_mullong.c: defined an alternate struct layout for big
5127         endian ports (hc08)
5128
5129 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5130
5131         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5132         test
5133
5134 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5135
5136         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5137         are sane and complete before asking the port its prefered parameter
5138         passing method (fixes bug #1017633)
5139         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5140         and _ret3
5141
5142 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5143
5144         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5145         problem in bitfields >= 8 bits.
5146
5147 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5148
5149         * src/SDCCsymt.c: undid changes that were not meant to be committed
5150
5151 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5152
5153         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5154
5155 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5156
5157         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5158           copied and wrong bit got inverted
5159
5160 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5161
5162         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5163         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5164         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5165         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5166         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5167         assignments to bitfields at known addresses
5168         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5169         reads from bitfields at known addresses
5170         * src/hc08/ralloc.c (packRegisters),
5171         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5172         genhc08Code): optimize pointer get values used as conditionals
5173         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5174         and branch
5175
5176 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5177
5178         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5179         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5180         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5181         as conditionals
5182
5183 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5184
5185         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5186
5187 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5188
5189         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5190         related problems
5191
5192 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5193
5194         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5195
5196 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5199         mcs51 port
5200
5201 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5202
5203         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5204
5205 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5206
5207         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5208         cases use more compact code.
5209
5210 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5211
5212         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5213
5214 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5215
5216         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5217
5218 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5219
5220         * src/SDCCsymt.h,
5221         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5222         parameter of changePointer() from symbol* to sym_link*
5223         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5224         * src/SDCCsymt.c (compareType): void* type is castable to other
5225         pointers, but not necesarily an exact match.
5226         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5227         is no longer blindly treated as an exact match.
5228         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5229
5230 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5231
5232         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5233
5234 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5235
5236         * src/pic/gen.c,
5237         * src/pic/pcode.c,
5238         * src/pic/ralloc.h,
5239         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5240
5241 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5242
5243         * src/pic/device.c,
5244         * src/pic/device.h,
5245         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5246
5247 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5248
5249         * src/mcs51/gen.c (emitcode): fixed bug #992819
5250
5251 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5252
5253         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5254           there's no need to make it worse
5255
5256 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5257
5258         * src/mcs51/ralloc.c (deassignLR),
5259         * src/ds390/ralloc.c (deassignLR),
5260         * src/hc08/ralloc.c (deassignLR),
5261         * src/z80/ralloc.c (deassignLR),
5262         * src/pic/ralloc.c (deassignLR),
5263         * src/pic16/ralloc.c (deassignLR),
5264         * src/avr/ralloc.c (deassignLR),
5265         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5266         rlivePoint): fixed another part of bug #971834
5267
5268 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5269
5270         * src/z80/main.c: enabled "critical" keyword
5271         * src/z80/mappings.i,
5272         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5273         functions (fixes bug #979646)
5274         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5275
5276 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5277
5278         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5279           such as c:\mydir.
5280
5281 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5282
5283         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5284           doesn't disable too much optimizations
5285
5286 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5287
5288         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5289
5290 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5291
5292         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5293
5294 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5295
5296         * src/pic/gen.c tidied up tabs
5297         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5298         * src/pic/main.c tidied up tabs
5299         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5300         * src/pic/pcoderegs.c tidied up tabs
5301         * src/pic/ralloc.c tidied up tabs
5302
5303 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5304
5305         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5306         to S_FIXED for pic16 port and when symbol is not in level 0,
5307         allocate for S_REGISTER storage class and pic16 port, too,
5308         * src/pic16/device.h: prototype for checkSym,
5309         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5310         * (pic16_assignConfigWordValue): test the value and the mask to
5311         validate that the value is suitable for the configuration word,
5312         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5313         collect extern declared symbols, don't emit symbol twice, check
5314         first if symbol is in publics set first,
5315         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5316         * added command line '--fstack' which enables an experimental
5317         feature for stack access, too buggy to be used yet...
5318         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5319         * (pic16_allocDirReg): when register has storage class S_REGISTER
5320         allocate in pic16_dynAccessRegs,
5321         * device/include/pic16/pic18f????.h: modified configuration word
5322         naming convention, words started as CONFIG0H but should be CONFIG1H
5323
5324 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5325
5326         * device/include/mcs51reg.h: fixed bug 970993
5327
5328 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5329
5330         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5331         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5332         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5333         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5334         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5335         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5336           error/warning numbers,
5337           added function setWarningDisabled()
5338         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5339         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5340           _memcmp.c _memmove.c calloc.c realloc.c free.c
5341         * support/regression/tests/malloc.c: added tests for new functionality
5342         * support/regression/tests/zeropad.c: added tests for truncated initializers
5343           and initialized char arrays starting with '\x0'
5344         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5345
5346 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5347
5348         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5349
5350 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5351
5352         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5353         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5354         peephole 177.e. Thanks to anonymous
5355
5356 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5357
5358         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5359         function isn't used in the source but referenced as a
5360         variable initializer then declare it as extern in .asm file
5361
5362 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5363
5364         * .version: increased version number to 2.4.3
5365
5366         Adding version extension according to ChangeLog CVS revision
5367         * src/Makefile.in (target all): added dependency 'version.h'
5368         * (rule version.h): added rule to create version.h from ChangeLog,
5369         * (rule dep): added dependency version.h,
5370         * src/version.awk: AWK script to create version.h
5371         * src/SDCCdwarf2.c (dwWriteModule),
5372         * src/SDCCglue.c (initialComments),
5373         * src/SDCCmain.c (printVersionInfo): modified to write after
5374         version string the version extension number,
5375         * src/SDCCutil.c: included "version.h"
5376         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5377         number,
5378         * src/SDCCutil.h: added prototype for getBuildNumber
5379
5380         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5381         includeDirsSet, too,
5382         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5383         const char [] is found in function prototype...
5384
5385         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5386         moving to WREG with source is already in WREG,
5387         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5388         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5389         * (aopForSym): stack'ed symbols are partially supported, added
5390         if-clause to support symbols in FARSPACE,
5391         * (sameRegs): added test for AOP_ACC to see if registers are same,
5392         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5393         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5394         * (pic16_popRegFromString): will not allocate a new register if it
5395         doesn't find one by name, bug may have introduced...
5396         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5397         * (genIpush): revived to use pic16 port's stack,
5398         * (genAddrOf): added incomplete case for stack'ed operand,
5399         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5400         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5401         can handle multibyte operands,
5402         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5403         * (pic16initialComments): added message for MPLAB compatibility
5404         mode enabled,
5405         * src/pic16/main.h: prototype for pic16_mplab_comp,
5406         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5407         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5408         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5409         because of increased complexity of procedure,
5410         * (_process_pragma): stack pragma changed to format 'stack pos len',
5411         emit symbol '_stack_end' to conform with gplink,
5412         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5413         to search for register,
5414         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5415         PO_GPR_REGISTER,
5416         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5417         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5418         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5419         case for PO_GPR_REGISTER,
5420         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5421         dies, the new era is ahead !...
5422         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5423         pic16_dynInternalRegs,
5424         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5425         * (pic16_allocDirReg): minor optimizations and bug fixes,
5426         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5427
5428         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5429         load stack and frame pointer with address of 'stack_end' symbol
5430
5431 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5432
5433         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5434         without source code but only variable initializers
5435
5436 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5437
5438         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5439         external are not declared as extern to reduce overhead while linking
5440
5441 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5442
5443         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5444
5445 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5446
5447         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5448           Yee Keat for the patch
5449         * src/SDCCast.c (decorateType): fixed bug #979599
5450         * src/ds390/gen.h: removed local fReturnSizeDS390
5451         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5452         * src/ds390/gen.c (genAnd, genOr, genXor),
5453         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5454
5455 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5456
5457         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5458         add relFilesSet to $3, manipulate $2 to handle linking of object
5459         files without source files in command line,
5460         * device/include/pic16 (all headers): added ID location macros,
5461         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5462         entries for ID location bytes,
5463         * (pic16_assignIdByteValue): NEW,
5464         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5465         added field dumpcalltree to pic16_options_t,
5466         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5467         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5468         emitting rFalseIfx label after check_carry label,
5469         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5470         pic16_emitDIRegs), NEW
5471         * (pic16glue): dump .calltree file when option --calltree found,
5472         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5473         * (_pic16_genAssemblerPreamble): emit ID locations after
5474         configuration registers,
5475         * (pic16_linkCmd): modifications of the link command,
5476         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5477         * (pic16_pCodeInitRegisters): don't init stack registers,
5478         * (pic16_findPrevInstruction): fixed bug,
5479         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5480         bug with immediate registers,
5481         * (buildCallTree): traces stack push and pop,
5482         * (pct2): dump also stack usage for each function,
5483         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5484         * (pic16_allocDirReg): various modifications,
5485         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5486         fixed to 1,
5487
5488 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5489
5490         * src/pic16/pcode.c: removed buggy double colon
5491
5492 2004-07-01 Borut Razem <borut.razem AT siol.net>
5493
5494         * support/scripts/sdcc.nsi: added include/pic16 to setup
5495
5496 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5497
5498         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5499         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5500         target 'clean',
5501         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5502         specific command line arguments. Also added sample lkr script
5503         for placing a variable at a specific memory bank.
5504         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5505         at a specific memory bank,
5506         * (pic16_dump_isection): fixed bug which caused string literals to
5507         be omitted when dumping idata section,
5508         * (pic16_groupRegistersInSection): added code to handle registers
5509         in specific memory banks,
5510         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5511         public, all references are renamed too,
5512         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5513         AOP_DPTR2,
5514         * (pic16_storeForReturn): added case to handle when dest is WREG,
5515         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5516         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5517         pic16_rel_udata, check to see if that register is marked as being
5518         a member of a specific memory bank,
5519         * (pic16_printIvalCharPtr): added code to add string literals either
5520         to code or the idata sections,
5521         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5522         also accept the 'udata' pragma,
5523         * src/pic16/main.h: new structure types sectName and sectSym
5524         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5525         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5526         * (pic16_findPrevInstruction): fixed, it returned nothing,
5527         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5528         instruction combinations,
5529         * (pic16_FixRegisterBanking): heavily reorganised,
5530         * (pic16_AnalyzeBanking): if generating banksel directives is
5531         disabled, then don't call FixRegisterBanking at all,
5532         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5533         completely removed,
5534         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5535
5536 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5537
5538         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5539         Phuah Yee Keat <yk.phuah AT nestac.com>
5540
5541 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5542
5543         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5544         correctly the IVT even if it is relocated to some other location
5545
5546 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5547
5548         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5549         * device/include/pic16/pic18f2220.h: NEW,
5550         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5551         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5552         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5553         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5554         nodefaultlibs, ivt_loc is the location of the interrupt vector
5555         table, and nodefaultlibs signs that default libraries should not be
5556         linked in link stage,
5557         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5558         according to --ivt-loc argument,
5559         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5560         when pragma stack is found,
5561
5562 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5563
5564         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5565         256 (range check), 257 (do while), 258.a-f (bit banging
5566         f.e. on 3-wire SPI bus)
5567
5568 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5569
5570         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5571         variables used exclusively within a loop
5572
5573 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5574
5575         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5576
5577 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5578
5579         * src/SDCClrange.c (computeClash): fixed bug #971834
5580
5581 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5582
5583         * src/mcs51/gen.c (genCmp): fixed bug #975903
5584         * src/hc08/gen.c (operandsEqu),
5585         * src/ds390/gen.c (operandsEqu),
5586         * src/z80/gen.c (operandsEqu),
5587         * src/pic/gen.c (operandsEqu),
5588         * src/pic16/gen.c (operandsEqu),
5589         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5590         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5591
5592 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5593
5594         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5595
5596 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5597
5598         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5599         default case in switch statement,
5600         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5601         to eliminate problem with initialisation of pointers, but problem
5602         still exists,
5603         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5604         * (emitStaticSegment): removed various lines emitting debug info,
5605         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5606         added processor registers for utilizing EEPROM,
5607         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5608         configurable and set 8
5609
5610 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5611
5612         * .version: increased version number to 2.4.2,
5613
5614         Cumulative patch for pic16 port
5615         * src/pic16/device.c: changed scheme to dump initial values for
5616         variables in idata segment, all print_idata* functions were removed,
5617         now the pic16_printIval* will be called,
5618         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5619         * _pic16_printPointerType, pic16_printPointerType,
5620         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5621         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5622         NEW, similar to the respective functions in SDCCglue.c,
5623         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5624         way, emitting hex bytes,
5625         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5626
5627 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5628
5629         * src/avr/ralloc.c (serialRegAssign),
5630         * src/xa51/ralloc.c (serialRegAssign),
5631         * src/pic/ralloc.c (serialRegAssign),
5632         * src/pic16/ralloc.c (serialRegAssign),
5633         * src/hc08/ralloc.c (serialRegAssign),
5634         * src/z80/ralloc.c (serialRegAssign),
5635         * src/ds390/ralloc.c (serialRegAssign),
5636         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5637
5638 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5639
5640         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5641         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5642
5643 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5644
5645         Cumulative patch for pic16 port:
5646         * src/pic16/device.h (typedef PIC16_device) modified fields for
5647         defining microcontrollers,
5648         * src/pic16/device.c: added new info for all devices in Pics16 array,
5649         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5650         to be optimised out by the pCode optimiser,
5651         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5652         specially, bug reported by G.M. Gallant,
5653         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5654         as force'd so that cannot be optimised out by pCode optimiser,
5655         * src/pic16/pcode.c,
5656         * src/pic16/pcodepeeph.c,
5657         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5658         they are disabled by default, but can be enabled explicit with
5659         command argument --denable-peeps, for testing,
5660         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5661         --pomit-ivt in COMPILE_FLAGS
5662
5663 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5664
5665         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5666           compilation on MSVC
5667
5668 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5669
5670         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5671
5672 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5673
5674         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5675         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5676
5677 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5678
5679         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5680         would only assign 0x300001 register.
5681
5682 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5683
5684         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5685         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5686
5687 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5688
5689         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5690         for ds80c400
5691         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5692         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5693         added peephole 254 (left shift), 255 (jump table)
5694
5695 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5696
5697         * device/lib/Makefile.in: removed comment line with model-pic16,
5698         * (target port-specific-objects-pic16): the libraries and objects
5699         are copied to the build directory form the device/lib/pic16/bin
5700         directory
5701
5702         Cumulative patch concerning pic16 port:
5703         * library directory has been re-organized,
5704         * added support for PIC18F1220,
5705         * added headers and library sources for chips 18f1220,18f6520,
5706         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5707
5708         * configuration registers setting has changed, now each supported
5709         device has a complete description of the registers it uses,
5710         * all initialisations are moved to idata sections, these section
5711         can be absolute or relocatable,
5712         * fixed initialisation of codespace variables,
5713         * fixed warning about PCLATU and gpsim,
5714         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5715         * (genAssign): use table reads when assigning from variables in codespace,
5716         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5717         char/int variables placed in codespace,
5718         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5719         registers set in .asm file, no need for --pomit-config-words anymore,
5720         * (pic16glue): some 8051 legacy segments are commented out
5721         (to be removed completely),
5722         * added support for alternative assembler and linker with --asm=
5723         and --link= command line arguments,
5724         * peepholes are disabled automatically in the port, no need to
5725         specify on command line,
5726         * port supports natively char/int/long multiplication, but converts
5727         all divisions to support functions,
5728         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5729         to the file set in variable $2,
5730         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5731         strings in ASCII format and not in hex,
5732         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5733         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5734         allocate proper register if iCodes aren't temporary,
5735
5736 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5737
5738         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5739
5740 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5741
5742         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5743         is commented out
5744
5745 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5746
5747         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5748         computed address is reused
5749         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5750         multi-byte bitfields
5751
5752 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5753
5754         * src/z80/gen.c: (genArrayInit): must check for pointers too
5755
5756 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5757
5758         * support/regression/tests/zeropad.c: never meant to commit the
5759           nestedstruct test: removed, added check for GCC version
5760
5761 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5762
5763         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5764         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5765         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5766           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5767           bugs 928906 and 954082 half-empty initializers
5768         * src/SDCCsymt.h,
5769         * src/SDCCsymt.c (getAllocSize): added for above fix
5770         * src/z80/gen.c (genArrayInit): fixed bug 741044
5771         * support/regression/tests/zeropad.c: added tests
5772
5773 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5774
5775         * src/pic16/device.c (pic16_dump_section): corrected bug which
5776         caused some symbols of the libraries to be misplaced
5777
5778 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5779
5780         * src/pic16/glue.c,
5781         * src/pic16/ralloc.h,
5782         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5783         to fix conflict with pic port
5784
5785 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5786
5787         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5788         externs configuration variables,
5789         * src/pic16/ralloc.h,
5790         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5791         prototype in header, commented out some debug messages
5792
5793 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5794
5795         * src/pic16/glue.c,
5796         * src/pic16/main.c,
5797         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5798         for gpasm COFF object generation. Thanks to D. Hawkins for
5799         his patch info
5800
5801 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5802
5803         * src/ds390/main.c,
5804         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5805         Brock for spotting this)
5806         * src/ds390/gen.c (genEndFunction),
5807         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5808         interrupt handler and critical. Disable push/pop optimizations when
5809         peephole optimizations disabled.
5810
5811 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5812
5813         Updated pic16 library sources and headers.
5814         * device/lib/pic16/pic18f*/ ,
5815         * device/include/pic16/*.h: modified to handle structured SFR
5816         definitions
5817
5818 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5819
5820         * src/port.h (PORT structure): added hook initPaths, now each
5821         port can declare its own default search paths,
5822         which can been seen with the --print-search-dirs option,
5823         see pic16 port for example,
5824         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5825         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5826         * (doPrintSearchDirs): NEW, replaces in a central manner the
5827         printing of search dirs which was split in set*Paths functions,
5828         * (main): added call to port->initPaths and doPrintSearchDirs,
5829         * src/avr/main.c,
5830         * src/ds390/main.c,
5831         * src/hc08/main.c,
5832         * src/izt/i186.c,
5833         * src/izt/tlcs900h.c,
5834         * src/mcs51/main.c,
5835         * src/pic/main.c,
5836         * src/pic16/main.c: modified port structures to reflect addition of
5837         initPaths hook,
5838
5839         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5840         * (pic16_dump_section): for registers in same address reserve memory once,
5841         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5842         to no_banksel,
5843         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5844         result is greater in size than right or left,
5845         * (pic16_genUMult8X8_8): there are some cases where the result can
5846         be 16 bits size, so handle these,
5847         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5848         * (pic16_outBitC): modified to emit pcodes,
5849         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5850         or not,
5851         * (genDivOneByte): implemented algorithm to divide 8-bits,
5852         * (genCmp): uncommented goto, but issues still exist,
5853         * (genAnd): fixed a bug with variables >8bits,
5854         * (genPackBits): optimization added that uses BCF/BSF to change a
5855         single bit,
5856         * (genAssign): fixed bug when assigning floating point literals,
5857         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5858         __sdcc_gsinit_startup label,
5859         * src/pic16/main.c (_pic16_init): removed search directory
5860         initialisations,
5861         * (_pic16_initPaths): NEW, used to initialise search directories,
5862         * (_hasNativeMulFor): support functions for all except char/int
5863         multiplication, and char division,
5864         * (PIC16_port struct): modified entry for native mul support,
5865         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5866         no_banksel option,
5867         * (buildCallTree): call to register_usage is ifdef'ed out,
5868
5869 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5870
5871         * device/include/string.h: applied Stas Sergeev's patch to make this
5872         header file compatible with the preprocessor -Wundef option
5873         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5874         failure (fixes bug #941458)
5875
5876 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5877
5878         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5879         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5880         that the variable, not the function, should be static
5881         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5882         to be consistent with non-literal case
5883
5884 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         * src/SDCCast.c (isConformingBody): fixed bug #949967
5887         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5888         convilong): fixed bug #952086
5889
5890 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5891
5892         * src/SDCCmem.c (allocVariables): fixed bug #955321
5893
5894 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5895
5896         * src/hc08/main.c (_hc08_genAssemblerEnd),
5897         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5898         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5899         completely eliminated the use of a temporary file
5900         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5901         when more than one file linked
5902         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5903
5904 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5905
5906         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5907         which fixes bug #543481
5908         * support/regression/tests/bug-751703.c: fixed comments left from a
5909         cut and paste error
5910         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5911         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5912         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5913         scopes
5914         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5915         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5916         are now changed to underscores in moduleName
5917
5918 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5919
5920         * as/mcs51/lkmem.c: better fix for bug #954173
5921
5922 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5923         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5924
5925         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5926         * device/include/c8051f000.h,
5927         * device/include/c8051f120.h,
5928         * device/include/c8051f300.h,
5929         * device/include/c8051f310.h,
5930         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5931         PWM16) and detab'ed
5932
5933 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5934
5935         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5936         and mailing lists, doc'ed --no-peep-comments, removed reference
5937         to knoppix (newest version has no LyX/LaTeX), other minor changes
5938         * src/SDCCglue.c (glue): save 2 bytes stack space with
5939         option --main-return. The ljmp could probably be avoided too
5940
5941 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5942
5943         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5944
5945 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5946
5947         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5948         * src/SDCCopt.c (isLocalWithoutDef),
5949         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5950         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5951         (credit to Maarten Brock for patch #949363, on which this is based)
5952         * support/regression/tests/bug-751703.c: some test cases of extern used
5953         within inner scopes.
5954
5955 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5956
5957         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5958         SPEC_STRUCT
5959         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5960         struct definitions
5961         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5962         dwWriteLabel): fix to create valid debugger symbols even when
5963         the module name has non-alphanumeric symbols in it
5964         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5965         when a variable's allocation has been optimized away
5966
5967
5968 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5969
5970         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5971         * src/hc08/main.c,
5972         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5973         * src/mcs51/main.c,
5974         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5975         * src/ds390/main.c,
5976         * src/z80/gen.c (z80_emitDebuggerSymbol),
5977         * src/z80/main.c,
5978         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5979         * src/pic/main.c,
5980         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5981         * src/pic16/main.c,
5982         * src/avr/gen.c (avr_emitDebuggerSymbol),
5983         * src/avr/main.c,
5984         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5985         * src/xa51/main.c,
5986         * src/SDCCdebug.c (emitDebuggerSymbol),
5987         * src/SDCCdebug.h,
5988         * src/port.h: added a debugger struct to the port struct. Added a
5989         callback for defining debugger symbols
5990
5991         * src/SDCCast.c (createLabel),
5992         * src/SDCC.y (labeled_statement): mark all compiler generated labels
5993         with isitmp = 1
5994         * src/SDCCicode.h,
5995         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
5996         iCode back to the ast for the function
5997
5998         * src/hc08/ralloc.c (hc08_assignRegisters),
5999         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6000         unneeded fields from the regs struct.
6001         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6002         pushReg() & pullReg() functions instead of emitcode()
6003
6004         * src/hc08/gen.c (genLabel, genhc08Code),
6005         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6006
6007         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6008         debugger hooks
6009
6010         * src/hc08/gen.c (genEndFunction, genhc08Code),
6011         * src/hc08/gen.h,
6012         * src/mcs51/gen.c (genEndFunction, gen51Code),
6013         * src/mcs51/gen.h,
6014         * src/ds390/gen.c (genEndFunction, gen390Code),
6015         * src/ds390/gen.h,
6016         * src/z80/gen.c (genEndFunction, genZ80Code),
6017         * src/z80/gen.h,
6018         * src/z80/z80.h,
6019         * src/pic/gen.c (genEndFunction, genpic14Code),
6020         * src/pic/gen.h,
6021         * src/pic16/gen.c (genEndFunction, genpic16Code),
6022         * src/pic16/gen.h,
6023         * src/avr/gen.c (genEndFunction, genAVRCode),
6024         * src/avr/gen.h,
6025         * src/xa51/gen.c (genEndFunction, genXA51Code),
6026         * src/xa51/gen.h,
6027         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6028         specific code to cdbFile.c and out of the backend code generators
6029
6030         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6031         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6032         starting address is now 0
6033
6034         * as/hc08/asm.h,
6035         * as/hc08/m08pst.c,
6036         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6037         assembler directive for DWARF support
6038         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6039
6040         * src/src.dsp,
6041         * src/Makefile.in,
6042         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6043
6044 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6045
6046         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6047         and inappropriate peephole optimization in jump tables
6048
6049 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6050
6051         * as/hc08/m08pst.c,
6052         * src/SDCCglue.c: sdccopt works for the hc08 port now
6053
6054 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6055
6056         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6057
6058 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6059
6060         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6061
6062 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6063
6064         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6065         rules
6066         * src/SDCCmain.c,
6067         * src/SDCCglobl.h,
6068         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6069         comments from the peephole optimizer replacement rules
6070         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6071         symbols
6072         * src/SDCCcse.c (updateSpillLocation),
6073         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6074         equivalents
6075         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6076         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6077         objects far pointers
6078
6079 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6080
6081         * src/SDCCsymt.h: a missing part of my last change
6082         * src/pic/ralloc.c (regTypeNum),
6083         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6084
6085 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6086
6087         * src/SDCCicode.h,
6088         * src/SDCCicode.c (aggrToPtrDclType),
6089         * src/SDCCptropt.h,
6090         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6091         ptrPseudoSymConvert),
6092         * src/pic/ralloc.c (regTypeNum),
6093         * src/pic16/ralloc.c (regTypeNum),
6094         * src/hc08/ralloc.c (regTypeNum),
6095         * src/ds390/ralloc.c (regTypeNum),
6096         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6097         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6098
6099 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6100
6101         * link/z80/lkmain.c (afile),
6102         * as/hc08/lkmain.c (afile),
6103         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6104         prevent a pointer problem when a filename has no directory and
6105         no extension specified.
6106
6107 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6108
6109         * link/z80/lkmain.c (afile): allow periods in directory names
6110         * link/z80/lkmain.c (afile),
6111         * as/mcs51/lkmain.c (afile),
6112         * as/hc08/lkmain.c (afile): allow linker script file to have an
6113         extension other than ".lnk"
6114         * link/z80/lklex.c (getfid),
6115         * link/z80/lkmain.c (parse),
6116         * as/mcs51/lklex.c (getfid),
6117         * as/mcs51/lkmain.c (parse),
6118         * as/hc08/lklex.c (getfid),
6119         * as/hc08/lkmain.c (parse): Support comments in the linker script
6120         file on lines by themselves and after filenames
6121
6122 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6123
6124         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6125
6126 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6127
6128         * src/z80/peeph-z80.def: removed some peephole rules that don't
6129         work with multibyte arithmetic (fixed bug #937126)
6130         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6131         to registers and not global variables
6132         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6133         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6134         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6135         checking for assignments not internally generated (fixed bug #931895)
6136         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6137         structure member (fixed bug #930072)
6138
6139 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/SDCCmain.c (linkEdit),
6142         * src/hc08/main.c (_hc08_parseOptions),
6143         * as/hc08/Makefile.in,
6144         * as/hc08/aslink.h,
6145         * as/hc08/asm.h,
6146         * as/hc08/m08pst.c,
6147         * as/hc08/lkrloc.c (relr, rele),
6148         * as/hc08/lkarea.c (lnkarea)
6149         * as/hc08/lkmain.c (afile, parse),
6150         * as/hc08/lkelf.c: support for ELF output
6151         * as/hc08/lks19.c (s19),
6152         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6153
6154 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6155
6156         * as/mcs51/lkihx.c: Fixed bug #899105.
6157
6158 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6159
6160         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6161         .dsp files from Unix to DOS.
6162
6163 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6166         function pointers; we have been compliant for several months now.
6167         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6168         change that was accidently commented out
6169         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6170         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6171         bug #922319
6172
6173 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * src/hc08/gen.c: output of all of the internal debugging information
6176         is now controlled by the D() macro; it is disabled by default
6177
6178 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6179
6180         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6181         harder to keep the same registers during a CAST iCode
6182         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6183         long via int can be done in a single cast, if the signedness is
6184         correct.
6185         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6186         putchar() in tinibios.c in ds390's library
6187
6188 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6189
6190         * src/SDCCast.c (decorateType): fixed bug #898889,
6191         cast result of a literal complement too
6192         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6193         fixed check for bitfields
6194
6195 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6196
6197         * src/SDCCicode.c (geniCodeLogic): made it static,
6198         (geniCodeLogicAndOr): added in order to fix bug #905492,
6199         (ast2iCode): fixed bug #905492
6200         * support/regression/tests/bug-905492.c: added
6201         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6202         (processParms): fixed bug #927659: don't copy parms, this will clear
6203         decorated flag
6204         * support/regression/tests/bug-927659.c: added
6205
6206 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6207
6208         * src/SDCCast.c (addCast): don't cast float to char
6209         * device/lib/libsdcc.lib: added _memmove
6210
6211 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6212
6213         * device/lib/large/Makefile: fixed parallel execution by
6214         replacing `make` by `$(MAKE)`
6215
6216 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6217
6218         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6219         offsets (fixes bug #923936)
6220
6221 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6222
6223         * device/lib/small/Makefile: fixed parallel execution by
6224         replacing `make` by `$(MAKE)`
6225
6226 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6227
6228         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6229
6230 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6231
6232         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6233         * src/regression/Makefile: Regression test was not running.
6234
6235 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6236
6237         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6238         complement if possible
6239         * src/SDCCval.c (valComplement),
6240         * src/SDCCicode.c (operandOperation): fixed complement of literal
6241         * support/regression/tests/onebyte.c (testComplement): added
6242
6243 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6244
6245         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6246         return an optimized tree; actually replace actParm with the new tree
6247         * src/SDCCast.h: added some parantheses to remove side effects
6248         * support/regression/tests/bug-920866.c
6249
6250 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6251         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6252         Bit operands were not being handled properly in the pic14 port.
6253         (now src/regression/add.c passes again).
6254
6255 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6256
6257         * src/SDCC.y (labeled_statement): case and default no longer require
6258         a following statement (RFE #893037)
6259
6260 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6261
6262         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6263         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6264         disabled (fixes bug #916294)
6265         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6266         "mov a,acc"; patch provided by Lenny Story
6267         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6268
6269 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6270
6271         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6272         functions
6273         * src/ds390/gen.c (genFunction, genEndFunction),
6274         * src/ds390/ralloc.c (ds390_assignRegisters),
6275         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6276         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6277         pushed if there are parameters passed on the stack. Also, a cleaner
6278         way to decide if r0/r1 should be pushed/popped. (Together they fix
6279         bug #918693)
6280
6281 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6282
6283         * doc/sdccman.lyx,
6284         * device/lib/mcs51/crtpagesfr.asm,
6285         * device/lib/mcs51/crtxinit.asm,
6286         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6287         to avoid confusion with Si Lab's SFRPAGE register.
6288
6289 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6290
6291         * src/SDCCglue.c (emitMaps): allow public sfr variables
6292         * src/SDCCglue.c (initialComments): include compiler build date
6293         with compiler version and put the timestamp of the generated
6294         assembly file on a serperate line to be less confusing.
6295         * src/port.h: added genInitStartup hook
6296         * src/avr/main.c,
6297         * src/ds390/main.c,
6298         * src/hc08/main.c,
6299         * src/pic/main.c,
6300         * src/pic16/main.c,
6301         * src/xa51/main.c,
6302         * src/z80/main.c: genInitStartup initialize as NULL (default to
6303         historical behaviour)
6304         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6305         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6306         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6307         library instead of hard coding it into the compiler.
6308         * support/regression/ports/mcs51-stack-auto/spec.mk,
6309         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6310         * device/lib/mcs51/Makefile,
6311         * device/lib/small/Makefile,
6312         * device/lib/large/Makefile,
6313         * device/lib/mcs51/crtpagesfr.asm,
6314         * device/lib/mcs51/crtstart.asm,
6315         * device/lib/mcs51/crtxclear.asm,
6316         * device/lib/mcs51/crtxinit.asm,
6317         * device/lib/mcs51/crtclear.asm,
6318         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6319         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6320         and into user configurable files.
6321         * device/lib/clean.mk: clean mcs51 directory too
6322         * support/regression/tests/longlit.c: added static to T1 declaration
6323         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6324         accesses in the initialization code
6325
6326 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6327
6328         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6329         OSCTRIMVAL as noted in bug #916008
6330
6331 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6334         in loops with multiple exits (reported as incorrect registers
6335         used by Martin Helmling in Sdcc-user list)
6336
6337 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6338
6339         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6340         made ds390 register extensions look less like error messages
6341
6342 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6343
6344         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6345         reported by Adam Wozniak in Sdcc-user list
6346
6347 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6348
6349         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6350         arithmetic optimizations, added debug output
6351
6352 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6353
6354         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6355         * sdcc.spec: updated and split sdcc into 3 rpms
6356         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6357         needed for literals of LEFT_OP and '+'
6358         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6359         introduced RESULT_TYPE_NOPROM
6360         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6361         left shift
6362         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6363         limited promotion to int only for '*'
6364         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6365
6366 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6367
6368         * src/pic16/gen.c (genSkip),
6369         (genc16bit2lit), (gencjneshort): commented out
6370         (is_LitOp): new helper function, checks operand type
6371         (genCmpEq): rewritten
6372
6373 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6374
6375         * support/regression/tests/bug-908454.c: added
6376
6377 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6378
6379         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6380         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6381         (geniCodeCast): cosmetic, don't preserve bit storage class
6382         (geniCodeLeftShift): added promotion
6383         (geniCodeLogic): fixed regression
6384         * src/SDCCsymt.c (computeTypeOr): accept bits too
6385         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6386
6387 2004-03-07  Borut Razem <borut.razem AT siol.net>
6388
6389         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6390
6391 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6392
6393         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6394         version of pic16_genPackRegisters which does not check if ic is a
6395         CAST operator,
6396         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6397         function cause string1.c regression test fails
6398
6399 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6400
6401         * sim/ucsim/configure.in,
6402         * sim/ucsim/configure,
6403         * sim/ucsim/doc/Makefile.in: use docdir
6404         * src/SDCC.y: fixed sbit atrributes
6405         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6406         * src/SDCCast.c (decorateType): |^& need special promotion handling
6407         * src/SDCCast.h,
6408         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6409         * src/SDCCsymt.h (computeType),
6410         * src/SDCCicode.c: computeType() needs op
6411         * src/SDCCsymt.c (checkTypeSanity),
6412         * doc/sddman.lyx: "plain" bitfields are unsigned
6413         * src/SDCCsymt.c (computeTypeOr): added
6414         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6415         |^& ops
6416         * src/SDCCval.c (val*): computeType() needs op
6417         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6418         * support/regression/tests/onebyte.c: added tests for |^&
6419
6420 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6421
6422         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6423         for writing icode into asm output.
6424
6425 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6426
6427         * src/pic16/device.c: added some debug lines enabled
6428         with macro DEBUG_CHECK,
6429         * src/pic16/genarith.c: more debug in genPlus,
6430         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6431         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6432         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6433         * (aopForSym): onStack symbols are re-placed in data memspace,
6434         and onStack flag is cleared,
6435         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6436         copy temporary pcodeop,
6437         * (genPcall): added warning for not updating PCLATU,
6438         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6439         always true for pic16 port,
6440         * (genMultOneWord): NEW, supports integer multiplication,
6441         * (genMult): modified to call genMultOneWord,
6442         * (ifxForOp): added warning when return NULL,
6443         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6444         flag is set before call to operandFromSymbol for implicit
6445         added structures,
6446         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6447         options.intlong_rent are set by default,
6448         * (_hasNativeMulFor): modified to allow port generation of integer
6449         multiplication,
6450         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6451         set regtype to REG_SFR for all registers, restricting seting the
6452         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6453
6454 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6455
6456         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6457         more than 500 times in the regression tests
6458
6459 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6460
6461         * support/Util/SDCCerr.h,
6462         * support/Util/SDCCerr.c,
6463         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6464         enumerator_list),
6465         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6466         for symbol conflicts.
6467         * support/valdiags/tests/enum.c,
6468         * support/valdiags/tests/tentdecl.c,
6469         * support/valdiags/tests/struct.c: expect possible error messages
6470         referring to original symbol definitions.
6471         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6472         * src/SDCCsymt.h,
6473         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6474
6475 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6476
6477         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6478
6479 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6480
6481         * src/pic16/ralloc.c (newReg): fixed bug #908929
6482
6483 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6484
6485         * src/ds390/gen.c: added missing #include "main.h"
6486
6487 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6488
6489         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6490         checking if symbol is already in set,
6491         * src/pic16/device.h: prototype for checkAddSym,
6492         * src/pic16/gen.c: (_G): added entry interruptvector,
6493         * (assignResultValue): removed some commented out lines,
6494         * (genFunction): check for ISR via sym->type, absolute section for
6495         interrupt code is created via a new pBlock, the goto instruction is
6496         placed now correctly at the interrupt vector position, changed all
6497         references from ivec to _G.interruptvector,
6498         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6499         is the interrupt is a high priority one, same for return from ISR,
6500         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6501         externs to calls of checkAddSym,
6502         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6503         pic16_pcode_verbose flag is set,
6504         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6505         * src/pic16/pcoderegs.c: message about how many registers are saved
6506         will only be emitted if pic16_pcode_verbose flag is set,
6507
6508 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6509
6510         * src/ds390/ralloc.h,
6511         * src/ds390/ralloc.c (ds390_regWithIdx),
6512         * src/ds390/gen.c (emitcode),
6513         * src/ds390/main.h,
6514         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6515         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6516         ds390operandCompare, getRegsRead, getRegsWritten,
6517         initializeAsmLineNode): customized instruction size calculation for
6518         ds390, started basis for some register optimizations
6519         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6520         corresponding assembly output
6521         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6522         missing push/pop of r0/r1. Optimized push/pops
6523
6524 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6525
6526         * src/mcs51/main.c (instructionSize): fixed ACALL size
6527         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6528
6529 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6530
6531         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6532         the sorting of rlist with NULL elements
6533         * (print_idataType, print_idata): NEW to create idata sections
6534         * src/pic16/device.h: idataSymSet new variable
6535         * src/pic16/gen.c (genFunction): fixed some bugs in string
6536         comparing, improved the absolute section creation for ISRs,
6537         added FSR0L/FSR0H in registers that are saved in an ISR,
6538         * (genInline): fixed the processing of inline snippets,
6539         now they undergo no process by the peephole optimizer
6540         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6541         are placed in idataSymSet,
6542         * (pic16emitStaticSeg): extern symbols are added in externs,
6543         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6544         switching when aboslute variables are placed in access bank memory
6545         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6546         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6547         commented out with #if,
6548         * (pic16_packRegisters): reintroduce the check for CAST because some
6549         symbols are not correctly handled,
6550         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6551         pCodeInstruction instead of pCode,
6552         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6553         pCodeAsmDir definition,
6554         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6555         directive, then the argument directive is emitted without the leading
6556         tab, hack for inline labels which must be in the first column,
6557         * (compareLabel,pic16_findNextInstruction),
6558         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6559         * (insertBankSwitch): modified for the new pCodeAsmDir,
6560
6561 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6562         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6563
6564         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6565         instance,
6566         * (pushSide): commented out with #if,
6567         * (assignResultValue): fixed some typos in saving
6568         registers,
6569         * (genPcall): FIXED and sync'ed with genCall,
6570         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6571         * (genNearPointerGet): fixed to handle some more cases,
6572         implementation scheme via table reads,
6573         * (genConstPointerGet): modified to access code memory correct,
6574         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6575         and improved to handle some cases
6576         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6577         instead of "RETLW" for init data
6578         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6579         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6580         variables are placed in access bank memory (<0x80 and >=0xf80),
6581         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6582         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6583         TBLWT_POSTDEC,TBLWT_PREINC
6584         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6585         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6586         directives
6587         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6588         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6589         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6590         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6591
6592 2004-02-29  Borut Razem <borut.razem AT siol.net>
6593
6594         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6595         support/Util/findme.h, support/Util/system.h: enhance binary relative
6596         search for lib and include by using findProgramPath()
6597
6598 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6599
6600         * src/SDCCpeeph.h,
6601         * src/SDCCpeeph.c (pcDistance),
6602         * src/port.h,
6603         * src/mcs51/ralloc.h,
6604         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6605         * src/mcs51/main.h,
6606         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6607         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6608         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6609         size calculation port specific, started basis for some register
6610         optimizations
6611         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6612         missing push/pop of r0/r1. Optimized push/pops
6613         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6614         * device/lib/_modsint.c (_modsint),
6615         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6616         and stack version so regression tests pass
6617
6618 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6619
6620         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6621         * src/SDCCast.c (decorateType): catch another small optimization
6622         with '?' operator
6623         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6624         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6625         modified to finally use computeType() all over SDCC,
6626         see Feature Request #877103
6627         * src/SDCCval.h: cosmetic
6628         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6629         valCompare(); regression tested in muldiv.c
6630         * support/regression/tests/muldiv.c (testMod): mod sign follows
6631         dividend only
6632
6633 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6634
6635         * src/SDCCast.c (decorateType): fixed bug #902362
6636         * doc/INSTALL.txt: fixed install instructions for win32
6637
6638 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6639
6640         * device/include/Makefile.in (install): fixed by replacing spaces
6641         by tabs
6642         * doc/README.txt,
6643         * doc/INSTALL.txt: updated for release
6644         * doc/sdccman.lyx: added warning for --xstack being buggy
6645
6646 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6647
6648         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6649         to eliminate build warnings.
6650         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6651
6652 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6653            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6654
6655         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6656         removed -penable-stack, added comment for stack pragma, added
6657         warning for not initializing the stack/frame registers, removed
6658         comment at interrupts section
6659
6660         Stack is made permanent, there is no ability to disable stack usage.
6661         * src/pic16/device.h,
6662         * src/pic16/device.c: removed all references to USE_STACK macro,
6663         * src/pic16/device.c (pic16_dump_section): when no elements in
6664         rlist, free rlist before return,
6665         * (pic16_dump_int_registers): NEW, internal registers are a new set
6666         of general purpose registers reused by each function,
6667         * (checkAddReg): returns 1 if registers is added to set,
6668         * (pic16_groupRegistersInSection): when a registers is of type
6669         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6670         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6671         SRCASECMP macro is moved here from device.c
6672         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6673         PO_PCLATU, PO_PRODL, PO_PRODH,
6674         * (pic16_pCodeOpType, genMinus,
6675         changed compares to "a" register, with AOP_ACC,
6676         * (pic16_genPlus): fixed some bugs and indented properly,
6677         * (pic16_addSign): changed size to size+offset in the MOVWF
6678         instruction,
6679         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6680         multiply 8-bit operand by literal, result is 8-bit,
6681         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6682         multiply 2 8-bit operand, result is 8-bit,
6683         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6684         genUMult8X*_16,
6685         * src/pic16/gen.c: changed accUse to contain WREG only,
6686         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6687         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6688         true, do not use immediate addressing any more unless sym is a
6689         pointer in codespace,
6690         * (aopForRemat): do not use immediate addressing when symbol not in
6691         codespace and when symbol's address is requested,
6692         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6693         accUse size (= 1),
6694         * (aopGet): added case for AOP_ACC and don't return "accumulator
6695         bug" but WREG instead,
6696         * (popGetTempReg): pushes contents of temporary register in stack,
6697         * (popReleaseTempReg): pops contents of temporary register from
6698         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6699         * (pic16_popGet): separated case AOP_ACC to return register WREG
6700         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6701         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6702         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6703         the use of immediate pointers to certain cases only.
6704
6705         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6706         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6707         * (assignResultValue, genCall, genRet): modified to use the new
6708         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6709         genPcall is still broken,
6710         * (genFunction): added code to create 'A' type pBlocks when
6711         interrupt functions are generated, code not extensively tested yet,
6712         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6713         * (genEndFunction): modified so ISRs pop stored registers from stack,
6714         * (genMultOneByte): cleanup,
6715         * (AccRsh): added flag andmask, to and result with appropriate mask,
6716         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6717         * (genDataPointerGet): fixed and reenabled its use,
6718         * (genNearDataPointerGet): bugs fixed,
6719         * (genDataPointerSet): bugs fixed,
6720         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6721         pic16_DumpSymbol, pic16_DumpOp,
6722         * src/pic16/genutils.h: function prototypes for the above functions,
6723         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6724         pointers,
6725         * (pic16emitRegularMap): many many many improvements, but needs a
6726         major cleanup,
6727         * src/pic16/main.c: enable_stack in pic16_options is removed,
6728         * (_pic16_parseOptions): removed command line options -penable-stack,
6729         * (_process_pragma): emit stack symbol only when stack pragma is
6730         processed,
6731         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6732         redirected to FSR0L/FSR0H pair,
6733         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6734         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6735         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6736         for immediates,
6737         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6738         * (dumpPicOptype): NEW,
6739         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6740         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6741         with movff instruction,
6742         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6743         added pic16_int_regs, some packRegsFor* functions are commented out,
6744         because produce errors,
6745         * src/pic16/NOTES: minor modifications
6746
6747 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6748
6749         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6750         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6751         --pack-iram.
6752         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6753         * as/mcs51/lkaomf51.c: fixed bug #895763
6754
6755 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6756
6757         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6758
6759 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6760
6761         * doc/sdccman.lyx: added details about the HC08 storage classes and
6762         interrupts, fixed the register usage info for z80 & gbz80
6763
6764 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6765
6766         * doc/sdccman.lyx: added more pic16 port documentation
6767         * device/include/pic16/: added header pic18fregs.h
6768
6769 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6770
6771         * doc/sdccman.lyx: added Vangelis' contribution
6772
6773 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6776         extend to the next CALL or PCALL, not just to the next CALL.
6777
6778 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6779
6780         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6781
6782 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6783
6784         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6785         bug #895752 and a better fix for bug #716790
6786
6787 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6788
6789         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6790
6791 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6792
6793         * doc/sdccman.lyx: minor changes, minor changed
6794
6795 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6796
6797         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6798         which can't handle SDCC_NEWONEBYTEOPS,
6799         (geniCodeMultiply): removed conversion from mult to shift for pic14
6800         and pic16
6801
6802 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6803
6804         * src/hc08/gen.h,
6805         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6806         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6807         thus fixing bug #895406
6808
6809 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6810
6811         * device/lib/_modsint.c,
6812         * device/lib/_modslong.c: sign follows divisor only
6813         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6814         signs or signedness can be ignored
6815         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6816         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6817         added optimization for IFX,
6818         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6819         arguments;
6820         reenabled optimization for IFX, which was removed on 2004-01-11
6821         * src/SDCCast.h: added return type IFX
6822         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6823         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6824         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6825         SDCC_OLDONEBYTEOPS selects the old behaviour
6826         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6827         changed again and commented promotion rule
6828         * src/SDCCval.c (valDiv): promotion no longer necessary
6829         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6830         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6831         rewritten
6832         * support/regression/tests/onebyte.c: added
6833
6834 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6835
6836         * gen.c (genInline): reverted to old code for assemnling inline
6837         code because of bug reported James Chadd
6838
6839 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6840
6841         * ralloc.h: missing declarations from previous patch,
6842         seems that patch for ralloc.h was never applied, fixed
6843
6844 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6845            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6846
6847         * pcode.c,
6848         * pcode.h,
6849         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6850         indirect addressing. Marked FSR0 as deprecated
6851         * gen.c (pointerCode): commented out, not needed now
6852         (pic16_popGet2p): new MOVFF helper function
6853         (genGenPointerGet),
6854         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6855         (shiftRLong): removed duplicate debugging info
6856
6857 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6858
6859         * src/ds390/gen.c (genNearPointerGet),
6860         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6861         optimization with bits, but not bitfields.
6862         * src/ds390/ralloc.c (packRegisters),
6863         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6864
6865 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6866
6867         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6868
6869 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6870
6871         * src/SDCCsymt.h,
6872         * src/SDCCicode.c (operandFromSymbol),
6873         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6874         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6875         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6876         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6877         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6878         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6879         bug #892038
6880         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6881         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6882         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6883         * src/SDCCsymt.c (newSymbol),
6884         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6885         enumerator_list),
6886         * src/SDCCval.h,
6887         * src/SDCCval.c (newiList): fixed bug #885705
6888
6889 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6890
6891         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6892         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6893
6894 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6895
6896         * device/include/c8051f120.h,
6897         * device/include/c8051f300.h,
6898         * device/include/c8051f310.h: added/updated header files for Silicon
6899         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6900         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6901         in new section Submitting patches
6902
6903 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6904
6905         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6906         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6907         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6908         genGenPointerSet),
6909         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6910         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6911         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6912         genGenPointerSet),
6913         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6914         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6915         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6916         genGenPointerSet),
6917         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6918         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6919         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6920         genGenPointerSet): fixed bug #892400
6921         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6922         to eliminate build warnings.
6923         * src/SDCCast.c (processParms),
6924         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6925         fixed bug 751859
6926         * support/valdiag/valdiag.py: added GCC to the list of defines active
6927         when compiling with gcc
6928
6929 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6930
6931         * support/Util/SDCCerr.h,
6932         * support/Util/SDCCerr.c,
6933         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6934         with an incomplete type (fixed bug #883734)
6935         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6936
6937 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6938
6939         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6940
6941 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6942
6943         * src/SDCCast.c (decorateType),
6944         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6945         function pointer implementation
6946         * support/regression/tests/funptrs.c: added tests to verify both forms
6947         of function pointers work correctly. Added tests to verify parameters
6948         are passed in the correct order.
6949
6950 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6951
6952         * device.c (regCompare): registers are sorted by ascending
6953         address and increasing size,
6954         * main.c (_pic16_finaliseOptions): removed the declaration
6955         of compiler macro MCU. Now a macro of the format pic18fxxxx
6956         will be defined from the command line
6957
6958 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6959             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6960
6961         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6962         PCOP_RLCF was overwritten!
6963         * gen.c (genSkip): commented out calls to pic16_emitcode,
6964         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6965         * (genlshTwo),
6966         * (genRRC): added debugging info,
6967         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6968         overwritten while shifting,
6969         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6970         overwritten while shifting,
6971         * (AccLsh),
6972         * (AccRsh),
6973         * (shiftLLeftOrResult),
6974         * (shiftRLeftOrResult),
6975         * (shiftRLong),
6976         * (shiftLLong): Implemented with pic16_emitpcode
6977         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6978         * (genLeftShift): Fixed bug, operand for shift by variable always
6979         was "and"ed with 0x0f,
6980         * (genLeftShiftLiteral),
6981         * (genrshTwo),
6982         * (genRightShiftLiteral): added debugging info,
6983         * (genrshFour): added comment,
6984         * (genRightShift): determined signedness from operand "left"
6985         instead of "result"
6986
6987 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6988
6989         * src/SDCCicode.c (geniCodeParms),
6990         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
6991         function pointers, fixed function pointer bugs #861242 and #861896
6992
6993 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6994
6995         * device/include/c8051f000.h,
6996         * device/include/c8051f120.h,
6997         * device/include/c8051f300.h: added header files for Silicon
6998         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6999
7000 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7001
7002         * src/SDCCast.c (processParams): added new type flow and restructured
7003         (gatherAutoInit): added new type flow
7004         (addCast): cosmetic changes
7005         (getLeftResultType): added new type flow for array indices, patch
7006         provided by Stas, see FR #877103
7007         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7008         array index patch by Stas
7009         * src/SDCCast.h: added prototype getResultTypeFromType()
7010         * src/SDCCval.h,
7011         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7012         * src/pic/glue.c (pic14emitStaticSeg),
7013         * src/pic16/glue.c (pic16emitStaticSeg),
7014         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7015         for initialization of symbols
7016         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7017         * support/Util/SDCCerr.h:
7018         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7019         * .version: bumped version number to 2.3.8
7020         * device/include/Makefile.in (install),
7021         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7022         avoid warnings
7023
7024 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7025
7026         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7027         Slade Rich fixed an optimization bug
7028         * src/pic/pcodepeep.c,
7029         * src/pic/pcoderegs.c
7030         * doc/Makefile (install): added test for directory
7031
7032 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7033
7034         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7035         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7036         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7037         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7038         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7039         * as/mcs51/asexpr.c (term),
7040         * as/hc08/asexpr.c (term): fixed bug #887146
7041
7042 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7043
7044         * src/z80/gen.c (genMult): handle single byte result product
7045         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7046         DUMMY_READ_VOLATILE (fixed bug #886367)
7047
7048 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7049
7050         * support/regression/tests/libmullong.c: fixed logic, on little endian
7051         hosts we ended without a mullong_wrapper()
7052
7053 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7054
7055         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7056         virus/worm forged address usage.
7057
7058 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7059
7060         Fixed promotion, it should be done on AST level:
7061         * src/SDCCast.c (addCast): added promotion to int
7062         (decorateType): updated call to upCast()
7063         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7064         usualUnaryConversions()
7065
7066 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7067
7068         * support/regression/tests/literalop.c (mulWrapper): Added a
7069         wrapper to remove integer overflow warnings.
7070
7071         * support/regression/tests/float_trans.c: Made work on host.
7072
7073         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7074         location of sz80.
7075
7076         * support/regression/generate-cases.py (main): Changed from inline
7077         to a main method.
7078
7079         * doc/Makefile (install): Changed to depth first to get rid of
7080         missing directory install warning.
7081
7082         * as/Makefile (install-doc): Made work on Mac.
7083
7084 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7085
7086         * src/SDCCast.c: added an additional type flow in decorateType() of
7087         opposite direction, see feature request #860006; it's enabled at runtime
7088         by setting the environment variable SDCC_NEWTYPEFLOW
7089         * src/SDCCast.h: changed prototype of decorateType()
7090         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7091         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7092         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7093         see feature request #877103
7094         * src/SDCCval.c: updated call of decorateType()
7095         (valBitwise): fixed bug #882876
7096         (valMinus): added promotion
7097         (valLogicAndOr): result is unsigned
7098         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7099         * src/SDCCsymt.c (computeType),
7100         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7101         must not cause an unsigned operation
7102         * src/pic/glue (pic14emitRegularMap),
7103         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7104
7105 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7106
7107         * src/pic/pcode.c (PCodeID): commented out left over debug code
7108
7109 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7110
7111         * support/valdiag/tests/overflow.c: added shift tests
7112         * src/pic/device.c,
7113         * src/pic/gen.c,
7114         * src/pic/gen.h,
7115         * src/pic/glue.c,
7116         * src/pic/main.c,
7117         * src/pic/pcode.c,
7118         * src/pic/pcode.h,
7119         * src/pic/pcodepeep.c,
7120         * src/pic/pcoderegs.c,
7121         * src/pic/ralloc.c,
7122         * src/pic/ralloc.h: applied patch from Slade Rich;
7123         added support for multiple code pages and multiple RAM banks on the
7124         PIC 14 port. The ASM files now no longer simply assume all the
7125         code / RAM are in the same page / bank. This means the linker can
7126         safely allocate code/RAM of separate ASM files to different pages/banks.
7127         * doc/sdccman.lyx: added Slade's tips
7128         * src/mcs51/peeph.def: fixed bug #880768
7129
7130 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7131
7132         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7133         * src/SDCCast.c (decorateType): fixed bug #880197
7134
7135 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7136
7137         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7138         getopt.h.
7139
7140         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7141         strtof is not part of C89 and isn't included with Mac OS X.
7142
7143 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7144
7145         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7146         shiftL2Left2Result): fixed bug #879326
7147         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7148         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7149         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7150         address fetch for clr instruction
7151         * device/lib/hc08/_mulint.c: created optimized assembly version
7152         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7153
7154 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7155
7156         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7157         proposed in FR #877103
7158
7159 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7160
7161         * src/SDCCval.c (cheapestVal): added missing checks
7162         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7163         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7164
7165 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7166
7167         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7168         equal operands
7169
7170 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7171
7172         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7173         loaded with the linker search paths (-L arguments) and the libraries
7174         to be linked with the current source (-l arguments). Changes
7175         currently will affect only the pic16 port.
7176         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7177         include path the port specific paths and port specific libraries,
7178         * gplink command now contains the $3 argument,
7179         * src/pic16/device.h,
7180         * src/pic16/device.c,: structure PIC_device is made public and
7181         renamed to PIC16_device, the same for variable Pics which is renamed
7182         to Pics16. Updated all references to them.
7183         * src/pic16/glue.c (pic16glue): corrected bug with code
7184         initialization which bypassed the variable initializations block.
7185
7186         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7187         COMPILE_FLAGS and added the --nostdinc option
7188
7189 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7190
7191         * device/include/mc68hc908jb8.h: Register defs for another member
7192         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7193
7194 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7195
7196         Documenting changes from previous commits.
7197         * configure.in (version 1.56),
7198         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7199         when generating output files to configure the pic16 library,
7200         but now I've commented it out, since gputils aren't installed in the
7201         SF compile farm, so library won't compile
7202
7203         * device/lib/Makefile.in (version 1.56): initially I've added in
7204         target 'all' the prerequestive 'model-pic16' so it compiled the
7205         pic16 library, but now I've commented it out for the same reasons
7206         above,
7207         * added targets 'model-pic16' and 'objects-pic16' to compile the
7208         library
7209         * added target 'port-specific-objects-pic16' to handle the
7210         generated libraries and copy them into the build/ directory
7211         * added target 'clean-intermediate-pic16' to clean intermediate
7212         files into pic16 directory
7213         * in target 'installdirs' added line to create directory pic16 in
7214         the installation path
7215
7216         * device/include/Makefile.in (version 1.11): in target 'install'
7217         added lines to copy all header files to installation path,
7218         * in target 'installdirs' added line create directory for pic16
7219         headers in the installation path
7220
7221 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7222
7223         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7224          a function call
7225
7226 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7227
7228         * configure,
7229         * device/lib/configure.in,
7230         * device/lib/configure: fixed for autoconf 2.57
7231
7232 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7233
7234         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7235         option so that it actually works. Made it specific to the z80, since
7236         the gbz80 doesn't have these kinds of I/O ports.
7237
7238 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7239
7240         * device/include/z180.h,
7241         * device/lib/_memcpy.c,
7242         * device/lib/_memmove.c,
7243         * device/lib/_mulint.c,
7244         * device/lib/ser_ir.c,
7245         * device/lib/ser_ir_cts_rts.c,
7246         * device/lib/_strcmp.c,
7247         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7248         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7249         portmode; added deprecation warning for bank= and protmode= forms.
7250         Also, guard against buffer overflow.
7251         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7252
7253 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7254
7255         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7256         changed interrupt vector table generation to only emit declared vectors.
7257         * device/include/Makefile.in: added missing backslash
7258         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7259
7260 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7261
7262         Mainly changes to support compilation of the device libraries
7263         * src/pic16/device.c: stack is allocated via symbol and not
7264         via literal number. The symbol is placed in the corresponding
7265         position of the data ram
7266         * (pic16_dump_section): relocatable and absolute uninitialized
7267         data are now emitted in sorted order to reduce section naming,
7268         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7269         weren't marked as being in the access bank,
7270
7271 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7272
7273         Added portion of GNU PIC Library under the directory
7274         device/include/pic16 and device/lib/pic16. These files
7275         contain the declarations of SFRs for the PIC18Fxx2 devices.
7276         The directory is initialized via configure from toplevel.
7277
7278 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7279
7280         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7281         the spilllocations to be compared correctly
7282
7283 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7284
7285         * src/SDCCast.c (decorateType): fixed bug introduced today
7286
7287 2004-01-12  Borut Razem <borut.razem AT siol.net>
7288
7289         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7290         doc/sdccman.lyx: upper case pragmas are deprecated
7291
7292 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7293
7294         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7295         in simpler and even better code
7296
7297 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7298
7299         * src/SDCCicode.c (operandOperation): fixed bug #874819
7300         * src/SDCCast.c (decorateType): fixed
7301         char foo (unsigned long ul) { return ul > 0; }
7302
7303 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7304
7305         * doc/sdccman.lyx: Moved and added some sections, small changes
7306         all over. Telling LaTeX to be less strict with word spacing
7307         to better keep the right margin. Changed some notes about
7308         maintainance of the ports in section 3.2.1 - is it OK like this?
7309
7310 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7311
7312         SDCC source changes:
7313         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7314         convilong): modified to inform the pic16 port that builtin functions
7315         are external
7316
7317         PIC16 PORT specific changes:
7318         * src/pic16/device.c pic16_dump_equates() added,
7319         processor registers declared internally by the port are emitted in
7320         the translation as equates,
7321         * src/pic16/gen.c: inline code is passed unprocessed to the
7322         translation,
7323         * (pic16_popGetLit2): fnuction modified to take second operand as
7324         pCodeOp pointer and not as literal,
7325         * (popRegFromIdx): prefixed with pic16_,
7326         * (pic16_popCombine2): modified to receive already allocated pCode
7327         operands,
7328         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7329         * (genFunction): initializes local stack frame and pushes on stack
7330         all the registers used by this function,
7331         * (genEndFunction): restores all registers from stack and restores
7332         stack frame,
7333         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7334         improvements,
7335         * (pic16glue): changed the program startup sequence,
7336         * added new dbName code 'A' for functions placed in absolute section
7337         * src/pic16/main.c: added function attribute _naked,
7338         * added pragma 'code' to place a fnuction at an absolute address,
7339         * added command line arguments --debug-ralloc and --pcode-verbose,
7340         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7341         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7342         * (pic16_newpCodeOpLit2): modified to take the second operand as
7343         pCodeOp pointer,
7344         * (pic16_printpBlock): modified to emit each function in a separate
7345         section,
7346         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7347         UPPER for immediate operands,
7348         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7349         instruction,
7350         * src/pic16/peeph.def: all peepholes with movff are commented out,
7351         because there is a problem in the pcode peep optimizer,
7352         * src/pic16/ralloc.c: the register allocator can now reuse local
7353         function symbols for another function. This saves register usage.
7354         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7355
7356         Added file src/pic16/NOTES with information about program writing on
7357         the current port version.
7358
7359 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7360
7361         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7362         and peephole 252 (array access)
7363
7364 2004-01-09  Borut Razem <borut.razem AT siol.net>
7365
7366         * src/SDCCmain.c : fixed #872250: -l command line defined library
7367           files are scanned before standard library files
7368
7369 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7370
7371         * src/SDCCast.c (decorateType): fixed bug #874046
7372
7373 2004-01-09  Borut Razem <borut.razem AT siol.net>
7374
7375         * support/scripts/sdcc.nsi: remove previous installation
7376
7377 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7378
7379         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7380         bytes for last interrupt vector (mcs51)
7381         * sdcc.spec: fixed typo
7382
7383 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7384
7385         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7386         gen51Code): more efficient parameter receive for --model-large
7387         ("bug" #845294)
7388
7389 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7390
7391         * src/ds390/main.c,
7392         * src/z80/main.c: added missed needLinkerScript flags (more than
7393         one port structure defined in these file)
7394         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7395         bug #795325
7396
7397 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7398
7399         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7400         * src/port.h: added flag needLinkerScript in port->linker
7401         structure to inform whether to create a .lnk file or not,
7402         * src/avr/main.c,
7403         * src/ds390/main.c,
7404         * src/hc08/main.c,
7405         * src/mcs51/main.c,
7406         * src/pic/main.c,
7407         * src/pic16/main.c,
7408         * src/xa51/main.c,
7409         * src/z80/main.c: changed appropriately to configure
7410         needLinkerScript flag
7411         * src/pic/gen.c,
7412         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7413         * src/pic/glue.c: added variable udata_section_name to
7414         override default uninitialized data segment definition for
7415         devices only with SHAREBANK memory (reported from Erik Epetrich)
7416         * (pic14emitOverlay): modified to emit a commented overlay segment
7417         directive when no overlay data exist
7418         * (picglue): modified to emit uninitialized data segment
7419         according to udata_section_name
7420         * src/pic/main.c (_pic14_parseOptions): added command line
7421         options --udata-section-name=[name] to override default
7422         udata definition name
7423         * modified _linkCmd and _asmCmd to include compiler passed
7424         arguments via -W option
7425         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7426         object file from '.rel' to '.o' in port->linker structure,
7427         changed size of fptr from 2 to 3 in port structure
7428
7429 2004-01-07  Borut Razem <borut.razem AT siol.net>
7430
7431         * support/scripts/sdcc.nsi: update PATH
7432         * support/scripts/sdcc.ico: craeted
7433
7434 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7435
7436         * device/include/Makefile.in: fix install
7437         * doc/Makefile: fix install
7438
7439 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7440
7441         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7442         in bug #860505
7443         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7444         how the function variable allocation summary is displayed; also
7445         include information about variables allocated to the overlay
7446         segment
7447
7448 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7449
7450         * as/mcs51/lkmain.c: Help about -Y option
7451         * as/mcs51/lkarea.c: Fixed gcc warnings
7452
7453 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7454
7455         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7456         fixed warning
7457         * support/valdiag/tests/overflow.c: added
7458         * src/SDCCast.c (decorateType),
7459         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7460         LEFT_OP (left shift)
7461
7462 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7463
7464         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7465         (default behaviour).
7466
7467 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7468
7469         A python script to validate compiler diagnostic messages. It can be
7470         used to verify that sdcc complains about bad c source code and
7471         gives a good location of the error.
7472         * support/valdiag/Makefile,
7473         * support/valdiag/valdiag.py,
7474         * support/valdiag/tests/*
7475
7476 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7477
7478         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7479         * src/SDCCsymt.c (newEnumType),
7480         * src/SDCCsymt.h
7481         * support/Util/SDCCerr.c,
7482         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7483         enum related bugs.
7484         * support/regression/tests/enum.c: added test for enum values that
7485         require at least 2 bytes of storage.
7486
7487 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7488
7489         * src/common.h: added ifndef/define/endif macros
7490         around the header file.
7491         Bug reported from Jesus Calvino-Fraga
7492
7493 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7494
7495         * sdcc.spec: updated
7496         * device/include/Makefile.in: don't install CVS directories
7497         * device/lib/Makefile.in: added removal of CVS directories after install
7498         * doc/Makefile: fixed install, added local_icons
7499         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7500         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7501         * src/ds390/gen.c (genRightShift): fixed bug #870788
7502         * src/SDCCast.c (decorateType): fixed bug #870781
7503
7504 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7505
7506         PIC16 port related changes:
7507         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7508         added variable stackPos,
7509
7510         * gen.c: genCall, assignResultValue: added support for
7511         pushing/retrieving function parameters to/from stack,
7512         genFunction,genEndFunction: setup stack frame for the
7513         generated function,
7514         genAddrOf: will be changed according to bug 863624
7515
7516         * added files genutils.c and genutils.h which contain gen*
7517         debugged and optimised functions extracted from gen.c
7518
7519         * glue.c: added variable 'externs' which holds extern symbols,
7520         pic16emitRegularMap: is modified to properly handle relocatable
7521          symbols under the new scheme,
7522         pic16createInterruptVect: is modified
7523         pic16printPublics: is modified to emit 'global' assembler directives,
7524         added pic16_printExterns to print extern symbols,
7525         pic16glue: initializes stack/frame pointer in the beginning of
7526         the assembly output. Temporary hack, will be corrected later,
7527         because gplink yet does not support stack and SDCC does not
7528         yet support a type of crt0.o object to create the final binary.
7529
7530         * Removed many lines that contain 8051 legacy code.
7531         * The code is finally placed under a 'code' directive.
7532         * Added port specific options.
7533
7534         * _process_pragma: simplified since now we do not need *special*
7535         include file to define SFR registers. But a separate header
7536         will be needed. This will be developed later.
7537         * _pic16_parseOptions: added, parses port specific options:
7538         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7539         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7540         --preplace-udata-with=
7541
7542         * _pic16_setDefaultOptions: modified to initialize section names,
7543         but hack is temporarly out of order since it needs improvement.
7544         * _pic16_genAssemblerPreamble: configuration words are emitted by
7545         their address instead of their name. This part is incomplete and
7546         supports only the 18Fxx2 devices. Other devices will emit an error
7547         during assembly since they do not contain the same set of config
7548         registers
7549         * _pic16_genIVT: is modified,
7550
7551         * pcode.c: added definitions for some hardware registers that are needed
7552         for stack support
7553         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7554         All PCI entries are updated. Now LFSR is supported.
7555         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7556         * added pic16_newpCodeOpLit2 to support instructions with
7557         two literal arguments
7558         * pic16_pCode2str: corrected code that emits assembler instructions
7559         with two literal operands and those that have an access bit modifier
7560         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7561         this fixes a bug which caused some labels to be lost, when an
7562         assembler directive was added, i.e. banksel,
7563         * pic16_FixRegisterBanking: improved logic that causes the insertion
7564         of bank switching,
7565         * InlineFunction: functions that are called once, are not any more
7566         inlined. This can be a port option in the future,
7567
7568         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7569
7570         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7571         hold the corresponding uninitialized symbols,
7572         * pic16_allocProcessorRegister: registers have explicit marked the
7573         accessBank field,
7574         * pic16_allocInternalRegister: registers are explicit marked as
7575         not used,
7576         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7577         processing list, so bit registers were lost,
7578         *
7579
7580         * ralloc.h: added field 'accessBank' and original symbol operand
7581         in register definition,
7582         * removed the field isMapped from register definition,
7583
7584         ** Several functions have been removed from various sources:
7585         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7586         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7587         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7588         pic16_assignRelocatableRegisters
7589
7590         ** others have been introduced:
7591         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7592         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7593
7594 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7595
7596         * support/scripts/inc2h.pl: changed definition of BIT_AT
7597         to emit 'sbit at' instead of 'bit at'. This was a request.
7598
7599         PIC16 port related preliminary changes:
7600         * gen.c: prefixed function popRegFromString with
7601         pic16_ and all references to it corrected
7602         * pcode.c: all pic16_pc_* hardware registers prefixed
7603         with underscore (_),
7604         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7605         * ralloc.c: newReg(): when register is REG_SFR then
7606         set address to rIdx,
7607         pic16_allocProcessorRegister(): marks register wasUsed=0
7608         pic16_writeUsedRegs(): added a call to assign processor
7609         registers via pic16_assignFixedRegisters
7610
7611 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7612
7613         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7614         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7615         variables in unused register banks.  Also the SSEG is placed
7616         wherever there is enough space for it, and IDATA can be anywhere
7617         in internal RAM.  For now compile using -Wl-Y[stack_size].
7618         The mem file is different for this option as well, since it
7619         makes no sense of talking about DSEG lenght.
7620
7621 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7622
7623         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7624         in certain cases, e.g. when ROM assignment, patch provided
7625         from Albert den Haan.
7626
7627 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7628
7629         Many signedness and type propagation fixes:
7630         * src/SDCCicode.c: made geniCodeCast() static
7631         replaced SPEC_ by IS_ (cosmetic)
7632         (operandOperation): fixed div and mod operation
7633         (usualBinaryConversions): added support for promotion of char
7634         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7635         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7636         (geniCodeAdd): an array index will stay unsigned, even if promoted
7637         from char to int
7638         (geniCodeArray): ditto
7639         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7640         * src/SDCCsymt.c (computeType): added more support for char;
7641         promotion of char is selectable by promoteCharToInt, fixed signedness
7642         for all cases
7643         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7644         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7645         * src/SDCCval (val*): replaced signedness calculation by
7646         computeType()
7647         rearranged if-branches (cosmetic)
7648         (valShift): added warning W_SHIFT_CHANGED
7649         (valCompare): fixed problem with different types
7650         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7651         * support/regression/tests/literalop.c: added many cases
7652         * support/regression/tests/ast_constant_folding.c: changed finally to
7653         'unsigned int'
7654         * .version: new year, new version: 2.3.7
7655         * src/SDCCmain.c (main): applied patch #866468
7656         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7657         provided by Scott Bronson
7658         * doc/sdccman.lyx: updated documentation for sdcdb
7659         updated and added chapter tips
7660
7661 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7662
7663         * src/SDCCsymt.h: missing from yesterday's commits
7664
7665 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7666
7667         * src/SDCC.y (struct_or_union_specifier),
7668         * support/Util/SDCCerr.c,
7669         * support/Util/SDCCerr.h: verify that struct & union tags are used
7670         as declared.
7671
7672 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7673
7674         * src/SDCCglobl.h: missing from yesterday's commits
7675
7676 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7677
7678         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7679         sft_attributes, struct_declaration, parameter_declaration,
7680         type_name, start_block, declaration_list),
7681         * src/SDCC.lex (check_type): support redefinition of typedef names
7682
7683 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7684
7685         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7686         aligned xdata arrays. Erik helped me with the if clause.
7687
7688 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7689
7690         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7691         warning
7692
7693 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7694
7695         * src/SDCCast.h,
7696         * src/SDCCast.c (newAst_),
7697         * src/SDCCicode.h,
7698         * src/SDCCicode.c (ast2iCode, newiCode),
7699         * src/SDCCglobl.h,
7700         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7701         expr, statement, expression_statement, selection_statement,
7702         iteration_statement, expr_opt, jump_statement): foundation for tracking
7703         sequence points
7704         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7705         point code too)
7706
7707 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7708
7709         * support/Util/SDCCerr.c,
7710         * src/SDCCast.h,
7711         * src/SDCCast.c (createCase, createDefault, decorateType),
7712         * src/SDCClabel.c (labelUnreach),
7713         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7714         to error messages.
7715         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7716         (with thanks to Stas Sergeev)
7717         * device/include/time.h,
7718         * device/lib/time.c (CheckTime): suppress unreachable code warning
7719
7720 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7721
7722         * src/SDCCast.c (createIvalCharPtr),
7723         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7724         bug #753752)
7725         * support/regression/tests/nullstring.c: tests for these two bugs
7726
7727 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7728
7729         * support/Util/SDCCerr.h,
7730         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7731         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7732         about storage class and 'at' used inside struct or union
7733         * src/SDCCBBlock.c (iCodeFromeBBlock),
7734         * src/SDCCcse.c (ifxOptimize),
7735         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7736         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7737         printIval, emitStaticSeg, emitOverlay),
7738         * src/SDCClabel.c (deleteIfx),
7739         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7740         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7741         gatherAutoInit, processParms),
7742         * support/Util/SDCCerr.h,
7743         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7744         reporting for post-parse errors.
7745
7746 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7747
7748         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7749         implicit casts via union; they don't work on big endian systems
7750         (possible fix for bug #861138)
7751
7752 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7753
7754         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7755         * src/mcs51/main.c: fixed the fix for bug #737001
7756
7757 2003-12-15  Borut Razem <borut.razem AT siol.net>
7758
7759         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7760
7761 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7762
7763         * support/makebin/makebin.c: put output in binary mode
7764
7765 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7766
7767         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7768         xdata and data memory on startup. Set the environment variable
7769         SDCC_NOGENRAMCLEAR to disable this.
7770         * src/mcs51/peephole.def,
7771         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7772         (allows non-interrupt and interrupt code to safely compete for a resource
7773         without the non-interrupt code having to disable interrupts)
7774
7775 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7776
7777         * src/SDCCicode.c (geniCodeAdd),
7778         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7779         with valFromType if type might be a pointer and host is big endian).
7780         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7781         types, not just integer types.
7782         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7783         multiply defined with mismatching "at" address.
7784
7785 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7786
7787         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7788         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7789         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7790         with embedded nulls (fixed bug #753752)
7791
7792 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7793
7794         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7795         Apparently this did not see much testing (endless loop)
7796
7797 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7798
7799         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7800
7801 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7802
7803         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7804         gracefully handle NULL memmap pointers
7805
7806 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7807
7808         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7809         instead of deleting the iCode when an operand is volatile
7810         * src/z80/gen.c (genDummyRead),
7811         * src/mcs51/gen.c (genDummyRead),
7812         * src/ds390/gen.c (genDummyRead),
7813         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7814         not just IC_RIGHT
7815         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7816         * src/SDCC.y: fixed bug #850420
7817
7818 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7819
7820         Applied z80 i/o port patch from Peter Townson and fixed some operators
7821         to better handle operands in A register.
7822         * device/include/z180.h
7823         * src/SDCC.y
7824         * src/SDCCglue.c
7825         * src/z80/gen.c
7826         * src/z80/gen.h
7827         * src/z80/main.c
7828         * src/z80/peeph-z80.def
7829         * src/z80/peeph.def
7830         * src/z80/z80.h
7831
7832 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7833
7834         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7835
7836 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7837
7838         * device/lib/hc08/_mullong.c: Removed extra #endif
7839
7840 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7841
7842         * sim/ucsim/hc08.src/inst.cc,
7843         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7844         carries from x to h
7845         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7846         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7847         * device/include/stdarg.h: fixed varargs for hc08
7848         * device/lib/Makefile.in,
7849         * device/lib/hc08/Makefile,
7850         * device/lib/hc08/_mulint.c,
7851         * device/lib/hc08/_mullong.c: fixed some endian problems
7852
7853 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7854
7855         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7856         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7857         * device/lib/_gptrget.c,
7858         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7859
7860 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7861
7862         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7863         * src/SDCCast.c (astErrors): fixed bug #846007
7864         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7865
7866 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7867
7868         * src/SDCCast.c (decorateType): disabled a transformation I added in
7869         revision 1.188 (access to fields of a structure at an absolute address);
7870         it breaks with bitfields, extern declarations, and gcse analysis.
7871         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7872         could be assigned through a pointer, so don't complain.
7873         * src/SDCCast.c (astErrors),
7874         * src/SDCCast.h,
7875         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7876
7877 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7878
7879         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7880         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7881         output of __config directives, since gpasm now supports them
7882         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7883         pre-processor macro, i.e. -DMCU=p18f452
7884         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7885         and modified to handle 'cast' icode similarly to '=' icode
7886         * src/pic16/device.h (typedef struct PIC_device): added field
7887         'extMIface' to indicate that chip has external memory interface
7888         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7889         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7890         18F8720
7891
7892 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7893
7894         * src/SDCC.y (pointer): fixed bug #846006
7895         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7896         * src/SDCCast.c (decorateType): fixed bug #846009
7897         * src/ds390/peeph.def,
7898         * src/ds390/gen.c (genAnd, genOr),
7899         * src/mcs51/peeph.def,
7900         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7901
7902 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7903
7904         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7905         * src/SDCCdflow.c
7906         * src/SDCCcse.c
7907         * src/SDCCcse.h
7908         * src/SDCCBBlock.h
7909         * src/SDCCBBlock.c
7910
7911 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7912
7913         fixed bug #845089
7914         * src/SDCCbitv.h,
7915         * src/SDCCbitv.c: added function to free a bitvector
7916         * src/SDCClrange.h,
7917         * src/SDCClrange.c: added function to recompute the liveranges
7918         * src/avr/ralloc.c,
7919         * src/ds390/ralloc.c,
7920         * src/hc08/ralloc.c,
7921         * src/mcs51/ralloc.c,
7922         * src/pic/ralloc.c,
7923         * src/pic16/ralloc.c,
7924         * src/xa51/ralloc.c,
7925         * src/z80/ralloc.c: recompute the liveranges after register packing
7926
7927 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7928
7929         * src/SDCCloop.c (newInduction): fixed bug #845630
7930
7931 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7932
7933         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7934         inadvertantly left behind from my 2003-11-12 change
7935
7936 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7937
7938         Updated headers I neglected to commit yesterday.
7939         * src/SDCClrange.h,
7940         * src/SDCCicode.h
7941
7942 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7943
7944         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7945         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7946         * src/SDCCopt.c (eBBlockFromiCode),
7947         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7948         the creation of the key hash table from the sequencing so it can be used
7949         earlier (for some GCSE bug fixes still pending)
7950
7951 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7952
7953         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7954         * support/regression/tests/addsub.c: testing genPlus shortcut
7955
7956 2003-11-15  Borut Razem <borut.razem AT siol.net>
7957
7958         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7959
7960 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7961
7962         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7963         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7964         ordering is immaterial.
7965         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7966
7967 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7968
7969         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7970         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7971         (SIGSEV) of bug #840381
7972         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7973         unlink new file before rename if new and old filenames are the same)
7974
7975 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7976
7977         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7978         uninitialized variables) for the mcs51. Set environment variable
7979         SDCC_GENRAMCLEAR to test.
7980         xdata initialization slightly shorter
7981
7982 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7983
7984         * src/SDCCsymt.h,
7985         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7986         #838241 & 780691 (basicly the same bug)
7987         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7988         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7989
7990 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
7991
7992         * src/SDCCmain.c (linkEdit): "fix" #834252
7993
7994 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7995
7996         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
7997         * src/SDCCast.h,
7998         * src/SDCC.y: fixed bug #819403
7999
8000 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8001
8002         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8003         the reentrant attribute.
8004         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8005         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8006         simulation
8007         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8008         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8009         erroneously reduced to a literal.
8010         * src/hc08/ralloc.c (packRegisters, rematStr),
8011         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8012         some cases
8013
8014 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8015
8016         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8017         * doc/sdccman.lyx: changed from 'article' to 'book'
8018         * doc/Makefile: readded test_suite_spec and cdbfileformat
8019
8020 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8021
8022         * device/include/stdlib.h: include malloc.h to comply with ANSI
8023         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8024
8025 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8026
8027         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8028         * doc/clean.mk: also remove *.out files
8029         * doc/sdccman.lyx: some additions, larger top/bottom margins
8030
8031 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8032
8033         * src/SDCC.y: fixed bug #837365
8034         * support/regression/tests/bitopcse.c
8035         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8036         a symbol (might be valop instead)
8037         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8038         * device/lib/clean.mk: added hc08 to the cleaning list
8039
8040 2003-11-04  Borut Razem <borut.razem AT siol.net>
8041
8042         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8043           made 2003-11-04
8044         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8045           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8046           malloc is declared in standard stdlib.h
8047
8048 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8049
8050         * device/lib/hc08/Makefile: need to clean .rel not .o files
8051         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8052
8053 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8054
8055         * src/port.h,
8056         * src/hc08/main.c,
8057         * src/mcs51/main.c,
8058         * src/ds390/main.c,
8059         * src/z80/main.c,
8060         * src/avr/main.c,
8061         * src/pic/main.c,
8062         * src/pic16/main.c,
8063         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8064         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8065         tests (which uses the port's oclsExpense function)
8066         * src/SDCC.y,
8067         * src/SDCCast.c,
8068         * src/SDCCicode.c,
8069         * src/hc08/gen.c,
8070         * src/ds390/gen.c,
8071         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8072
8073 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8074
8075         * src/SDCCcse.c (ifxOptimize),
8076         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8077         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8078         deleting the IFX iCode.
8079         * src/hc08/ralloc.c: reduced unneeded slocs
8080         * src/hc08/gen.c: fixed bug in asmopToBoolean
8081
8082 2003-11-04  Borut Razem <borut.razem AT siol.net>
8083
8084         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8085           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8086           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8087           transferred to configure
8088
8089 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         Use headers defined in the C[++] standards:
8092         * sim/ucsim/gui.src/serio.src/fileio.cc
8093         * sim/ucsim/gui.src/serio.src/frontend.cc
8094         * sim/ucsim/gui.src/serio.src/main.cc
8095         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8096         * support/Util/NewAlloc.c
8097         * as/hc08/lklibr.c
8098         * as/mcs51/lklibr.c
8099         * as/z80/aslist.c
8100         * as/z80/assym.c
8101
8102 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8103
8104         * Added MSVC projects for hc08 assembler and linker:
8105         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8106         /as/hc08/link_hc08.dsp
8107
8108 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8109
8110         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8111
8112 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8113
8114         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8115
8116 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8117
8118         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8119
8120 2003-10-31  Borut Razem <borut.razem AT siol.net>
8121
8122         * support/cpp2/cpplib.h,
8123           support/cpp2/cpplib.c,
8124           support/cpp2/cpplex.c,
8125           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8126           to switch _asm block preprocessing on / off. Default is
8127           #pragma preproc_asm +
8128
8129 2003-10-31  Borut Razem <borut.razem AT siol.net>
8130
8131         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8132           when outputting comment blocks (when executed with -C option) and
8133           _asm (SDCPP specific) blocks
8134
8135 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8136
8137         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8138
8139 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8140
8141         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8142
8143 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8144
8145         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8146         * src/SDCCast.c (decorateType): fixed bug #832664
8147
8148 2003-10-31  Borut Razem <borut.razem AT siol.net>
8149
8150         * support\cpp2\cpplex.c: fixed for SDCPP:
8151           comments(when executed with -C option) and _asm blocks
8152           were included even if they where in skipped #if block.
8153           Applied solution from GCC cpp 3.3.2
8154
8155 2003-10-31  Borut Razem <borut.razem AT siol.net>
8156
8157         * src/SDCC.lex: sdcc now understands both formats:
8158           '# <line_number> <file_name>' and
8159           '#line <line_number> <file_name>'
8160         * support/cpp2/cppmain.c: sdcpp now generates the standard
8161           '# <line_number> <file_name>' instead of former
8162           '#line <line_number> <file_name>'
8163
8164 2003-10-30  Borut Razem <borut.razem AT siol.net>
8165
8166         * support/cpp2/cpphash.h,
8167         * support/cpp2/cpplib.h
8168         * support/cpp2/cpplex.c,
8169         * support/cpp2/cppmain.c,
8170         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8171
8172 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8173
8174         Fixed a number of problems revealed by bug #827883.
8175         * src/SDCCloop.c (loopInvariants): Spill location of the
8176         result operand should be recomputed if extracted from
8177         a loop. Also, don't extract assignments of an iTemp
8178         from a literal.
8179         * src/SDCCast.c (isConformingBody): loop reversal should
8180         not occur if the control variable is involved with a
8181         relational operator.
8182
8183 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8184
8185         * .version: bumped to 2.3.6 to reflect the big improvements
8186         made by Erik and Klaus. Thanks!
8187
8188 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8189
8190         Replaced the livrange code.
8191         * src/SDCClrange.c: added new LR code
8192         * src/SDCCloop.c,
8193         * src/SDCCBBlock.h: removed remainig parts from old LR code
8194         * src/ds390/ralloc.c,
8195         * src/ds390/gen.c: minor fixes to make it work with new code
8196
8197 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8198
8199         * as/hc08/asm.h,
8200         * as/hc08/lkrloc.c,
8201         * src/hc08/gen.c,
8202         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8203         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8204         (tweaked fix for bug #818696)
8205
8206 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8207
8208         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8209
8210 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8211
8212         * src/SDCCmain.c,
8213         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8214         * src/mcs51/gen.c (gencjneshort),
8215         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8216         more efficient (per Scott Bronson's suggestion)
8217
8218 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8219
8220         Extended the semantics of the critical keyword to include
8221         individual statements. See RFE #827755 and #799831
8222         * src/SDCC.y
8223         * src/SDCCicode.c
8224         * src/SDCCopt.c
8225         * src/SDCCast.c
8226         * support/Util/SDCCerr.c
8227         * support/Util/SDCCerr.h
8228         * src/mcs51/gen.c
8229         * src/ds390/gen.c
8230         * src/hc08/gen.c
8231
8232 2003-10-19  Borut Razem <borut.razem AT siol.net>
8233
8234         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8235
8236 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8237
8238         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8239         Fixed bug #818696
8240         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8241         and predecrement operand is displayed
8242
8243 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8244
8245         * src/SDCCval.c (valMinus): fixed bug #826041
8246
8247 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8248
8249         Some hc08 related updates that I missed earlier
8250         * sim/ucsim/stypes.h
8251         * support/regression/ports/hc08/spec.mk
8252
8253 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8254
8255         New target "hc08" for the Motorola 68hc08 family of micros
8256
8257         * configure
8258         * configure.in
8259         * Makefile
8260         * src/hc08/*
8261         * src/SDCCmain.c
8262         * src/port.h
8263         * sim/ucsim/hc08.src/*
8264         * sim/ucsim/configure.in
8265         * src/ucsim/configure
8266         * sim/ucsim/packages_in.mk
8267         * as/hc08/*
8268         * as/Makefile
8269         * device/include/mc68hc908qy.h
8270         * device/lib/hc08/*
8271         * device/lib/Makefile.in
8272         * support/regression/ports/hc08/*
8273         * support/regression/Makefile
8274
8275 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8276
8277         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8278         regression test
8279         * src/ds390/gen.c (genCast): fixed bug #821957
8280
8281 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8282
8283         * device/lib/logf.c: "fixed" overlay bug
8284         * support/regression/ports/host/spec.mk: added m library
8285         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8286         * support/regression/tests/float_trans: added (for Eric)
8287
8288 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8289
8290         * src/mcs51/gen.c (genCpl): fixed bug
8291         http://sf.net/mailarchive/message.php?msg_id=6263915
8292
8293 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8294
8295         * src/SDCCast.c (decorateType): added extended constant folding
8296         * src/SDCCsymt.c (computeType): cleanup
8297         * src/SDCCval.c (valShift): minor optimization
8298         * support/regression/tests/ast_constant_folding.c: added
8299
8300 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8301
8302         * src/SDCCmain.c: removed some unintended changes
8303
8304 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8305
8306         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8307         * src/z80/gen.c: fixed part of bug #817589
8308         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8309
8310 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8311
8312         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8313         * src/SDCCcflow.c
8314         * src/SDCCcse.c
8315         * src/SDCCdflow.c
8316         * src/SDCClabel.c
8317         * src/SDCClrange.c
8318         * src/SDCCmem.c
8319         * src/SDCCopt.c
8320         * src/SDCCpeeph.c
8321         * src/SDCCset.c
8322         * src/avr/ralloc.c
8323         * src/ds390/ralloc.c
8324         * src/izt/ralloc.c
8325         * src/mcs51/ralloc.c
8326         * src/pic/ralloc.c
8327         * src/pic16/ralloc.c
8328         * src/xa51/ralloc.c
8329         * src/z80/ralloc.c
8330         * src/z80/gen.c: removed unused label "release:"
8331
8332 2003-10-06  Borut Razem <borut.razem AT siol.net>
8333
8334         * src/SDCC.lex: removed definition of unused variables
8335           save_optimize and save_options
8336
8337 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8338
8339         * clean.mk: removed '=' in "-maxdepth=1"
8340         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8341         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8342
8343 2003-10-06  Borut Razem <borut.razem AT siol.net>
8344
8345         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8346           my_unput() replaced by unput()
8347
8348 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8349
8350         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8351         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8352         type-punned pointer will break strict-aliasing rules"
8353         Old LR behaviour is again default; Klaus' LR can be choosen by
8354         defining the environment variable LRKLAUS
8355         * src/SDCCBBlock.h
8356         * src/SDCCloop.c
8357         * src/SDCClrange.c
8358         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8359         * clean.mk: fixed removal of files in bin/CVS/
8360         * device/lib/clean.mk: fixed removal of directories small and large
8361         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8362         * src/SDCCicode.c,
8363         * src/SDCCval.c: removed superflous test for pedantic
8364
8365 2003-10-05  Borut Razem <borut.razem AT siol.net>
8366
8367         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8368           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8369           message "unmatched #pragma SAVE and #pragma RESTORE"
8370
8371 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8372
8373         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8374           assembly, critical functions, atomic, nojtbound)
8375
8376 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8377
8378         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8379         * src/SDCCBBlock.h
8380         * src/SDCCloop.c
8381         * src/SDCCloop.h
8382         * src/SDCClrange.c
8383
8384 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8385
8386         * src/z80/gen.h,
8387         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8388         * src/mcs51/gen.h
8389         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8390         * src/ds390/gen.h
8391         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8392         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8393         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8394
8395 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8396
8397         * src/z80/gen.c (genRet): fixed bug #524753
8398         * src/z80/gen.c (genCast): fixed internal error on cast from
8399         pointer to long
8400         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8401         fix for bug #477835 to the z80
8402         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8403         for tracking iCodes in the peephole optimizer for z80
8404
8405 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8406
8407         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8408         the other part of bug #814548
8409         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8410
8411 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8412
8413         * src/SDCCcse.c: fixed part of bug #814548
8414
8415 2003-09-28  Borut Razem <borut.razem AT siol.net>
8416
8417         * src/asm.c: rewrite of printILine() to use temporary file instead
8418           a pipe
8419         * src/xa51/main.c: commented out declaration of int rewinds
8420
8421 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8422
8423         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8424
8425 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8426
8427         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8428         * src/asm.c (printILine): Fixed bug #811015
8429
8430 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8431
8432         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8433         freeing.
8434
8435 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8436
8437         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8438         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8439         to correctly handle general case of AOP_PAIRPTR
8440         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8441
8442 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8443
8444         * src/mcs51/ralloc.c (fillGaps),
8445         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8446         register positioning bug)
8447
8448 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8449
8450         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8451
8452 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8453
8454         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8455         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8456         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8457         (ralloc doesn't intentionally do this now, but perhaps later)
8458         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8459         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8460         register positioning bugs (Fixed bug #762602 and #795325)
8461         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8462         (Fixed bug #808779)
8463         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8464         lines that --i-code-in-asm generates
8465
8466 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8467
8468         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8469         trying to fclose a FILE* that was already closed.
8470
8471 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8472
8473         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8474         of const struct should be treated as if const themselves)
8475
8476 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8477
8478         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8479
8480 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8481
8482         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8483         Unix (/n) and DOS (/r/n) line terminations.
8484
8485 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8486
8487         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8488         bug #613775
8489
8490 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8491
8492         * src/mcs51/gen.c (genFunction, genEndFunction),
8493         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8494         and restore of EA so that stack offsets to parameters are
8495         correct when using both critical and reentrant/stack-auto.
8496         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8497         size (can be triggered in error if sloc is shared between
8498         different sized objects)
8499         * device/include/float.h: fixed macros to explicitly use
8500         unsigned long where needed
8501
8502 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8503
8504         Feature req. 799831: added code to allow nesting of critical functions
8505         * src/mcs51/gen.c (genFunction, genEndFunction)
8506         * src/ds390/gen.c (genFunction, genEndFunction)
8507
8508 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8509
8510         * src/SDCCsymt.c (sclsFromPtr),
8511         * src/SDCCsymt.h,
8512         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8513         support for standard C idiom of memory mapped variables; for
8514         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8515         to xdata int at 0x1234 tempvar = 1.
8516         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8517         provided by Akiya ISHIDA
8518
8519 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8520
8521         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8522         * src/SDCCval.c (constVal): added reduction from int to char
8523         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8524         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8525         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8526         to ignore the sign
8527         * support/regression/tests/shifts.c: fixed
8528
8529 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8530
8531         * src/z80/gen.c (genXor): Fixed bug #805445
8532
8533 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8534
8535         Fixed bug #621531 (const & volatile confusion in the type chain).
8536         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8537         refer to the const or volatile state of the pointer itself.
8538
8539         * src/SDCCast.c
8540         * src/SDCCglue.c
8541         * src/SDCCicode.c
8542         * src/SDCCsymt.c
8543         * src/SDCCval.c
8544         * src/SDCC.y
8545         * src/SDCCsymt.h
8546         * src/pic/gen.c
8547         * src/pic/ralloc.c
8548         * src/pic16/gen.c
8549         * src/pic16/ralloc.c
8550         * support/regression/tests/const.c
8551
8552 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8553
8554         When checking for duplicated modules, use absolute paths
8555         instead of relative paths.  Files changed:
8556
8557         * as/mcs51/lklib.c
8558         * link/z80/lklib.c
8559
8560 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8561
8562         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8563
8564 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8565
8566         * device/include/string.h: added size_t typedef, changed
8567         prototypes to use size_t, eliminated separate reentrant and
8568         non-reentrant declarations, added _memmove declaration
8569         * device/lib/_memcpy.c: changed to use size_t instead of int,
8570         changed /4 to >>2 to avoid division library call
8571         * device/lib/_memcmp.c,
8572         * device/lib/_memset.c,
8573         * device/lib/_strncat.c,
8574         * device/lib/_strncpy.c,
8575         * device/lib/_strncmp.c: changed to use size_t instead of int
8576         * device/lib/_memmove.c: new file (fixed bug #772294)
8577         * device/lib/Makefile.in: added _memmove.c
8578         * device/lib/z80/asm_strings.s: fixed bug #772290
8579         * support/regression/tests/bitfields.c: attempt to fix host assertion
8580         failure on amd64-unknown-linux2.2
8581
8582 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8583
8584         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8585         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8586         * as/z80/asmain.c (main): fixed bug #801766
8587
8588 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8589
8590         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8591         compilers
8592
8593 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8594
8595         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8596         reported in bug #800609
8597
8598 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8599
8600         * Top header beautifications in src/pic16 directory:
8601           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8602           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8603           pcoderegs.h, ralloc.c, ralloc.h
8604         * main.c: added top header and GPL license notice
8605         * pcode.c: fixed the if-conditional warning
8606
8607 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8608
8609         * device/lib/_mullong.c: replaced int by short for gcc
8610
8611 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8612
8613         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8614         and JUMPTABLE iCodes properly now (worked by accident before)
8615         * src/mcs51/gen.c (leftRightUseAcc),
8616         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8617         iCode properly now. Use getSize instead of nRegs since a & b
8618         aren't part of the nRegs tally.
8619
8620 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8621
8622         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8623         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8624           before instructions that use the _STATUS register
8625
8626 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8627
8628         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8629         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8630         fetching of the pointer
8631         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8632         copied from genNearPointerSet()
8633         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8634         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8635         If they pop r0/r1 they must be called in the opposite order than aopOp().
8636         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8637         (resp. --stack-auto), prepared for --xstack
8638
8639 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8640
8641         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8642
8643 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8644
8645         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8646         these ports have their own __sdcc_external_start()
8647
8648 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8649
8650         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8651         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8652         type for bits was changed. It resulted in bit variables becoming
8653         global, which is not permitted in PIC 14 assembly output.
8654
8655 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8656
8657         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8658
8659 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8660
8661         Z80 and MCS51 linkers complaint if a public symbol is defined
8662         in more than one library module:
8663
8664         * as/mcs51/lklib.c
8665         * link/z80/lklib.c
8666         * as/mcs51/Makefile.in
8667
8668 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8669
8670         A few small changes that speed up the peephole optimizer.
8671
8672         * src/SDCCpeeph.c
8673
8674 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8675
8676         Try to make the peephole optimizer smarter by maintaining
8677         an association between the assembly source code and the
8678         iCodes that originated them. Put this information to use
8679         with a new peephole rule condition "notVolatile" so that
8680         the rules can be aggressive yet still safe.
8681
8682         * src/SDCCpeeph.c
8683         * src/SDCCpeeph.h
8684         * src/mcs51/gen.c
8685         * src/mcs51/peeph.def
8686
8687 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8688
8689         Fixed bug #741761
8690
8691         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8692         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8693         if the left or right operand symbols have the accuse flag set.
8694
8695 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8696
8697         Changed the type of the result of the ! (NOT) operator to char;
8698         previously it returned the same type as the source. This allows
8699         us to eliminate all the genFloatNot functions (all of its target
8700         implementations were very buggy) since !float can use the same
8701         code as !long now.
8702
8703         * src/SDCCicode.c (ast2iCode): ! returns char
8704         * src/mcs51/gen.c (genNot, genNotFloat),
8705         * src/ds390/gen.c (genNot, genNotFloat),
8706         * src/z80/gen.c (genNot, genNotFloat),
8707         * src/pic/gen.c (genNot, genNotFloat),
8708         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8709
8710 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8711
8712         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8713         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8714            during interrupts. Ensure WSAVE is located at a shared bank address.
8715         2. Fixed page selection in some places
8716         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8717            the registers name strings.
8718         4. Fixed "signed / unsigned compare" compiler warnings.
8719         5. The PIC port manages its own allocation of the general purpose
8720            registers, but makes no attempt to reuse them. As a result when
8721            compiling it soon runs out of general purpose registers. Some
8722            additional code was added to the files pcode.c and device.c to walk
8723            through the function call tree and rename the registers so that they
8724            get reused.
8725
8726         * src/pic/device.c
8727         * src/pic/gen.c
8728         * src/pic/glue.c
8729         * src/pic/pcode.c
8730         * src/pic/pcode.h
8731         * src/pic/ralloc.c
8732         * src/pic/ralloc.h
8733         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8734         genPlus() & genMinus() when the result is the same as left or right
8735
8736 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8737
8738         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8739
8740 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8741
8742         Made bitfield a distinct type from bit so that bitfields
8743         convert as per ANSI C and bits retain their traditional
8744         boolean style behaviour. Implemented bitfield support in
8745         the z80 port.
8746
8747         * src/SDCCsymt.h,
8748         * src/SDCCsymt.c,
8749         * src/SDCCast.c,
8750         * src/cdbFile.c,
8751         * src/mcs51/gen.c,
8752         * src/ds390/gen.c: bit v bitfield split
8753         * src/z80/gen.c: New support for bitfields
8754         * support/regression/tests/bitfields.c: reenabled z80,
8755         added more tests
8756
8757 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8758
8759         Rules 246.x, 247.x relate to bitfields, the others speed up
8760         access to xdata mapped I/O devices.
8761
8762         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8763
8764 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8765
8766         Cleaned up genPackBits and genUnpackBits and added two helper
8767         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8768         for literal assignments in genPackBits (thanks to Frieder for
8769         reminding me).
8770
8771         * src/mcs51/gen.c
8772         * src/ds390/gen.c
8773
8774 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8775
8776         Fixed bug #748310 (pointer to function type mishandled when the
8777         function name is omitted). Also fixed a SIGSEGV when a function
8778         attribute (reentrant, etc) is used on a non-function or on a
8779         function but misplaced before the parameter list.
8780
8781         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8782         bug #748310
8783         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8784         * support/Util/SDCCerr.h,
8785         * support/Util/SDCCerr.c: Added func attr misuse error msg
8786
8787 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8788
8789         Fixed bug #787649 by anonymous
8790         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8791         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8792
8793 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8794
8795         Fixed numerous bitfield problems.
8796
8797         * src/SDCC.y: More bitfield related error checking
8798         * src/SDCCsymt.h,
8799         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8800         * support/Util/SDCCerr.h,
8801         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8802         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8803         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8804         * support/regression/tests/bitfields.c: tests added
8805
8806 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8807
8808         Made the constant following the "interrupt" keyword optional. If
8809         omitted, the function will not automatically be given an entry
8810         in the interrupt vector table (similar to #pragma NOIV, but
8811         less syntacticly kludgy). The interrupt number is also now
8812         range checked. Also fixed a bug in the high order bit example
8813         in the manual.
8814
8815         * src/SDCC.y
8816         * src/SDCCmem.c
8817         * src/SDCCglue.c
8818         * src/SDCCsymt.h
8819         * support/Util/SDCCerr.c
8820         * support/Util/SDCCerr.h
8821         * doc/sdccman.lyx
8822
8823 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8824
8825         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8826         * src/SDCCicode.c (operandOperation): rewritten some ops
8827         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8828         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8829         other type
8830         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8831         be re-activated by defining REDUCE_LITERALS)
8832         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8833         unsigned, but are signed by default
8834         * src/SDCCval.c (constVal): rearranged
8835         * src/SDCCval.c (valMod): preliminary fix
8836         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8837         * support/regression/literalop.c: added, work in progress
8838
8839 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8840
8841         Generate warnings for useless declarations like "char data;"
8842         that don't do what new users expect.
8843
8844         * src/SDCC.y
8845         * support/Util/SDCCerr.h
8846         * support/Util/SDCCerr.c
8847
8848 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8849
8850         * src/SDCCval.c (valMult): fix overflow detection of negative int
8851
8852 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8853
8854         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8855
8856         Changes to support big endian targets:
8857
8858         * src/ports.h
8859         * src/SDCCglue.c
8860         * src/avr/main.c
8861         * src/ds390/main.c
8862         * src/izt/i186.c
8863         * src/mcs51/main.c
8864         * src/pic/main.c
8865         * src/pic16/main.c
8866         * src/xa51/main.c
8867         * src/z80/main.c
8868
8869 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8870
8871         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8872         * device/lib/time.c: fixed warning "integer overflow in expression"
8873
8874 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8875
8876         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8877         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8878         constants are unsigned; added recognition of "u" flag for unsigned
8879         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8880         * src/SDCCval.c (valDiv, valMod): fixed signdness
8881         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8882         signedness of modulo, left and right shift
8883         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8884         * support/Util/SDCCerr.h: added warning W_INT_OVL
8885         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8886         * src/SDCCast.c (ast_print): improved output of constants
8887
8888 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8889
8890         Fixed some warnings when building with MSVC:
8891
8892         * as\mcs51\asdata.c
8893         * as\z80\asdata.c
8894         * as\mcs51\asm.h
8895         * as\z80\asm.h
8896         * link\z80\aslink.h
8897         * link\z80\lkdata.c
8898         * link\z80\lkeval.c
8899         * link\z80\lkgb.c
8900         * link\z80\lkihx.c
8901         * link\z80\lks19.c
8902         * link\z80\lksym.c
8903         * support\cpp2\cpplib.c
8904         * src\ds390\gen.c
8905         * src\mcs51\gen.c
8906
8907 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8908
8909         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8910
8911 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8912
8913         * support\librarian\clean.mk: Do not remove Makefile.
8914         * support\librarian\Makefile: added.
8915
8916 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8917
8918         Added librarian to MSVC build:
8919         * all.dsp
8920         * sdcc.dsw
8921         * support\librarian\librarian.dsp
8922
8923         'configure' not needed for librarian, removed:
8924         * support\librarian\configure
8925         * support\librarian\configure.in
8926         * support\librarian\config_in.h
8927         * support\librarian\Makefile.in
8928
8929         Hopefully these ones built the librarian and the rest of sdcc properly:
8930         * Makefile
8931         * Makefile.common.in
8932
8933         Messed up 'configure', so revert to previous version:
8934         * configure
8935         * configure.in
8936
8937 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8938
8939         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8940         there, while the mantissa of a double is "only" 53 bits wide.
8941
8942 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8943
8944         Adding sdcclib to the build.  MSVC project coming soon.
8945         Files added/changed:
8946
8947         * support\librarian\clean.mk
8948         * support\librarian\configure
8949         * support\librarian\configure.in
8950         * support\librarian\config_in.h
8951         * support\librarian\Makefile.bcc
8952         * support\librarian\Makefile.in
8953         * support\librarian\sdcclib.c
8954         * Makefile.bcc
8955         * Makefile
8956         * Makefile.common.in
8957         * configure
8958         * configure.in
8959
8960 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8961
8962         Linker now complaints if linked modules have conflicting options, for
8963         example, one compiled using --model-large and another one compiled with
8964         --model-small.  The following files were modified:
8965
8966         * as\mcs51\asdata.c
8967         * as\mcs51\aslink.h
8968         * as\mcs51\asm.h
8969         * as\mcs51\asmain.c
8970         * as\mcs51\asout.c
8971         * as\mcs51\i51pst.c
8972         * as\mcs51\lkdata.c
8973         * as\mcs51\lklibr.c
8974         * as\mcs51\lkmain.c
8975         * as\z80\asdata.c
8976         * as\z80\asm.h
8977         * as\z80\asmain.c
8978         * as\z80\asout.c
8979         * as\z80\z80pst.c
8980         * link\z80\aslink.h
8981         * link\z80\lkdata.c
8982         * link\z80\lklibr.c
8983         * link\z80\lkmain.c
8984         * src\SDCCglue.c
8985
8986 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8987
8988         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8989         as/mcs51/lklibr.c: Generate a warning when a library is not found.
8990
8991 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
8992
8993         * src/z80/mappings.i: fix _mul[us][int,long] entries
8994
8995 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8996
8997         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
8998
8999 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9000
9001         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9002         * support/regression/tests/bitopcse.c: added
9003         fixed warning:
9004         * src/avr/gen.c:
9005         * src/pic/gen.c:
9006         * src/pic16/gen.c:
9007         * src/z80/gen.c:
9008         * src/xa51/gen.c:
9009
9010 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9011
9012         added support for new library format to z80, gbz80 linkers:
9013         *link/z80/aslink.h
9014         *link/z80/lklex.c
9015         *link/z80/lklib.c
9016         *link/z80/lklist.c
9017
9018 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9019
9020         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9021         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9022
9023 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9024
9025         added DUMMY_READ_VOLATILE:
9026         * src/SDCC.y:
9027         * src/avr/gen.c:
9028         * src/xa51/gen.c:
9029         * src/z80/gen.c:
9030         * src/pic/gen.c:
9031         * src/pic16/gen.c:
9032         * src/mcs51/gen.c:
9033         * src/ds390/gen.c:
9034         * src/SDCCcse.c (algebraicOpts): many improvements
9035         * src/SDCCcse.h: removed algebraicOpts()
9036         * src/SDCCicode.c (picDummyRead): added
9037
9038 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9039
9040         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9041         "Insufficient space in data memory".
9042
9043 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9044
9045         * src/mcs51/gen.c: fixed bug #771358
9046         * src/z80/gen.c: fixed bug #759087
9047
9048 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9049
9050         * src/pic16/glue.c: minor cleanup by Vangelis
9051
9052 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9053
9054         * device/include/regc515c.h: fixed #758477
9055         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9056         * device/lib/_gptrput.c: saved a few bytes
9057         * my tab spacing is 8, yours too?)
9058         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9059         * device/lib/serial.c: process RX bytes earlier than TX bytes
9060         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9061
9062 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9063
9064         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9065
9066 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9067
9068     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9069
9070 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9071
9072         * device/lib/Makefile.in: bad fix, reverted to 1.43
9073
9074 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9075
9076         * device/lib/Makefile.in: added missing z80 object files
9077
9078 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9079
9080         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9081         pic16 progress by Vangelis:
9082         * src/SDCCglobl.h:
9083         * src/SDCCmain.c:
9084         * src/pic/Makefile:
9085         * src/pic:
9086         * pic/Makefile:
9087         * pic16/device.c:
9088         * pic16/device.h:
9089         * pic16/gen.c:
9090         * pic16/gen.h:
9091         * pic16/genarith.c:
9092         * pic16/glue.c:
9093         * pic16/main.c:
9094         * pic16/pcode.c:
9095         * pic16/pcode.h:
9096         * pic16/pcodepeep.c:
9097         * pic16/peeph.def:
9098
9099 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9100
9101     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9102
9103 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9104
9105     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9106     added gbz80 build to MSVC project.
9107     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9108     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9109     from 8051 stuff and setup so it links using a .lnk file.
9110
9111 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9112
9113     * support/librarian/sdcclib.c: sdcc librarian.
9114     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9115     with sdcclib.
9116
9117 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9118
9119     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9120
9121 2003-07-02  Borut Razem <borut.razem AT siol.net>
9122
9123         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9124         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9125         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9126         src/xa51/main.c, src/z80/main.c:
9127         virtualization of glue() function: each port has it's own glue function,
9128         which is accessed by do_glue function pointer in PORT.general structure
9129
9130 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9131
9132         * DS800C400 fun, improved ROM interface and tinibios.
9133
9134 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9135
9136         * More support for DS80C400. Now includes beginning of interface to ROM.
9137
9138 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9139
9140         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9141
9142 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9143
9144         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9145
9146 2003-06-19  Borut Razem <borut.razem AT siol.net>
9147
9148         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9149
9150 2003-06-19  Borut Razem <borut.razem AT siol.net>
9151
9152         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9153         fixed Z80 port - crt0.o: cannot open.
9154
9155 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9156
9157         * support/Util/MySystem.c (merge_command): revert bad fix
9158
9159 2003-06-18  Borut Razem <borut.razem AT siol.net>
9160
9161         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9162
9163 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9164
9165         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9166         option --use-stdout sends errors to stdout instead of stderr.
9167
9168 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9169
9170         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9171
9172 2003-06-15  Borut Razem <borut.razem AT siol.net>
9173
9174         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9175         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9176         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9177         fixed width array of pointers replaced with sets;
9178         multiple include and lib paths ared transferred to preprocessor and linker
9179         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9180         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9181         fixed width array of pointers
9182         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9183         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9184         fixupPath(), getPathDifference()
9185         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9186         fixed width array of pointers
9187
9188 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9189
9190         * src/pic16/ralloc.c: fix warnings
9191         * src/pic16/pcode.c: fix warning
9192
9193 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9194
9195          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9196         know all the details, but essentially this set of changes enable
9197         the pic16 port to generate movff instructions and generate assembler
9198         directives,
9199         * src/SDCCmain.c:
9200         * src/pic16/gen.c:
9201         * src/pic16/glue.c:
9202         * src/pic16/pcode.c:
9203         * src/pic16/device.c:
9204         * src/pic16/main.c:
9205         * src/pic16/pcode.h:
9206         * src/pic16/pcoderegs.c:
9207         * src/pic16/ralloc.c:
9208         * src/pic16/ralloc.h:
9209
9210 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9211
9212         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9213         added option --vc, so sdcc errors and warnings are compatible with
9214         Microsoft Visual Studio.
9215
9216 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9217
9218         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9219           device/lib/libfloat.lib: added atof function.
9220
9221 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9222
9223         * doc/sdccman.lyx: updated to Lyx 1.3
9224         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9225         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9226         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9227
9228 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9229
9230         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9231
9232 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9233
9234         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9235           additions to the "related tools/documentation" section
9236
9237 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9238
9239         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9240
9241 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9242
9243         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9244         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9245
9246 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9247
9248         * doc/sdccman.lyx: fix double dash and other minor things
9249         * doc/Makefile: fix double dash
9250
9251 2003-05-28  Karl Bongers(patches from Martin Helmling)
9252         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9253           condition and ignore commands.
9254
9255 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9256
9257         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9258           is in parts still quite out of date, I did changes as far as I felt makes sense
9259           for a non-native english speaker.
9260           Please feel free to add to the manual or to correct my changes.
9261         * doc/Makefile: undid touching the date of intermediate tex files.
9262
9263 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9264
9265         * doc/sdccman.lyx: Manual has an index now
9266
9267 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9268
9269         Finalize muluint/mulsint and mululong/mulslong merging:
9270         * device/lib/_mulint.c
9271         * device/lib/_mullong.c
9272         * device/lib/gbz80/mul.s
9273         * device/lib/gbz80/stubs.s
9274         * device/lib/z80/mul.s
9275         * device/lib/z80/stubs.s
9276         * src/SDCCsymt.c (initCSupport)
9277
9278 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9279
9280         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9281         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9282           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9283           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9284           instead of /Zm500.
9285
9286 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9287
9288         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9289           the regression tests I'm not brave enough to enable 245.b, 245.c
9290         * doc/sdccman.lyx: added latex preamble for hyperref package.
9291           Using pdflatex this will give you a hyperlinked pdf file with
9292           bookmarks. (prepend '%' before /usepackage if this breaks something)
9293
9294 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9295
9296          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9297
9298 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9299
9300         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9301
9302 2003-05-21    <johan AT balder>
9303
9304         * src/SDCCglue.c (printIval): fixed bug #739934
9305
9306 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9307
9308         Applied patch from bug 737905 (renamed yylineo to mylineno):
9309         * src/altlex.c
9310         * src/SDCCast.c
9311         * src/SDCglobl.h
9312         * src/SDCC.lex
9313         * src/SDCCsymt.c
9314         * src/SDCCval.c
9315         * src/pic16/pcode.c: Cleaned warnings
9316         * src/pic16/pcodeflow.c: Cleaned warnings
9317         * src/pic16/pcoderegs.c: Cleaned warnings
9318
9319 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9320
9321         * src/pic16/pcode.c: Cleaned warnings
9322         * src/pic16/pcodepeep.c: Cleaned warnings
9323         * src/pic16/ralloc.c: Cleaned warnings
9324
9325 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9326
9327         * doc/sdccman.lyx: fixed bug 739745
9328         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9329
9330 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9331
9332         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9333         it can be defined with CFLAGS when running configure
9334         * src/SDCCmain.c: fixed compiling + linking with object files
9335
9336 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9337
9338         * configure.in: configure for pic16 port,
9339             added --disable-pic16-port
9340         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9341         * src/SDCCmain.c: linkOptions is changed to set *,
9342             added if/endif conditional macros to remove options help
9343             messages from optionsTable when a port is not configured, added
9344             support for the PIc16 port in the ports table, when executing
9345             the compiler with no port specified on command line, a default
9346             port is selected with the new macro DEFAULT_PORT which is
9347             defined in port.h, in setDefaultOptions() linkOptions is removed
9348             from initialization assignment, since now it is a set,
9349             parseCmdLine uses setParseWithComma for linkOptions, in
9350             linkEdit() linkOptions are accessed with new function indexSet()
9351             which returns the i'th item of a set variable. See SDCCset.c, in
9352             linkEdit() when calling buildCmdLine(), added linkOptions as
9353             last argument. Now users can pass arguments to gplink via the
9354             -Wl option, main() uses pic16glue() to glue up pic16 programs
9355         * src/SDCCpeeph.c: various changes to support pic16
9356         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9357             return the i'th item of the set
9358         * src/SDCCset.h: added function prototype for indexSet()
9359         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9360         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9361         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9362             added macro DEFAULT_PORT
9363         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9364         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9365             generated
9366         * src/pic16/glue.c: commented out some error producing lines
9367         * src/pic16/main.c: __config directives are commented out to stop
9368             gpasm complaining and test the linkage with gplink, _linkCmd and
9369             _asmCmd changed to be more gplink and gpasm friendly
9370         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9371             produced an error when parsed, peep rule 12 is added to utilize
9372             movff, but it is commented out since the pCode does not support
9373             yet a command with 2 address arguments
9374
9375 2003-05-18    <johan AT balder>
9376
9377         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9378         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9379 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9380
9381         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9382   Added feature to script commands from file.
9383
9384 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9385
9386         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9387         * src/SDCCutil.c: include ctype.h for win32
9388
9389 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9390
9391         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9392
9393 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9394
9395         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9396   Fixed so you can set breakpoints prior to run, run does not stop
9397   on entry now.  Add tbreak.  Other enhancements and fixes for use
9398   with ddd.
9399
9400 2003-05-12  Borut Razem <borut.razem AT siol.net>
9401
9402         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9403
9404 2003-05-11  Borut Razem <borut.razem AT siol.net>
9405
9406         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9407         the path of bin directory, so that PATH is the only env. variable, which has to be set
9408         in case of standard installation.
9409         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9410         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9411         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9412
9413 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9414
9415         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9416         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9417         temp files are in the port dir; clean the gen/test directory when
9418         generating new test.c
9419         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9420         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9421         * support/regression/tests/zeropad.c: added
9422
9423 2003-05-09    <johan AT balder>
9424
9425         * src/SDCCglue.c: fixed bug #597940
9426
9427 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9428
9429         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9430   cache sfr, optimize next,step, fix off by one sourceline,
9431   support ddd list function.
9432         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9433
9434 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9435
9436         * support/regression/HTMLgen.py: added compare_s2f()
9437         * support/regression/Makefile: redo 1.27
9438         * support/regression/generate-cases.py: redo 1.5
9439
9440 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9441
9442         * support/regression/tests/float.c: workaround 33 bit hex constant
9443         * support/regression/tests/simplefloat.c: fix division for host
9444
9445 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9446
9447         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9448         that tame's the PIC's over-aggressive optimizer.
9449
9450 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9451
9452          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9453          support for MSVC.
9454
9455 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9456
9457         Initial support for DS80C400. "Hello world" runs on TINIm400
9458         (with polled I/O).
9459
9460 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9461
9462          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9463          * Some notes on ddd usage added in debugger/README
9464          Martin Helmling adding more features and fixes for ddd GUI debugger.
9465          Code added for nexti, stepi, up, down, and other adjustments.
9466
9467 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9468
9469         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9470         * src/pic/peeph.def Added two rules to optimize carry manipulation
9471         * src/pic/* removed debug printfs
9472
9473 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9474
9475         * debugger/mcs51/cmd.c: added header newalloc.h
9476
9477 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9478
9479         * as/Makefile: new EXEEXT
9480         * as/z80/Makefile: remove trailing slash of BUILDIR
9481         * as/z80/clean.mk: new EXEEXT
9482         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9483         * support/cpp2/Makefile.in: new EXEEXT
9484         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9485
9486 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9487
9488         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9489         EXEEXT was introduced to fix all related problems with targets
9490         "clean", "install" and "uninstall"; a couple of further flaws
9491         especially with "clean" have been fixed too
9492         * as/mcs51/Makefile.in
9493         * as/mcs51/clean.mk
9494         * as/z80/Makefile
9495         * Makefile
9496         * clean.mk
9497         * debugger/mcs51/Makefile.in
9498         * debugger/mcs51/clean.mk
9499         * link/z80/Makefile
9500         * link/z80/Makefile.in
9501         * link/z80/clean.mk
9502         * link/Makefile
9503         * packihx/Makefile.in
9504         * packihx/clean.mk
9505         * sim/ucsim/Makefile
9506         * sim/ucsim/clean.mk
9507         * sim/ucsim/avr.src/Makefile.in
9508         * sim/ucsim/avr.src/clean.mk
9509         * sim/ucsim/s51.src/Makefile.in
9510         * sim/ucsim/s51.src/clean.mk
9511         * sim/ucsim/xa.src/Makefile.in
9512         * sim/ucsim/xa.src/clean.mk
9513         * sim/ucsim/z80.src/Makefile.in
9514         * sim/ucsim/z80.src/clean.mk
9515         * sim/ucsim/main_in.mk
9516         * sim/ucsim/packages_in.mk
9517         * sim/ucsim/gui.src/Makefile.in
9518         * sim/ucsim/gui.src/serio.src/Makefile.in
9519         * sim/ucsim/gui.src/serio.src/clean.mk
9520         * src/Makefile.in
9521         * src/clean.mk
9522         * support/cpp2/Makefile.in
9523         * support/cpp2/clean.mk
9524         * support/makebin/Makefile
9525         * support/makebin/clean.mk
9526         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9527         * doc/sdccman.lyx: --program-suffix no longer needed
9528
9529 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9530
9531          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9532          Martin Helmling added support for ddd GUI debugger.
9533          Code added to display assembly, set variables, and other commands
9534          to interface to ddd.
9535
9536 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9537
9538         * as/Makefile: fix target clean
9539         * as/clean.mk: fix target clean
9540         * as/z80/clean.mk: fix target clean
9541
9542 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9543
9544         * Makefile.common.in: added  AT EXEEXT AT
9545         * configure.in: removed all mingw32 stuff
9546         * configure: rebuilt from configure.in
9547         * doc/sdccman.lyx: updated section "installation"
9548         * support/scripts/sdcc_mingw32: adapted to configure
9549         * support/scripts/sdcc_cygwin_mingw32: added
9550
9551 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9552
9553         * src/pic Added object file support for the PIC port
9554         * src/pic Applied patch from Craig Franklin (this started the object file support)
9555         * src/regression Updated the PIC regression tests for object files
9556
9557 2003-04-20  Borut Razem <borut.razem AT siol.net>
9558
9559         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9560           lklex.c: In function `getfid':
9561           lklex.c:203: warning: array subscript has type `char'
9562         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9563           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9564         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9565           stack handling macros
9566
9567 2003-04-19  Borut Razem <borut.razem AT siol.net>
9568
9569         * "handling space characters in file path" task:
9570         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9571         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9572         * support/Util/MySystem.h: make it self-sufficient
9573         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9574           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9575           handling space characters in file path
9576         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9577           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9578         * support/Util/MySystem.c: handling space characters in executable's path
9579
9580 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9581
9582         * as/z80/Makefile: fix permanent rebuild of z80
9583         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9584         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9585
9586 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9587
9588         * src/SDCCopt.c: add special case optimization to replace modulo by
9589           a power of two with a bitwise AND.
9590
9591 2003-04-18    <johan AT balder>
9592
9593         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9594
9595 2003-04-17    <johan AT balder>
9596
9597         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9598         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9599
9600 2003-04-13  Borut Razem <borut.razem AT siol.net>
9601
9602         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9603         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9604           fixed mingw problem in adl_NORMALIZE_PATH
9605
9606 2003-04-12  Borut Razem <borut.razem AT siol.net>
9607
9608         * fixed "#pragma SAVE/RESTORE can not be nested":
9609         * src/SDCC.lex: reworked pragma handling functions
9610         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9611         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9612
9613 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9614
9615         * src/SDCCutil.c (pathEquivalent): defined but not used
9616         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9617         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9618         * configure: rebuilt from configure.in
9619         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9620         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9621         * device/include/Makefile.in: replace sdcc_datadir
9622         * device/lib/Makefile.in: replace sdcc_datadir
9623         * Makefile.common.in: add LDFLAGS from configure
9624         * packihx/Makefile.in: use LDFLAGS
9625         * src/Makefile.in: use LDFLAGS
9626         * support/cpp2/Makefile.in: add LDFLAGS from configure
9627         * support/makebin/Makefile: use LDFLAGS
9628         * .version: bumped version number to 2.3.5
9629
9630 2003-04-12  Borut Razem <borut.razem AT siol.net>
9631
9632         * completed "different paths" task:
9633         * src/SDCCmacro.c: fixed bug in handling quotes
9634         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9635         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9636
9637 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9638
9639         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9640
9641 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9642
9643         * ds390/gen.c ds390/peeph.def: fix bug 706781
9644
9645 2003-04-11  Borut Razem <borut.razem AT siol.net>
9646
9647         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9648
9649 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9650
9651         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9652         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9653          set - this bit used to not be set...).
9654         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9655           bad code in PIC Port
9656         * src/regression/and2.c added to test bug 609268
9657         * src/regression/Makefile added and2.c to regression test
9658
9659
9660 2003-04-08    <johan AT CP255758-A>
9661
9662         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9663         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9664         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9665
9666 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9667
9668         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9669         fix bug #487815
9670         * support/cpp2/Makefile.in: fix bug #487815
9671         * configure: rebuilt from configure.in
9672         * Makefile.common.in: docdir changed, new path suffixes
9673         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9674         * sdcc_vc_in.h: reflect changes from sdccconf.h
9675         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9676         * src/SDCCutil.h: remove BINDIR hack
9677         * doc/sdccman.lyx: update new path hierarchy
9678
9679 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9680
9681         * src/SDCCpeeph.c: added okToRemoveSLOC test
9682
9683 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9684
9685         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9686
9687 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9688
9689         * src/SDCCpeeph.c: added labelIsReturnOnly test
9690         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9691
9692 2003-04-05    <johan AT balder>
9693
9694         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9695         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9696         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9697         * src/SDCCast.c: fixed a warning
9698         * src/SDCCast.h: fixed a warning
9699         * src/SDCCicode.c (operandFromAst): fixed a warning
9700
9701 2003-04-04    <johan AT balder>
9702
9703         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9704         * src/SDCCast.c (decorateType): fixed bug #715076
9705         * src/SDCC.y: fixed bug #702907
9706
9707 2003-04-03    <johan AT balder>
9708
9709         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9710         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9711         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9712         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9713         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9714
9715 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9716
9717         * _decdptr.c: fix return values
9718         * _gptrget.c: fix return values
9719         * _gptrgetc.c: fix return values
9720         * _gptrput.c: fix return values
9721         * _mulint.c: fix return values
9722         * as/z80/Makefile: fix 'make -j' problem
9723
9724 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9725
9726         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9727         * configure.in: big cleanup, updated to autoconf 2.5x
9728         * configure: rebuilt from configure.in
9729         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9730         * sdcc_vc_in.h: reflect changes from sdccconf.h
9731         * doc/Makefile: fixed a flaw in "make install"
9732
9733 2003-04-02    <johan AT balder>
9734
9735         * src/ds390/gen.c (genCmp): no comments
9736         * src/mcs51/gen.c (genCmp): no comments
9737         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9738         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9739
9740 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9741
9742         * support/regression/generate-cases.py: place generated file in given sub directory
9743         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9744         * support/regression/Makefile: improvements for 'make -j';
9745         side effect: it's simpler and faster now
9746
9747 2003-03-31  Borut Razem <borut.razem AT siol.net>
9748
9749         * src/z80/main.c: link-{port} and as-{port} defined without path
9750         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9751
9752 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9753
9754         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9755
9756 2003-03-30  Borut Razem <borut.razem AT siol.net>
9757
9758         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9759           changed type of list parameter to set
9760         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9761         * src/port.h: changed type of do_assemble() parameter to set
9762         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9763           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9764           definition of "cppoutfilename" macro with NULL value in preProcess()
9765         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9766         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9767         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9768           replaced with set *binPathSet
9769         * shash_add() deallocates the item, if allready exsists, before adding the new one
9770         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9771
9772 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9773
9774         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9775           a nested for loop bug in the PIC port
9776         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9777           for loops
9778
9779 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9780
9781         * support/Util/dbuf.h: remove C++ stuff to make it portable
9782
9783 2003-03-28  Borut Razem <borut.razem AT siol.net>
9784
9785         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9786           literal strings in stringLiteral()
9787         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9788         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9789           to the project
9790
9791 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9792
9793         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9794
9795 2003-03-26    <johan AT balder>
9796
9797         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9798         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9799         * src/SDCCast.c (decorateType): fixed " -v < 3"
9800
9801 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9802
9803         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9804         Added Lenny Story's debug infrastructure changes:
9805         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9806         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9807         * src/cdbFile.c: added
9808         * src/SDCCdebug.c: added
9809         * src/SDCCdebug.h: added
9810         * src/SDCCast.c (createFunction)
9811         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9812         * src/SDCCmain.c (parseCmdLine, main)
9813         * src/SDCCmem.c (redoStackOffsets)
9814         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9815         * src/SDCCsymt.h
9816         * src/common.h
9817         * src/avr/gen.c (genAVRCode)
9818         * src/ds390/gen.c (gen390Code)
9819         * src/mcs51/gen.c (gen51Code)
9820         * src/pic/gen.c (genpic14Code)
9821         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9822         * src/xa51/gen.c (genXA51Code)
9823         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9824
9825 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9826
9827         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9828         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9829
9830 2003-03-22    <johan AT balder>
9831
9832         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9833
9834 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9835
9836         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9837         * doc/cdbfileformat.lyx: added, written by Lenny Story
9838         * doc/Makefile: added cdbfileformat.lyx
9839         * doc/clean.mk: added cdbfileformat.lyx
9840
9841 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9842
9843         * src/mcs51/peeph.def: fix bug #705773
9844
9845 2003-03-20    <johan AT balder>
9846
9847         An sfr/sbit can have an "at #" AND an initializer
9848         * src/SDCCsymt.c (checkSClass):
9849         * src/SDCCmem.c (allocGlobal):
9850         * src/SDCCmem.c (allocLocal):
9851         * src/SDCCast.c (createBlock):
9852
9853 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9854
9855         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9856
9857 2003-03-16    <johan AT balder>
9858
9859         Undid the hackup of const and volatile, the problem is much bigger
9860         * src/SDCC.y:1.65
9861         * src/SDCCast.c:1.171
9862         * src/SDCCglue.c:1.138
9863         * src/SDCCicode.c:1.146
9864         * src/SDCCsymt.c:1.150
9865         * src/SDCCval.c:1.65
9866
9867 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9868
9869         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9870         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9871
9872 2003-03-13    <johan AT balder>
9873
9874         Hackup const and volatile modifiers in type chains a bit:
9875         * src/SDCC.y:1.63
9876         * src/SDCCast.c:1.169
9877         * src/SDCCglue.c:1.136
9878         * src/SDCCicode.c:1.143
9879         * src/SDCCsymt.c1.146
9880         * src/SDCCsymt.h1.59
9881         * src/SDCCval.c:1.63
9882
9883 2003-03-12    <johan AT balder>
9884
9885         * src/SDCCBBlock.h: more LRH debugging junk
9886         * src/SDCCcflow.h: more LRH debugging junk
9887         * src/SDCCloop.c: more LRH debugging junk
9888         * src/SDCC.y (struct_declaration): fixed bug #697590
9889         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9890         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9891         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9892
9893 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9894         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9895         test function names must now match exactly).
9896         * src/SDCCcse.c: added special case in findCheaperOp to allow
9897         extending a short integer. Makes less awful code for bug 700121 test case.
9898
9899 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9900
9901         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9902         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9903
9904 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9905
9906         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9907         actually called (operandsNotEqual() was called for all
9908         operandsNotEqualX tests).
9909
9910 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9911
9912         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9913         with shorter literals. Fixes bug 700121.
9914
9915 2003-03-11    <johan AT balder>
9916
9917         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9918
9919 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9920
9921         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9922         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9923
9924 2003-03-10  Borut Razem <borut.razem AT siol.net>
9925
9926         * src/SDCCmain.c: pipe preprocessor's output
9927         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9928         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9929         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9930         which closes all pipes in pipeSet set
9931         * src/SDCCset.c: free deleted item in function deleteSetItem()
9932         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9933         moved from z80 to src subproject
9934         * .version: increased version number to 2.3.4
9935
9936 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9937
9938         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9939         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9940         * support/regression/ports/xa51/spec.mk: fix typo
9941
9942 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9943
9944         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9945
9946 2003-03-09  Borut Razem <borut.razem AT siol.net>
9947
9948         * src/SDCCmain.c: pipe preprocessor's output
9949         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9950         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9951         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9952         which closes all pipes in pipeSet set
9953         * src/SDCCset.c: free deleted item in function deleteSetItem()
9954         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9955         moved from z80 to src subproject
9956
9957 2003-03-09  Borut Razem <borut.razem AT siol.net>
9958
9959         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9960         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9961         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9962         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9963         * src/SDCCglobl.h: unification of WIN32 native definitions
9964
9965 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9966
9967         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9968
9969 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9970
9971         * src/configure.in:   check for endianess (even while cross-compiling)
9972         * src/configure:      check for endianess (even while cross-compiling)
9973         * src/configure_in.h: check for endianess (even while cross-compiling)
9974         * src/avr/gen.c:        remove old endianess stuff
9975         * src/mcs51/gen.c:      remove old endianess stuff
9976         * src/ds390/gen.c:      remove old endianess stuff
9977         * src/pic/gen.c:        remove old endianess stuff
9978         * src/pic/genarith.c:   remove old endianess stuff
9979         * src/pic/glue.c:       fix endianess check
9980         * src/pic16/gen.c:      remove old endianess stuff
9981         * src/pic16/genarith.c: remove old endianess stuff
9982         * src/pic16/glue.c:     fix endianess check
9983         * src/xa51/gen.c:       remove old endianess stuff
9984         * src/z80/gen.c:        fix endianess check
9985         * src/SDCCglue.c:       fix endianess check
9986         * src/ds390/peeph.def: fix bug 700036
9987
9988 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9989
9990         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
9991         * src/configure: find appropriate data-types on host for SDCC's int and long
9992         * src/configure.in: find appropriate data-types on host for SDCC's int and long
9993         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
9994         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
9995
9996 2003-03-07    <johan AT balder>
9997
9998         Just a big NOOP:
9999                 some minor cleanups before the big shot
10000                 OP_DEFS and OP_USES now use Kevin's protection
10001                 new option --nolabelopt
10002
10003         * src/SDCCBBlock.c:
10004         * src/SDCCast.c,:
10005         * src/SDCCcflow.c:
10006         * src/SDCCcse.c:
10007         * src/SDCCicode.c:
10008         * src/SDCCicode.h:
10009         * src/SDCClabel.c:
10010         * src/SDCCloop.c:
10011         * src/SDCCmain.c:
10012         * src/ds390/ralloc.c:
10013         * src/mcs51/ralloc.c:
10014         * src/pic/ralloc.c:
10015         * src/xa51/ralloc.c:
10016         * src/z80/ralloc.c:
10017
10018 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10019
10020         * src/pic/pcode.c (get_op): fix 64 bit warnings
10021         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10022         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10023         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10024         * support/regression/tests/malloc.c: fix 64 bit warnings
10025
10026 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10027
10028         * src/mcs51/gen.c (genMinus): fixed bug 696436
10029
10030 2003-03-02  Borut Razem <borut.razem AT siol.net>
10031
10032         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10033
10034 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10035
10036         * configure.in: test for mkstemp
10037         * sdccconf_in.h: add HAVE_MKSTEMP
10038
10039 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10040
10041         * device/include/ctype.h: removed warning while using --stack-auto
10042         * device/include/malloc.h: removed warning while using --stack-auto
10043         * device/include/string.h: removed warning while using --stack-auto
10044
10045 2003-02-23  Borut Razem <borut.razem AT siol.net>
10046
10047         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10048         because NDEBUG is defined (see man assert)
10049         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10050
10051 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10052
10053         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10054         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10055
10056 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10057
10058         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10059         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10060
10061 2003-02-18    <johan AT balder>
10062
10063         * as/mcs51/asmain.c (asmbl): module can start with a digit
10064         * as/z80/asmain.c (asmbl): module can start with a digit
10065
10066 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10067
10068         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10069         * src/asm.c: fix pipe() for Mingw32
10070
10071 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10072
10073         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10074         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10075         make -V work again; --c1mode reads now from stdin
10076         * doc/sdccman.lyx: added --c1mode
10077         * support/Util/SDCCerr.c: new messages for c1 mode
10078         * support/Util/SDCCerr.h: new messages for c1 mode
10079         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10080
10081 2003-02-15    <johan AT balder>
10082
10083         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10084
10085 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10086
10087         * doc/sdccman.lyx: Environment variables, -o and other minor things
10088
10089 2003-02-14    <johan AT balder>
10090
10091         * src/xa51/main.c: before anyone really tries to use it :)
10092
10093         * Install doc's in share/sdcc/doc
10094         * removed some obsolete files
10095         * Do a proper make distclean and uninstall
10096         M Makefile.common.in
10097         R sdccbuild.sh
10098         M as/Makefile
10099         M device/include/Makefile.in
10100         M device/lib/Makefile.in
10101         M doc/sdccman.lyx
10102         M link/Makefile
10103         M sim/ucsim/doc/Makefile.in
10104         M src/clean.mk
10105         R src/avr/peeph.rul
10106         R src/xa51/peeph.rul
10107         M support/cpp2/Makefile.in
10108         M support/makebin/Makefile
10109
10110
10111 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10112
10113         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10114
10115 2003-02-10  Borut Razem <borut.razem AT siol.net>
10116
10117         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10118         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10119         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10120         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10121         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10122         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10123         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10124         src/z80/Makefile.bcc: Borland Makefile cleanup
10125         * as/z80/Makefile.bcc: Added Borland Makefile
10126         * support/cpp2/borland.h: Removed
10127
10128 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10129
10130         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10131         * src/SDCC.lex: new pragma NOIV
10132         * src/SDCCglobl.h: new pragma NOIV
10133         * src/SDCCmem.c: new pragma NOIV
10134
10135 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10136
10137         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10138
10139 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10140
10141         * src/SDCCmain.c: signal handling is switched off by --debug
10142         * doc/Makefile: small fix for install; use clean.mk again
10143         * doc/clean.mk: clean *.pdf and *.html too
10144
10145 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10146
10147         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10148         * device/lib/printfl.c: fix a ds390 bug by making it portable
10149         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10150         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10151         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10152         * debugger/mcs51/cmd.c: converted multi-line string literals
10153         * sim/ucsim/globals.cc: converted multi-line string literals
10154         * src/SDCCmain.c: introduced signal handler to remove temp files
10155         * doc/Makefile: small tweaks, implement clean
10156         * doc: removed generated files
10157
10158 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10159
10160         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10161         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10162         Address Record is not correctly generated for DS390."
10163
10164 2003-02-02  Borut Razem <borut.razem AT siol.net>
10165
10166         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10167         * as/mcs51/asm.h: fixed compilation with Borland C
10168         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10169         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10170         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10171         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10172         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10173         src/z80/Makefile.bcc: delete $(LIB) only if exist
10174         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10175
10176 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10177
10178         * device/include/malloc.h: introduced NULL
10179         * device/include/string.h: introduced NULL
10180         * device/include/stdlib.h: introduced NULL
10181         * device/lib/_memcpy.c: removed NULL
10182         * device/lib/_strcat.c: removed NULL
10183         * device/lib/_strchr.c: removed NULL
10184         * device/lib/_strcmp.c: removed NULL
10185         * device/lib/_strcpy.c: removed NULL
10186         * device/lib/_strcspn.c: removed NULL
10187         * device/lib/_strlen.c: removed NULL
10188         * device/lib/_strncat.c: removed NULL
10189         * device/lib/_strncmp.c: removed NULL
10190         * device/lib/_strncpy.c: removed NULL
10191         * device/lib/_strpbrk.c: removed NULL
10192         * device/lib/_strrchr.c: removed NULL
10193         * device/lib/_strspn.c: removed NULL
10194         * device/lib/_strstr.c: removed NULL
10195         * device/lib/_strtok.c: removed NULL
10196         * device/lib/malloc.c: removed NULL, include own header
10197
10198 2003-02-02    <johan AT balder>
10199
10200         * 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
10201         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10202         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10203         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10204         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10205         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10206
10207 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10208
10209         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10210         area 'DATA'"
10211
10212 2003-02-01    <johan AT balder>
10213
10214         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10215
10216 2003-01-31    <johan AT CP255758-A>
10217
10218         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10219
10220 2003-01-30    <johan AT balder>
10221
10222         * src/SDCCBBlock.c: automatic bug detection
10223         * src/SDCCicode.c: automatic bug detection
10224
10225 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10226
10227         * src/SDCCglobl.h:   now --xram-size 0 works
10228         * src/SDCCmain.c:    now --xram-size 0 works
10229
10230 2003-01-29    <johan AT balder>
10231
10232         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10233
10234 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10235
10236         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10237         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10238         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10239         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10240         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10241         * src/SDCCmain.c:    Added options --xram-size and --code-size
10242
10243 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10244
10245         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10246         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10247
10248 2003-01-27    <johan AT balder>
10249
10250         * src/SDCC.y: fixed bug #613764
10251
10252 2003-01-26    <johan AT balder>
10253
10254         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10255         * src/SDCCsymt.h: fixed bug #673374
10256         * src/SDCCglue.c: fixed bug #661910
10257         * src/SDCCast.c: fixed bug #458099 and 673374
10258
10259 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10260
10261         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10262         * as/mcs51/strcmpi.h: added
10263         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10264         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10265         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10266         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10267         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10268         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10269         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10270         * as/mcs51/Makefile.aslink: new module strcmpi
10271         * as/mcs51/Makefile.asx8051: new module strcmpi
10272         * as/mcs51/Makefil.bcc: new module strcmpi
10273         * as/mcs51/Makefile.in: new module strcmpi
10274         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10275
10276 2003-01-26    <johan AT balder>
10277
10278         * src/SDCCglue.c: reverted back to 1.124
10279         * src/SDCCast.c: reverted back to 1.156
10280         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10281
10282 2003-01-25    <johan AT balder>
10283
10284         * src/SDCCglue.c: A better fix for bug #661910
10285         * src/SDCCast.c: A better fix for bug #661910
10286         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10287
10288 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10289
10290         * src/Makefile.in: remove spawn.o
10291         * src/SDCCmain.c: remove spawn.h
10292         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10293         * src/spawn.c: removed
10294         * src/spawn.h: removed
10295         * support/regression/ports/ds390/spec.mk: link with -r
10296
10297 2003-01-24    <johan AT CP255758-A>
10298
10299         * src/ds390/gen.c (aopOp): fixed bug #667458
10300         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10301         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10302         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10303
10304 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10305
10306         * src/mcs51/peeph.def: better assembler identation by Frieder
10307         * src/mcs51/gen.c: better assembler identation by Frieder
10308
10309 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10310
10311         * as/z80/string.h: removed for gcc 3.2
10312         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10313         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10314
10315 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10316
10317         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10318         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10319         * support/regression/Makefile: separate temp files for ports
10320         * support/regression/generate-cases.py: separate temp files for ports
10321         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10322         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10323
10324 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10325
10326         * moved tinitalk to device/examples/ds390
10327
10328 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10329
10330         * as/mcs51/lkmem.c: rflag is for DS390
10331         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10332         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10333                          (linkEdit): move mem- and map-files the same way as ihx-files
10334         * src/z80/main.c (_setDefaultOptions): removed --generic
10335         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10336         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10337         * src/pic/glue.c (picglue): --c1mode works again
10338         * src/pic16/glue.c (pic16glue): --c1mode works again
10339         * src/asm.c (printCLine): fix #660034
10340
10341 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10342
10343         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10344         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10345         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10346         * as/mcs51/lkmem (summary): better fix for sp problem
10347         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10348         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10349         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10350                                               remove --stack-after-data
10351
10352 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10353
10354         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10355         * src/SDCCutil.c (join): ugly bug: missing '\0'
10356         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10357
10358 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10359
10360         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10361         * src/port.h: typo
10362         * src/pic/main.c (_asmCmd): gpasm supports -o
10363         * src/z80/main.c: more general macros
10364         * device/lib/Makefile.in: remove intermediate files
10365
10366 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10367
10368         * .version: Bumped version number to 2.3.3
10369         * src/SDCCBBlock.c: new option -o
10370         * src/SDCCglobl.h: new option -o
10371         * src/SDCCglue.c: new option -o
10372         * src/SDCCmain.c: new option -o
10373         * src/asm.c: new option -o
10374         * src/ds390/main.c: new option -o
10375         * src/pic/glue.c: new option -o
10376         * src/pic/pcode.c: new option -o
10377         * src/pic/ralloc.c: new option -o
10378         * src/pic16/glue.c: new option -o
10379         * src/pic16/pcode.c: new option -o
10380         * src/pic16/ralloc.c: new option -o
10381         * src/z80/main.c: new option -o
10382         * device/lib/Makefile.in: use -o
10383         * support/regression/ports/ds390/spec.mk: use -o
10384         * support/regression/ports/gbz80/spec.mk: use -o
10385         * support/regression/ports/mcs51/spec.mk: use -o
10386         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10387         * support/regression/ports/z80/spec.mk: use -o
10388         * support/regression/ports/ucz80/spec.mk: use -o
10389         * support/regression/ports/xa51/spec.mk: use -o
10390         * support/regression/fwk/lib/timeout.c: fix usage string
10391
10392 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10393         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10394
10395 2003-01-07    <johan AT balder>
10396
10397         * src/SDCCast.c (decorateType): fixed bug #600035
10398
10399 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10400         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10401         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10402         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10403         * src/pic/pcode.c: outcommented unused variable to remove warnings
10404         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10405
10406 2003-01-06    <karl AT turbobit.com>
10407         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10408    regression tests.
10409
10410 2003-01-06    <johan AT balder>
10411
10412         * src/SDCCicode.c: fixed array add
10413
10414 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10415         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10416         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10417
10418 2003-01-04    <johan AT balder>
10419
10420         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10421
10422 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10423         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10424
10425 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10426         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10427         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10428
10429 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10430         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10431
10432 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10433         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10434
10435 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10436         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10437
10438 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10439
10440     * in \sdcc\as\mcs51\ changed these files in order to create an
10441     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10442     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10443     following files to include the previous two files: aslink.dsp,
10444     Makefile.aslink, Makefile.bcc, and Makefile.in.
10445
10446     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10447     .adb instead of .cdb
10448
10449 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10450
10451         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10452         value from option --iram-size.
10453
10454 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10455
10456         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10457         dram[] array.
10458
10459 2002-09-18    <wiml AT hhhh.org>
10460
10461         * SDCClrange.h: exposed setFromRange() and setToRange()
10462         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10463           packRegsForAccUse() (bug 542397)
10464         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10465           multiple times and emitting the fetch operations more than once
10466           added aopGetUsesAcc() function to allow binary operators to
10467           fetch their operands in the correct order; made genMinus() emit
10468           compact code for X = LITERAL - Y
10469
10470 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10471         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10472         sprintf() in line 1267.
10473
10474 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10475         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10476         like ports.
10477
10478 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10479         Changes to aslink (All the changes are marked with 'JCF'):
10480
10481         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10482         summary().
10483
10484         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10485         area BSEG.  Also moves, if possible, the DATA area down into the internal
10486         ram so more space is available.
10487
10488         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10489         sflag.
10490
10491         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10492         not bytes.  Function summary() which creates a memory usage summary
10493         file with extension .mem.  Reports of overlaping stack and small stack
10494         size.  If the space for the stack is less than 16 bytes aslink trows a
10495         warning.
10496
10497         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10498         the 8051.  Option 'y' for memory summary output file.
10499
10500         Changes to sdcc (All the changes are marked with 'JCF'):
10501
10502         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10503
10504         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10505         overlaying area for it (uses RegBankUsed[4]).
10506
10507         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10508         bank zero as used by default.  By default aslink locates the stack
10509         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10510         the creation of the .mem file.  Delegates the allocation of data area
10511         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10512         the begining of the stack area to aslink.
10513
10514         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10515         glue() in SDCCglue.c creates an area for it.
10516
10517 2002-09-03  Borut Razem <borut.razem AT siol.net>
10518         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10519         sdcc/src/pic/glue.c:
10520         introduced atexit() handler for teporay files removal in case of
10521         errors, assertions, ...
10522
10523 2002-08-29  Borut Razem <borut.razem AT siol.net>
10524         * sdcc/support/cpp2/auto-host_vc_in.h:
10525         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10526         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10527         Maybe there is a similar problem with BORLANDC? It should be checked!
10528
10529         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10530         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10531         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10532         was not executed, and the compiler (cl) launched a warning:
10533         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10534
10535 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10536         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10537
10538 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10539         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10540
10541         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10542           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10543           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10544           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10545           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10546           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10547           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10548         - added Release configuration in VS projects
10549         - review of compiler an linker options
10550         - VC .exe files are generated in bin_vc directory, not to interfere
10551           with binaries generated from other projects (cygwin, mingw, bcc ...)
10552
10553         * sdcc/src/yacc.dsp: added
10554
10555         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10556         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10557         and insert the version number definitions from .version
10558
10559         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10560
10561         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10562         added - genarate auto-host.h using auto-host_vc_in.h as template
10563
10564         * sdcc/sdcc_vc.h,
10565         removed from CVS, generated automatically
10566
10567 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10568         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10569
10570 2002-08-11  Borut Razem <borut.razem AT siol.net>
10571         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10572
10573 2002-08-10  Borut Razem <borut.razem AT siol.net>
10574         * src/SDCCmain.c (main):
10575         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10576         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10577         The consequence was that some temporary files were not removed.
10578
10579         * src/SDCCglue.c:
10580         unification of code in functions tempfilename() and tempfile():
10581         function tempnam() is defined in Visual Studio 6.0 and .NET
10582
10583         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10584
10585         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10586           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10587         - removed compiler command line option /WX: Treats all warnings as errors
10588         - update a list of source files, included into the project
10589
10590         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10591           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10592         changed project type to Generic Project so that can be correcly converted to VS.NET project
10593
10594         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10595
10596         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10597
10598         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10599
10600         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10601         added return 0 statements after assert() to make compiler happy
10602
10603         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10604         added newline in the def file to keep MSC compiler satisfied
10605
10606         * sdcc/src/z80/gen.c:
10607         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10608           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10609         - solved MSC error in function aopDump()
10610
10611         * sdcc_vc.h: define PREFIX as "\\sdcc"
10612
10613 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10614         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10615
10616 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10617         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10618         - Rewrote the register banking algorithm.
10619         - Added pCode live-range analysis to registers (for now, only non-used and
10620         singly-used registers optimized away)
10621
10622         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10623
10624         * 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.
10625
10626 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10627         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10628
10629 2002-04-22  Michael Hope  <michaelh AT vroom>
10630
10631         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10632
10633         * configure.in (DD_COPT): Added include support required for gbdk.
10634
10635         * .version: Bumped version number just to increase it.
10636
10637         * src/SDCCmain.c: Added -nostdinc to the default options.
10638
10639 2002-04-15  Michael Hope  <michaelh AT vroom>
10640
10641         * device/lib/z80/printf.c (sprintf): Added.
10642
10643         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10644
10645         * src/z80/peeph.def: Added transpose redundent load rule.
10646
10647         * src/z80/main.c: Added force callee saves for jaune.
10648
10649         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10650
10651         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10652
10653 2002-03-28  Johan Knol  <johan AT balder>
10654
10655         * src/SDCCval.c: fixed bug #532436
10656
10657 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10658         * /src/port.h:
10659         Added "char *Processor" field to the port structure.
10660
10661         * /src/SDCCmain.c:
10662         Added -p option. Allows port dependent processor to be specified.
10663
10664         * all ports:
10665         Initialized the new field char *Processor field to NULL in all ports
10666
10667         * /src/pic/*:
10668         Compiler generated registers for interrupt context saving
10669         were not getting allocated.
10670
10671 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10672
10673         * /src/SDCCast.c:
10674         Fixed left shift. Will promote the left side of a left shift
10675         if a) left shifting more than size of operand or b) when assigned
10676         to something size > size of left side
10677
10678 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10679         * src/pic/*
10680         tons of changes. Register allocation has been
10681         rewritten. Added customization for the various PICs. Flow
10682         analysis is restructured. ...
10683
10684         * src/pic/device.h:
10685         Added
10686
10687         * src/pic/device.c:
10688         Added. device.c is a PIC port hack to accomodate variations
10689         in PIC devices.
10690
10691 2002-03-13  Michael Hope  <michaelh AT vroom>
10692
10693         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10694
10695 2002-03-04  johanknol  <johanknol AT manik>
10696
10697         * /src/SDCCval.c: fixed
10698
10699         const unsigned char arr[][2] = { { 0, 1 } };
10700         t18.c:1: error: Initializer element is not constant
10701
10702 2002-03-04  bela  <bela AT manik>
10703
10704         * /device/include/mcs51reg.h:
10705         ds89c420 register definition update
10706
10707 2002-03-03    <johan AT FRIJA>
10708
10709         * support/Util/SDCCerr.c: did something, but don't no why anymore
10710
10711         * support/regression/tests/bug-524691.c: made it a little less shy
10712
10713         * src/SDCCast.c (decorateType): fixed bug #524697
10714
10715         * src/SDCCast.c: made some lineno improvements
10716
10717         * src/SDCCval.c (getNelements): changed warning to error
10718
10719         * src/SDCCglue.c (printIvalArray): changed warning to error
10720
10721         * src/SDCCicode.c: fixed a warning for mingw
10722
10723         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10724
10725         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10726
10727 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10728
10729         * src/ds390/peeph.def:
10730         Added some more peephole rules
10731
10732         * src/ds390/gen.c: Various fixes & enhancements
10733
10734         * src/SDCClrange.c, src/SDCClrange.h:
10735         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10736
10737         * src/ds390/ralloc.c:
10738         various fixes & enhancements (ds390) specific
10739
10740         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10741         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10742         from rallocs.
10743
10744         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10745
10746 2002-03-02    <johan AT FRIJA>
10747
10748         * src/SDCCast.c (decorateType): fixed bug #524708
10749
10750         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10751
10752         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10753
10754 2002-03-01  Michael Hope  <michaelh AT vroom>
10755
10756         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10757
10758         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10759
10760 2002-03-01    <johan AT FRIJA>
10761
10762         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10763
10764         * src/SDCCast.c (decorateType): fixed bug #524209
10765
10766         * src/SDCCval.c (valNot): fixed bug #524195
10767
10768 2002-02-26    <johan AT balder>
10769
10770         * src/xa51/gen.c: fixed a warning
10771
10772         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10773
10774         * src/SDCCast.c (decorateType): fixed bug #522534
10775
10776 2002-02-23    <johan AT balder>
10777
10778         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10779
10780 2002-02-22    <johan AT balder>
10781
10782         * src/SDCCast.c: fixed bug #514865
10783
10784         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10785
10786 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10787
10788         * sdcc/src/SDCCloop.c:
10789         Previous fix was not good. basic blocks that have "break" or "return" are
10790         not really partof a loop , but live ranges used in these blocks should
10791         be live thru the entire loop, so set partOfLoop but don't add them to
10792         loop region
10793
10794 2002-02-21    <johan AT FRIJA>
10795
10796         * src/SDCCcse.c: fixed bug #514308
10797
10798 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10799
10800         * src/SDCCloop.c:
10801         Fixed BUG #519583. If a conditional block ended in a return/break
10802         statement inside a loop, it was not being considered part of the loop.
10803
10804         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10805
10806 2002-02-10  Karl Bongers <karl AT turbobit.com>
10807
10808         * debugger/*:
10809         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10810         with lots of comments and notes.
10811
10812         * device/examples/test2.c:
10813         Fix bug, "red" variable not being initialized(compiler complained).
10814
10815         * device/examples/Makefile, examples/test3.c:
10816         Add Makefile in device/examples folder, compiles test3.c
10817         for use as a multiple module SDCDB test case.
10818
10819         * sim/ucsim/cmd.src/cmdset.cc:
10820         Took out debug printfs in ucsim "next" command.
10821
10822         * sim/ucsim/xa.src:
10823         Karl and Johan start ucsim XA support.  Most dissassembly working,
10824         about 75% emulation done(plenty of work remaining).
10825
10826         * sim/ucsim/z80.src:
10827         Add Z80 support to ucsim, add test-ucz80 regression test,
10828         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10829         Notice z80 compiler fails on examples/test3.c/crc code.
10830
10831 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10832
10833         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10834         Added support for --parms-in-bank1
10835
10836         * src/ds390/peeph.def:
10837         added a few more peephole optimzations
10838
10839         * src/ds390/main.c:
10840         1) added __builtin_inp & __builtin_outp used to read in data of given length
10841            from a memory mapped port
10842         2) added __builtin_memcmp
10843         3) added __builtin_swapw swap bytes of a short
10844
10845         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10846         1) handle multiple send & receives from register bank1
10847         2) ralloc can now allocate DPTR1 to some liveRanges
10848
10849         * src/SDCCsymt.c, src/SDCCsymt.h:
10850         changes to handle multiple sends & receives
10851
10852         * src/SDCCptropt.h:
10853         added some pointer arithmetic optimization
10854
10855         * src/SDCCptropt.c:
10856         added some pointer arithmetic optimizations but not stable yet so not
10857         called from anywhere (will get this working shortly)
10858
10859         * src/SDCCopt.c: fixed for multiple sends & receives
10860
10861         * src/SDCCmain.c:
10862         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10863         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10864            set preprocessor defines (depending on options)
10865
10866         * src/SDCCicode.c, src/SDCCicode.h:
10867         changes made to handle multiple sends & receives
10868
10869         * src/SDCCglobl.h:
10870         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10871
10872         * src/SDCCcse.c, src/SDCCcse.h:
10873         added function findbackward def (to be used in upcoming optimization)
10874
10875         * src/SDCCcflow.c, src/SDCCcflow.h:
10876         added function returnAtEnd - to determine if a basic block terminates with
10877         a RETURN iCode
10878
10879         * src/SDCCast.c, src/SDCCast.h:
10880         added option parms-in-bank1
10881
10882         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10883         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10884         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10885         adjusted for --parms-in-bank1 option
10886
10887         * device/include/string.h:
10888         donot redefine "reentrant" keyword
10889
10890         * device/include/ds80c390.h: Added some more SFRs
10891
10892 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10893
10894         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10895
10896 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10897
10898         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10899
10900 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10901
10902         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10903
10904 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10905
10906         * Added --xram-movc option
10907
10908 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10909
10910         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10911
10912 2002-01-11  Johan Knol
10913
10914         * Added math lib of Jesus Calvino-Fraga
10915
10916 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10917
10918         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10919         * support/regression/Makefile: new target test-mcs51-stack-auto
10920         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10921
10922 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10923
10924         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10925
10926 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10927
10928         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10929
10930 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10931
10932         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10933
10934         * src/SDCCglue.h: add definition for printIvalChar()
10935
10936 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10937
10938         * src/SDCCast.c: fix #498138 by Johan
10939
10940         * src/SDCCglue.c: fix #498138 by Johan
10941
10942 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10943
10944         * support/regression/Makefile: fix clean
10945
10946         * support/regression/ports/ds390/support.c: fix transmission of last character
10947
10948 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10949
10950         * /sdcc/src/ds390/gen.c:
10951         a) improved computing address of stack variable
10952         b) took out some #if 0 code
10953         c) improved parmBytes adjustment
10954         d) improved genPlusIncr & genMinusIncr
10955         e) genCmp could generate bad code (when left assigned to DPTR)
10956         f) Fixed bug in hasInc
10957
10958         * /sdcc/src/ds390/ralloc.c:
10959         a) packRegsForSupport could mess up live information (Fixed)
10960         b) packRegsDPTRuse could be incorrect for left & right shift
10961
10962         * /sdcc/src/mcs51/ralloc.c:
10963         packRegsForSupport could mess up the live information (Fixed)
10964
10965         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10966
10967         * /sdcc/src/SDCCast.c:
10968         can reverse a loop even if function call is present as long
10969         as the loop control variable is local & is not passed as parameter
10970
10971 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10972
10973         * /sdcc/ChangeLog: *** empty log message ***
10974
10975         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10976         More builtin function additions for TININative
10977
10978         * /sdcc/src/ds390/ralloc.c:
10979         Had broken the regression testsuite
10980
10981         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10982
10983         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10984         Added funcattr hasStackParms will be set for reentrant functions when there
10985         are paramteres on the stack, this helps in minimizing frame pointer generation
10986         typeFromStr can handle function pointers now
10987
10988         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10989         *** empty log message ***
10990
10991 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10992
10993         * /src/ds390/gen.c, /src/ds390/main.c:
10994         More builtin function additions for TININative
10995
10996         * /src/ds390/ralloc.c:
10997         Had broken the regression testsuite
10998
10999         * /src/SDCCast.c: Fixed a bug in dumptree
11000
11001         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11002         Added funcattr hasStackParms will be set for reentrant functions when there
11003         are paramteres on the stack, this helps in minimizing frame pointer generation
11004         typeFromStr can handle function pointers now
11005
11006         * /doc/builtins.txt, /doc/TININative.txt:
11007         *** empty log message ***
11008
11009
11010 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11011
11012         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11013         ALPHA version for -mTININative
11014
11015         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11016         updated to reflect changes in the port structure
11017
11018         * /src/port.h:
11019         added function do_assemble (similar to do_link) if non-null this function
11020         will be called to do assembly (-mTININative) requires a multi command
11021         assembly
11022         added function genAssemblerEnd will be called to generate assembler Epilogue
11023
11024         * /src/SDCCsymt.c:
11025         added _JavaNative to debug info printing
11026
11027         * /src/SDCCmain.c: added option --tini-libid
11028         added port->do_assemble function (-mTININative) has a multi command assemble
11029
11030         * /src/SDCCglue.c: Disabled "constExpr" check
11031         added port->genAssemblerEnd function
11032
11033         * /src/SDCCglobl.h: Added option --tini-libid value
11034
11035         * /src/SDCCast.h:
11036         tookout optimizeCompare from the header (has no external references)
11037
11038         * /src/SDCCast.c: made one more function "static"
11039
11040 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11041
11042         * src/z80/mappings.i: Added z80asm support.
11043
11044         * src/z80/main.c: Added z80asm support on --asm=z80asm
11045
11046         * src/z80/gen.c: Fixed asm portability issues.
11047
11048         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11049
11050         * src/SDCCglue.c (printExterns): Added global/extern split.
11051
11052 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11053
11054         * support/regression/Makefile: added test for mcs51 model large
11055
11056         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11057
11058         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11059
11060 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11061
11062         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11063
11064 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11065
11066         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11067
11068         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11069
11070 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11071
11072         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11073
11074         * support/regression/tests/simplefloat.c: Port to mcs51.
11075
11076 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11077         * support/regression/tests/bug-485362.c: Added.
11078
11079         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11080
11081         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11082
11083         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11084
11085         * src/z80/gen.c (aopDump): Added a dump function.
11086
11087 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11088         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11089
11090         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11091
11092         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11093
11094         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11095
11096         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11097
11098         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11099
11100         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11101
11102         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11103
11104         * support/regression/ports/ds390/support.c: Use tinibios.
11105
11106         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11107
11108 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11109
11110         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11111         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11112
11113         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11114
11115         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11116
11117 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11118
11119         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11120
11121         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11122         (packRegsForIYUse): Created and optimised.
11123
11124 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11125
11126         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11127 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11128
11129         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11130
11131         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11132
11133         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11134
11135 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11136
11137         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11138
11139         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11140
11141 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11142
11143         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11144
11145         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11146
11147         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11148
11149 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11150
11151         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11152         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11153         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11154
11155         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11156
11157         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11158         (genNotFloat): Added.
11159         (genUminusFloat): Added.
11160
11161         * device/lib/z80/Makefile: Added floating pt stubs.
11162
11163         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11164
11165         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11166
11167         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11168
11169 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11170
11171         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11172
11173         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11174
11175         * sdcc/support/regression/Makefile: Add port ds390.
11176
11177         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11178
11179         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11180
11181         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11182
11183         * sdcc/support/regression/ports/ds390/support.c: Added.
11184
11185         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11186
11187         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11188
11189         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11190
11191 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11192
11193         * device/include/malloc.h: Added z80 and gbz80 support.
11194
11195         * device/lib/gbz80/heap.s: Added.
11196
11197         * device/lib/z80/heap.s: Added.
11198
11199         * device/lib/malloc.c: Added z80 and gbz80 support.
11200
11201         * support/regression/tests/malloc.c (testMalloc): Added.
11202
11203         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11204
11205         * support/regression/tests/bug-478094.c: Added.
11206
11207         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11208
11209 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11210
11211         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11212
11213         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11214
11215         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11216
11217         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11218
11219         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11220
11221 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11222
11223         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11224
11225 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11226
11227         * support/regression/tests/bug-477927.c: Added.
11228
11229         * src/z80/peeph.def: Added minor rules.
11230
11231         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11232
11233         * src/z80/peeph.def: Added jump optimisation modification.
11234
11235 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11236
11237         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11238
11239 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11240
11241         * support/regression/tests/funptrs.c: Added.
11242
11243 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11244
11245         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11246
11247 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11248
11249         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11250
11251         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11252
11253         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11254         (movLeft2ResultLong): Created.
11255
11256         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11257         (joinPushes): Added.  Joins two char pushes into a word push.
11258
11259 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11260
11261         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11262
11263         * support/makebin/Makefile (install): Added creation of dest dir.
11264
11265 2001-10-24 Karl Bongers <karl AT turbobit.com>
11266
11267         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11268
11269 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11270
11271         * src/z80/ralloc.c: Turned off faulty pack for one use.
11272
11273         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11274
11275         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11276
11277 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11278
11279         * support/regression/Makefile: Improved clean
11280
11281         * support/regression/ports/gbz80/spec.mk: Added clean
11282
11283         * support/regression/ports/host/spec.mk: Added clean
11284
11285         * support/regression/ports/z80/spec.mk: Added clean
11286
11287         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11288
11289         * support/regression/ports/mcs51/timeout.c: little improvements
11290
11291 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11292
11293         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11294
11295         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11296
11297         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11298
11299 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11300
11301         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11302
11303         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11304
11305 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11306         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11307
11308         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11309
11310         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11311
11312         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11313
11314         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11315
11316         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11317
11318         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11319
11320         * support/regression/tests/longor.c: Added.
11321
11322 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11323
11324         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11325
11326         * as/mcs51/aslink.h: define PATH_MAX
11327
11328         * as/mcs51/asm.h: define PATH_MAX
11329
11330         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11331
11332         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11333
11334         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11335
11336         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11337
11338         * src/SDCCglobl.h: define PATH_MAX
11339
11340         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11341
11342         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11343
11344 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11345
11346         * src/z80/gen.c (gencjneshort): Fixed
11347
11348         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11349
11350 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11351
11352         * support/regression/tests/bug-469671.c: Added.
11353
11354         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11355
11356 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11357
11358         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11359
11360         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11361
11362 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11363
11364         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11365
11366         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11367
11368         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11369
11370         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11371
11372         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11373
11374         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11375
11376         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11377
11378 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11379
11380         * 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.
11381
11382         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11383
11384         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11385
11386 2001-10-07    <johan AT FRIJA>
11387
11388         * device/lib/gets.c (gets): fixed the return value.
11389
11390 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11391         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11392
11393         * 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.
11394
11395         * 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.
11396
11397         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11398
11399         * src/pic/gen.c: Removed Safe_strdup.
11400
11401         * configure.in: Added option to enable libgc support.
11402
11403         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11404         (bitVectUnion): Optimised.
11405         (bitVectIntersect): Optimised.
11406         (bitVectBitsInCommon): Optimised.
11407         (bitVectCplAnd): Optimised.
11408
11409         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11410
11411 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11412
11413         * src/SDCCmain.c: distinguish between assembler debug and plain options
11414
11415         * src/avr/main.c:   remove standard assembler options
11416
11417         * src/ds390/main.c: remove standard assembler options
11418
11419         * src/mcs51/main.c: remove standard assembler options
11420
11421         * src/port.h: removed "PENDING" comment
11422
11423 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11424
11425         * src/device/lib/_mulint.c  : new, with assember functions
11426
11427         * src/device/lib/_mullong.c : new, with assember functions
11428
11429         * src/device/lib/_divuint.c : with assember functions
11430
11431         * src/device/lib/_divsint.c : with assember functions
11432
11433         * src/device/lib/_divulong.c: with assember functions
11434
11435         * src/device/lib/_divslong.c: with assember functions
11436
11437         * src/device/lib/_moduint.c : with assember functions
11438
11439         * src/device/lib/_modsint.c : with assember functions
11440
11441         * src/device/lib/_modulong.c: with assember functions
11442
11443         * src/device/lib/_modslong.c: with assember functions
11444
11445         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11446
11447         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11448
11449         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11450                                       replaced _mululong.c and _mulslong.c by _mullong.c
11451
11452 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11453
11454         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11455
11456 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11457
11458         * src/SDCCglue.c: test, if win32api is available for MINGW
11459
11460 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11461
11462         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11463         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11464         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11465         * support/regression/ports/host/spec.mk: removed GENERIC
11466         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11467         * support/regression/ports/z80/spec.mk: removed GENERIC
11468
11469 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11470
11471         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11472
11473         * support/regression/tests/bug-467035.c: Created.
11474
11475 2001-10-01    <johan AT FRIJA>
11476
11477         * src/SDCC.y: fixed bug #466586 part 1
11478
11479 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11480
11481         * SDCCicode.c: z80 has no generic pointers
11482         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11483
11484 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11485
11486         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11487
11488 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11489
11490         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11491
11492         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11493
11494 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11495
11496         * configure.in: Fixed up so that ucsim is only configured once.
11497
11498         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11499
11500         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11501         (getPathDifference): As above.
11502
11503         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11504
11505         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11506
11507 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11508         * .version: Updated to 2.3.1
11509
11510         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11511         Added copyright header.
11512
11513         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11514         (assemble): Added support for macro based assembler commands.
11515         (linkEdit): Added support for macro based linker commands.
11516         (preProcess): Changed the pre-processor to use macros.
11517         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11518         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11519
11520         * device/lib/z80/crt0.s: Added module name for debugging.
11521
11522 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11523
11524         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11525
11526         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11527
11528         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11529
11530         * src/Makefile.in: Added SDCCmacro and SDCCutil
11531
11532 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11533
11534         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11535
11536 2001-09-16    <johan AT FRIJA>
11537
11538         * 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.
11539
11540 2001-09-15    <johan AT FRIJA>
11541
11542         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11543         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11544
11545 2001-09-11    <johan AT FRIJA>
11546
11547         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11548
11549 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11550
11551         * support/regression/tests/bug-460444.c: Added test case.
11552
11553         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11554         (genCast): Added justification for all of the asserts.
11555
11556 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11557
11558         * support/regression/support.c: _xdata replaced by xdata
11559
11560         * support/regression/spec.mk: removed _generic
11561
11562 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11563
11564         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11565
11566         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11567         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11568
11569         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11570
11571         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11572
11573         * support/regression/tests/bug-460010.c: Added test case.
11574
11575         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11576
11577 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11578
11579         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11580
11581         * support/regression/testfwk.c: removed workaround for bug #436344
11582
11583         * support/regression/tests/bp.c: use less memory with mcs51
11584
11585         * support/regression/tests/bug-441448.c: use less memory
11586
11587         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11588
11589         * support/regression/collate-results.py: typo
11590
11591 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11592
11593         * support/regression/tests/fetchoverlap.c: Added new test case.
11594
11595         * support/regression/tests/bp.c: Added new test case.
11596
11597         * support/regression/tests/bug-448984.c: Added new test case.
11598
11599         * support/regression/tests/pow2shifts.c: Added new test case.
11600
11601         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11602         (genlshTwo): Fixed right shift for count > 8.
11603
11604         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11605
11606 2001-09-08    <johan AT FRIJA>
11607
11608         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11609
11610 2001-09-07    <johan AT FRIJA>
11611
11612         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11613
11614         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11615
11616 2001-09-06    <johan AT FRIJA>
11617
11618         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11619         * bernhard noted me at this: "() equals to (void)" (1.38)
11620
11621 2001-09-05    <johan AT FRIJA>
11622
11623         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11624
11625 2001-09-04    <johan AT FRIJA>
11626
11627         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11628
11629
11630 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11631
11632         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11633
11634 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11635
11636         * link/z80/aslink.h: Fixed path for PATH_MAX
11637
11638 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11639
11640         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11641
11642         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11643
11644         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11645
11646         * 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.
11647
11648 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11649
11650         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11651         (genCmp): Fixed up genCmp for the GB with longs.
11652
11653         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11654
11655         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11656
11657         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11658
11659         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11660
11661 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11662
11663         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11664
11665 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11666
11667         * 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.
11668
11669         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11670
11671 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11672
11673         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11674
11675         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11676
11677 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11678
11679   * sim/ucsim/configure:    little improvement of Cygwin-detection
11680   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11681   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11682   * support/regression/tests/bug-221100.c: small changes for mcs51
11683   * support/regression/tests/bug-221168.c: small changes for mcs51
11684   * support/regression/tests/bug-227710.c: small changes for mcs51
11685   * support/regression/tests/staticinit.c: small changes for mcs51
11686   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11687   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11688   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11689
11690 $Revision$