867e71444975e9deb6ad5c93b4ec1a3806ae71c6
[fw/sdcc] / ChangeLog
1 2006-06-16 Raphael Neider <rneider AT web.de>
2
3         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
4
5 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
6
7         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
8           1208515
9         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
10
11 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
12
13         * src/port.h (struct PORT): added field gp_tags, to hold the tag
14         value of generic pointers,
15         * src/avr/main.c,
16           src/ds390/main.c,
17           src/hc08/main.c,
18           src/izt/i186.c,
19           src/izt/tlcs900h.c,
20           src/mcs51/main.c,
21           src/pic/main.c,
22           src/pic16/main.c,
23           src/xa51/main.c,
24           src/z80/main.c: PORT structure, added elements for gp_tags field,
25         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
26         fields in the PORT structure of each port,
27         * src/SDCCast.c (decorateType): allow processing of generic pointers
28         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
29         S_FIXED symbols
30
31 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
32
33         * link/z80/lkgb.c,
34         * link/z80/lkgg.c,
35         * src/pic16/gen.c,
36         * src/pic16/main.c,
37         * src/pic16/pcode.c,
38         * src/pic/main.c,
39         * src/pic/pcoderegs.c,
40         * src/SDCCicode.c,
41         * src/SDCCmain.c,
42         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
43           bug 1504689 on minGW
44
45 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
46
47         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
48
49 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
50
51         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
52
53 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
54
55         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
56           for optimization
57
58 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
59
60         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
61         to a char variable. Fixed bug #1504211
62         * device/include/pic16/adc.h,
63         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
64         and fixed bug #1364390
65
66 2006-06-10 Borut Razem <borut.razem AT siol.net>
67
68         * CVSROOT: removed the CVS left-over
69
70 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
71
72         * as/hc08/asmain.c (asexit),
73         * as/hc08/lkmain.c (lkexit),
74         * as/mcs51/asmain.c (asexit),
75         * as/mcs51/lkmain.c (lkexit),
76         * src/SDCCglue.c (DEFSETFUNC),
77         * src/SDCCmain.c (linkEdit, assemble),
78         * support/librarian/sdcclib.c (AddRel),
79           replaced unlink() by standard C remove()
80         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
81         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
82           gatherImplicitVariables): new, added to fix bug 608752,
83           (createFunction): added gatherImplicitVariables()
84         * src/SDCCast.h: added createRMW prototype
85         * src/SDCCsymt.h (struct symbol): added infertype
86         * support/regression/tests/bug608752.c: new, added
87
88 2006-06-10 Raphael Neider <rneider AT web.de>
89
90         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
91           multibyte dummy reads (fixes #1503234)
92
93 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
94
95         * device/include/mcs51/compiler.h: new, added header file to enable
96           creating common sfr definition header files for different compilers
97
98 2006-06-05 Raphael Neider <rneider AT web.de>
99
100         * src/pic16/{pcode.h,genarith.c}:
101           introduced pCodeOp combining any two pCodeOps (previously only
102           two register operands could be combined), removed pcop2 from
103           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
104         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
105         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
106           rewritten to use new PO_TWO_OPS
107         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
108         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
109           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
110           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
111           (pic16_get_op): embraced return arg to allow #define return(x),
112             added new case for combined opcodes
113           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
114           (pic16_pCode2str,pic16_getRegFrompCodeOp,
115            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
116
117 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
118
119         * src/SDCCval.c (checkConstantRange): added
120         * src/SDCCval.h: added checkConstantRange
121         * support/Util/SDCCerr.c,
122         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
123         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
124         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
125         * src/SDCCast.c (decorateType): added checkConstantRange,
126         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
127         can be emitted with the correct always true/false warning,
128         added optimization for double '!';
129         result of decorateType() must be assigned back to the tree, because
130         decorateType() can change the tree
131         * src/SDCCicode.c (geniCodeLogic),
132         (geniCodeAssign): replaced new checkConstantRange, added warnings,
133         (checkConstantRange): removed, it was only a fragment which never
134         emitted a warning
135         * src/SDCCsymt.c (computeType): fixed promotion for
136         "-1 < (unsigned bit) b"
137         * src/pic/ralloc.c (packRegsForAssign),
138         * src/pic16/ralloc.c (packRegsForAssign),
139         * src/hc08/ralloc.c (packRegsForAssign),
140         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
141         from mcs51
142         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
143         * support/regression/tests/constantRange.c: added
144         * support/valdiag/tests/constantRange.c: added
145         * support/valdiag/valdiag.py: added -DPORT_HOST=1
146
147 2006-06-02 Borut Razem <borut.razem AT siol.net>
148
149         * support/regression/ports/pic16/support.c: increase stack size
150           to 255 bytes
151         * support/regression/Makefile.in: sort tests by name so that the
152           resutlts can be compared on different machines / platforms
153
154 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
155
156         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
157         * src/ds390/gen.c (emitLabel): new, added,
158           (genDjnz): fixed stack overflow bug,
159           (throughout): cosmetic changes to sync with mcs51/gen.c,
160           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
161         * src/mcs51/gen.c (genEndFunction): small optimization,
162           (throughout): cosmetic changes to sync with ds390/gen.c
163
164 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
165
166         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
167           (_print_format): fixed printing pointers
168         * src/mcs51/gen.c (emitLabel, movb): new, added,
169           (genAssign): small optimization,
170           (genDjnz): fixed stack overflow bug,
171           (throughout): replaced sprintf with SNPRINTF,
172           replaced mcs51_regWithIdx with REG_WITH_INDEX,
173           replaced emitcode("mov", "b,...") with MOVB(...),
174           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
175           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
176         * src/mcs51/peeph.def: added rules 140 and 264
177         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
178           so they may get optimized into registers
179
180 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
181
182         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
183           immediately when encountered,
184           (printUsage): always use stderr even on windows
185
186 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
187
188         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
189         (processParms): fixed bug #1247551
190         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
191         parseCmdLine, main): print '--version' to stdout,
192         print 'help' to stdout if --help is given,
193         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
194         arguments are given; fixed --help
195
196 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
197
198         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
199         * support/regression/tests/bug-1493710.c: added
200
201 2006-05-27 Borut Razem <borut.razem AT siol.net>
202
203         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
204           static instead auto
205         * support/regression/ports/pic16/support.c: increase stack size
206           from default 64 bytes to 128 bytes
207         * support/regression/tests/staticinit.c,
208           support/regression/tests/float.c: regression tests fully enabled
209           for pic16 port by putting the initialized data arrays into the code
210           section
211         * support/regression/ports/pic16/spec.mk: don't link default libraries.
212           This was changed by mistake in the previous version.
213
214 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
215
216         * src/pic16/gen.c (genFunction, genEndFunction): some
217         beautifications, fixed bug with falsely restoring FSR2 in large
218         stack model, thanks to Beau E. Cox for reporting the bug
219
220 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
221
222         * debugger/mcs51/break.c,
223         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
224           use %p to print pointers, made address variables unsigned
225         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
226         * debugger/mcs51/symtab.c (parseSymbol): must return something
227         * src/mcs51/gen.c (aopForSym): small optimization,
228            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
229           (freeAsmop): added missing break,
230           (aopPut): removed parameter bvolatile, determine it inside the function,
231           (saveRegisters, unsaveRegisters): small optimization,
232           (genIpush): removed pointless check,
233           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
234           replaced sprintf with SNPRINTF,
235           replaced strcpy with strncpyz,
236           updated aopPut calls,
237           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
238         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
239
240 2006-05-24 Borut Razem <borut.razem AT siol.net>
241
242         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
243           modification of test for the pic16 port, put the array to the code
244           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
245
246 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
247
248         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
249         * support/Util/pstdint.h: added
250
251 2006-05-22 Borut Razem <borut.razem AT siol.net>
252
253         * src/regression/Makefile: removed bool2.c test, added -q linker option
254         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
255           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
256           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
257           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
258           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
259           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
260           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
261           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
262           define SUPPORT_BIT_TYPES 0, removed unused bit variables
263
264 2006-05-22 Raphael Neider <rneider AT web.de>
265
266         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
267           bug #1492360 (problematic due to generic pointers, see code)
268
269 2006-05-22 Borut Razem <borut.razem AT siol.net>
270
271         * support/regression/ports/pic16/specs.mk: removed stack size linker
272           directive
273         * support/regression/tests/array.c,
274           support/regression/tests/bitopcse.c,
275           support/regression/tests/bug-908454.c,
276           support/regression/tests/malloc.c: modified for pic16 regression test
277         * support/regression/tests/bitfields.c:
278           pic16 - excluded bitfileds of size > 8
279         * support/regression/tests/bp.c: pic16 - reduced data size
280         * support/regression/tests/bug-221100.c: pic16 - reduced data size
281         * support/regression/tests/bug-460010.c:
282           pic16 - used the absolute address the fits in memory
283         * support/regression/tests/bug-716242.c:
284           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
285         * support/regression/tests/float.c:
286           pic16 - excluded - data size too big
287         * support/regression/tests/onebyte.c:
288           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
289         * support/regression/tests/shifts.c:
290           pic16 - function names probably have to differ in first X characters
291           (gpasm limitation?)
292         * support/regression/tests/staticinit.c:
293           pic16 - excluded some tests due error: no target memory available for
294           section ".idata"
295
296 2006-05-22 Borut Razem <borut.razem AT siol.net>
297
298         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
299           second try. Thanks Stas Sergeev once more.
300
301 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
302
303         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
304           (genLeftShift, genRightShift): fixed bug 1491627
305         * src/hc08/peeph.def (rules 7, 8.x): added
306         * support/regression/tests/shifts.c (ShiftLeftByParam,
307           ShiftRightByParam, testShiftByParam): added to test variable shifting
308
309 2006-05-20 Raphael Neider <rneider AT web.de>
310
311         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
312         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
313           (allocReg): add only new registers to dynAllocRegs,
314           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
315             #1489055, #1445850, and probably #1483693
316
317 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
318
319         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
320         bug in for-loop that didn't emit the last of CONFIG and ID registers
321
322 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
323
324         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
325           with offset
326         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
327           1489016, 1434401 and 1490124
328         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
329           1489016, 1434401 and 1490124
330
331 2006-05-17 Borut Razem <borut.razem AT siol.net>
332
333         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
334           thanks Stas Sergeev
335
336 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
337
338         * device/include/mcs51/P89c51RD2.h,
339         * device/include/mcs51/P89LPC901.h,
340         * device/include/mcs51/P89LPC922.h,
341         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
342
343 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
344
345         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
346         to fix missing stack pragma in compiled binary object file,
347
348 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
349
350         * support/packihx/configure.in,
351         * support/packihx/configure: removed warning, autoconf >= 2.5x can
352         determine sizeof basic types even while cross compiling
353
354 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
355
356         * src/avr/gen.c (aopop),
357         * src/ds390/gen.c (aopOp),
358         * src/hc08/gen.c (aopOp),
359         * src/mcs51/gen.c (aopop),
360         * src/pic16/gen.c (pic16_aopOp),
361         * src/pic/gen.c (aopOp),
362         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
363         if size of operand is smaller than spill location
364
365 2006-05-12 Borut Razem <borut.razem AT siol.net>
366
367         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
368           have to have CR/LF line endings even if they are checked out on *nix
369           or on WIN32 in cygwin binmode
370
371 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
372
373         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
374         * device/include/ds80c390.h: added sfr16 definitions
375         * src/ds390/gen.c,
376         * src/ds390/gen.h,
377         * src/ds390/main.c,
378         * src/ds390/ralloc.c,
379         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
380           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
381           bit returning functions
382         * support/regression/tests/sfr16.c: enabled test on ds390
383
384 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
385
386         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
387         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
388
389 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
390
391         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
392         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
393           (cl_address_space constructor): removed expensive initialization,
394           (cl_address_space::get_cell): extended for late initialization,
395           (cl_address_space::*): use late initialization,
396           (cl_address_decoder::activate): removed expensive initialization,
397           This reduced regression test running time by 25%
398
399 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
400
401         * packihx/,
402         * configure.in,
403         * configure,
404         * sdcc.dsw,
405         * Makefile.bcc,
406         * Makefile.in,
407         * support/packihx/Makefile.in,
408         * support/packihx/clean.mk,
409         * support/packihx/Makefile.bcc,
410         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
411
412 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
413
414         * src/SDCCval.c (valNot): fix for regression test failure
415           of not.c on big endian hosts
416
417 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
418
419         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
420
421 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
422
423         * device/lib/mcs51/Makefile.in: changed string comparison operator
424           to = for POSIX compliance; == is bash extension
425
426 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
427
428         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
429           kosmonaut_pirx
430
431 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
432
433         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
434         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
435         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
436         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
437         bug report #1478657,
438
439 2006-05-05 Borut Razem <borut.razem AT siol.net>
440
441         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
442           making the html
443
444 2006-05-02 Borut Razem <borut.razem AT siol.net>
445
446         * doc/Makefile.in: removed *.ind dependency since there is no rule to
447           create *.ind, which made make to fail if invoked with -j 2
448
449 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
450
451         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
452           Hubert Sack for patch 1479782
453
454 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
455
456         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
457
458 2006-05-01 Raphael Neider <rneider AT web.de>
459
460         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
461           (create_pic): store only prefix-free device name,
462           (init_pic): check for device names with "16" prefix,
463           (list_valid_pics),
464         * src/pic/device.h (struct PIC_device),
465         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
466             stored device name,
467         * device/include/pic/pic12f{635,675,629,683}.h,
468         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
469         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
470         * device/include/pic/pic16f505.h,
471         * device/lib/pic/libdev/pic16f505.c: removed
472         * device/include/pic/pic14devices.txt: added support for pic12f
473             devices, removed unsupported non 16-bit devices
474             [above changes provided by patch from Zik Saleeba]
475         * src/pic/*, src/pic16/*, device/include/pic16/*,
476           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
477
478 2006-05-01 Borut Razem <borut.razem AT siol.net>
479
480         * configure.in, configure, doc/Makefile.in:
481           sync with nightly build makefile - latex, dvipdf and dvips
482           not needed any more
483
484 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
485
486         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
487         in the library source
488
489 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
490
491         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
492
493 2006-04-28 Raphael Neider <rneider AT web.de>
494
495         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
496         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
497           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
498         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
499
500 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
501
502         * device/lib/pic/libdev/Makefile.in,
503         * device/lib/hc08/Makefile.in,
504         * device/lib/gbz80/Makefile.in,
505         * device/lib/z80/Makefile.in,
506         * device/lib/ds390/Makefile.in,
507         * device/lib/ds400/Makefile.in: added srcdir to include search path,
508         thanks to Borut for the bug report
509         * configure.in,
510         * configure: always create doc/Makefile independent from --enable-doc
511         * Makefile.in: always install from directory doc independent from
512         --enable-doc
513         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
514         removed
515         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
516         * doc/Makefile.in: install *.txt if present
517         * device/include/Makefile.in (install): added installation of pic/*.inc
518         and pic/*.txt files again, they were erroneously removed
519
520 2006-04-28 Raphael Neider <rneider AT web.de>
521
522         * src/pic/{gen.c,main.h,pcode.c},
523         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
524             concerning signedness with casts
525
526 2006-04-28 Raphael Neider <rneider AT web.de>
527
528         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
529             definition of an interrupt handler,
530         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
531             interrupt handler stuff from picglue() to separate routine,
532           (picglue): enabled definition of intr handlers in files w/o main()
533
534 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
535
536         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
537           compilation with MSVC 2005 Express Edition (VC8)
538
539 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
540
541         * device/lib/Makefile: fixed build of gbz80 lib
542
543 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
544
545         * support/regression/tests/bug-460010.c,
546         * support/regression/tests/bug-524691.c,
547         * support/regression/tests/bug-716242.c: removed conditional defines
548           that are already in testfwk.h
549
550 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
551
552         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
553           (AccAXRsh1): added, shift right by 1,
554           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
555            AccAXLrl1
556         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
557
558 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
559
560         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
561         remove cast to same type
562         * src/SDCCast.c (decorateType): fix for RFE 1475742,
563         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
564         * as/z80/Makefile,
565         * link/z80/Makefile: removed, they have moved to
566         Makefile.in files
567         * configure,
568         * configure.in: replaced duplicate message about ucsim by missing sdcpp
569         * install-sh: fix bug #1204398 by setting umask 0022
570         * device/lib/Makefile: separate build of z80 and gbz80 lib
571
572 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
573
574         Enabled VPATH feature: changed nearly all Makefiles (149 files).
575         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
576
577         One basic decision: e.g. src/clean.mk includes further files. In order
578         to make this work there are two solutions:
579         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
580           run configure on them. This way they can use
581           'include $(srcdir)/port-clean.mk'
582         - always include clean.mk by the Makefile at the same level. To avoid
583           that `make clean` tries to include and build Makefile.dep the
584           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
585           implemented, because now even `make uninstall` doesn't create
586           Makefile.in. clean.mk could be eliminated by pasting it in
587           Makefile.in.
588
589         * debugger/mcs51/Makefile.in: build own objects from library sources
590         (SLIB, SDCC) in current directory
591
592         * configure, configure.in: renamed --disable-device-lib-build in
593         --disable-device-lib; added --enable-doc, the required tools are
594         searched by configure; added result message; the toolchain for the
595         belonging ports are now only built, if the port is enabled.
596
597         * support/regression/*: all output is written in directory gen, because
598         the fwk and ports directories don't livet in the build tree using vpath
599
600         * doc/sdccman.lyx: renamed --disable-device-lib-build to
601         --disable-device-lib, added --enable-doc, added section VPATH
602
603         * sim/ucsim/configure.in,
604         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
605         z80 are enabled by default
606
607 2006-04-24 Raphael Neider <rneider AT web.de>
608
609         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
610             to config word, "pic14_"-prefixed some extern functions
611           (pic14_emitConfigWord): emit __config directive(s) if assignment to
612             config word has been found
613         * src/pic/device.h: added prototypes
614         * src/pic/pcode.c: added "pic14_"-prefix where needed
615         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
616             fixup
617         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
618             words,
619           (pic14emitRegularMap): ignore config words,
620           (pic14createInterruptVect): moved generating __config directives away
621           (picglue): have __config directives emitted
622
623 2006-04-24 Borut Razem <borut.razem AT siol.net>
624
625         * doc/Makefile: sync with nightly build makefile
626
627 2006-04-24 Raphael Neider <rneider AT web.de>
628
629         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
630             registers that have not been assigned proper liveranges,
631             fixes #1469504 and #1474602,
632           (pCodeRegOptimizeRegUsage): fixed typo in comment
633
634 2006-04-24 Borut Razem <borut.razem AT siol.net>
635
636         * device/examples/main8051.c: deleted - it was removed from CVS
637           24.mar.2000 and after that modified 18.feb.2001, so it reappered
638           after the transition to Subversion
639         * src/SDCCalloc.h: deleted - it was removed  from CVS
640           3.feb.2001 and after that modified 18.feb.2001, so it reappered
641           after the transition to Subversion
642         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
643           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
644           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
645           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
646
647 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
648
649         * as/asx8051.dsp: added mcs51/strcmpi.h
650         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
651         * as/hc08/aslink.h: updated lnksect prototype
652         * as/hc08/asm.h,
653         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
654         * as/hc08/asmain.c,
655         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
656           (newdot): handle A_ABS
657         * as/hc08/asout.c,
658         * as/mcs51/asout.c (outarea): output address
659         * as/hc08/lkaomf51.c,
660         * as/mcs51/lkaomf51.c: disabled unused array UsageType
661         * as/hc08/m08pst.c,
662         * as/mcs51/i51pst.c,
663         * as/z80/z80pst.c: "ABS" is not A_OVR
664         * as/hc08/lkarea.c (newarea): read a_addr,
665           (lnkarea): added codemap array, sort absolute areas to the front,
666            combine all GSINITx/GSFINAL,
667           (find_empty_space, allocate_space): new functions,
668           (lnksect): return next address, handle absolute sections
669         * as/mcs51/lkarea.c (newarea): read a_addr,
670           lnksect2 prototype changed,
671           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
672           (find_empty_space, allocate_space): new, factored out of lnksect2,
673           (lnksect2): return next address, handle absolute sections
674         * as/hc08/lkhead.c,
675         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
676         * as/hc08/lklibr.c (addfile, fndsym),
677         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
678           index out of range and detect both '\' and '/'
679         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
680         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
681           regression tests (ds390 cannot return bool yet)
682         * doc/sdccman.lyx: changed version number, document changed --no-peep,
683           document critical interrupts on z80, document changed SDCC define
684         * src/asm.c (_asxxxx_mapping): fixed .org directive,
685           (_a390_mapping): added .org directive
686         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
687           (genMultOneByte): fixed warnings
688         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
689           ones
690         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
691         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
692           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
693         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
694         * src/pic16/main.c: removed newReg prototype
695         * src/pic16/pcode.c,
696         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
697           warnings
698         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
699           ones
700         * src/pic16/ralloc.c
701         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
702           to fix warnings
703         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
704           from short to PIC_OPTYPE
705         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
706         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
707           optype from short to PIC_OPTYPE
708         * src/port.h: made int_size unsigned to fix warnings
709         * src/SDCC.y: fixed warning on MSVC
710         * src/SDCCicode.c (getArraySizePtr): return unsigned int
711         * src/SDCCopt.c (convertToFcall): fixed warnings
712         * src/SDCCsymt.h: removed double prototype for genSymName
713         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
714           offset int to fix warnings
715
716 2006-04-22 Borut Razem <borut.razem AT siol.net>
717
718         * doc/sdccman.lyx, */Makefile, */Makefile.in:
719           references to CVS replaced with Subversion
720
721 2006-04-21 Borut Razem <borut.razem AT siol.net>
722
723         * doc/sdccman.lyx, */Makefile, */Makefile.in:
724           references to CVS replaced with Subversion
725
726 2006-04-19 Borut Razem <borut.razem AT siol.net>
727
728         * src/version.awk: adapted for svn
729         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
730           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
731           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
732           /binutils-avr/etc/*.vi, *.jin: removed all properties
733           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
734
735 2006-04-19 Borut Razem <borut.razem AT siol.net>
736
737         * CVS to Subversion migration completed
738
739 2006-04-18 Borut Razem <borut.razem AT siol.net>
740
741         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
742           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
743
744 2006-04-17 Borut Razem <borut.razem AT siol.net>
745
746         * device/include/Makefile.in: added pic/*.inc to the installation
747
748 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
749
750         * support/regression/collate-results.py: fixed output in case of
751         a valdiag error
752         * support/regression/generate-cases.py: fixed splitting of pathnames
753         with dots
754         * as/hc08/lklibr.c (addfile),
755         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
756
757 2006-04-11 Raphael Neider <rneider AT web.de>
758
759         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
760         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
761         * src/pic16/pcode.c (assignValnums): fixed #1460578
762
763 2006-04-11 Raphael Neider <rneider AT web.de>
764
765         * device/lib/pic/libdev/*.c,
766         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
767           fixes #1468739, enables compilation in --std-c99 mode
768         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
769
770 2006-04-11 Raphael Neider <rneider AT web.de>
771
772         * src/pic/device.c (find_device): removed debug output
773           (list_valid_pics): enabled verbose listing of supported devices
774         * device/include/stdbool.h: define bool as char for pic14/16 as well
775
776 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
777
778         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
779
780 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
781
782         * .version: bumped version to 2.5.6
783         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
784
785 2006-04-06 Raphael Neider <rneider AT web.de>
786
787         * .version: bumped version to 2.5.6 (pic14 ABI changed)
788         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
789         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
790           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
791             pic14_constructAbsMap
792           (pic14printPublics): declare absolute global symbols as global
793           (pic14createInterruptVect),
794         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
795           (newReg): assume new registers unused, use correct name in
796             hashtable (reg->name instead of name), more debugLog output
797         * src/pic/device.h (PIC_device): added fields for verbose output
798         * src/pic/device.c: moved device definition to pic14devices.txt,
799             added routines for runtime parsing of pic14devices.txt,
800             added support for second config word
801         * src/pic/main.c (_process_pragma): removed #pragma maxram,
802           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
803           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
804           (_pic14_parseOptions): moved pCodeInitRegisters here
805           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
806         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
807           (pCodeInitRegisters): rewrapped comments, perpared new approach to
808             handling the pseudo stack
809         * device/lib/Makefile.in: ignore failures in objects-pic16,
810         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
811         * device/lib/pic/NEWS: document new dependency on picXXX.lib
812         * device/lib/pic/Makefile.subdir,
813         * device/lib/pic16/Makefile.subdir: improved clean rules
814         * device/lib/pic/libdev/: NEW, pic14 device libraries
815         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
816         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
817         * device/include/Makefile.in: create subdir and install pic14 headers
818         * device/include/pic/p16f_common.inc: removed unused declarations
819         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
820             PICs from inc2h.pl v1.6,
821             replaced BIT_AT macros with struct declarations
822         * device/include/pic/pic14devices.txt: definition of supported devices,
823             all above improvements contributed by Zik Saleeba, thanks
824         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
825         * support/scripts/sdcc.nsi: also install pic14 device libraries and
826             headers
827
828 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
829
830         * device/include/mcs51/c8051f410.h: added interrupt numbers,
831         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
832           thanks to Charles Olds
833
834 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
835
836         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
837
838 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
839
840         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
841         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
842         * support/regression/bug1464657.c: added, new test
843
844 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
845
846         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
847           version number
848
849 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
850
851         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
852           --no-peep and --peep-file <file> are used don't use default rules but
853           do use the <file>
854
855 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
856
857         * src/mcs51/gen.c (genCall): fixed bug 1457608
858
859 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
860
861         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
862         changes seem to cause (trigger?) problems with the build system.
863
864 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
865
866         * src/SDCCpeeph.c (operandsLiteral): new, added,
867           (callFuncByName): inserted operandsLiteral
868         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
869
870 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
871
872         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
873         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
874
875 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
876
877         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
878           implemented patch 1120823 Thanks to Willy De la Court (normal
879           interrupts need an interrupt number now if they are made critical),
880           and enabled nesting of critical functions though not for gbz80
881           (genCritical, genEndCritical): added functions
882           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
883         * src/z80/mappings.i: added "ei" to all mappings
884
885 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
886
887         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
888         submitted by the Debian SDCC maintainer Aurelien Jarno:
889         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
890         archive with gcc 4.1 on mips and wrote the patch"
891
892 2006-03-16 Raphael Neider <rneider AT web.de>
893
894         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
895           the left operand is shorter than the result (c* = lit-c* + int),
896           fixes bug #1450796
897         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
898           OP_SYMBOL
899
900 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
901
902         * src/.version: increased version number to 2.5.5
903         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
904         linking is done manually in pic16 port's _linkEdit,
905         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
906         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
907         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
908         allocate asmop as AOP_ACC,
909         (aopForRemat): added parameter 'bool result' in function declaration,
910         (pic16_aopGet): return AOP_ACC when accessing WREG,
911         (pic16_popGetTempReg): minor modification,
912         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
913         'pic16_allocWithIdx',
914         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
915         calling function in absolute addresses,
916         (genAssign): take into account AOP_ACC asmop,
917         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
918         * src/pic16/pcoderegs.c: some debug functions and lines added,
919         * src/pic16/ralloc.c (decodeRegType): added but commented out,
920         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
921         register too,
922         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
923         call to allocReg, not by manually allocating a new one,
924         (pic16_assignRegisters): now before going through the register
925         allocating functions mark all registers as free. This eliminates some
926         side effects resulting from peephole parser done earlier in the backbone
927
928 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
929
930         * src/SDCCicode.c (geniCodeLogic),
931         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
932
933 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
934
935         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
936           (genSend): bugfix, do not allocate and free twice,
937           (shiftRLong): handle partially overlapping aops
938         * support/regression/tests/bitopcse.c: fixed warning redefined idata
939
940 2006-03-08 Borut Razem <borut.razem AT siol.net>
941
942         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
943           for pic16
944
945 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
946
947         * support/regression/tests/bug1409955.c: new, added
948         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
949         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
950           (aopForSym, aopOp): increment asmop.allocated if reused,
951           (freeAsmop): decrement asmop.allocated and check for zero instead of
952           using asmop.freed,
953           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
954           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
955            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
956            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
957            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
958            genSignedRightShift, genRightShift, genDataPointerGet,
959            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
960            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
961             in reverse order from allocation,
962           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
963             added swappedLR to keep track
964         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
965           pdata & code for GCC, z80, gbz80 & hc08
966         * support/regression/tests/zeropad.c: moved defines to testfwk.h
967
968 2006-03-08 Raphael Neider <rneider AT web.de>
969
970         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
971
972 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
973
974         * device/include/mcs51/c8051f410.h: new SiLabs mcu
975         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
976         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
977
978 2006-03-06 Borut Razem <borut.razem AT siol.net>
979
980         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
981           made the linker quiet
982
983 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
984
985         * src/pic16/gen.c (genPcall): fixed bug #1443644
986         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
987         which dumps before the function entry point a data byte which represents
988         the number of the local variables used by the specified function, added
989         'xinst' for initial support for Extended Instruction Support,
990         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
991         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
992         port->fun_prefix anymore (may change later),
993         (genFunction, genEndFunction): do not store/restore local registers for
994         _main (this should take care the --main-return command line option in
995         the future),
996         (genOr): removed some legacy pic-port instructions,
997         * src/pic16/genarith.c (genAddLit): re-enabled old code because
998         performing operations with SFR's causes data to be written more than
999         once to each SFR. Perhaps SFRs should be handled in special cases...
1000         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1001         pcode.h
1002         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1003         into account for stack starting position,
1004         (struct OPTIONS pic16_optionsTable): added command line argument
1005         --extended or -y for Extended Instruction Support,
1006         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1007         (deassignLRs): *** perhaps the most important change, old 'for' code
1008         (commented out for reference), didn't account for some registers which
1009         were left marked 'not free' after a pointer operation. The change
1010         reduces register usage a lot in some cases
1011
1012 2006-03-04 Borut Razem <borut.razem AT siol.net>
1013
1014         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1015           _clean
1016         * support/regression/tests/bug-524697.c: decreased array size for
1017           mcs51 to fit into the internal RAM
1018         * support/regression/Makefile.in: a little bit more verbose
1019
1020 2006-03-03 Borut Razem <borut.razem AT siol.net>
1021
1022         * support/regression/fwk/lib/testfwk.c,
1023           support/regression/fwk/include/testfwk.h: introduced function
1024           _prints(), nonrecursive _printn(), call _initEmu() from main()
1025         * support/regression/ports/gbz80/support.asm,
1026           support/regression/ports/ucz80/support.asm,
1027           support/regression/ports/z80/support.asm,
1028           support/regression/ports/ds390/support.c,
1029           support/regression/ports/hc08/support.c,
1030           support/regression/ports/host/support.c,
1031           support/regression/ports/mcs51/support.c,
1032           support/regression/ports/xa51/support.c: added empty _initEmu()
1033           function
1034         * support/regression/ports/pic16/gpsim.cmd,
1035           support/regression/ports/pic16/spec.mk,
1036           support/regression/ports/pic16/support.c,
1037           support/regression/Makefile.in: added pic16 regression test
1038
1039 2006-03-01 Raphael Neider <rneider AT web.de>
1040
1041         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1042           genConstPointerGet): use safe way of generating MOVFF to cover
1043             literals as well as registers, fixes bug #1440527
1044         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1045             dereference
1046           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1047             more correctly, fixes bug #1232186
1048           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1049         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1050             gplink guess the correct processor in more cases, applied patch
1051             from Till Riedel attached to and fixing bug #1436552
1052
1053 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1054
1055         * support/regression/tests/array.c: added, contains check for #1434401
1056         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1057
1058 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1059
1060         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1061         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1062         * device/include/mcs51/c8051f326.h,
1063         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1064         * device/include/mcs51/c8051f000.h,
1065         * device/include/mcs51/c8051f018.h,
1066         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1067           PCON_IDLE,PCON_STOP and added sfr16 definitions
1068
1069 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1070
1071         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1072           genGetWord): fixed bug 1409955
1073
1074 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1075
1076         * device/include/hc08/mc68hc908gp32.h,
1077         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1078
1079 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1080
1081         * src/SDCCast.c (constExprValue): return NULL if not a value
1082         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1083         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1084         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1085
1086 2006-02-13 Borut Razem <borut.razem AT siol.net>
1087
1088         * src/regression/ptrarg.c: added, fails due to bug #1430967
1089         * src/regression/Makefile: ptrarg.c added, ...
1090
1091 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1092
1093         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1094         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1095
1096 2006-02-11 Borut Razem <borut.razem AT siol.net>
1097
1098         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1099           print "Processor: xxx" message to stdout only if --verbose
1100
1101 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1102
1103         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1104         * support/regression/tests/bug1426356.c: added
1105         * support/regression/tests/bitfields.c: removed 2 tests
1106
1107 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1108
1109         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1110         * device/include/mcs51/c8051f330.h,
1111         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1112           PCON_IDLE,PCON_STOP and added sfr16 definitions
1113         * device/lib/_divsint.c,
1114         * device/lib/_divuint.c,
1115         * device/lib/_divulong.c,
1116         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1117           register bank bug for small stackauto
1118
1119 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1120
1121         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1122
1123 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1124
1125         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1126         * all.dsp: corrected several bin paths
1127         * device/include/mcs51/c8051f120.h,
1128         * device/include/mcs51/c8051f300.h,
1129         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1130           to PCON_IDLE,PCON_STOP
1131         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1132         * device/lib/printf_large.c (output_float): fixed bug 1388703
1133         * support/regression/tests/bug1057979.c: added test for bug 1388703
1134
1135 2006-02-08 Raphael Neider <rneider AT web.de>
1136
1137         * src/pic/pcode.c (pciTRIS): fixed typo,
1138           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1139           (LinkFlow): fixed handling of flows that end in a call,
1140           (ReuseReg): perform safety check earlier
1141         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1142             to work with flows at the beginning of a pBlock,
1143             fixes #1426557 (Symbol not previously defined),
1144           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1145             usage information
1146           (RemoveUnusedRegisters): update register usage info
1147         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1148             created, reuse existing ones instead
1149         * src/pic/gen.c (genPcall): fixed #1424719
1150
1151 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1152
1153         * link/z80/lkmain.c,
1154         * link/z80/lklex.c,
1155         * link/z80/lkdata.c,
1156         * link/z80/aslink.h: fixed build on current cygwin:
1157         replaced getline() by lk_getline()
1158
1159 2006-02-01 Borut Razem <borut.razem AT siol.net>
1160
1161         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1162           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1163           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1164           src/regression/bool1.c, src/regression/bool2.c,
1165           src/regression/bool3.c, src/regression/call1.c,
1166           src/regression/compare.c, src/regression/compare10.c,
1167           src/regression/compare2.c, src/regression/compare3.c,
1168           src/regression/compare4.c, src/regression/compare5.c,
1169           src/regression/compare6.c, src/regression/compare7.c,
1170           src/regression/compare8.c, src/regression/compare9.c,
1171           src/regression/configword.c, src/regression/for.c,
1172           src/regression/inline.c, src/regression/mult1.c,
1173           src/regression/nestfor.c, src/regression/or1.c,
1174           src/regression/pointer1.c, src/regression/ptrfunc.c,
1175           src/regression/rotate1.c, src/regression/rotate2.c,
1176           src/regression/rotate3.c, src/regression/rotate4.c,
1177           src/regression/rotate5.c, src/regression/rotate6.c,
1178           src/regression/rotate7.c, src/regression/string1.c,
1179           src/regression/struct1.c, src/regression/sub.c,
1180           src/regression/sub2.c, src/regression/switch1.c,
1181           src/regression/while.c, src/regression/xor.c,
1182           src/regression/create_stc, src/regression/simulate,
1183           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1184           regression tests
1185         * src/regression/gpsim_assert.h: added
1186
1187 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1188
1189         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1190         ((void (code *) (void)) 0) ();
1191         * as/hc08/aslex.c,
1192         * as/hc08/aslink.h,
1193         * as/hc08/asm.h,
1194         * as/hc08/asmain.c,
1195         * as/hc08/lkdata.c,
1196         * as/hc08/lklex.c,
1197         * as/hc08/lkmain.c,
1198         * as/mcs51/aslex.c,
1199         * as/mcs51/aslink.h,
1200         * as/mcs51/asm.h,
1201         * as/mcs51/asmain.c,
1202         * as/mcs51/lkdata.c,
1203         * as/mcs51/lklex.c,
1204         * as/mcs51/lkmain.c,
1205         * as/z80/aslex.c,
1206         * as/z80/asm.h,
1207         * as/z80/asmain.c: fixed build on current cygwin:
1208         replaced getline() by as_getline()
1209
1210 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1211
1212         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1213         declarator in the symbol chain
1214         * src/SDCCsymt.h,
1215         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1216         parameter list for function pointers
1217         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1218         * support/regression/tests/bug-716242.c: added
1219
1220 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1221
1222         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1223         offset if possible
1224         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1225
1226 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1227
1228         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1229         inifinitely recurseable, added static
1230         * support/regression/tests/bug-1408066.c: added
1231
1232 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1233
1234         * src/SDCCicode.h,
1235         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1236         renamed, added possibility to create "postLoopLbl"-labels
1237         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1238         newiTempLoopHeaderLabel
1239         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1240         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1241         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1242         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1243         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1244         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1245         (basicInduction): fixed bug #136564, made static,
1246         (loopInduction): changed parameter of basicInduction, made static,
1247         (addPostLoopBlock): added
1248         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1249         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1250         findLoopEndSeq
1251         * support/regression/tests/bug-136564.c: added
1252         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1253         --std-sdcc99 to LIBSDCCFLAGS
1254
1255 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1256
1257         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1258         while loop
1259         * support/regression/tests/bug-1406131.c: added
1260
1261 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1262
1263         * src/SDCCast.c (decorateType): fix promotion of unary minus
1264         * src/SDCCsymt.c (computeType): beautified
1265         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1266         (valUnaryPM, valComplement): fix sign and promotion,
1267         (valNot): ANSI: result type is int (SDCC: unsigned char)
1268         * support/regression/tests/uminus.c: speedup by removing superflous
1269         test case 'int'
1270         * support/regression/tests/onebyte.c: added promotion and signedness
1271         tests for unary minus
1272         * support/regressions/tests/bug-477927.c: disable warning about
1273         uninitialized variables
1274         * support/regression/tests/not.c: added
1275
1276 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1277
1278         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1279         * src/mcs51/gen.c (gen51Code): show final register usage after
1280         fillGaps in asm with --i-code-in-asm
1281         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1282         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1283         incUsed, rliveClear, adjustIChain): made static,
1284         (setFromRange): excluded because it's unused,
1285         (findPrevUseSym, markWholeLoop): added,
1286         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1287         through all branches of predecessors enables sdcc to emit the warning
1288         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1289         (rlivePoint): made static, added parameter emitWarnings which is only
1290         true during the first run out of two,
1291         (findRecursiveSucc, findRecursivePred): removed,
1292         (computeLiveRanges): made static, added parameter emitWarnings,
1293         (dumpIcRlive): added for debugging only
1294         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1295         removed prototype of setFromRange()
1296         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1297         in call of computeLiveRanges()
1298         * support/regression/tests/bug-895992.c: added
1299         * support/regression/tests/bug-971834.c: added
1300         * support/valdiag/tests/bug-895992.c: added
1301         * support/valdiag/tests/bug-971834.c: added
1302
1303 2005-12-18 Raphael Neider <rneider AT web.de>
1304
1305         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1306           (genUnpackBits): improved code for direct operands,
1307           (genPackBits): improved code for literal assignment to bitfields
1308             and for direct destination operands (no FSR indirection),
1309             prevented redundant AND, fixes #1362800,
1310           (AccLsh): added parameter to disable masking of the result
1311         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1312           skip instructions with side-effects (like incfsz),
1313           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1314         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1315         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1316           fixes #1375263
1317
1318 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1319
1320         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1321         volatile variables as spill location
1322
1323 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1324
1325         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1326         replacing literals
1327         * support/regression/tests/bug-1376320.c: added
1328
1329 2005-12-08 Raphael Neider <rneider AT web.de>
1330
1331         * src/pic/device.c: renamed is_shared to pic14_is_shared
1332         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1333         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1334           (is_valid_identifier): added for above workaround
1335
1336 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1337
1338         * device/lib/Makefile.in: fixed to enable port-specific-objects
1339         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1340           char, thanks Hubert Sack
1341         * doc/sdccman.lyx: documented --xstack-loc,
1342           elaborated a bit more on interrupts and pitfalls,
1343           removed "setjmp/longjmp unsupported",
1344           documented some unsupported C99 features
1345         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1346         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1347           if, thanks Hubert Sack
1348         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1349         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1350           make make_library
1351         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1352           regression tests can report resource usage (rfe 700441)
1353         * support/regression/collate-results.py: report resource usage
1354         * support/regression/ports/ds390/spec.mk,
1355         * support/regression/ports/hc08/spec.mk,
1356         * support/regression/ports/mcs51/spec.mk,
1357         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1358         * support/regression/ports/ds390/uCsim.cmd,
1359         * support/regression/ports/hc08/uCsim.cmd,
1360         * support/regression/ports/mcs51/uCsim.cmd,
1361         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1362         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1363           library, use the default one
1364         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1365           building the library
1366
1367 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1368
1369         * config.dsp: added dependency on .version and configure_vc.awk
1370         * device/include/setjmp.h: updated for --stack-auto and --xstack
1371         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1372         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1373         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1374         * device/lib/libsdcc.lib: added _setjmp
1375         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1376           (decorateType): fixed bug 1372851,
1377           (optimizeGetHbit): fixed warning
1378         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1379           array initialisation
1380         * support/regression/tests/bug1057979.c: added test for bug 1358192
1381         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1382
1383 2005-12-03 Borut Razem <borut.razem AT siol.net>
1384
1385         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1386           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1387
1388 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1389
1390         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1391         createIval): implement symbol independant "flexible array member",
1392         (createIvalCharPtr): implemented flexible array initialisation with a
1393         string
1394         * src/SDCCsymt.c (copyStruct): removed,
1395         (getSize): fixed misleading comment,
1396         (getAllocSize): removed, the additional allocation size is now in
1397         sym->flexArrayLength,
1398         (checkStructFlexArray): new, syntax checks for flexible array members,
1399         (compStructSize): added syntax checks for "flexible array members"
1400         (copyStruct): removed,
1401         (copyLinkChain): removed inefficient fix for bug 770487
1402         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1403         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1404         symbol->flexArrayLength
1405         * src/SDCCerr.c,
1406         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1407         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1408         * support/regression/tests/structflexarray.c: added
1409         * support/valdiag/tests/structflexiblearray.c: added
1410
1411 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1412
1413         * src/SDCCast.c (decorateType): fixed bug 1368489
1414         * support/Util/SDCCerr.c,
1415         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1416
1417 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1418
1419         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1420           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1421
1422 2005-11-27 Borut Razem <borut.razem AT siol.net>
1423
1424         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1425           support/cpp2/mkdeps.h: added command line option
1426           -obj-ext=<extension> to SDCPP to define object file externion, used
1427           for generation of make dependencies (-M)
1428         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1429
1430 2005-11-26 Borut Razem <borut.razem AT siol.net>
1431
1432         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1433           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1434           added pic and pic16 libraries
1435
1436 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1437
1438         * device/include/float.h: Corrected typo in prototype of __fsgt
1439
1440 2005-11-25 Borut Razem <borut.razem AT siol.net>
1441
1442         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1443           added creation of model-mcs51-stack-auto libraries
1444
1445 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1446
1447         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1448         and fields-list too
1449         * src/SDCCast.c (createIvalArray): removed obsolete comment
1450
1451 2005-11-24 Borut Razem <borut.razem AT siol.net>
1452
1453         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1454           added missing device/lib/mcs51/crt*.asm sources
1455
1456 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1457
1458         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1459
1460 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1461
1462         * device/lib/_fs2schar.c,
1463         * device/lib/_fs2sint.c,
1464         * device/lib/_fs2slong.c: optimized inline asm
1465
1466 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1467
1468         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1469           Better handling of floats between -1.0 and 0.0.
1470
1471 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1472
1473         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1474           (the missing "if"s prohibited removal of redundant labels)
1475
1476 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1477
1478         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1479           Properly convert floats between -1.0 and 0.0 to long, int, and char
1480           types (max integer value of negative floats tends to zero).
1481         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1482           Removed changes made so to work properly with floats between
1483           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1484           and _fs2char.c
1485
1486 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1487
1488         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1489         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1490         (genCast) cosmetic change
1491         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1492         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1493         from mcs51
1494         * support/regression/tests/bitfields (testSignedBitfields): added
1495
1496 2005-11-18 Borut Razem <borut.razem AT siol.net>
1497
1498         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1499         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1500           introduced SILENT option to make building of pic16 libraries less
1501
1502 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1503
1504         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1505           Now they work properly with floats between -1.0 and 0.0
1506         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1507
1508 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1509
1510         * src/SDCCicode.c (printOperand): added missing else
1511
1512 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1513
1514         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1515         reformatted for better readability
1516         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1517         signed bitfields
1518
1519 2005-11-17 Borut Razem <borut.razem AT siol.net>
1520
1521         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1522           introduced SILENT option to make building of pic16 libraries less
1523           verbose - used for nightly snapshot build
1524         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1525           available on Win32 platforms.
1526         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1527           medium, large, pic and pic16
1528
1529 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1530
1531         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1532           printf("%f"...) sets fraction to zero.
1533
1534 2005-11-16 Raphael Neider <rneider AT web.de>
1535
1536         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1537           fixes #1357221
1538         * src/pic/gen.c (genIfx): implemented for CARRY bit
1539         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1540           to generic pointers, fixes #1357332,
1541           (pic16_movLit2f): NEW,
1542           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1543
1544 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1545
1546         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1547
1548 2005-11-11 Raphael Neider <rneider AT web.de>
1549
1550         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1551         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1552           compute pointer's type from operand,
1553           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1554           improved single bit reads, fixes bug #1353379
1555
1556 2005-11-09 Borut Razem <borut.razem AT siol.net>
1557
1558         * support/scripts/sdcc.nsi: added lib/pic to the package
1559
1560 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1561
1562         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1563
1564 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1565
1566         * support/regression/tests/bug1348008.c: added
1567         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1568         * support/regression/tests/bug1337835.c: updated comment
1569
1570 2005-11-06 Borut Razem <borut.razem AT siol.net>
1571
1572         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1573           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1574           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1575           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1576           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1577           dynamic construction of cl_error_class and derivates - 2.nd try
1578
1579 2005-11-05 Borut Razem <borut.razem AT siol.net>
1580
1581         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1582           bug, which caused Bus Errors on sparc solaris
1583
1584 2005-11-04 Borut Razem <borut.razem AT siol.net>
1585
1586         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1587           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1588           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1589           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1590           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1591           and derivates to resolve the initialization problem on OSX
1592
1593 2005-11-02 Borut Razem <borut.razem AT siol.net>
1594
1595         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1596           corrected typo - #include <winsock2.h>
1597
1598 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1599
1600         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1601           (_asxxxx_mapping): added org directive for future enhancements
1602
1603 2005-11-01 Borut Razem <borut.razem AT siol.net>
1604
1605         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1606           enabled sockets on WIN32
1607         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1608
1609 2005-10-31 Borut Razem <borut.razem AT siol.net>
1610
1611         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1612           WIN32 backslash path delimiters should be escaped when used in C strings
1613         * support/regression/tests/bitfields.c: exclude failing assertions for
1614           __CYGWIN32__ and __MINGW32__ hosts
1615
1616 2005-10-30 Borut Razem <borut.razem AT siol.net>
1617
1618         * src/SDCCutil.c: corrected double comparison typo
1619
1620 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1621
1622         * device/lib/medium/Makefile: added for new memory model medium
1623         * device/include/asm/mcs51/features.h: updated for medium/pdata
1624         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1625           added Multiply & Accumulate sbit's and MAC0_PAGE define
1626         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1627         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1628         * device/lib/_mullong.c: update for medium model
1629         * device/lib/incl.mk: added medium model
1630         * doc/sdccman.lyx: documented medium model
1631         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1632         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1633         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1634         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1635           (allocParms): set SCLS and OCLS to pdata for medium model
1636         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1637           for pdata,
1638           (powof2): return <0 if not power of 2
1639         * src/avr/gen.c (genBitWise): use updated powof2
1640         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1641           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1642           (shiftLLeftOrResult): use B if necessary
1643         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1644         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1645         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1646         * support/regression/Makefile.in: added test-mcs51-medium
1647         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1648
1649 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1650
1651         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1652         specifier unsigned
1653         * device/lib/time.c (mktime): fixed bug 1334315
1654
1655 2005-10-28 Raphael Neider <rneider AT web.de>
1656
1657         * device/include/pic/p16f_common.inc: added common declarations
1658         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1659
1660 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1661
1662         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1663           (aopPutUsesAcc): added to predict accumulator use,
1664           (assignResultValue): save acc if necessary,
1665           (genMinusDec): store result if indirectly addressed,
1666           (genDivOneByte):  save acc if necessary,
1667           (movLeft2Result): bugfix if left already in acc,
1668           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1669             attention to accumulator use (esp. pdata),
1670           (genReceive): receive pdata correctly
1671         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1672         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1673
1674 2005-10-27 Raphael Neider <rneider AT web.de>
1675
1676         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1677
1678 2005-10-27 Raphael Neider <rneider AT web.de>
1679
1680         * .version: changed version to 2.5.4
1681         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1682         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1683           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1684             arithmetics support routines
1685         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1686         * device/lib/Makefile.in: also create installdir for pic
1687
1688         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1689           pic14 port as well
1690         * src/pic/device.c (dump_sfr): rewritten to delegate register
1691           placement to the linker (use `extern sym' rather than sym EQU addr),
1692           (validAddress): fixed to check last specified address
1693         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1694           (popGetLit): truncate literal value to 8 bit,
1695           (popGet): moved assert to more appropriate place
1696           (popGetExternal): create pCode operand from and mark the according
1697             symbol as being `extern'
1698           (popGetAddr): added sanity check on immediate's offset, provide
1699             GPOINTER tag on demand
1700           (aopPut): fixed for immediates,
1701           (mov2w_op): move operand's address or contents to WREG (depending on
1702             operand type), safer variant of mov2w,
1703           (movwf,call_libraryfunc): NEW, handy abbreviations,
1704           (get_argument_pcop,get_return_val_pcop,pass_argument,
1705           get_returnvalue): interface for accessing function parameters and
1706             return values,
1707           (assignResultValuei,genRet): use new parameter/return value interface
1708           (pic14_getDataSize): back to old version handling generic pointers,
1709           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1710             provided implementation and/or fixed old one,
1711           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1712             calls, removed legacy 8051 reference code
1713           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1714           (loadSignToC): NEW, move the operands sign bit to CARRY,
1715           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1716             genRightShiftSigned, accepts negative shift counts,
1717           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1718           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1719             generic pointers, __data pointers and __code pointers,
1720           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1721             and signed bitfields, limit bitfields to 8 bit,
1722           (genDataPointerGet): fixed number of bytes read,
1723           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1724           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1725             pointers to constant data are no longer assumed to point to __code
1726             space, removed invalid pointer types,
1727           (bitpatternFromVal): retrieve the PICs representation of an integer
1728             or float literal,
1729           (genDataPointerSet): fixed assigning to po_immediate operands,
1730           (genGenPointerSet): implemented as library call,
1731           (genIfx): fixed incorrect condition,
1732           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1733             provide GPOINTER tag according to destination's storage class,
1734           (genCast): added code to handle casting to generic pointers, added
1735             sign-/zero extension of the result
1736           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1737         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1738         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1739           extend the result
1740         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1741           address/register resides in the shared banks
1742           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1743             put all variables into separate sections (have the linker arrange
1744             them)
1745           (picglue): put init code and interrupt handlers in separate sections
1746         * src/pic/main.c: added port specific options table, modified to PORT
1747           structure to make GPOINTERs 3 byte, added pic14_options
1748           (_pic14_do_link): private linking routine (update paths to libraries,
1749             add libsdcc.lib by default)
1750         * src/pic/main.h: declare pic14_options
1751         * src/pic/pcode.c: fixed instructions i/o relations,
1752           (RegCond): reverted to correct version,
1753           (newpCodeOpLit): truncate literals to 8 bit,
1754           (genericPrint): added debug output,
1755           (getRegFromInstruction): fixed for various operand types, simplified
1756           (BuildFlow): fixed broken handling of isntructions with labels
1757           (LinkFlow): start at last instruction in flow (skip trailing comments),
1758             pass the flow on to the next instruction after CALL
1759           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1760           (insertPCodeInstruction): fixed inserting after a skip instruction,
1761           (DoBankSelect): fixed for labeled instructions
1762           (OptimizepBlock): honor --nopeep switch
1763           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1764         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1765         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1766           (pCodeOptime2pCodes): allow disabling this optimization via
1767             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1768             but is still buggy), started implementation of a dataflow based
1769             pCode optimization (CSE + dead code elimination)
1770           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1771         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1772           names are independant of the stack location and therefore portable across
1773           devices
1774
1775 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1776
1777         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1778           (selectSpil): fixed bug 1337835 by not spilling bit variables
1779         * support/regression/tests/bug1337835.c: added test for this bug
1780         * src/mcs51/peeph.def: restart after rule 3.c,
1781           addded rules 263.x to optimize loading constants
1782
1783 2005-10-26 Raphael Neider <rneider AT web.de>
1784
1785         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1786         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1787           (genAssign): emit warning when casting literals to generic pointer
1788             type, also applies when taking the address of a fixed variable,
1789           (genCast): improved casting to generic pointers
1790         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1791           extern variables, added verbose error message
1792         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1793
1794 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1795
1796         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1797         carry must be complemented too
1798         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1799         could be emitted by genMinus
1800         * src/SDCCval.c (constVal): fixed bug 1305065
1801
1802 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1803
1804         * src/SDCCast.c (addCast): added promotion for bit variables
1805         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1806         promotion casts + optimisation
1807         (optimizeGetWord): fix warning 'i' might be used uninitialized
1808         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1809         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1810
1811 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1812
1813         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1814         all chars are promoted to int; promotion should be handled in SDCCast.c
1815
1816 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1817
1818         * device/lib/_strcmp.c: Fixed bug 1326457
1819
1820 2005-10-11 Raphael Neider <rneider AT web.de>
1821
1822         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1823         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1824
1825 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1826
1827         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1828         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1829
1830 2005-10-04 Raphael Neider <rneider AT web.de>
1831
1832         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1833           device/lib/pic16/pics.all: added pic18f1320
1834         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1835
1836 2005-09-30 Raphael Neider <rneider AT web.de>
1837
1838         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1839         * src/pic16/devices.inc: NEW, provides device descriptions
1840         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1841
1842 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1843
1844         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1845           GETHBIT
1846
1847 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1848
1849         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1850           documented Any Order Bit, Higher Order Byte and Higher Order Word
1851         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1852         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1853           (optimizeGetAbit): new, to get any bit, not only the high bit,
1854           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1855           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1856           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1857           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1858             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1859             GETABIT, GETBYTE, GETWORD: decorate them,
1860           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1861           (ast_print): added GETABIT, GETBYTE, GETWORD
1862         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1863         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1864           (geniCodeBinary): new generic binary icode,
1865           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1866         * src/port.h: updated comment for PORT.hasExtBitOp
1867         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1868           (genGetByte): new, to get a single byte,
1869           (genGetWord): new, to get a word from a long,
1870           (gen51Code): added GETABIT, GETBYTE, GETWORD
1871         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1872
1873 2005-09-23 Raphael Neider <rneider AT web.de>
1874
1875         * configure.in, configure: have device/lib/pic configured
1876         * device/lib/Makefile.in: added model-pic14
1877         * device/lib/clean.mk: added pic/ to clean rule
1878         * device/lib/pic: added rudimentary pic14 library providing support
1879           functions for multiplication/division/generic pointer access
1880         * src/SDCCopt.c (convilong): mark support functions as extern
1881           for pic14 port as well
1882         * src/pic/gen.c (genMult): added assertions,
1883           (genpic14Code): emit warning on unhandled iCodes
1884         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1885         * src/pic/pcode.c (pCodeOpCopy),
1886         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1887           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1888           SFR_REGISTER}), made safe for future extensions
1889         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1890           instructions even if preceeded by SKIP instructions (also remove
1891           them); removed unused code
1892         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1893           prevents leaving parts of the structure uninitialized after copying
1894
1895 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1896
1897         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1898           ago by me
1899         * support/regression/tests/addsub.c: added test for the bug
1900
1901 2005-09-21 Raphael Neider <rneider AT web.de>
1902
1903         * device/include/pic16/pic18f1220.h,
1904           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1905         * device/lib/pic16/Makefile.rules: added missing opening paren
1906         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1907           are provided in genutils.c,
1908           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1909           operand/result sizes,
1910           (genCmp): assert on NULL pointers first, then check deref'ed values
1911         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
1912           result size
1913
1914 2005-09-18 Raphael Neider <rneider AT web.de>
1915
1916         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
1917           as these are now unused,
1918           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
1919         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
1920           local, avoids uninitialized pointer dereference on r->name
1921         * src/pic16/ralloc.c (newReg): fixed indentation
1922
1923 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
1924
1925         * src/SDCCval.c (constVal): fixed bug 730366
1926         * support/Util/SDCCerr.c,
1927         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
1928
1929 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
1930
1931         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
1932
1933 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
1934
1935         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
1936
1937 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
1938
1939         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
1940           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1941         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
1942           (hex2dec): made hex_digit unsigned char, removed ascii dependance
1943         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
1944         * packihx/packihx.c (hexDigit): made c unsigned char
1945         * as/mcs51/lklibr.c (fndsym),
1946         * link/z80/lkgb.c (gb),
1947         * link/z80/lklibr.c (fndsym),
1948         * link/z80/lkrloc.c (relr),
1949         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
1950         * src/SDCC.lex (checkCurrFile, process_pragma),
1951         * src/SDCCglue.c (spacesToUnderscores),
1952         * src/SDCCmain.c (setParseWithComma, processFile),
1953         * src/asm.c (tvsprintf, printCLine),
1954         * src/avr/gen.c (emitcode, aopPut),
1955         * src/ds390/gen.c (emitcode),
1956         * src/hc08/gen.c (emitcode, emitinline),
1957         * src/mcs51/gen.c (emitcode, genInline),
1958         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1959           tokenizeLineNode),
1960         * src/pic/ralloc.c (debugLog),
1961         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
1962           tokenizeLineNode),
1963         * src/pic16/ralloc.c (debugLog),
1964         * src/z80/main.c (_process_pragma):
1965            made all ctype.h function calls safe
1966         * src/SDCCopt.c: include math.h for fabs
1967         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
1968           and used them throughout the code to make ctype.h function calls safe
1969         * src/ds390/main.c (asmLineNodeFromLineNode),
1970         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
1971         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
1972            unsigned char*
1973         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
1974           (newpCodeAsmDir): made ctype.h function calls safe
1975         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
1976           pic16_emitcode):  made lbp unsigned char*
1977         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
1978           (pic16_newpCodeAsmDir): made ctype.h function calls safe
1979         * src/xa51/gen.c (emitcode),
1980         * src/z80/gen.c (_emit2): made lbp unsigned char*
1981         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
1982            char*
1983
1984 2005-09-05 Raphael Neider <rneider AT web.de>
1985
1986         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
1987           access bank splitpoint
1988
1989 2005-09-05 Raphael Neider <rneider AT web.de>
1990
1991         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
1992
1993 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
1994
1995         * .version: changed to version 2.5.3
1996         * doc/sdccman.lyx: changed version to 2.5.3,
1997           documented --codeseg and --constseg and pragma codeseg and constseg,
1998           documented bit parameters (reentrant) and bit returning
1999         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2000            currFunc->recvSize, but is this ok for all ports?
2001           (ast2iCode): result of ~ on unsigned char must be cast to int for
2002            bool to work
2003         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2004           function pointers in bit space
2005         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2006           (processFuncArgs): call port.reg_parm() with reentrancy info
2007         * src/port.h,
2008         * src/avr/main.c,
2009         * src/ds390/main.c,
2010         * src/hc08/main.c,
2011         * src/pic/main.c,
2012         * src/pic16/main.c,
2013         * src/xa51/main.c,
2014         * src/z80/main.c: port.reg_parm prototype extended with
2015           "bool reentrant" parameter
2016         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2017           options.stackAuto for allocating bit register parameters
2018         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2019           (genSend): set BitBankUsed if it is,
2020           (selectRegBank): factored out of genCall for use in genPcall,
2021           (genCall): removed redundant dtype assignmen, use selectRegBank,
2022           (genPcall): handle returning in Carry properly, save in F0 if needed,
2023           (genReceive): handle bit register parameters
2024         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2025           (mcs51_assignRegisters): enable bit registers for all reentrant
2026            functions and don't set BitBankUsed unconditionally
2027         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2028         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2029         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2030
2031 2005-08-27 Borut Razem <borut.razem AT siol.net>
2032
2033         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2034         ppc-osx (Darwin) does not support -u option. It seems that it is
2035         supported only on Linux - GNU cp
2036
2037 2005-08-25 Borut Razem <borut.razem AT siol.net>
2038
2039         * sim/ucsim/gui.src/serio.src/Makefile.in,
2040           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2041           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2042           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2043           install and strip, since the strip at /usr/ccs/bin should be used
2044           on solaris
2045
2046 2005-08-24 Borut Razem <borut.razem AT siol.net>
2047
2048         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2049
2050 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2051
2052         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2053         ffffffffu
2054
2055 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2056
2057         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2058         * as/mcs51/lkmain.c (link_main): fixed warning
2059         * device/include/stdbool.h: ds390 has no advanced bit support yet
2060         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2061         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2062         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2063           and updated their macros
2064         * src/SDCCval.c (constVal): updated comment for renamed b_long
2065
2066 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2067
2068         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2069         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2070           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2071           (oprio): set priority for '['
2072         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2073            and adb_24_bit
2074         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2075         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2076         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2077         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2078           added overlayable BIT_BANK area
2079         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2080           (summary2): explain 'T' in legenda
2081         * as/mcs51/lkrloc.c: replaced old K&R style,
2082           (relr): added R_BIT processing,
2083           (errmsg): added "Bit-addressable relocation error",
2084           (adb_bit): added for converting from byte- to bit-addressable space,
2085           (adb_24_bit): added for converting from byte- to bit-addressable space
2086         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2087            used in reentrant functions now even as return value
2088         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2089         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2090           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2091         * src/SDCCglobl.h: added indicator BitBankUsed
2092         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2093            the bit registers b0-b7
2094         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2095           (geniCodeCast): fixed bug 1263853,
2096           (geniCodeLogicAndOr): put result in bool or char,
2097           (geniCodeReceive): added parameter func for accessing the return type,
2098           (geniCodeFunctionBody): pass func to geniCodeReceive
2099         * src/SDCCmain.c: added indicator BitBankUsed
2100         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2101         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2102           (checkSClass): don't put automatic bool/bit on stack,
2103           (checkFunction): removed check on function cannot return bit
2104         * src/SDCCsymt.h: added newBoolLink prototype
2105         * src/mcs51/gen.c (rb1regs): added bit registers,
2106           (movc): created for assigning to carry,
2107           (pushReg, popReg): created for pushing registers,
2108           (sameRegs): check both AOP_REG and AOP_CRY types,
2109           (aopOp): handle bit registers,
2110           (aopPut): optimization no self-assign,
2111           (saveRegisters): push reg->base (bits) only once for bit registers,
2112            and use pushReg,
2113           (unsaveRegisters): pop reg->base only once and use popReg,
2114           (assignResultValue): added parameter func and return in carry for bits,
2115           (genIpush): optimization no reload in A if not changed,
2116           (genSend): bit parameters in reentrant functions are passed in bit
2117            registers by first assigning to bits in B, then save registers and
2118            copy B to bits,
2119           (genCall): handle returning in Carry properly, save it in F0 if needed,
2120           (genPcall): updated assignResultValue call, this is not safe yet for bit
2121            returning function !!!
2122           (genFunction): don't generate equ's for bit registers and use pushReg,
2123           (genEndFunction): take care of bit returning functions and use popReg,
2124           (genRet): return bit in Carry,
2125           (genIfx): optimize bit registers and other directly addressable bits,
2126           (genReceive): updated assignResultValue call
2127         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2128           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2129            registers when using stack-auto
2130         * src/mcs51/ralloc.c (_G): added allBitregs,
2131           (regs8051): added the bit registers,
2132           (createStackSpil): use macro IS_BIT,
2133           (getRegBit): added to allocate a bit register, else spill,
2134           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2135           (updateRegUsage): factored out to ease stepping while debugging,
2136           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2137            also allocate bit registers,
2138           (fillGaps): handle bit registers,
2139           (findAllBitregs): added to create bit vector with all bit registers,
2140           (mcs51_allBitregs): returns this bit vector,
2141           (mcs51_assignRegisters): when using stack-auto use bit registers for
2142            passing parameters and creating local variables
2143         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2144
2145 2005-08-22 Borut Razem <borut.razem AT siol.net>
2146
2147         * device/lib/Makefile.in: replaced find option -or with -o
2148           to make it run on solaris
2149
2150 2005-08-22 Raphael Neider <rneider AT web.de>
2151
2152         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2153           fixes #1265442 (crash on Solaris)
2154
2155 2005-08-20 Borut Razem <borut.razem AT siol.net>
2156
2157         * configure, configure.in: added tests for libsocket and libnsl libraries,
2158           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2159           from support/regression/Makefile.in
2160         * support/regression/Makefile.in: added
2161         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2162         * sim/ucsim/libtool: regenerated on sparc-solaris
2163         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2164           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2165           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2166           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2167           sparc-solaris, which doesn't use GNU ld linker
2168         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2169         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2170
2171 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2172
2173         * src/mcs51/peeph.def: updated comments
2174
2175 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2176
2177         * device/lib/_gptrget.c,
2178         * device/lib/_gptrput.c: slightly shorter
2179         * doc/sdccman.lyx: incremented version
2180         * src/mcs51/peeph.def: moved peephole comments to the line of first
2181           change to better keep line correlation, reanimated 186.e
2182         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2183
2184 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2185
2186         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2187           David Saxton with quotes around file name.
2188
2189 2005-08-15 Borut Razem <borut.razem AT siol.net>
2190
2191         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2192           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2193           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2194           make tests run on x86_64 platform
2195
2196 2005-08-13 Raphael Neider <rneider AT web.de>
2197
2198         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2199           as it might be executed DURING a build (parallel make is wonderful)
2200
2201 2005-08-13 Raphael Neider <rneider AT web.de>
2202
2203         * device/lib/Makefile.in (port-specific-objects-pic16):
2204           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2205         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2206           dependency
2207         * device/lib/pic16/Makefile.rules: build subdirs before creating
2208           the library, removed builddir rule, create $(builddir) early in
2209           recurse rule, use empty recurse rule for leaf directories
2210         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2211           mkdir errors (race condition), removed duplicate suffix "hex"
2212           from clean rules
2213         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2214         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2215           prevents mkdir -p from aborting on Alpha
2216
2217 2005-08-12 Raphael Neider <rneider AT web.de>
2218
2219         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2220           db-statements in order to allow for arrays of pointers in code
2221           sections to be placed without interspersed 0-padding, fixes
2222           bug #1256215
2223         * (emitStatistics): fixed division by zero for pic18f1220
2224         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2225           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2226         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2227         * (pic16_pCodeConstString): keep track of already emitted string
2228           literals to prevent "duplicate definitions of symbol _str_NR"
2229         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2230           debug message
2231         * device/lib/Makefile.in: ignore failing PIC16 library builds
2232         * device/lib/pic16/Makefile: do not build if gputils are missing
2233         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2234
2235 2005-08-10 Raphael Neider <rneider AT web.de>
2236
2237         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2238           my last commit)
2239
2240 2005-08-10 Raphael Neider <rneider AT web.de>
2241
2242         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2243           Rokas' patch to add the new fixed point type "__fixed16x16"
2244         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2245           functions for __fixed16x16 arithmetics
2246         * device/lib/pic16: reimplemented the build system to support
2247           a separate build directory, better handling of libio (create
2248           the library in a separate subdir for each architecture) and
2249           easier configuration (centralized in Makefile.common)
2250
2251 2005-08-07 Raphael Neider <rneider AT web.de>
2252
2253         * src/pic16/gen.c (genrshTwo): fixed sign extension
2254         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2255         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2256           added T0CONbits
2257         * device/include/pic16/pic18f4220.h: NEW, header for
2258           pic18f4220 and pic18f4320
2259         * device/include/pic16/pic18fregs.h: added new devices,
2260           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2261         * device/include/pic16/signal.h: resolved name clashes
2262           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2263           to also allow testing for interrupt enable bits, added
2264           comments on how to use the macros
2265         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2266         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2267           register definitions for the devices
2268         * device/lib/pic16/pics.all: added new devices
2269         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2270           allocated memory
2271         * device/lib/pic16/libc/stdlib/memfree: do not count
2272           the block header as free memory
2273         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2274           simplified and added missing end-of-blocklist-marker
2275           (reported by Peter Onion, fixes #1252814)
2276         * (_mergeHeapBlock): fixed loop condition
2277         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2278           len==0, restructured code
2279         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2280           up a bit, reduced bitfield accesses, prevent endless loops
2281           in case of heap corruption
2282         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2283           "unreferenced arguments/must return a value" warnings
2284         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2285           replaced BAUDREG with SPBRG
2286         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2287           device/lib/pic16/debug/gstack/gstack.c: replaced
2288           _naked, _asm, _endasm with __naked, __asm, __endasm
2289
2290 2005-08-05 Raphael Neider <rneider AT web.de>
2291
2292         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2293           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2294
2295 2005-08-05 Borut Razem <borut.razem AT siol.net>
2296
2297         * device/lib/Makefile.in: added missing ';'
2298         * configure: removed ^M characters
2299
2300 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2301
2302         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2303           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2304           License
2305
2306 2005-08-04 Borut Razem <borut.razem AT siol.net>
2307
2308         * configure.in: pic16 libraries build 2nd try - enable running
2309           configure in device/lib/pic16
2310         * configure: regenerated from configure.in
2311         * device/lib/Makefile.in: create $(PORT)/bin directory
2312
2313 2005-08-03 Raphael Neider <rneider AT web.de>
2314
2315         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2316           to get/set values via pointers
2317         * (genUnpackBits,genPackBits): changed detection of
2318           ptr->bitfield vs. sym.bitfield, fixed access via generic
2319           pointers, removed dead (wrong) code for multibyte bitfields
2320         * (genNearPointerGet, genGenPointerGet): removed useless code,
2321           fixed bitfield detection, fixes #1250594
2322         * (genNearPointerSet): removed useless code
2323         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2324           and introduced macro pic16_emitpcode that conditionally emits
2325           the origin of the following pCode (useful for debugging SDCC)
2326         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2327         * (createDefmap): fixed handling of LFSR for --optimize-df
2328
2329 2005-08-02 Borut Razem <borut.razem AT siol.net>
2330
2331         * device/lib/Makefile.in: pic16 libraries build enabled since
2332           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2333
2334 2005-08-02 Raphael Neider <rneider AT web.de>
2335
2336         * src/pic16/gen.c (genPackBits): removed deprecated warning
2337         * (genGenPointerSet): fixed bitfield detection
2338
2339 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2340
2341         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2342
2343 2005-07-31 Raphael Neider <rneider AT web.de>
2344
2345         * device/lib/pic16/libdev/pic18f458.c,
2346           device/include/pic16/pic18f458.h: added missing T0CONbits
2347
2348 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2349
2350         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2351
2352 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2353
2354         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2355
2356 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2357
2358         * device/include/mcs51/at89c51ed2.h: added.
2359
2360 2005-07-23 Raphael Neider <rneider AT web.de>
2361
2362         * src/pic/gen.h: added emitpcode macro for debugging
2363         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2364           and replace by macro adding debug information on demand
2365         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2366         * (gencjne): tried to fix; replaced with correct (slower) code
2367         * (gen{Unp,P}ackBits): fixed single bit access
2368         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2369         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2370           previous instruction
2371         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2372           register has to be handled with care (forbidding movement
2373           of assignments/uses, removing assignments completely, ...)
2374         * (pCodeOptime2pCodes): make use of regIsSpecial
2375         * added lots of debugging output (commented out)
2376         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2377           from being reused as result UNLESS it is known to work
2378
2379 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2380
2381         * support/Util/dbuf.h: include <stddef.h> for size_t
2382         * .version: changed to version 2.5.2
2383
2384 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2385
2386         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2387
2388 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2389
2390         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2391           (genModOneByte): removed needless psha/pula
2392
2393 2005-07-22 Raphael Neider <rneider AT web.de>
2394
2395         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2396           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2397         * src/pic/gen.c (resolveIfx): do not "invent" labels
2398         * (genSkipc): changed to positive logic
2399         * (genSkipCond): removed as no longer needed
2400         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2401           backport from PIC16
2402         * (genLeftShift): check operands are in different registers
2403         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2404           INCF does not update CARRY...
2405         * src/pic/main.c: fixed _linkCmd
2406         * src/pic/pcode.c (unlinkpCode): added inactive code
2407         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2408           alive (do not assign result and operand overlapping registers)
2409
2410 2005-07-22 Raphael Neider <rneider AT web.de>
2411
2412         * src/pic/device.c (dump_sfr): replaced register declaration with
2413           call to emitSymbolToFile() to avoid duplicate symbols
2414         * (assignRelocatableRegisters): do not declare external symbols
2415         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2416           right (take size of type, not etype)
2417         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2418         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2419         * (packRegsForAccUse): disabled assignment of WREG as
2420           the result reg to prevent occurence of just fixed #1235003,
2421           fixes #1242954
2422         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2423           symbols (avoids duplicate symbols in .asm file)
2424         * (pic14emitRegularMap): use emitSymbolToFile()
2425         * src/pic/gen.c (aopOp): fixed spillLocation handling
2426         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2427         * (genDataPointerSet): removed unneccessary variables/output
2428
2429 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2430
2431         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2432         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2433
2434 2005-07-21 Raphael Neider <rneider AT web.de>
2435
2436         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2437           architecture cannot handle them efficiently, fixes bug #1235003
2438         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2439           check for empty sets before using them (fixes bug #1232190)
2440
2441 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2442
2443         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2444           (lnksect2): generate warnings for memory overlap
2445         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2446           constseg to set the name of these segments so you can instruct the linker
2447           to place them in banks
2448         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2449         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2450           added code_seg and const_seg to options
2451         * src/SDCCglue.c (emitMaps): use options.const_seg,
2452           (createInterruptVect): put interrupt vectors in segment HOME,
2453           (glue): put HOME before static segment and put the main glue in HOME,
2454           (glue): use options.code_seg
2455         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2456         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2457           these segments so you can instruct the linker to place them in banks
2458           (linkEdit): use code_loc for HOME segment which should be the first
2459           segment in code memory now
2460         * src/SDCCmem.c: fixed more stuff like bug 1238386
2461         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2462           (changePointer): don't change function pointers to code pointers for
2463           banked functions,
2464           (compareType): added exceptional check for banked function pointers
2465         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2466         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2467           after static in code memory
2468         * src/mcs51/gen.c: added aopLiteralLong prototype,
2469           (aopForSym): use getSize for functions,
2470           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2471           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2472           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2473           the segment,
2474           (genPcall): use call for literal function pointers and generate banked
2475           calls over the one trampoline so there's only one place for the user to
2476           modify according to his/hers hardware,
2477           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2478           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2479         * src/mcs51/main.c: added keyword banked,
2480           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2481         * support/Util/SDCCerr.c,
2482         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2483           needed for passing the bank and address to the trampoline
2484         * device/lib/mcs51/crtbank.asm: added for bankswitching
2485         * device/lib/mcs51/Makefile: added crtbank
2486
2487 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2488
2489         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2490           for fields at offset 0 of a struct or union as reported
2491           on 2005-07-07 in the developer mailing list.
2492
2493 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2494
2495         * src/SDCCmem.c: fixed bug 1238386
2496
2497 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2498
2499         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2500           (patch #1144962), added peephole 300, enabled 259.x
2501         * doc/sdccman.lyx: removed screenshot and provided link instead
2502
2503 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2504
2505         * doc/sdccman.lyx: added section about debugging with ddd
2506         * doc/figures/ddd_example.eps: screenshot of debugging session
2507
2508 2005-07-04 Raphael Neider <rneider AT web.de>
2509
2510         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2511           like CODE pointers, fixes #1115683
2512         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2513           call, fixes bugs #1232211, #1228110,
2514           fixed wrong casts to pCodeFlow from pCodeInstructions
2515
2516 2005-07-04 Raphael Neider <rneider AT web.de>
2517
2518         * src/pic/gen.c (popGet): changed assert to allow for
2519           bit operands
2520         * (popGetAddr): changed signature to provide
2521           an additional index, patched all call sites
2522         * (genCmpEq): handle literal-like operands correctly
2523         * (genAddrOf): added sanity checks on __code/__data pointers
2524         * (genAssign): added handling of symbols from __code section
2525         * (gencjne): do not generate code for comparisons whose result
2526           is neither stored nor used, fixes bug #1171114
2527         * (AccLsh, AccRsh): operate on operand instead of WREG
2528         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2529           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2530           by known count
2531         * rewrote complete shift-by-literal logic, commented unused
2532           functions out
2533         * (genConstPointerGet): get multiple bytes (if result size > 1),
2534           fixed handling of non-immediate addresses
2535         * (genPointerGet): handle CODE pointers like CONST pointers
2536         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2537         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2538           operand is to be treated as a literal or not
2539         * (mov2w,genPcall,genCmpEq),
2540           src/pic/genarith.c: use aop_isLitLike() to decide between
2541           literal/register contents
2542         * (addSign): added missing offset
2543         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2544           only emit comment in debug-mode,
2545           use {aop,op}_isLitLike throughout the file
2546         * src/pic/glue.c: fix initializers for pointers (work in progress)
2547         * src/pic/pcode.c (get_op): honor index on _const symbols
2548         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2549         * (dumppBlock): added pCode size estimation
2550         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2551           check for IS_SYMOP before OP_SYMBOL'ing
2552         * fixed indentation, compacted switch-statements
2553         * (allocReg): find free register and allocate it instead of
2554           allocating new registers all the time
2555         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2556           registers as its operands (necessary only for multibyte GETs)
2557
2558 2005-07-01 Raphael Neider <rneider AT web.de>
2559
2560         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2561           debugging .asm-output macros FENTRY + FEXIT
2562         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2563           way... I wonder...
2564         * (emitpComment): NEW, printf to pCode
2565         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2566           offset handling
2567         * (popGetAddr): NEW, variant of popGet to access an immediates
2568           high(er) bytes instead of the n'th byte of memory they reference,
2569           replaced popGet with popGetAddr where neccessary
2570         * (genDataPointerGet): reactivated and fixed implementation
2571         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2572           accesses
2573         * (genDataPointerSet): fixed multibyte assignments
2574         * (genpic14Code): fixed --i-code-in-asm handling
2575         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2576         * (genPlus): fixed index-out-of-bounds error
2577         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2578         * src/pic/ralloc.c: added debugging output macro FENTRY2
2579         * (spillThis): fixed indentation, enbraced for-body for clarity
2580         * (rematStr): commented out as now unused
2581         * (regTypeNum): commented out special spill case (overwrites
2582           arbitrary values)
2583         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2584
2585 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2586
2587         * doc/sdccman.lyx: documented sfr16/sfr32,
2588           added example for using storage class with function pointers
2589         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2590
2591 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2592
2593         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2594         * device/lib/_itoa.c,
2595         * device/lib/_ltoa.c: optimized codesize
2596         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2597           but don't know how to suppress the double warning.
2598         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2599         * support/Util/SDCCerr.c,
2600         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2601
2602 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2603
2604         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2605           fixed old K&R prototypes
2606         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2607         * device/lib/_gptrget.c,
2608         * device/lib/_gptrgetc.c,
2609         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2610           also new versions for small generic pointers and banked generic pointers
2611         * src/port.h: added const_name
2612         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2613         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2614         * src/SDCCcse.c (findPrevIc): check all associative operators
2615         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2616         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2617         * src/SDCCmem.c: updated comments,
2618           set far-space to 0 for pdata, results in optimized code
2619         * src/SDCCmem.h: added macro CONST_NAME
2620         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2621           moving the info into the highest bits, see also gptrget/gptrput
2622         * src/src.dsp: added sdcc.ico to project files
2623         * src/avr/gen.c (genCast): fixed bug 0x%d
2624         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2625         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2626           relation between ptr_type and DCL_TYPE,
2627           (genCast): fixed bug 0x%d
2628         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2629           (CODE)" for const_name
2630         * src/hc08/gen.c (genCast): fixed bug 0x%d
2631         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2632           (hc08_port): added "CONST (CODE)" for const_name
2633         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2634           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2635           between ptr_type and DCL_TYPE,
2636           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2637           operand* and took AOP() inside function so sfr-ness can be checked,
2638           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2639           new prototype,
2640           (genFunction, genEndFunction): optimized stack setup,
2641           (genMinus): optimized for literals with ending zeroes (in bytes),
2642           (genCast): fixed bug 0x%d
2643         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2644           (mcs51_port): added "CONST (CODE)" for const_name
2645         * src/mcs51/peeph.def: made rule 226 more generic
2646         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2647         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2648         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2649         * src/z80/main.c (z80_port): added NULL for const_name,
2650           (gbz80_port): added NULL for const_name
2651         * support/regression/tests/bug663539.c,
2652         * support/regression/tests/sfr16.c: new tests
2653
2654 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2655
2656         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2657
2658 2005-06-24 Raphael Neider <rneider AT web.de>
2659
2660         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2661           corrected typos...
2662         * device/include/pic16/signal.h: added USBIF
2663           and SIG_USB
2664
2665 2005-06-24 Raphael Neider <rneider AT web.de>
2666
2667         * device/lib/pic16/libdev/pic18f2455.c,
2668           device/include/pic16/pic18f2455.h: NEW
2669         * device/include/pic16/pic18fregs.h,
2670           device/lib/pic16/pics.all,
2671           src/pic16/device.c: added 18f2455
2672         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2673           device/include/pic16/{pic18f[68][567].h,usart.h}:
2674           replaced MULTIPLE_USARTS define with more relaible
2675           compatibility sfrs (for USART access)
2676
2677 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2678
2679         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2680           and the output asm file line is printed on two lines.
2681
2682 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2683
2684         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2685           BGT, BLE, BHI, and BLS instructions
2686         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2687           genCmpEq): removed
2688         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2689           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2690           fixes bug #1216342
2691         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2692
2693 2005-06-15 Raphael Neider <rneider AT web.de>
2694
2695         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2696         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2697         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2698           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2699           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2700
2701 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2702
2703         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2704           Marcel Telka in bug #1215704
2705
2706 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2707
2708         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2709           located in shared memory bank.
2710
2711 2005-05-31 Raphael Neider <rneider AT web.de>
2712
2713         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2714           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2715           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2716
2717 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2718
2719         * device/lib/_strncpy.c: fixed the fix
2720
2721 2005-05-26 Raphael Neider <rneider AT web.de>
2722
2723         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2724           initializers with \0, bug #1208187
2725         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2726           intializers with \0, bug #1208187
2727
2728 2005-05-26 Raphael Neider <rneider AT web.de>
2729
2730         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2731           initializers with \0, bug #1208187
2732         * src/pic16/main.c (_process_pragma): added sanity checks
2733           for stack position and size, emit warnings when appropriate
2734
2735 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2736
2737         * device/lib/_strncpy.c: fixed not filling with \0
2738
2739 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2740
2741         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2742           createFunction),
2743         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2744           compound_statement),
2745         * src/SDCCsymt.h,
2746         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2747
2748 2005-05-24 Raphael Neider <rneider AT web.de>
2749
2750         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2751
2752 2005-05-24 Raphael Neider <rneider AT web.de>
2753
2754         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2755           TRISE definitions, closes bug #1162453
2756
2757 2005-05-22 Raphael Neider <rneider AT web.de>
2758
2759         * src/pic16/main.c (_process_pragma): check for missing
2760           arguments to pragmas code and udata
2761         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2762           consistency fixes to match other headers (thanks to Jim Paris)
2763         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2764
2765 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2766
2767         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2768
2769 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2770
2771         * support/regression/tests/bug1198642.c: new test
2772         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2773         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2774         * support/scripts/resource.h,
2775         * support/scripts/resource.rc,
2776         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2777         * support/scripts/sdcc.ico: added 32x32 icon
2778
2779 2005-05-18 Raphael Neider <rneider AT web.de>
2780
2781         * device/lib/pic16/libdev/pic18f*.c,
2782         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2783           keywords to "__sfr" and "__at (X)"
2784         * device/include/pic16/pic18fregs.h: added pic18f4520
2785         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2786           #1203088 (MPLAB compatibility)
2787
2788 2005-05-17 Raphael Neider <rneider AT web.de>
2789
2790         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2791         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2792         * device/lib/pic16/pics.all: added new devices
2793         * src/pic16/device.c: added support for pic18f4520
2794
2795 2005-05-16 Raphael Neider <rneider AT web.de>
2796         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2797         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2798         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2799           convenience function for bit access
2800
2801 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2802
2803         * device/lib/printf_large.c: fixed bug 1193299
2804         * support/regression/tests/bug1057979.c: added test %3.3s
2805
2806 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2807
2808         * device/include/mcs51/8051.h,
2809         * device/include/mcs51/8052.h: made parseable with lint
2810         * device/include/mcs51/lint.h: added include file for (sp)lint
2811         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2812         * doc/cdbfileformat.lyx,
2813         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2814
2815 2005-05-14 Raphael Neider <rneider AT web.de>
2816
2817         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2818         * device/lib/pic16/libc/stdlib/itoa.c (new)
2819         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2820         * device/lib/pic16/libio/Makefile: exclude subdir according to
2821           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2822         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2823         * src/pic16/gen.c (genFunction): prevent annoying warning
2824         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2825           nameclashes on BeOS
2826         * support/cpp2/cppmain.c (cpp_output_string): new
2827         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2828           fixes bug 1116802
2829
2830 2005-05-13 Borut Razem <borut.razem AT siol.net>
2831
2832         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2833
2834 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2835
2836         * .version: changed to version 2.5.1; back to bleeding edge development
2837
2838 2005-05-11 Borut Razem <borut.razem AT siol.net>
2839
2840         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2841           generate PDF version 1.3 documents
2842
2843 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2844
2845         * .version: changed to version 2.5.0
2846
2847 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2848
2849         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2850
2851 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2852
2853         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2854         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2855         well as many smaller updates.
2856         * .version: changed to version 2.5.0-pre1
2857
2858 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2859
2860         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2861
2862 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2863
2864         * support/regression/tests/bug1185672.c: added
2865         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2866           bug 1185672
2867         * src/mcs51/gen.c (genCall): added comments, made it look safer
2868         * src/mcs51/gen.c (genEndFunction): simplified
2869
2870 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2871
2872         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2873
2874 2005-04-14 Borut Razem <borut.razem AT siol.net>
2875
2876         * fixed bug 1045046 - SIGSEGV with really simple code?:
2877           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2878           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2879
2880 2005-04-14 Borut Razem <borut.razem AT siol.net>
2881
2882         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2883           src/pic16/device.h: temporarily disabled experimental #inline pragma
2884           for 2.5.0 release
2885
2886 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2887
2888         * device/include/z80/stdio.h,
2889         * device/include/z80/string.h: removed these highly incomplete files so
2890           SDCC can use the default ones in device/include/
2891
2892 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2893
2894         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2895         gcc warning.
2896         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2897         fix sdcpp warnings.
2898
2899 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2900
2901         * device/include/malloc.h: removed redundant __reentrant prototypes
2902         * device/lib/_mullong.c: added working xstack variant in asm (C version
2903           doesn't pass regression tests)
2904         * device/lib/bpx.c: used __data and made bpx char for mcs51
2905         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2906           (createFunction): fixed bug with xstackPtr
2907         * src/SDCCcse.c: corrected comments
2908         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2909           (killDeadCode, eBBlockFromiCode): removed unused code
2910         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
2911           corrected comments
2912         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
2913           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
2914           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
2915           (genModOneByte): fixed warning in MSVC
2916         * src/mcs51/main.c (): added comments
2917         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
2918
2919 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2920
2921         * src/SDCCmain.c (linkEdit): oops, changed one line too many
2922
2923 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
2924
2925         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
2926
2927 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
2928
2929         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
2930         characters arrays of larger size than the declared one.
2931
2932 2005-04-10 Borut Razem <borut.razem AT siol.net>
2933
2934         * src/pic/gen.c (genInline),
2935           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
2936           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
2937           (findNextInstruction), (findPrevInstruction),
2938           (findInstructionUsingLabel),
2939           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
2940         * src/pic/pcode.c (findLabel): added missing '\n'
2941         * src/src.dsp: added SDCCdwarf2.c to the project
2942
2943 2005-04-09 Borut Razem <borut.razem AT siol.net>
2944
2945         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
2946
2947 2005-04-08 Raphael Neider <rneider AT web.de>
2948
2949         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
2950           into the chain after a given one) and mergeDefmapSymbols (combine
2951           defmap entries for each symbol per pcode)
2952         * (createDefmap): have defmap entries merged in the end
2953         * (defmapReplaceSymRef): split defmap entries covering two accesses to
2954           a symbol before replacing one access type's symbol, merge symbols in
2955           the end (replacement symbol might already have an entry)
2956         * (assignValnums): keep reference to written WREG intact
2957
2958 2005-04-08 Raphael Neider <rneider AT web.de>
2959
2960         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
2961           Alpha)
2962
2963 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
2964
2965         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
2966         bytes
2967
2968 2005-04-07 Raphael Neider <rneider AT web.de>
2969
2970         * device/include/pic16/usart.h: added compatibility defines for
2971           devices with more than one USART
2972         * device/include/pic16/pic18f[68][567]20.h: activated above defines
2973
2974 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2975
2976         * device/lib/Makefile.in: updated for port specific include
2977
2978 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2979
2980         * support/regression/ports/mcs51/spec.mk: added mcs51 include
2981
2982 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
2983
2984         * device/include/8051.h,
2985         * device/include/8052.h,
2986         * device/include/at89S8252.h,
2987         * device/include/at89c55.h,
2988         * device/include/at89x051.h,
2989         * device/include/at89x51.h,
2990         * device/include/at89x52.h,
2991         * device/include/mcs51reg.h,
2992         * device/include/reg51.h,
2993         * device/include/reg764.h,
2994         * device/include/regc515c.h,
2995         * device/include/sab80515.h: (re)moved these 12 files
2996         * device/include/mcs51/8051.h,
2997         * device/include/mcs51/8052.h,
2998         * device/include/mcs51/at89S8252.h,
2999         * device/include/mcs51/at89c55.h,
3000         * device/include/mcs51/at89x051.h,
3001         * device/include/mcs51/at89x51.h,
3002         * device/include/mcs51/at89x52.h,
3003         * device/include/mcs51/mcs51reg.h,
3004         * device/include/mcs51/reg51.h,
3005         * device/include/mcs51/reg764.h,
3006         * device/include/mcs51/regc515c.h,
3007         * device/include/mcs51/sab80515.h: and added them here
3008
3009 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3010
3011         * device/include/stdarg.h: changed SDCC specific keywords to double
3012           underlined form.
3013         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3014           mcs51 and ds390.
3015         * device/include/hc08/mc68hc908gp32.h,
3016         * device/include/hc08/mc68hc908jb8.h,
3017         * device/include/hc08/mc68hc908jkjl.h,
3018         * device/include/hc08/mc68hc908qy.h: fixed comments
3019         * device/include/mcs51/README: updated
3020         * device/include/mcs51/c8051f120.h: added PINRSF
3021         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3022         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3023           amidst code. Also inline is not supported.
3024
3025 2005-04-06 Raphael Neider <rneider AT web.de>
3026
3027         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3028         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3029           callers stack/frame pointers
3030
3031 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3032
3033         * device/include/pic16/usart.h: added, missing in previous commit,
3034         * device/include/pic16/adc.h: fixed typo,
3035         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3036         commit,
3037         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3038         <p18fxxx.inc>
3039         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3040         uninitialized because a bug appears with gplink
3041         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3042         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3043         complains for unrecognised option
3044
3045 2005-04-05 Raphael Neider <rneider AT web.de>
3046
3047         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3048           structs as well (using memcpy)
3049         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3050           on ISRs (GOTO has no label)
3051         * src/pic16/device.h: added OF_OPTIMIZE_DF
3052         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3053           new data flow analysis/optimization
3054         * src/pic16/pcode.c: added (prototypes for and implementation of)
3055           dataflow analysis functions, fixed pCodeInstructions' inCond and
3056           outCond values, made RCALL a branch instruction
3057         * (pic16_unlinkpCode): keep C line if possible
3058         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3059           C line moved if possible
3060         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3061         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3062           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3063         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3064           new flow)
3065         * (pic16_getJumptabpCode): NEW, needed in...
3066         * (LinkFlow): fixed handling of jumptables, calls and conditional
3067           branches
3068         * (pic16_InsertCommentAfter): NEW
3069         * (pic16_pCodeReplace): made verbose and flow preserving
3070         * (AnalyzeFlow): added call to data flow analysis
3071         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3072         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3073         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3074
3075 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3076
3077         * src/SDCCast.c (decorateType): fixed bug #1105626
3078
3079 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3080
3081         * device/include/asm/pic16/features.h,
3082         * pic18f*.h headers,
3083         * device/include/pic16/adc.h,
3084         * device/include/pic16/delay.h,
3085         * device/include/pic16/i2c.h,
3086         * device/include/pic16/malloc.h,
3087         * device/include/pic16/stdio.h,
3088         * device/include/pic16/stdlib.h,
3089         * device/include/pic16/string.h,
3090         * device/lib/pic16/libc/stdio/printf_tiny.c,
3091         * device/lib/pic16/libc/stdio/printf_small.c,
3092         * device/lib/pic16/libc/stdio/strmgpsim.c,
3093         * device/lib/pic16/libc/stdio/strmmssp.c,
3094         * device/lib/pic16/libc/stdio/strmusart.c,
3095         * device/lib/pic16/libc/stdio/vfprintf.c,
3096         * device/lib/pic16/libc/stdlib/ltoa.c,
3097         * device/lib/pic16/libc/stdlib/putchar.c,
3098         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3099         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3100         * device/lib/pic16/libc/stdlib/memchrram.c,
3101         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3102         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3103         * device/lib/pic16/libio/adc/adcbusy.c,
3104         * device/lib/pic16/libio/adc/adcread.c,
3105         * device/lib/pic16/libio/adc/adcsetch.c,
3106         * device/lib/pic16/libio/usart/ubaud.c,
3107         * device/lib/pic16/libio/usart/ubusy.c,
3108         * device/lib/pic16/libio/usart/udrdy.c,
3109         * device/lib/pic16/libio/usart/uopen.c,
3110         * device/lib/pic16/libio/usart/uputc.c,
3111         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3112         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3113         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3114         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3115         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3116         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3117         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3118         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3119         specific keywords to double underlined form,
3120         * device/lib/pic16/libc/Makefile.rules,
3121         * device/lib/pic16/libsdcc/Makefile.rules,
3122         * device/lib/pic16/libm/Makefile,
3123         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3124         to compile with C standard set in Makefile.common
3125         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3126         rand.c and crc.c in compilation process,
3127         * device/lib/pic16/libsdcc/int/divuint.c,
3128         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3129         `c' from signed to unsigned,
3130         * device/lib/pic16/startup/crt0.c,
3131         * device/lib/pic16/startup/crt0i.c,
3132         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3133         keywords to double underlined form, bug fixes in _do_cinit function
3134         which prevented the correct initialization of the .idata segment,
3135         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3136         core to enter a infinite loop
3137         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3138
3139 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3140
3141         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3142
3143 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3144
3145         * device/include/Makefile.in: add support for hc08 subdirectory
3146         * device/include/hc08/: new subdirectory
3147         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3148         Lucas Loizaga, thanks!
3149         * device/include/hc08/mc68hc908qy.h,
3150         * device/include/hc08/mc68hc908gp32.h,
3151         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3152         their own directory. Changed internal macro names to use the compiler
3153         reserved namespace. Changed SDCC specific keywords to double
3154         underlined form.
3155         * device/include/math.h,
3156         * device/include/malloc.h,
3157         * device/include/stdarg.h,
3158         * device/include/stdbool.h
3159         * device/include/string.h,
3160         * device/include/tinibios.h,
3161         * device/include/ds400rom.h,
3162         * device/include/8051.h,
3163         * device/include/8052.h,
3164         * device/include/80c51xa.h,
3165         * device/include/at89c55.h,
3166         * device/include/at89S8252.h,
3167         * device/include/at89x51.h,
3168         * device/include/at89x52.h,
3169         * device/include/ds80c390.h,
3170         * device/include/reg764.h,
3171         * device/include/regc515c.h,
3172         * device/include/sab80515.h,
3173         * device/include/mcs51/c8051f000.h,
3174         * device/include/mcs51/c8051f018.h,
3175         * device/include/mcs51/c8051f020.h,
3176         * device/include/mcs51/c8051f040.h,
3177         * device/include/mcs51/c8051f060.h,
3178         * device/include/mcs51/c8051f120.h,
3179         * device/include/mcs51/c8051f300.h,
3180         * device/include/mcs51/c8051f310.h,
3181         * device/include/mcs51/c8051f320.h,
3182         * device/include/mcs51/c8051f330.h,
3183         * device/include/mcs51/c8051f350.h,
3184         * device/include/z180.h: Changed SDCC specific keywords to double
3185         underlined form.
3186
3187 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3188
3189         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3190         18F4455,
3191         * (pic16_assignConfigWordValue): disable testing of configuration
3192         register value with config mask,
3193         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3194         function with port->fun_prefix,
3195         * (genFunction): when generating a naked interrupt function never
3196         create an absolute segment placed in interrupt vector address, place
3197         the actual interrupt function at IVA instead, when an interrupt
3198         function is generated with unspecified interrupt then do not create
3199         the absolute section,
3200         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3201         code for generating a call to generic pointer get/put function with
3202         a call to function pic16_callGenericPointer(),
3203         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3204         the call to the generic pointer get/put functions with prefixing the
3205         function name with port->fun_prefix,
3206         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3207         * src/pic16/main.c (_process_pragma): prefix function with
3208         port->fun_prefix,
3209         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3210         calling assembler, old 18Fxxxx macro is deprecated,
3211         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3212         PC_ASMDIR in while condition,
3213         * (findInstruction): add PC_ASMDIR in while condition,
3214         * (buildCallTree): prefix main with port->fun_prefix,
3215         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3216         identifier for variable with banked access in instructions BTFSS,
3217         BTFSC, BCF, BSF, BTG
3218         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3219         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3220         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3221         perform optimization when enviroment variable NO_REG_OPT is set,
3222         * (insideLRBlock): NEW, return 1 if register is inside an
3223         INF_LOCALREGS block,
3224         * (RemoveRegFromLRBlock): remove a register that is completely
3225         eliminated by register optimization, but it is still left in local
3226         register store/restore in/from stack block,
3227         * (Remove2pcodes): after removing register, check to see if it
3228         should be removed from local register store/restore in/from stack
3229         block,
3230         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3231         DUMMY_READ_VOLATILE,
3232
3233         * device/include/pic16/adc.h: minor prototype modifications and
3234         update,
3235         * device/include/pic16/malloc.h: added GPL notice various
3236         modifications,
3237         * device/include/pic16/stdint.h: NEW, standard header for ints
3238         * device/include/pic16/delay.h: NEW, header for delay functions,
3239         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3240         delay1mtcy,
3241         * device/include/pic16/signal.h: NEW, header providing helper macros
3242         for implementing signal handlers,
3243         * device/include/pic16/stdio.h: added prototypes for functions,
3244         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3245         prototypes for stdin and stdout, added macro PUTCHAR to
3246         automatically implement putchar function prototype,
3247         * device/include/pic16/usart.h: modified and updated USART library,
3248         * device/lib/pic16/libio/adc/,
3249         * device/lib/pic16/libio/i2c: some modifications to improve library
3250         performance,
3251         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3252         family of functions,
3253         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3254         family of functions and other sources,
3255         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3256         of the PIC18Fxx[28] devices,
3257         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3258         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3259         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3260         _do_cinit function, because the previous failed when local variables
3261         where not placed in the same memory bank,
3262         * device/lib/pic16/libsdcc/char/: various modifications to improve
3263         library performance,
3264         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3265         information on the new functions of the c library and more...
3266
3267 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3268
3269         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3270
3271 2005-03-26 Raphael Neider <rneider AT web.de>
3272
3273         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3274           if condition == CARRY)
3275         * (genCmp): adapted to new genSkipc semantics
3276         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3277           on rIfx (genCmp was broken)
3278
3279 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3280
3281         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3282         * src/z80/main.c (_keywords[]),
3283         * src/SDCCglobal.h (struct options),
3284         * src/SDCC.y,
3285         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3286         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3287         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3288         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3289         always available in leading double underscore form. The C99 support is
3290         mostly missing, but it's a start.
3291         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3292         reserved identifier "__data".
3293
3294 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3295
3296         * src/mcs51/peeph.def: fixed bug 1170013
3297
3298 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3299
3300         * device/include/mcs51reg.h: fixed bug 842007
3301
3302 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3303
3304         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3305         last time.
3306
3307 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3308
3309         * src/port.h (struct PORT),
3310         * src/avr/ralloc.c (avr_assignRegisters),
3311         * src/avr/main.c,
3312         * src/ds390/ralloc.c (ds390_assignRegisters),
3313         * src/ds390/main.c,
3314         * src/hc08/ralloc.c (hc08_assignRegisters),
3315         * src/hc08/main.c,
3316         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3317         * src/mcs51/main.c,
3318         * src/pic/ralloc.c (pic14_assignRegisters),
3319         * src/pic/main.c,
3320         * src/pic16/ralloc.c (pic16_assignRegisters),
3321         * src/pic16/main.c,
3322         * src/xa51/ralloc.c (xa51_assignRegisters),
3323         * src/xa51/main.c,
3324         * src/z80/ralloc.c (z80_assignRegisters),
3325         * src/z80/ralloc.h,
3326         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3327         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3328         * src/SDCCcse.h,
3329         * src/SDCCdflow.c (computeDataFlow),
3330         * src/SDCCdflow.h,
3331         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3332         * src/SDCCloop.h,
3333         * src/SDCCcflow.c (*),
3334         * src/SDCCcflow.h,
3335         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3336         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3337         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3338         immedDom() returning wrong block; probably fixes bug #1160833)
3339
3340 2005-03-20 Borut Razem <borut.razem AT siol.net>
3341
3342         * support/scripts/inc2h.pl: WIN32 port
3343
3344 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3345
3346         * device/lib/makefile.in: added abs.c and labs.c
3347
3348 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3349
3350         * device/include/stdint.h: added
3351         * device/lib/abs.c: added
3352         * device/lib/labs.c: added
3353         * device/include/stdlib.h: added abs() and labs() prototypes
3354         * device/lib/libsdcc.lib: added abs and labs
3355         * device/include/float.h,
3356         * device/lib/_fsmul.c,
3357         * device/lib/printf_fast.c,
3358         * device/lib/printf_tiny.c: updated comments
3359
3360 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3361
3362         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3363         bug #1164313
3364
3365 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3366
3367         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3368         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3369
3370 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3371
3372         * device/lib/printf_large.c: removed inline assembly for portability and
3373           readability. Use printf_fast if speed or size are more important.
3374         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3375         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3376
3377 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3378
3379         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3380         prevent compiler warning
3381
3382 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3383
3384         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3385         moved to level 0 and declared as static. Also they are explicit
3386         placed in access bank. This was necessery because some times they
3387         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3388         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3389         optimizations. Currently only compare to unsigned char is implemented,
3390         * src/pic16/gen.c: added fReturnIdx array,
3391         * (struct resolvedIfx) is moved to gen.h and made public,
3392         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3393         * (aopForSym): added an optimization to directly store in stack of
3394         the operand of a SEND iCode,
3395         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3396         but as registers instead (AOP_REG) using the fReturnIdx array,
3397         * (pic16_freeAsmop): remove the freed register from the
3398         _G.sregsAlloc field,
3399         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3400         a compare of 'WREG',
3401         * (pic16_popGetTempRegCond): changed function prototype, now
3402         function takes also a bitVector argument v which holds the current
3403         set of registers that are allocated for stack access by aopForSym,
3404         registers allocated in aopForSym for accessing stack symbols are not
3405         any more part of the functions usedRegs field,
3406         * (genCall): some times aopOp is called for a stack variable to be
3407         send, aopForSym might perform the push, if this is true make sure
3408         that genCall doesn't push the variable twice by testing _G.resDirect,
3409         * (genFunction): changed testing for unspecified interrupt number
3410         from 256 to INTNO_UNSPEC,
3411         * modified selection scheme of frame pointer generation. Previously
3412         if function did use local registers a frame pointer was generated,
3413         now a frame pointer is generated only if function has arguments
3414         (that need PLUSW2 register access), or has stack arguments, or the
3415         compiler is not instructed to omit the frame pointer,
3416         * (genEndFunction): before restoring local registers that were saved
3417         in the function preamble, also restore the registers that *might*
3418         have been allocated for stack access,
3419         * (genRet): removed some old comments,
3420         * (genCmp, the active (RN's) version): added a call to the
3421         pic16_genCmp_special function to perform the compare with a more
3422         robust and optimized way,
3423         * (genInline): a feature has been added in inline code generation,
3424         which allows a wildcard variable substitution when writing inline
3425         assembly. Code is incomplete and experimental therefore undocumented,
3426         * (genCast): changed order of aopOp for result and right to allow
3427         aopForSym to directly load the result if possible,
3428         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3429         perform an optimized compare on some selected special occasions,
3430         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3431         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3432         generate an IVT any more,
3433         * src/pic16/main.c (pic16_optionsTable): added command line option
3434         --optimize-cmp,
3435         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3436         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3437         macros,
3438         * src/pic16/NOTES: Raphael Neider added in list of active developers
3439         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3440         jumptable_end to prevent bug #,
3441         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3442         inCond and outCond fields,
3443         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3444         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3445         turn off register spilling,
3446         * (packRegsForOneUse): synced with other ports' versions although it
3447         is not used currently,
3448         * (pic16_packRegisters): added an optimization while reading
3449         structure bitfields, some registers may be saved (malloc code is
3450         decreased by 80 bytes)
3451
3452 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3453
3454         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3455         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3456         this can be optimized more?
3457
3458 2005-03-10 Raphael Neider <rneider AT web.de>
3459
3460         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3461           genNearPointerGet): (hopefully) fixed access to bitfields via
3462           pointers (p->bitN = x; and x = p->bitN; failed)
3463
3464 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3465
3466         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3467
3468 2005-03-09 Raphael Neider <rneider AT web.de>
3469
3470         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3471
3472 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3473
3474         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3475         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3476           (regTypeNum): set REG_BIT type if necessary
3477         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3478         * support/regression/tests/critical.c: check bug 1144613
3479
3480 2005-03-02 Raphael Neider <rneider AT web.de>
3481
3482         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3483
3484 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3485
3486         * src/avr/ralloc.c (serialRegAssign),
3487         * src/ds390/ralloc.c (serialRegAssign),
3488         * src/hc08/ralloc.c (serialRegAssign),
3489         * src/mcs51/ralloc.c (serialRegAssign),
3490         * src/pic/ralloc.c (serialRegAssign),
3491         * src/pic16/ralloc.c (serialRegAssign),
3492         * src/xa51/ralloc.c (serialRegAssign),
3493         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3494
3495 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3496
3497         * src/SDCCast.c (decorateType): fixed bug 1124787
3498
3499 2005-02-20 Hubert Sack <sack AT digiplan.de>
3500         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3501
3502         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3503         patch #1121755
3504
3505 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3506
3507         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3508         to keep the correct label reference count when adding/removing references
3509         to labels. A peephole file using this is appended to patch #1144962.
3510
3511 2005-02-14 Raphael Neider <rneider AT web.de>
3512
3513         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3514         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3515         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3516           retrievals of result operand's value on assignment
3517
3518 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3519
3520         * device/include/pic16/string.h: modified prototype for memccpy()
3521         to memccpy(void *, void *, char, size_t)
3522         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3523         check whether to omit frame pointer or not,
3524         * (genInline): convert all occurences of "\n" to LF in inline
3525         assembler blocks, this helps formatting the inline text,
3526         * (pic16_loadFSR0): modified prototype,
3527         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3528         removed some 8051 legacy code,
3529         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3530         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3531         before allocating temporary registers in functions,
3532
3533 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3534
3535         * support/regression/tests/bitvars.c: corrected the "fix"
3536
3537 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3538
3539         * support/regression/tests/bitvars.c,
3540         * support/regression/tests/bitwise.c,
3541         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3542
3543 2005-02-10 Raphael Neider <rneider AT web.de>
3544
3545         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3546           different size for Alpha
3547         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3548
3549 2005-02-09 Raphael Neider <rneider AT web.de>
3550
3551         * src/SDCC.lex(doPragma) : save and restore warning options as well
3552           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3553         * have #pragma less_pedantic set the errorlevel to WARNING
3554           (fixes #1117001)
3555         * (cloneOptimize) : fixed wrong malloc's size
3556         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3557           facilitate correct handling of #pragma (save|restore)
3558
3559 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3560
3561         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3562
3563 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3564
3565         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3566
3567 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3568
3569         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3570
3571 2005-02-02 Raphael Neider <rneider AT web.de>
3572
3573         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3574         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3575         * (pic16_storeForReturn): fixed to allow returning function pointers
3576         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3577         * device/include/pic16/{stddef.h,stdbool.h}: added
3578
3579 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3580
3581         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3582
3583 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3584
3585         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3586         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3587          appeared to be required
3588
3589 2005-01-31 Borut Razem <borut.razem AT siol.net>
3590
3591         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3592           include/mcs51 and include/z80 directories to the package
3593
3594 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3595
3596         * src/hc08/gen.c (genFunction): fixed bug #1112752
3597
3598 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3599
3600         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3601
3602 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3603
3604         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3605
3606 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3607
3608         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3609
3610 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3611
3612         * device/include/c8051fxxx.h: removed these 6 files
3613         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3614
3615 2005-01-26 Raphael Neider <rneider AT web.de>
3616
3617         * src/pic16/gen.c (genAssign): fixed assignment from longs
3618           in codespace (were cut to three bytes)
3619         * (genDummyRead): implemented (except for CODESPACE...),
3620           fixed bug #1108575
3621         * src/pic16/glue.c (emitStatistics): beautified
3622         * device/lib/pic16/libm/Makefile: added include path
3623
3624 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3625
3626         * src/z80/gen.c (aopPut): fixed bug #1103902
3627
3628 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3629
3630         * device/lib/expf.c: fixed bug #1095792
3631
3632 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3633
3634         * device/lib/pic16/libm: added Math library sources
3635
3636 2005-01-24 Raphael Neider <rneider AT web.de>
3637
3638         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3639           to enable upcast to pCodeOpReg2 (there is no type tag to
3640           differenciate the two and pic16_popGet2p cast into PCOR2)
3641         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3642           (sizeof(sectNames) changed to sizeof(sectName))
3643           Both patches fix segfaults under MinGW.
3644
3645 2005-01-23 Raphael Neider <rneider AT web.de>
3646
3647         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3648           Safe_[mc]?alloc()'ed variables
3649         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3650           of (byte sized) temporaries (assign them to WREG for now)
3651         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3652           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3653           this might fix SIGSEGVs on MinGW...
3654         * src/SDCCopt.c (killDeadCode): restored original behaviour
3655           (volatile operands might get thrown away though)
3656
3657 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3658
3659         * src/pic16/gen.c: fixed bug #1106975,
3660         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3661         pointer update, INTCON is saved, global interrupts are disabled and
3662         restored after updateing TOS.
3663         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3664         * added function attribute 'shadowregs' to take advantage of shadow
3665         registers,
3666         * added function attribute 'wparam' as an alternative to the wparam
3667         pragma,
3668         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3669         user declares a non-ISR function as 'shadowregs',
3670         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3671
3672 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3673
3674         * .version: bumped version number to 2.4.8
3675         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3676         pic16 port,
3677         * device/lib/pic16/libio/i2c/: I2C module support library,
3678         * device/include/pic16/i2c.h: I2C support library header,
3679         * device/lib/pic16/libc/stdio/: standard IO support sources,
3680         * (printf_small.c): printf_small() source, supports float print,
3681         * (printf_tiny.c): printf_tiny() source, does not support floats,
3682         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3683         enable global optimizations for entire library source, other
3684         Makefiles in the source tree are also modified to reflect this,
3685         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3686         function,
3687         * doc/sdccman.lyx: updated to reflect new changes,
3688         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3689         sym->onStack if-case,
3690         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3691         sbit, idata, _idata, xdata, _xdata,
3692         * added pragma library, to link an external library, (see doc),
3693         * removed command line options, --pomit-config-words, --pomit-ivt,
3694         --pleave-reset-vector,
3695         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3696         when calling assembler to reflect memory model used, also define
3697         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3698         reflect stack model used,
3699         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3700         on stack return NULL,
3701
3702 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3703
3704         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3705           of the operands is volatile. Fixes #1020220
3706
3707 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3708
3709         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3710         * (OptimizeRegUsage): make sure that there is really no other flow where
3711           the first pCode is used
3712
3713 2005-01-22 Raphael Neider <rneider AT web.de>
3714
3715         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3716           to fix #1106967 (pCode->seq are not set up correctly)
3717
3718 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3719
3720         * src/SDCCglue.c (glue): make sure code area is declared before the
3721         static initialization area.
3722
3723 2005-01-21 Raphael Neider <rneider AT web.de>
3724
3725         * device/lib/Makefile.in: fixed test for pic16 install dir
3726         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3727           optimizations
3728         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3729           added --optimize-goto compiler switch and pragma wparam documentation
3730         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3731         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3732           and PRODH closing bug #1071770 (peephole optimizer)
3733
3734 2005-01-19 Raphael Neider <rneider AT web.de>
3735
3736         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3737           cmdLine buffers (used when calling sdcpp...) are large enough
3738           (MAX_PATH=256 truncates arguments leading to system halts when
3739           used in MinGW...)
3740         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3741         * (genUminus): rewritten to for efficiency
3742         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3743           used uninitialized in some cases)
3744         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3745           copy the third byte from the int -- now assumes 0x80 (data memory)
3746         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3747           operands (genAddLit expects the iCode's operands to swapped as
3748           well), fixed leftover bytes (crashed for short left operands)
3749         * (pic16_genMinusDec): performance improvements, removed false
3750           PIC14 emitSKPNCs
3751         * (pic16_genMinus): fixed to cope with differently sized operands
3752         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3753           for --obanksel > 1
3754         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3755         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3756           new banksel optimization
3757         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3758           analysis for temporary registers (segfaults...)
3759         * src/pic16/peeph.def: added rule
3760
3761 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3762
3763         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3764         which converts a float number to its ASCII representation
3765         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3766         functions to convert the fractional and integer part of a float to ASCII,
3767         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3768         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3769         ram
3770         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3771         _STATMEM macros,
3772         * device/include/pic16/adc.h: added GPL info,
3773         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3774         a pCodeOp as tested operand,
3775         * (genNearPointerGet): optimized bit testing, does not use
3776         intermediate register for bit value, test directly instead with
3777         BTFSS, BTFSC, works only for single bits,
3778         * (genpic16Code): dump the name of the iCode in the asm,
3779         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3780         renamed to pic16_decodeOp,
3781         * (serialRegAssign): do not allocate a temporary register for iCode
3782         sequences that test a single bit for 1/0
3783
3784 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3785
3786         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3787         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3788         access stack and frame pointers. They are initially assigned to
3789         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3790         accessing SFRs. Updated all occurences of modification of stack or
3791         frame pointer in gen.c and pcode.c,
3792         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3793         assigning of a literal value to pointers,
3794         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3795         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3796         selected
3797
3798 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3799
3800         * doc/sdccman.lyx: update documentation about stack pragma, added
3801         some info for stack memory models
3802
3803 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3804
3805         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3806
3807 2005-01-08 Raphael Neider <rneider AT web.de>
3808
3809         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3810           udata sections to fix bug #1097823
3811
3812 2005-01-05 Raphael Neider <rneider AT web.de>
3813
3814         * src/pic16/gen.c (genGenericShift): added handling of differently
3815           sized left operand and result
3816
3817 2005-01-04 Raphael Neider <rneider AT web.de>
3818
3819         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3820         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3821           to hold the condition bit)
3822         * added new version of genCmp (old code available via #define)
3823         * added new version of genShiftLeft/genShiftRight in a generic
3824           way, now supports shifting by negative values
3825         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3826           shiftCount (expected by genGenericShift)
3827         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3828         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3829           dump
3830         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3831           is an invalid literal too...)
3832
3833 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3834
3835         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3836         from Raphael Neider,
3837         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3838         for 8-bit literals. This fixes some literal operands which are sign
3839         extended to 16-bits ints when instruction needs only 8-bits.
3840
3841 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3842
3843         * device/lib/logf.c: added mcs51 assembly version
3844         * device/lib/expf.c: added mcs51 assembly version
3845         * device/lib/_logexpf.c: new shared asm code for expf and logf
3846         * device/include/math.h: add defines for assembly math library
3847         * device/lib/Makefile.in: build new _logexpf.c
3848         * device/lib/libfloat.lib: use new _logexpf.c
3849
3850 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3851
3852         * src/pic/device.c
3853         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3854           device types which have less than 0x7f registers.
3855
3856 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3857
3858         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3859
3860 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3861
3862         * device/lib/printf_fast.c: only build on supported arch.
3863         * device/lib/printf_tiny.c: only build on supported arch.
3864         * device/lib/printf_fast_f.c: only build if asm float lib
3865         * device/lib/_fsget1arg.c: only build if asm float lib
3866         * device/lib/_fsget2args.c: only build if asm float lib
3867         * device/lib/_fsnormalize.c: only build if asm float lib
3868         * device/lib/_fsreturnval.c: only build if asm float lib
3869         * device/lib/_fsrshift.c: only build if asm float lib
3870         * device/lib/_fsswapargs.c: only build if asm float lib
3871         * device/include/stdio.h: don't provide print_fast,
3872           print_fast_f, print_tiny prototypes if --xstack used
3873
3874 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3875
3876         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3877         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3878           to the SOURCES
3879
3880 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3881
3882         * device/lib/printf_fast_f.c: same as printf_fast, but
3883           with floating point enabled
3884         * device/lib/printf_fast.c: minor tweaks
3885         * device/include/stdio.h: add printf_fast_f
3886
3887 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3888
3889         * src/SDCCmain.c: make --float-reent default for mcs51
3890         * device/lib/_fsadd.c: added mcs51 assembly version
3891         * device/lib/_fssub.c: added mcs51 assembly version
3892         * device/lib/_fsmul.c: added mcs51 assembly version
3893         * device/lib/_fsdiv.c: added mcs51 assembly version
3894         * device/lib/_fseq.c: added mcs51 assembly version
3895         * device/lib/_fsneq.c: added mcs51 assembly version
3896         * device/lib/_fsgt.c: added mcs51 assembly version
3897         * device/lib/_fslt.c: added mcs51 assembly version
3898         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3899         * device/lib/Makefile.in: add _fscmp to build
3900         * device/lib/libfloat.lib: add _fscmp to build
3901
3902 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3903
3904         * device/lib/_fs2slong.c: added mcs51 assembly version
3905         * device/lib/_fs2sint.c: added mcs51 assembly version
3906         * device/lib/_fs2schar.c: added mcs51 assembly version
3907         * device/lib/_fs2ulong.c: added mcs51 assembly version
3908         * device/lib/_fs2uint.c: added mcs51 assembly version
3909         * device/lib/_fs2uchar.c: added mcs51 assembly version
3910         * device/lib/_slong2fs.c: added mcs51 assembly version
3911         * device/lib/_sint2fs.c: added mcs51 assembly version
3912         * device/lib/_schar2fs.c: added mcs51 assembly version
3913         * device/lib/_ulong2fs.c: added mcs51 assembly version
3914         * device/lib/_uint2fs.c: added mcs51 assembly version
3915         * device/lib/_uchar2fs.c: added mcs51 assembly version
3916         * device/include/float.h: added #define to select asm vs c
3917
3918 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
3919
3920         * device/lib/printf_fast.c: improvements to float output
3921         * device/include/float.h: add defines for assembly float library
3922         * device/lib/_fsget1arg.c: receive 1 float arg
3923         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
3924         * device/lib/_fsnormalize.c: normalize a float
3925         * device/lib/_fsreturnval.c: return float, various helper routines
3926         * device/lib/_fsrshift.c: right shift a float's mantissa
3927         * device/lib/_fsswapargs.c: swap 2 floats
3928         * device/lib/Makefile.in: build these 6 new files for mcs51
3929         * device/lib/libfloat.lib: add these 6 files to the library
3930
3931 2004-12-26 Borut Razem <borut.razem AT siol.net>
3932
3933         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
3934           built by gcc 3.4.2
3935
3936 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
3937
3938         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
3939           and fully reentrant and register bank neutral.
3940         * device/lib/printf_fast.c: added float (not enabled by default),
3941           added compact/slower integer (also not enabled by default),
3942           improved size/speed of fast integer code, other minor changes
3943         * device/include/stdio.h, device/lib/Makefile.in,
3944           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
3945
3946 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
3947
3948         * src/pic16/pcode.c: declaring variables other than at the start of a
3949           block is not supported in C by VC6.
3950
3951 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
3952
3953         * applied a previous patch from Raphael Neider that wasn't included
3954         in the previous commits, which fixes infinite loops within jumptable
3955         improvements,
3956         * made some fixes that previous patches introduced
3957
3958 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
3959
3960         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
3961         that fixes an issue with AOP_PCODE asmop's offset,
3962         * (pic16_popCopyReg): update instance field too,
3963         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
3964         function of pic port,
3965         * (genCmp, genAnd, genAssign),
3966         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
3967
3968 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
3969
3970         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
3971         variables initial values to idata section,
3972         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
3973         variables in some functions. This utilizes parmBytes field of iCode
3974         structure to hold the offset of the variable in stack. (might be
3975         able to use the stack field too?)
3976         * applied patch from Raphael Neider # ### , # ###
3977         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
3978         variable initial values in idata section,
3979         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
3980         for static variables with initial value
3981         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
3982         applied fix in while loop from Raphael Neider.
3983
3984 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
3985
3986         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
3987         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
3988         * src/ds390/ralloc.c (serialRegAssign): spill bits
3989         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
3990         * support/Util/SDCCerr.c,
3991         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
3992         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
3993         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
3994
3995 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
3996
3997         * device/include/sdcc-lib.h: inserted LGPL, added includes
3998           asm/ds390/features.h and asm/mcs51/features.h
3999         * device/include/asm/default/features.h,
4000         * device/include/asm/gbz80/features.h,
4001         * device/include/asm/z80/features.h: added empty _AUTOMEM
4002           and _STATMEM
4003         * device/include/asm/ds390/features.h,
4004         * device/include/asm/mcs51/features.h: added files with defines for
4005           _AUTOMEM and _STATMEM indicating automatic and static storage class
4006         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4007         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4008         * src/SDCCicode.c (geniCodeCast),
4009         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4010         * src/SDCCloop.c (loopInduction): removed unused variable lr
4011         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4012           to convertToFcall to include char modulo (RFE 1065037), added check
4013           if left operand is unsigned and use abs of literal value
4014         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4015           as it doesn't work after conversion from peephole.def to peephole.rul
4016         * src/mcs51/gen.c (toBoolean): added check for size,
4017           (genModOneByte): optimized code for signed char modulo a literal
4018           power of 2 (thanks to Hubert Sack),
4019           (genRRC): removed unnecessary "clr c",
4020           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4021         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4022           jump optimization,
4023           swapped rules 256.c and 256.d,
4024           extended 256.d by using new multiple checks (thanks Erik),
4025           added rules 256.e and 256.f,
4026           updated rule 261.a and 261.b to new generated code
4027         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4028
4029 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4030
4031         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4032           induction related bugs, including first part of bug #1074377
4033
4034 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4035
4036         * applied patch from bug-report #1076292,
4037         * applied patches for genAnd and Goto-optimizations for Raphael
4038         Neider,
4039         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4040         dump a less iCode information,
4041         * src/pic16/device.h (pic16_options_t): added field debgen,
4042         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4043         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4044         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4045         puclic,
4046         * (various functions): added macros FENTRY and FENTRY2 to functions,
4047         to emit function prologue,
4048         * (various functions): fixed indentation,
4049         * (genNearPointerGet): fixed loading of FSR0,
4050         * (genPackBits): applied patch from Raphael Neider to fix updating
4051         of FSR0 and touching only the modified bits,
4052         * src/pic16/genarith.c (various functions): added macros FENTRY to
4053         emit function prologue in comments,
4054         * src/pic16/pcode.h: added functions debugf2, debugf3,
4055         * src/pic16/ralloc.c: partial fix for packForPush caused
4056         segmentation fault,
4057
4058 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4059
4060         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4061           <stsp AT users.sourceforge.net> with reversed byte order
4062         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4063
4064 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4065
4066         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4067           bug #1074377
4068         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4069         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4070
4071 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4072
4073         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4074
4075 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4076
4077         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4078           conditions,
4079           (setFromConditionArgs): friendly operand parser for peephole rules,
4080           (operandBaseName, operandsNotRelated): new peephole condition
4081           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4082           architecture specific register naming into account, handles n-way
4083           comparisons, and supports quoted literals
4084         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4085
4086 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4087
4088         * src/mcs51/peeph.def: fixed bug #1076940
4089
4090 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4091
4092         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4093
4094 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4095
4096         Adding support for replacing ljmps with sjmps in jumptables
4097         generated for switch statements. For now you need to set the
4098         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4099         Now 4 algorithms for mcs51 jumptable generation are used:
4100         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4101         addresses loaded pc-relative for up to 112 cases and stack-pushing
4102         target addresses loaded with offset from dptr for up to 256 cases.
4103
4104         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4105         * src/mcs51/main.c: adapted constants for switch table generation
4106         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4107
4108 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4109
4110         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4111         * support/regression/tests/bug1057979.c: added test for bug 1073386
4112
4113 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4114
4115         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4116         compilers
4117
4118 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4119
4120         * src/pic16/device.h,
4121         * src/pic16/genarith.c,
4122         * src/pic16/glue.c,
4123         * src/pic16/main.c,
4124         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4125
4126 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4127
4128         Large cummulative patch for pic16 port.
4129         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4130         to call when a stack overflow occurs,
4131         * (malloc.h): added CVS Id tag,
4132         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4133         variable,
4134         * added libc directory. The current version of LibC contains string
4135         functions, ctype functions and macros and some functions of the
4136         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4137         be extensively tested in the future. Standard disclaimer here.
4138         Library is not automatically build yet. But one can build it by
4139         invoking 'make' inside the libc directory.
4140         * added ADC library under libio. Preliminary version yet.
4141
4142         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4143         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4144         aopForRemat() now and not by pic16_aopOp(),
4145         * (pic16_popGetTempReg): removed warning messgae when allocating
4146         temporary registers, its a buggy feature and will be removed,
4147         * (pic16_popGet): set register instance field in AOP_CRY,
4148         * (pic16_outBitC): fixed for results in size greater than 1,
4149         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4150         * (pic16_storeForReturn): optimized return of 0,
4151         * (genCmp): experimental code for new genCmp which uses PIC18's
4152         special compare&skip instructions. Initial tests fail some times
4153         with variables grater than 1 byte in size, so new code is disabled,
4154         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4155         a single bit,
4156         * (genCast): began a fix to optimize the casting of a bit to another
4157         bit, now assigning a bitfield to another bitfield will fail, sorry,
4158         * src/pic16/main.c: disabled the use of lr-support feature,
4159         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4160         * added some function prototypes, added function _debugf prototype,
4161         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4162         bits with offset (case PO_GPR_BIT),
4163         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4164         command line,
4165         * (isBankInstruction): modified to return 0 for no banking instruction,
4166         and 1 for banking instruction,
4167         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4168         caused stop processing pCodes after a inline assembly block,
4169         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4170         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4171         registers when it shouldn't,
4172         * src/pic16/ralloc.c (allocReg): add preliminary support for
4173         supporting a limited set of temporary registers,
4174
4175 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4176
4177         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4178           genDataPointerSet): ensure assignments always copy in MSB to LSB
4179           order,
4180           (loadRegFromAop): recognize CLRH optimization,
4181           (genFunction): optimize RECEIVE iCodes in reentrant functions
4182
4183 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4184
4185         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4186           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4187           selected.
4188         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4189         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4190           contiguous with data
4191
4192 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4193
4194         * device/lib/_gptrget.c (_gptrget),
4195         * device/lib/_gptrgetc.c (_gptrgetc),
4196         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4197           instead of sjmp to ret
4198         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4199           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4200
4201 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4202
4203         * .version: bumped version to 2.4.7
4204         * device/lib/_gptrget.c (_gptrget): is now _naked
4205         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4206         * device/lib/_gptrput.c (_gptrput): is now _naked
4207         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4208           (createFunction): fixed xstack
4209         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4210         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4211           or bit either,
4212           (geniCodeCritical): store original interrupt state in an iTemp bit
4213           var unless stack-auto
4214         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4215         * src/SDCCmain.c (setIncludePath): added include/target to search path
4216         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4217         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4218           prototype,
4219           (processFuncArgs): put bit vars in bit area
4220         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4221           unsaveRBank): fixed xstack,
4222           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4223           (genFunction, genEndFunction): fixed xstack,
4224           (genAssign): optimization don't walk backwards through mem
4225         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4226         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4227         * support/regression/Makefile: also make library (for stack-auto) when
4228           making "all" and added "test-mcs51-xstack-auto"
4229         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4230         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4231         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4232         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4233         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4234           make-library by MAKE_LIBRARY
4235         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4236           regression tests for xstack
4237         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4238         * support/regression/tests/critical.c: test for critical on mcs51
4239
4240 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4241
4242         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4243           built version of sdcc instead of installed version
4244
4245 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4246
4247         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4248         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4249           vprintf.c now
4250         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4251         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4252           WARNING: remove device/lib/build/z80/printf.o by hand when
4253           updating from previous build!
4254         * device/lib/z80/printf.c: updated comment
4255         * support/regression/tests/bug1057979.c: test all ports now
4256         * support/regression/tests/bug1065458.c: file added
4257
4258 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4259
4260         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4261           *_start and *_end symbols for static functions
4262
4263 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4264
4265         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4266           and search crt0.o in all library paths,
4267           (setIncludePath): proper handling of --nostdinc,
4268           (setLibPath): proper handling of --nostdlib
4269         * support/regression/Makefile,
4270         * support/regression/ports/ds390/spec.mk,
4271         * support/regression/ports/gbz80/spec.mk,
4272         * support/regression/ports/hc08/spec.mk,
4273         * support/regression/ports/mcs51/spec.mk,
4274         * support/regression/ports/mcs51-large/spec.mk,
4275         * support/regression/ports/mcs51-stack-auto/spec.mk,
4276         * support/regression/ports/z80/spec.mk: use include and lib files from
4277           built version of sdcc instead of installed version
4278         * doc/sdccman.lyx: fixed typo in --nostdinc
4279
4280 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4281
4282         * src/pic/pcode.c,
4283         * src/pic/device.c,
4284         * src/pic/ralloc.c,
4285         * src/pic/gen.c : added support to generate code for struct bit fields.
4286
4287 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4288
4289         * as/xa51/xa_version.h,
4290         * device/include/errno.h,
4291         * device/include/regc515c.h,
4292         * device/lib/_itoa.c,
4293         * device/lib/_ltoa.c,
4294         * device/lib/ser_ir_cts_rts.c,
4295         * sim/ucsim/xa.src/glob.cc,
4296         * sim/ucsim/xa.src/inst_gen.cc,
4297         * sim/ucsim/xa.src/xa_bit.cc,
4298         * sim/ucsim/xa.src/xa_sfr.cc,
4299         * sim/ucsim/z80.src/inst_dd.cc,
4300         * sim/ucsim/z80.src/inst_fdcb.cc,
4301         * support/scripts/keil2sdcc.pl,
4302         * src/pic16/pic16.dsp,
4303         * src/pic16/pic16a.dsp: corrected cvs line endings
4304         * device/lib/printf_large.c: fixed bug 1057979
4305         * src/pic16/gen.c: fixed non-C standard code
4306         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4307         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4308         * support/regression/ports/mcs51/support.c: reload T1 asap
4309         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4310           pdata use and clear idata startup behaviour
4311         * support/regression/tests/bug1057979.c: added
4312
4313 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4314
4315         * device/examples/ds390/ow390/ad26.h,
4316         * device/examples/ds390/ow390/cnt1d.h,
4317         * device/examples/ds390/ow390/crcutil.c,
4318         * device/examples/ds390/ow390/ownet.h,
4319         * device/examples/ds390/ow390/owsesu.c,
4320         * device/examples/ds390/ow390/swt12.h,
4321         * device/examples/ds390/ow390/swtoper.c,
4322         * device/examples/ds390/ow390/temp10.h,
4323         * device/examples/ds390/ow390/thermodl.c,
4324         * device/examples/ds390/tinitalk/tinitalk.dsp,
4325         * device/examples/ds390/tinitalk/tinitalk.dsw,
4326         * device/examples/mcs51/clock/hw.h,
4327         * device/examples/mcs51/simple2/go.bat,
4328         * device/examples/serialcomm/windows/serial.h,
4329         * device/examples/xa51/dummy.c,
4330         * device/examples/xa51/hello.c,
4331         * device/include/80c51xa.h,
4332         * device/include/at89x051.h: corrected cvs line endings
4333
4334 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4335
4336         * src/pic16/main.c (options): added command line --gstack, to trace
4337         stack over/under flows,
4338         * added pragma 'wparam' to allow passing first byte of function
4339         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4340         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4341         call to __gstack_test function and sets up the symbol as extern,
4342         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4343         * popaop): added call to pic16_testStackOverflow,
4344         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4345         wparamList list,
4346         * (genCall, genPcall): now all parameters are passed via stack
4347         except in functions that are pass to wparam pragma in which WREG is
4348         used too,
4349         * (genPcall): REENTRANT flag is checked to see if variable prototype
4350         contains reentrant keyword, don't call a non-reentrant function, via
4351         a reentrant function pointer or vice versa, functions are never
4352         passed via WREG,
4353         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4354         D.Winkler,
4355         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4356         SIGSEGV when accessing a NULL register stucture,
4357         * (pic16_printGPointerType): modified to handle UPPER modifier for
4358         function initializers, changed prototype of function to simpler one,
4359         * (pic16_printIvalFuncPtr): check to see if function is already
4360         added in externs list,
4361         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4362         optimized a move from W to SFR with a move to the same register
4363         later after a CALL,
4364         * device/lib/pic16/debug: NEW directory, contains debug features
4365         which are enabled when linking with libdebug.lib, currently command
4366         line option --gstack enables stack pointer tracing for over/under
4367         flow, corresponding sources are in debug/gstack
4368
4369 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4370
4371         * doc/sdccman.lyx: updated SDCC version,
4372         * (PIC16 port): update list of command line options,
4373         * src/pic16/device.h (structure pic16_options_t): added field gstack
4374         to enable stack overflow tracing on push/pops,
4375         * src/pic16/device.c (statistics structure): added statistics
4376         structure,
4377         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4378         pic16_dump_int_registers): increase statistics counters for each
4379         * variable which is encountered
4380         * (pic16_dump_usection): emit each .udata variable to its own udata
4381         section,
4382         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4383         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4384         parameters via stack, otherwise use old scheme,
4385         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4386         assembler output file,
4387         * src/pic16/main.c: added command line options --gstack to enable
4388         push/pop tracing for stack overflow,
4389         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4390         instructions): added size of each instruction,
4391         * (pic16_countInstruction): estimate size of instructions in
4392         the_pFile list, inline assembly blocks are not counted,
4393         * (pic16_FixRegisterBanking): trace previous register usage, when
4394         banksel optimizations is greater than 0, don't emit a redudant
4395         banksel directive,
4396
4397 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4398
4399         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4400         * src/pic16/ralloc.c : applied same fix for pic16.
4401         * src/pic/gen.c : tidied it up a little.
4402
4403 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4404
4405         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4406         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4407
4408 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4409
4410         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4411
4412 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4413
4414         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4415         non-reentrant function __modsint in the interrupt function (thus
4416         corrupting math operations during serial I/O)
4417         * device/lib/ser_ir.c: as above, changed buffersize
4418         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4419         256.c,d for zeroing
4420         * doc/Makefile: added option -t for rsync
4421
4422 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4423
4424         * src/SDCCast.h (struct ast),
4425         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4426
4427 2004-10-20 Borut Razem <borut.razem AT siol.net>
4428
4429         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4430         package
4431
4432 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4433
4434         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4435         makefile targets,
4436         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4437         support functions to replace long sequences of MOVFF's from access
4438         bank registers to stack and vice versa,
4439         * src/pic16/device.h: added new field opt_flags, where optimization
4440         flags can be set to enable certain features,
4441         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4442         * pBlock, (genFunction, genEndFunction): surroung loop for
4443         saving/loading used registers in stack with PC_INFO pCodes,
4444         INF_LREGS. Code in between can then be optimized by pCode optimizer
4445         to support function calls,
4446         * (genDataPointerSet): fixed bug which loaded float fields in
4447         structures with corrupt data,
4448         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4449         in a standard way debug info on stderr. Feature used for developing
4450         and debugging only,
4451         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4452         obsolete chunks of code,
4453         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4454         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4455         * pic16/src/pcode.c (pic16_newpCodeInfo,
4456         * (pic16_newpCodeOpLocalRegs),
4457         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4458         feature,
4459         * (pic16_pCodeConstString): printing of the initial value of a
4460         symbol as a comment is inhibited since parsing was already done by
4461         copyStr and output is corrupt,
4462         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4463
4464 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4465
4466         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4467
4468 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4469
4470         * as/mcs51/lkarea.c: removed old K&R style,
4471           (lnksect): changed check on boundary error,
4472           (lnksect2): changed check on boundary error,
4473           (lnksect2): extend XSTK to end of page if size = 1
4474         * as/mcs51/lkmain.c: removed old K&R style,
4475           (Areas51): create l_IRAM symbol
4476         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4477         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4478           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4479         * device/lib/_mullong.c: added version to be compiled with xstack
4480         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4481         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4482         * device/lib/mcs51/crtxstack.asm: fixed comment
4483         * src/SDCCglue.c: maxInterrupts defaults to 0,
4484           (emitMaps): added pdata,
4485           (createInterruptVect): (re)moved default,
4486           (glue): added pdata,
4487           (glue): moved __start__xstack to XSTK with default size 1
4488         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4489           and options.float_rent when options.stackAuto is set,
4490           (linkEdit): only write XDATA_NAME if provided on command line
4491         * src/SDCCmem.h,
4492         * src/SDCCmem.c: added pdata
4493         * src/port.h: added pdata_name to PORT
4494         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4495           (saveRegisters, unsaveRegisters): removed usage of B,
4496           (genMinus): fixed accumulator clash,
4497           (genJumpTab): added comment, this needs another look
4498         * src/mcs51/gen.c: added check for "B in use" paranoia,
4499           added pushB() and popB()
4500         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4501           chance
4502         * src/avr/main.c,
4503         * src/ds390/main.c,
4504         * src/hc08/main.c,
4505         * src/mcs51/main.c,
4506         * src/pic/main.c,
4507         * src/pic16/main.c,
4508         * src/xa51/main.c,
4509         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4510           added PSEG (PAG,XDATA) or NULL to port specifier
4511         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4512         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4513           (_mcs51_genInitStartup): removed __start__xstack equ,
4514           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4515         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4516         * src/z80/gen.c (_rleAppend): fixed warnings
4517         * support/regression/tests/zeropad.c: added pdata test
4518         * .version: bumped to 2.4.6
4519
4520 2004-10-17 Borut Razem <borut.razem AT siol.net>
4521
4522         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4523         as a part of nightly build
4524
4525 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4526
4527         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4528         WREG holds the first byte function parameters,
4529         * (aopForSym): take special case for symbols which are in FARSPACE
4530         but in CODESPACE too,
4531         * (assignResultValue): modified to take into account _G.useWreg,
4532         * (genCall): don't use wreg for parameter passing when function is
4533         declared as reentrant, too, added optimization INCF to stack
4534         pointer when stack parameter count is 1,
4535         * (genFunction, genEndFunction): refurnished and fixed to not using
4536         wreg for passing parameters when function has varargs or is
4537         reentrant, fixed bug with symbol name compare for generating
4538         functions in absolute address,
4539         * (pic16_storeForReturn): refurnished,
4540         * (genCmp): began writing a new version of the function, not ready
4541         yet, therefore it is disabled,
4542         * (genAssign): do not read code memory when assigning a function to
4543         a pointer function,
4544         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4545         array of characters, not pointer,
4546         * (pic16initialComments): in debug mode emit an .ident directive for
4547         the assembler,
4548         * (_process_pragma): emit a new warning type (internal to pic16)
4549         when setting stack to default length, emit a similar warning when
4550         placing a function at absolute address and address is not word aligned
4551         * (_pic16_parseOptions): added 'return TRUE' statement,
4552         * (_pic16_linkEdit): if compiling a source, then add the source's
4553         file object, first in the list of objects to link,
4554
4555 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4556
4557         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4558         * src/pic/main.c : removed VC warning.
4559         * src/pic/gen.c : changed comment.
4560
4561 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4562
4563         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4564         reference to a deprecated symbol _GPTRREG was causing failure to
4565         link. Thanks G. M. Gallant for the info.
4566
4567 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4568
4569         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4570         comments for Bugs item #954788.
4571
4572 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4573
4574         * src/pic16/device.c (pic16_dump_gsection,
4575         * pic16_groupRegistersInSection): handle symbols declared to be in
4576         access bank differently,
4577         * src/pic16/gen.c (struct _G): added field resDirect,
4578         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4579         send values read from stack directly to result and don't allocate
4580         temporary values,
4581         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4582         same registers,
4583         * (pic16_sameRegsOfs): NEW,
4584         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4585         free because they were not allocated from temporary pool,
4586         * pic16_popRegFromString): workaround to fix a problem with
4587         allocating variables twice or never,
4588         * (genGenPointerGet): using PRODL instead of FSR0H,
4589         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4590         instead of FSR0H,
4591         * (genAssign): take advantage of the _G.resDirect flag,
4592         * (genCast): around line 11844, use mov2f instead of directly
4593         MOVFF'ing between operands to account for literal values,
4594         * src/pic16/genutils.c: some new debug functions for gpsim have been
4595         added,
4596         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4597         float with integer part only,
4598         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4599         place variables in access bank
4600         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4601         updated sources to reflect recent changes in gen.c
4602
4603 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4604
4605         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4606         sources that searched for headers in installation path, now the
4607         device/include/pic16 is used,
4608         * src/pic16/glue.c (pic16glue),
4609         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4610         .line directives if not in debug mode, this suppresses assembler's
4611         warnings for ignored directives
4612
4613 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4614
4615         * src/port.h: made reset_regparms prototype void parameter explicit.
4616         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4617         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4618         * doc/sdccman.lyx: documented warning disabling and how to use
4619           printf_large to make it print floats.
4620         * device/include/stdbool.h: NEW
4621         * device/lib/_atof.c,
4622         * device/lib/_divuint.c,
4623         * device/lib/_divulong.c,
4624         * device/lib/expf.c,
4625         * device/lib/printf_large.c,
4626         * device/lib/sincosf.c,
4627         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4628         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4629           a completely reentrant lib.
4630
4631 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4632
4633         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4634         * device/include/pic16/stdio.h: fixed bug with colon
4635
4636 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4637
4638         * device/include/pic16/stdio.h,
4639         * device/include/pic16/stdlib.h,
4640         * device/include/pic16/math.h: NEW
4641         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4642         declared as _naked to reduce overhead
4643         * device/lib/Makefile.in (target port-specific-objects-pic16):
4644         changed * to *.* so to ignore the CVS directory,
4645         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4646         stacked variables back in stack,
4647         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4648         corruption
4649
4650 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4651
4652         * .version: bumped version number to 2.4.5
4653         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4654         * support/Util/SDCCerr.c (messages structure): added entry for
4655         W_POSSBUG2
4656
4657         Large cumulative patch for pic16 port and libraries.
4658         * device/include/pic16/sdcc-lib.h,
4659         * device/include/pic16/stdarg.h,
4660         * device/include/asm/pic16/features.h,
4661         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4662         * device/include/pic16/float.h: changes reentrant keyword with
4663         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4664         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4665         updated target build-libraries to include objects from gptr,
4666         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4667         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4668         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4669         all function headings,
4670         * src/SDCCmain.c: added global parameter userIncDirsSet,
4671         * (parseCmdLine): when option -I is encountered add directory to
4672         userIncDirsSet too,
4673         * src/version.awk: added space between control and long,
4674         * src/pic16/NOTES: added some notes for the port,
4675         * src/pic16/gen.c: added prototype for mov2fp function,
4676         * (fReturnpic16[]): properly named return value registers,
4677         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4678         * (aopForSym): added code to handle symbols with onStack flag set,
4679         symbols onStack are allocated PTRSIZE bytes,
4680         * (aopFreeAsmop): handles special case where asmops are stack objects,
4681         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4682         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4683         added argument lock to trace flaws in allocating temporary registers
4684         when developing port,
4685         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4686         * (pic16_popRegFromString): reenabled allocating a direct register
4687         from string,
4688         * (assignResultValue): various beautifications,
4689         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4690         referenced function argument,
4691         * (genIpush): reenabled to allow stacked arguments, handles only
4692         ic->parmPush iCodes,
4693         * (genCall, genPcall): major changes to allow for variable argument
4694         functions, fixed a bug with falsely restoring stack pointer after
4695         returning from call,
4696         * (genFunction): pending code for critical function,
4697         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4698         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4699         * (genNearPointerGet): fixed bug with indirect reading, was always
4700         reading from INDF0
4701         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4702         pointers,
4703         * (genAddrOf): rewrote code to take address of a stacked function parameter
4704         * (genCast): fixed casting to generic pointer type,
4705         * src/pic16/gen.h: added AOP_STA,
4706         * (struct asmop): added field stk,
4707         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4708         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4709         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4710         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4711         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4712         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4713         generic pointers,
4714         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4715         and library paths,
4716         * (pic16_port structure): generic pointer size is set to 3,
4717         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4718         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4719         compiler warning,
4720         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4721         operand is an iTemp,
4722
4723 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4724
4725         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4726         * debugger/mcs51/simi.c: addapt new syntax of s51
4727
4728 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4729
4730         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4731         * src/pic16/pcode.c: commented out some calls to free() in order to
4732         fix bug #989576,
4733
4734 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4735
4736         * src/SDCCicode.h,
4737         * src/SDCCicode.c (isiCodeInFunctionCall),
4738         * src/avr/ralloc.c (selectSpil),
4739         * src/pic/ralloc.c (selectSpil),
4740         * src/pic16/ralloc.c (selectSpil),
4741         * src/ds390/ralloc.c (selectSpil),
4742         * src/hc08/ralloc.c (selectSpil),
4743         * src/xa51/ralloc.c (selectSpil),
4744         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4745         stack in the middle of a function call sequence (fixes bug #1020268)
4746         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4747         costs associated with the minimum switch case.
4748
4749 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4750
4751         * src/SDCC.lex: fixed bug #1030549
4752
4753 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4754
4755         * src/SDCCcse.h (struct cseDef),
4756         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4757         over a function call if the CSE is derived from a symbol whose
4758         address has been taken (fixes bug #1029883)
4759         * support/regression/tests/bug-1029883: a new regression test for
4760         this bug
4761
4762 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4763
4764         * src/hc08/gen.c (emitinline): fixed bug #1029778
4765         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4766         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4767         and starts toward RFE #905167)
4768
4769 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4770
4771         * src/pic16/gen.c (mov2f): New function to move an operand to
4772         another without considering if it is a literal or a register,
4773         * (pic16_sameRegs): don't check if they are both AOP_REG,
4774         * (AccRsh): removed andmask=0 lines,
4775         * (genLeftShift): duplicated to be improved in future versions,
4776         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4777         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4778         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4779         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4780         * (insertBankSwitch): fixed inserting banksel directives algorithm
4781         for instructions that follow a skip instruction, this fixes a report
4782         for broken subtraction code generation,
4783         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4784         iCode is a left op, just in case result and right share the same
4785         registers
4786
4787 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4788
4789         * src/hc08/main.c,
4790         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4791         preservation of HX
4792         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4793         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4794         on 2004-09-12; it was buggy
4795
4796 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4797
4798         * src/SDCCsymt.h: removed RESULT_CHECK
4799         * src/SDCCast.c,
4800         * src/SDCCglue.c,
4801         * src/SDCCval.c,
4802         * src/pic/glue.c,
4803         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4804
4805 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4806
4807         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4808         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4809         configuration values no more rejected by compiler, they are assigned
4810         to configuration registers with a warning message instead,
4811         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4812         the for-loop so last conf register is emitted too,
4813         * (_pic16_initPaths): link library libsdcc.lib by default,
4814         * (_hasNativeMulFor): modified test for multiplication according to
4815         Raphael Neider's remarks. Integer multiplication is also done with
4816         support functions,
4817         * device/include/pic16/pic18fregs.h: corrected type error in while
4818         testing and including 18f6720 header file
4819
4820 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4821
4822         * src/pic16/device.h (pic16_options): removed field use_crt,
4823         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4824         until an optimization to handle single bits is added,
4825         * (pic16_loadFSR0): moved before genUnpackBits,
4826         * (genAnd): some white lines removed,
4827         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4828         leave_reset flags in pic16_options when using crt modules,
4829
4830 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4831
4832         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4833           for bugs 898889 & 979599. Also used some safer print instructions.
4834
4835 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4836
4837         * src/pic16/device.h (pic16_options_t): added field use_crt,
4838         crt_name, no_crt,
4839         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4840         catch a probable future bug,
4841         * src/pic16/gen.c: aopIdx function commented out,
4842         * (genAssign): commented out old code which used aopIdx,
4843         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4844         code, added if conditionals to take into account the --use-crt
4845         command line options,
4846         * src/pic16/main.c (pic16_optionsTable): added new command line
4847         options, --use-crt= and --no-crt,
4848         * (_pic16_linkEdit): now the proper crt object is added in the
4849         linker command line except than when --no-crt is specified,
4850         * src/pic16/pcode.c,
4851         * src/pic16/pcode.h: added some structures and functions for a new
4852         optimization scheme to compansate for instruction overhead between
4853         same iCodes, this scheme is currently under development and is not
4854         working in any way,
4855         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4856         to && operator,
4857         * device/lib/pic16/startup/crt0i.c,
4858         * device/lib/pic16/startup/crt0iz.c: added global char variable
4859         __uflags to force the generation of an idata section
4860
4861 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4862
4863         * doc/Makefile,
4864         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4865         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4866
4867 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4868
4869         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4870         Frieder) and clarified the default code optimization mode
4871
4872 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4873
4874         * src/SDCC.lex (doPragma, process_pragma),
4875         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4876         "opt_code_size", and "opt_code_balanced"
4877         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4878         regrouped options by category, added support for category headers
4879         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4880         and "--opt-code-size"
4881         * doc/sdccman.lyx: documented these new options and pragmas
4882         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4883         preference into account
4884
4885 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4886
4887         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4888           geniCodePreDec): Fixed bug 904237 by generating a warning
4889         * src/SDCCerr.h,
4890         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4891
4892 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4893
4894         * src/pic/device.c : When no max ram set validate full memory range.
4895         * src/pic/pcode.c,
4896         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4897
4898 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4899
4900         * device/lib/_gptrget.c,
4901         * device/lib/_gptrput.c: updated comment
4902         * device/lib/calloc.c,
4903         * device/lib/free.c,
4904         * device/lib/malloc.c,
4905         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4906         * src/SDCCcse.c (cseBBlock),
4907         * src/SDCCicode.c (printOperand, geniCodeArray),
4908         * src/SDCCicode.h (struct operand): fixed bug 868103
4909         * support/regression/tests/bug-868103.c: added
4910         * src/SDCCast.c (searchLitOp),
4911         * src/SDCCcse.h (struct cseDef),
4912         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
4913         * src/SDCCicode.h (struct operand),
4914         * src/SDCCsymt.h (struct sym_link),
4915         * src/avr/gen.c (hasInc),
4916         * src/ds390/gen.c (hasInc),
4917         * src/hc08/gen.c (genPlusIncr, hasInc),
4918         * src/mcs51/gen.c (hasInc),
4919         * src/pic16/glue.c (pic16_printIvalChar),
4920         * src/pic16/ralloc.c (regWithIdx),
4921         * src/xa51/gen.c (hasInc) : removed warnings
4922         * src/SDCCast.c (createBlock): added comment ???
4923         * src/hc08/ralloc.c: updated comments
4924
4925 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4926
4927         * doc/sdccman.lyx: updated section on switch statements, added
4928         section about semaphore locking
4929         * doc/Makefile: added option -info for latex2html
4930         * device/lib/_gptrget.c,
4931         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
4932
4933 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4934
4935         * src/pic/device.h,
4936         * src/pic/device.c,
4937         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
4938          maxram is less than 0x100.
4939
4940 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
4941
4942         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
4943
4944 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4945
4946         * src/port.h,
4947         * src/mcs51/main.c,
4948         * src/ds390/main.c,
4949         * src/z80/main.c,
4950         * src/hc08/main.c,
4951         * src/pic/main.c,
4952         * src/pic16/main.c,
4953         * src/avr/main.c,
4954         * src/xa51/main.c
4955         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
4956         a jump table is the best form for a switch statement, including
4957         automatic insertion of missing cases to make the case range
4958         continuous. Developed in collaboration with Frieder Ferlemann.
4959
4960 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4961
4962         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
4963         accumulator result if it needs sign extension
4964
4965 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4966
4967         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
4968
4969 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4970
4971         * device/lib/gbz80/printf.c,
4972         * device/lib/z80/printf.c: removed define for NULL
4973
4974 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
4975
4976         * as/xa51/xa_link.c,
4977         * device/examples/ds390/ow390/ad26.c,
4978         * device/examples/ds390/ow390/cnt1d.c,
4979         * device/examples/ds390/ow390/counter.c,
4980         * device/examples/ds390/ow390/ds2480.h,
4981         * device/examples/ds390/ow390/ds2480ut.c,
4982         * device/examples/ds390/ow390/findtype.c,
4983         * device/examples/ds390/ow390/gethumd.c,
4984         * device/examples/ds390/ow390/owllu.c,
4985         * device/examples/ds390/ow390/ownetu.c,
4986         * device/examples/ds390/ow390/swt12.c,
4987         * device/examples/ds390/ow390/swtloop.c,
4988         * device/examples/ds390/ow390/temp.c,
4989         * device/examples/ds390/ow390/temp10.c,
4990         * device/examples/ds390/ow390/thermo21.c,
4991         * device/examples/ds390/ow390/tinilnk.c,
4992         * device/examples/ds390/ow390/tstfind.c,
4993         * device/examples/serialcomm/windows/serial.cpp,
4994         * device/examples/serialcomm/windows/test_serialcomm.cpp,
4995         * device/include/reg51.h: fixed line endings for cvs
4996
4997 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4998
4999         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5000         packRegsForAccUse, packRegisters): new accumulator register
5001         packing algorithm
5002         * support/regression/ports/hc08/support.c (_putchar): suppress
5003         warning of unused variable
5004         * src/SDCCicode.c: added SWAP entry to codeTable
5005
5006 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5007
5008         * device/lib/sprintf.c: forgot to add this file before previous commit
5009
5010 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5011
5012         * src/pic16/gen.c (genPackBits): added operand right in function
5013         parameters, load result directly if p_type is POINTER (that is
5014         called by genNearPointerSet)
5015         * (genUnPackBits): added operand left in function parameters,
5016         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5017         FSR0 if accessing bitfields,
5018
5019 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5020
5021         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5022           _print_format; updated printf, sprintf, vsprintf
5023         * device/include/asm/default/features.h: corrected comment/define
5024         * device/lib/Makefile.in: added sprintf.c
5025         * device/lib/libsdcc.lib: added sprintf module
5026         * device/lib/printf_large.c,
5027         * device/lib/vprintf.c,
5028         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5029           into these 3 files
5030         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5031         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5032         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5033           hc08 test
5034         * support/regression/tests/zeropad.c: define idata as data for hc08
5035
5036 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5037
5038         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5039         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5040         labels are referenced at least once (even if a reference is not found)
5041         * src/hc08/gen.c (emitcode): set isComment flag for comments
5042         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5043         loads), rules 6a..6b (optimize jumps to return)
5044
5045 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5046
5047         * device/lib/acosf.c (acosf),
5048         * device/lib/asinf.c (asinf),
5049         * device/lib/atanf.c (atanf),
5050         * device/lib/ceilf.c (ceilf),
5051         * device/lib/cosf.c (cosf),
5052         * device/lib/coshf.c (coshf),
5053         * device/lib/cotf.c (cotf),
5054         * device/lib/fabsf.c (fabsf),
5055         * device/lib/floorf.c (floorf),
5056         * device/lib/log10f.c (log10f),
5057         * device/lib/logf.c (logf),
5058         * device/lib/sinf.c (sinf),
5059         * device/lib/sinhf.c (sinhf),
5060         * device/lib/sqrtf.c (sqrtf),
5061         * device/lib/tanf.c (tanf),
5062         * device/lib/tanhf.c (tanhf),
5063         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5064         replaced all instances of "reentrant" in the library functions
5065         defined in math.h with this macro.
5066         * support/regression/tests/float_trans.c: reenabled test for hc08
5067
5068 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5069
5070         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5071         erroneously deleted
5072
5073 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5074
5075         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5076         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5077         multi-byte volatile operands are used
5078         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5079         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5080         initialization to area GSINIT0 so that it would always precede
5081         any static initializers in GSINIT
5082         * support/regression/tests/zeropad.c: fixed idata define for hc08
5083         * support/regression/tests/bug-927659.c,
5084         * support/regression/tests/float_trans.c: disabled tests for hc08
5085         pending missing library routines
5086         * .version: increased version number to 2.4.4 - hc08 port now passes
5087         regression tests
5088
5089
5090 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5091
5092         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5093         * Makefile.common.in,
5094         * as/Makefile,
5095         * as/hc08/Makefile.in,
5096         * as/mcs51/Makefile.in,
5097         * as/z80/Makefile.in,
5098         * debugger/mcs51/Makefile.in,
5099         * device/include/Makefile.in,
5100         * device/lib/Makefile.in,
5101         * doc/Makefile,
5102         * link/Makefile,
5103         * link/z80/Makefile.in,
5104         * packihx/Makefile.in,
5105         * sim/ucsim/main_in.mk,
5106         * sim/ucsim/avr.src/Makefile.in,
5107         * sim/ucsim/doc/Makefile.in,
5108         * sim/ucsim/gui.src/serio.src/Makefile.in,
5109         * sim/ucsim/hc08.src/Makefile.in,
5110         * sim/ucsim/s51.src/Makefile.in,
5111         * sim/ucsim/xa.src/Makefile.in,
5112         * sim/ucsim/z80.src/Makefile.in,
5113         * src/Makefile.in,
5114         * support/cpp2/Makefile.in,
5115         * support/librarian/Makefile,
5116         * support/makebin/Makefile: added DESTDIR to the install path proposed
5117         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5118         * doc/sdccman.lyx: added DESTDIR documentation
5119
5120 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5121
5122         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5123         instruction for interrupt handlers, use fast returns when returning
5124         from high priority interrupts
5125
5126 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5127
5128         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5129         code generation
5130         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5131         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5132         bugs, ported much of Bernhard's code from mcs51
5133         * src/mcs51/gen.c (genSend),
5134         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5135         than one when calling a reentrant function
5136         * device/lib/_mullong.c: defined an alternate struct layout for big
5137         endian ports (hc08)
5138
5139 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5140
5141         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5142         test
5143
5144 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5145
5146         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5147         are sane and complete before asking the port its prefered parameter
5148         passing method (fixes bug #1017633)
5149         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5150         and _ret3
5151
5152 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5153
5154         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5155         problem in bitfields >= 8 bits.
5156
5157 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5158
5159         * src/SDCCsymt.c: undid changes that were not meant to be committed
5160
5161 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5162
5163         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5164
5165 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5166
5167         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5168           copied and wrong bit got inverted
5169
5170 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5171
5172         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5173         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5174         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5175         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5176         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5177         assignments to bitfields at known addresses
5178         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5179         reads from bitfields at known addresses
5180         * src/hc08/ralloc.c (packRegisters),
5181         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5182         genhc08Code): optimize pointer get values used as conditionals
5183         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5184         and branch
5185
5186 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5187
5188         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5189         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5190         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5191         as conditionals
5192
5193 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5194
5195         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5196
5197 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5198
5199         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5200         related problems
5201
5202 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5203
5204         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5205
5206 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5209         mcs51 port
5210
5211 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5212
5213         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5214
5215 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5216
5217         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5218         cases use more compact code.
5219
5220 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5221
5222         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5223
5224 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5225
5226         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5227
5228 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5229
5230         * src/SDCCsymt.h,
5231         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5232         parameter of changePointer() from symbol* to sym_link*
5233         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5234         * src/SDCCsymt.c (compareType): void* type is castable to other
5235         pointers, but not necesarily an exact match.
5236         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5237         is no longer blindly treated as an exact match.
5238         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5239
5240 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5241
5242         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5243
5244 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5245
5246         * src/pic/gen.c,
5247         * src/pic/pcode.c,
5248         * src/pic/ralloc.h,
5249         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5250
5251 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5252
5253         * src/pic/device.c,
5254         * src/pic/device.h,
5255         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5256
5257 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5258
5259         * src/mcs51/gen.c (emitcode): fixed bug #992819
5260
5261 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5262
5263         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5264           there's no need to make it worse
5265
5266 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5267
5268         * src/mcs51/ralloc.c (deassignLR),
5269         * src/ds390/ralloc.c (deassignLR),
5270         * src/hc08/ralloc.c (deassignLR),
5271         * src/z80/ralloc.c (deassignLR),
5272         * src/pic/ralloc.c (deassignLR),
5273         * src/pic16/ralloc.c (deassignLR),
5274         * src/avr/ralloc.c (deassignLR),
5275         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5276         rlivePoint): fixed another part of bug #971834
5277
5278 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5279
5280         * src/z80/main.c: enabled "critical" keyword
5281         * src/z80/mappings.i,
5282         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5283         functions (fixes bug #979646)
5284         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5285
5286 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5287
5288         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5289           such as c:\mydir.
5290
5291 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5292
5293         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5294           doesn't disable too much optimizations
5295
5296 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5297
5298         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5299
5300 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5301
5302         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5303
5304 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5305
5306         * src/pic/gen.c tidied up tabs
5307         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5308         * src/pic/main.c tidied up tabs
5309         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5310         * src/pic/pcoderegs.c tidied up tabs
5311         * src/pic/ralloc.c tidied up tabs
5312
5313 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5314
5315         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5316         to S_FIXED for pic16 port and when symbol is not in level 0,
5317         allocate for S_REGISTER storage class and pic16 port, too,
5318         * src/pic16/device.h: prototype for checkSym,
5319         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5320         * (pic16_assignConfigWordValue): test the value and the mask to
5321         validate that the value is suitable for the configuration word,
5322         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5323         collect extern declared symbols, don't emit symbol twice, check
5324         first if symbol is in publics set first,
5325         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5326         * added command line '--fstack' which enables an experimental
5327         feature for stack access, too buggy to be used yet...
5328         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5329         * (pic16_allocDirReg): when register has storage class S_REGISTER
5330         allocate in pic16_dynAccessRegs,
5331         * device/include/pic16/pic18f????.h: modified configuration word
5332         naming convention, words started as CONFIG0H but should be CONFIG1H
5333
5334 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5335
5336         * device/include/mcs51reg.h: fixed bug 970993
5337
5338 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5339
5340         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5341         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5342         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5343         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5344         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5345         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5346           error/warning numbers,
5347           added function setWarningDisabled()
5348         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5349         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5350           _memcmp.c _memmove.c calloc.c realloc.c free.c
5351         * support/regression/tests/malloc.c: added tests for new functionality
5352         * support/regression/tests/zeropad.c: added tests for truncated initializers
5353           and initialized char arrays starting with '\x0'
5354         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5355
5356 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5357
5358         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5359
5360 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5361
5362         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5363         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5364         peephole 177.e. Thanks to anonymous
5365
5366 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5367
5368         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5369         function isn't used in the source but referenced as a
5370         variable initializer then declare it as extern in .asm file
5371
5372 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5373
5374         * .version: increased version number to 2.4.3
5375
5376         Adding version extension according to ChangeLog CVS revision
5377         * src/Makefile.in (target all): added dependency 'version.h'
5378         * (rule version.h): added rule to create version.h from ChangeLog,
5379         * (rule dep): added dependency version.h,
5380         * src/version.awk: AWK script to create version.h
5381         * src/SDCCdwarf2.c (dwWriteModule),
5382         * src/SDCCglue.c (initialComments),
5383         * src/SDCCmain.c (printVersionInfo): modified to write after
5384         version string the version extension number,
5385         * src/SDCCutil.c: included "version.h"
5386         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5387         number,
5388         * src/SDCCutil.h: added prototype for getBuildNumber
5389
5390         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5391         includeDirsSet, too,
5392         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5393         const char [] is found in function prototype...
5394
5395         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5396         moving to WREG with source is already in WREG,
5397         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5398         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5399         * (aopForSym): stack'ed symbols are partially supported, added
5400         if-clause to support symbols in FARSPACE,
5401         * (sameRegs): added test for AOP_ACC to see if registers are same,
5402         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5403         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5404         * (pic16_popRegFromString): will not allocate a new register if it
5405         doesn't find one by name, bug may have introduced...
5406         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5407         * (genIpush): revived to use pic16 port's stack,
5408         * (genAddrOf): added incomplete case for stack'ed operand,
5409         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5410         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5411         can handle multibyte operands,
5412         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5413         * (pic16initialComments): added message for MPLAB compatibility
5414         mode enabled,
5415         * src/pic16/main.h: prototype for pic16_mplab_comp,
5416         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5417         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5418         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5419         because of increased complexity of procedure,
5420         * (_process_pragma): stack pragma changed to format 'stack pos len',
5421         emit symbol '_stack_end' to conform with gplink,
5422         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5423         to search for register,
5424         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5425         PO_GPR_REGISTER,
5426         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5427         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5428         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5429         case for PO_GPR_REGISTER,
5430         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5431         dies, the new era is ahead !...
5432         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5433         pic16_dynInternalRegs,
5434         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5435         * (pic16_allocDirReg): minor optimizations and bug fixes,
5436         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5437
5438         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5439         load stack and frame pointer with address of 'stack_end' symbol
5440
5441 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5442
5443         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5444         without source code but only variable initializers
5445
5446 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5447
5448         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5449         external are not declared as extern to reduce overhead while linking
5450
5451 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5452
5453         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5454
5455 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5456
5457         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5458           Yee Keat for the patch
5459         * src/SDCCast.c (decorateType): fixed bug #979599
5460         * src/ds390/gen.h: removed local fReturnSizeDS390
5461         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5462         * src/ds390/gen.c (genAnd, genOr, genXor),
5463         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5464
5465 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5466
5467         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5468         add relFilesSet to $3, manipulate $2 to handle linking of object
5469         files without source files in command line,
5470         * device/include/pic16 (all headers): added ID location macros,
5471         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5472         entries for ID location bytes,
5473         * (pic16_assignIdByteValue): NEW,
5474         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5475         added field dumpcalltree to pic16_options_t,
5476         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5477         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5478         emitting rFalseIfx label after check_carry label,
5479         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5480         pic16_emitDIRegs), NEW
5481         * (pic16glue): dump .calltree file when option --calltree found,
5482         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5483         * (_pic16_genAssemblerPreamble): emit ID locations after
5484         configuration registers,
5485         * (pic16_linkCmd): modifications of the link command,
5486         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5487         * (pic16_pCodeInitRegisters): don't init stack registers,
5488         * (pic16_findPrevInstruction): fixed bug,
5489         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5490         bug with immediate registers,
5491         * (buildCallTree): traces stack push and pop,
5492         * (pct2): dump also stack usage for each function,
5493         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5494         * (pic16_allocDirReg): various modifications,
5495         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5496         fixed to 1,
5497
5498 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5499
5500         * src/pic16/pcode.c: removed buggy double colon
5501
5502 2004-07-01 Borut Razem <borut.razem AT siol.net>
5503
5504         * support/scripts/sdcc.nsi: added include/pic16 to setup
5505
5506 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5507
5508         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5509         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5510         target 'clean',
5511         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5512         specific command line arguments. Also added sample lkr script
5513         for placing a variable at a specific memory bank.
5514         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5515         at a specific memory bank,
5516         * (pic16_dump_isection): fixed bug which caused string literals to
5517         be omitted when dumping idata section,
5518         * (pic16_groupRegistersInSection): added code to handle registers
5519         in specific memory banks,
5520         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5521         public, all references are renamed too,
5522         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5523         AOP_DPTR2,
5524         * (pic16_storeForReturn): added case to handle when dest is WREG,
5525         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5526         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5527         pic16_rel_udata, check to see if that register is marked as being
5528         a member of a specific memory bank,
5529         * (pic16_printIvalCharPtr): added code to add string literals either
5530         to code or the idata sections,
5531         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5532         also accept the 'udata' pragma,
5533         * src/pic16/main.h: new structure types sectName and sectSym
5534         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5535         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5536         * (pic16_findPrevInstruction): fixed, it returned nothing,
5537         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5538         instruction combinations,
5539         * (pic16_FixRegisterBanking): heavily reorganised,
5540         * (pic16_AnalyzeBanking): if generating banksel directives is
5541         disabled, then don't call FixRegisterBanking at all,
5542         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5543         completely removed,
5544         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5545
5546 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5547
5548         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5549         Phuah Yee Keat <yk.phuah AT nestac.com>
5550
5551 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5552
5553         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5554         correctly the IVT even if it is relocated to some other location
5555
5556 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5557
5558         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5559         * device/include/pic16/pic18f2220.h: NEW,
5560         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5561         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5562         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5563         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5564         nodefaultlibs, ivt_loc is the location of the interrupt vector
5565         table, and nodefaultlibs signs that default libraries should not be
5566         linked in link stage,
5567         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5568         according to --ivt-loc argument,
5569         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5570         when pragma stack is found,
5571
5572 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5573
5574         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5575         256 (range check), 257 (do while), 258.a-f (bit banging
5576         f.e. on 3-wire SPI bus)
5577
5578 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5579
5580         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5581         variables used exclusively within a loop
5582
5583 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5584
5585         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5586
5587 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5588
5589         * src/SDCClrange.c (computeClash): fixed bug #971834
5590
5591 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5592
5593         * src/mcs51/gen.c (genCmp): fixed bug #975903
5594         * src/hc08/gen.c (operandsEqu),
5595         * src/ds390/gen.c (operandsEqu),
5596         * src/z80/gen.c (operandsEqu),
5597         * src/pic/gen.c (operandsEqu),
5598         * src/pic16/gen.c (operandsEqu),
5599         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5600         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5601
5602 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5603
5604         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5605
5606 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5607
5608         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5609         default case in switch statement,
5610         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5611         to eliminate problem with initialisation of pointers, but problem
5612         still exists,
5613         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5614         * (emitStaticSegment): removed various lines emitting debug info,
5615         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5616         added processor registers for utilizing EEPROM,
5617         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5618         configurable and set 8
5619
5620 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5621
5622         * .version: increased version number to 2.4.2,
5623
5624         Cumulative patch for pic16 port
5625         * src/pic16/device.c: changed scheme to dump initial values for
5626         variables in idata segment, all print_idata* functions were removed,
5627         now the pic16_printIval* will be called,
5628         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5629         * _pic16_printPointerType, pic16_printPointerType,
5630         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5631         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5632         NEW, similar to the respective functions in SDCCglue.c,
5633         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5634         way, emitting hex bytes,
5635         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5636
5637 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5638
5639         * src/avr/ralloc.c (serialRegAssign),
5640         * src/xa51/ralloc.c (serialRegAssign),
5641         * src/pic/ralloc.c (serialRegAssign),
5642         * src/pic16/ralloc.c (serialRegAssign),
5643         * src/hc08/ralloc.c (serialRegAssign),
5644         * src/z80/ralloc.c (serialRegAssign),
5645         * src/ds390/ralloc.c (serialRegAssign),
5646         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5647
5648 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5649
5650         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5651         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5652
5653 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5654
5655         Cumulative patch for pic16 port:
5656         * src/pic16/device.h (typedef PIC16_device) modified fields for
5657         defining microcontrollers,
5658         * src/pic16/device.c: added new info for all devices in Pics16 array,
5659         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5660         to be optimised out by the pCode optimiser,
5661         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5662         specially, bug reported by G.M. Gallant,
5663         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5664         as force'd so that cannot be optimised out by pCode optimiser,
5665         * src/pic16/pcode.c,
5666         * src/pic16/pcodepeeph.c,
5667         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5668         they are disabled by default, but can be enabled explicit with
5669         command argument --denable-peeps, for testing,
5670         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5671         --pomit-ivt in COMPILE_FLAGS
5672
5673 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5674
5675         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5676           compilation on MSVC
5677
5678 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5679
5680         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5681
5682 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5683
5684         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5685         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5686
5687 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5688
5689         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5690         would only assign 0x300001 register.
5691
5692 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5693
5694         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5695         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5696
5697 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5698
5699         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5700         for ds80c400
5701         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5702         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5703         added peephole 254 (left shift), 255 (jump table)
5704
5705 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5706
5707         * device/lib/Makefile.in: removed comment line with model-pic16,
5708         * (target port-specific-objects-pic16): the libraries and objects
5709         are copied to the build directory form the device/lib/pic16/bin
5710         directory
5711
5712         Cumulative patch concerning pic16 port:
5713         * library directory has been re-organized,
5714         * added support for PIC18F1220,
5715         * added headers and library sources for chips 18f1220,18f6520,
5716         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5717
5718         * configuration registers setting has changed, now each supported
5719         device has a complete description of the registers it uses,
5720         * all initialisations are moved to idata sections, these section
5721         can be absolute or relocatable,
5722         * fixed initialisation of codespace variables,
5723         * fixed warning about PCLATU and gpsim,
5724         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5725         * (genAssign): use table reads when assigning from variables in codespace,
5726         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5727         char/int variables placed in codespace,
5728         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5729         registers set in .asm file, no need for --pomit-config-words anymore,
5730         * (pic16glue): some 8051 legacy segments are commented out
5731         (to be removed completely),
5732         * added support for alternative assembler and linker with --asm=
5733         and --link= command line arguments,
5734         * peepholes are disabled automatically in the port, no need to
5735         specify on command line,
5736         * port supports natively char/int/long multiplication, but converts
5737         all divisions to support functions,
5738         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5739         to the file set in variable $2,
5740         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5741         strings in ASCII format and not in hex,
5742         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5743         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5744         allocate proper register if iCodes aren't temporary,
5745
5746 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5747
5748         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5749
5750 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5751
5752         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5753         is commented out
5754
5755 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5756
5757         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5758         computed address is reused
5759         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5760         multi-byte bitfields
5761
5762 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5763
5764         * src/z80/gen.c: (genArrayInit): must check for pointers too
5765
5766 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5767
5768         * support/regression/tests/zeropad.c: never meant to commit the
5769           nestedstruct test: removed, added check for GCC version
5770
5771 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5772
5773         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5774         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5775         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5776           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5777           bugs 928906 and 954082 half-empty initializers
5778         * src/SDCCsymt.h,
5779         * src/SDCCsymt.c (getAllocSize): added for above fix
5780         * src/z80/gen.c (genArrayInit): fixed bug 741044
5781         * support/regression/tests/zeropad.c: added tests
5782
5783 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5784
5785         * src/pic16/device.c (pic16_dump_section): corrected bug which
5786         caused some symbols of the libraries to be misplaced
5787
5788 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5789
5790         * src/pic16/glue.c,
5791         * src/pic16/ralloc.h,
5792         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5793         to fix conflict with pic port
5794
5795 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5796
5797         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5798         externs configuration variables,
5799         * src/pic16/ralloc.h,
5800         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5801         prototype in header, commented out some debug messages
5802
5803 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5804
5805         * src/pic16/glue.c,
5806         * src/pic16/main.c,
5807         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5808         for gpasm COFF object generation. Thanks to D. Hawkins for
5809         his patch info
5810
5811 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5812
5813         * src/ds390/main.c,
5814         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5815         Brock for spotting this)
5816         * src/ds390/gen.c (genEndFunction),
5817         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5818         interrupt handler and critical. Disable push/pop optimizations when
5819         peephole optimizations disabled.
5820
5821 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5822
5823         Updated pic16 library sources and headers.
5824         * device/lib/pic16/pic18f*/ ,
5825         * device/include/pic16/*.h: modified to handle structured SFR
5826         definitions
5827
5828 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5829
5830         * src/port.h (PORT structure): added hook initPaths, now each
5831         port can declare its own default search paths,
5832         which can been seen with the --print-search-dirs option,
5833         see pic16 port for example,
5834         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5835         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5836         * (doPrintSearchDirs): NEW, replaces in a central manner the
5837         printing of search dirs which was split in set*Paths functions,
5838         * (main): added call to port->initPaths and doPrintSearchDirs,
5839         * src/avr/main.c,
5840         * src/ds390/main.c,
5841         * src/hc08/main.c,
5842         * src/izt/i186.c,
5843         * src/izt/tlcs900h.c,
5844         * src/mcs51/main.c,
5845         * src/pic/main.c,
5846         * src/pic16/main.c: modified port structures to reflect addition of
5847         initPaths hook,
5848
5849         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5850         * (pic16_dump_section): for registers in same address reserve memory once,
5851         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5852         to no_banksel,
5853         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5854         result is greater in size than right or left,
5855         * (pic16_genUMult8X8_8): there are some cases where the result can
5856         be 16 bits size, so handle these,
5857         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5858         * (pic16_outBitC): modified to emit pcodes,
5859         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5860         or not,
5861         * (genDivOneByte): implemented algorithm to divide 8-bits,
5862         * (genCmp): uncommented goto, but issues still exist,
5863         * (genAnd): fixed a bug with variables >8bits,
5864         * (genPackBits): optimization added that uses BCF/BSF to change a
5865         single bit,
5866         * (genAssign): fixed bug when assigning floating point literals,
5867         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5868         __sdcc_gsinit_startup label,
5869         * src/pic16/main.c (_pic16_init): removed search directory
5870         initialisations,
5871         * (_pic16_initPaths): NEW, used to initialise search directories,
5872         * (_hasNativeMulFor): support functions for all except char/int
5873         multiplication, and char division,
5874         * (PIC16_port struct): modified entry for native mul support,
5875         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5876         no_banksel option,
5877         * (buildCallTree): call to register_usage is ifdef'ed out,
5878
5879 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5880
5881         * device/include/string.h: applied Stas Sergeev's patch to make this
5882         header file compatible with the preprocessor -Wundef option
5883         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5884         failure (fixes bug #941458)
5885
5886 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5887
5888         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5889         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5890         that the variable, not the function, should be static
5891         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5892         to be consistent with non-literal case
5893
5894 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5895
5896         * src/SDCCast.c (isConformingBody): fixed bug #949967
5897         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5898         convilong): fixed bug #952086
5899
5900 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5901
5902         * src/SDCCmem.c (allocVariables): fixed bug #955321
5903
5904 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5905
5906         * src/hc08/main.c (_hc08_genAssemblerEnd),
5907         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5908         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5909         completely eliminated the use of a temporary file
5910         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
5911         when more than one file linked
5912         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
5913
5914 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5915
5916         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
5917         which fixes bug #543481
5918         * support/regression/tests/bug-751703.c: fixed comments left from a
5919         cut and paste error
5920         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
5921         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
5922         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
5923         scopes
5924         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
5925         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
5926         are now changed to underscores in moduleName
5927
5928 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5929
5930         * as/mcs51/lkmem.c: better fix for bug #954173
5931
5932 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
5933         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5934
5935         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
5936         * device/include/c8051f000.h,
5937         * device/include/c8051f120.h,
5938         * device/include/c8051f300.h,
5939         * device/include/c8051f310.h,
5940         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
5941         PWM16) and detab'ed
5942
5943 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5944
5945         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
5946         and mailing lists, doc'ed --no-peep-comments, removed reference
5947         to knoppix (newest version has no LyX/LaTeX), other minor changes
5948         * src/SDCCglue.c (glue): save 2 bytes stack space with
5949         option --main-return. The ljmp could probably be avoided too
5950
5951 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5952
5953         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
5954
5955 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5956
5957         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
5958         * src/SDCCopt.c (isLocalWithoutDef),
5959         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
5960         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
5961         (credit to Maarten Brock for patch #949363, on which this is based)
5962         * support/regression/tests/bug-751703.c: some test cases of extern used
5963         within inner scopes.
5964
5965 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5966
5967         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
5968         SPEC_STRUCT
5969         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
5970         struct definitions
5971         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
5972         dwWriteLabel): fix to create valid debugger symbols even when
5973         the module name has non-alphanumeric symbols in it
5974         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
5975         when a variable's allocation has been optimized away
5976
5977
5978 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5979
5980         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
5981         * src/hc08/main.c,
5982         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
5983         * src/mcs51/main.c,
5984         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
5985         * src/ds390/main.c,
5986         * src/z80/gen.c (z80_emitDebuggerSymbol),
5987         * src/z80/main.c,
5988         * src/pic/gen.c (pic14_emitDebuggerSymbol),
5989         * src/pic/main.c,
5990         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
5991         * src/pic16/main.c,
5992         * src/avr/gen.c (avr_emitDebuggerSymbol),
5993         * src/avr/main.c,
5994         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
5995         * src/xa51/main.c,
5996         * src/SDCCdebug.c (emitDebuggerSymbol),
5997         * src/SDCCdebug.h,
5998         * src/port.h: added a debugger struct to the port struct. Added a
5999         callback for defining debugger symbols
6000
6001         * src/SDCCast.c (createLabel),
6002         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6003         with isitmp = 1
6004         * src/SDCCicode.h,
6005         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6006         iCode back to the ast for the function
6007
6008         * src/hc08/ralloc.c (hc08_assignRegisters),
6009         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6010         unneeded fields from the regs struct.
6011         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6012         pushReg() & pullReg() functions instead of emitcode()
6013
6014         * src/hc08/gen.c (genLabel, genhc08Code),
6015         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6016
6017         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6018         debugger hooks
6019
6020         * src/hc08/gen.c (genEndFunction, genhc08Code),
6021         * src/hc08/gen.h,
6022         * src/mcs51/gen.c (genEndFunction, gen51Code),
6023         * src/mcs51/gen.h,
6024         * src/ds390/gen.c (genEndFunction, gen390Code),
6025         * src/ds390/gen.h,
6026         * src/z80/gen.c (genEndFunction, genZ80Code),
6027         * src/z80/gen.h,
6028         * src/z80/z80.h,
6029         * src/pic/gen.c (genEndFunction, genpic14Code),
6030         * src/pic/gen.h,
6031         * src/pic16/gen.c (genEndFunction, genpic16Code),
6032         * src/pic16/gen.h,
6033         * src/avr/gen.c (genEndFunction, genAVRCode),
6034         * src/avr/gen.h,
6035         * src/xa51/gen.c (genEndFunction, genXA51Code),
6036         * src/xa51/gen.h,
6037         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6038         specific code to cdbFile.c and out of the backend code generators
6039
6040         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6041         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6042         starting address is now 0
6043
6044         * as/hc08/asm.h,
6045         * as/hc08/m08pst.c,
6046         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6047         assembler directive for DWARF support
6048         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6049
6050         * src/src.dsp,
6051         * src/Makefile.in,
6052         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6053
6054 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6055
6056         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6057         and inappropriate peephole optimization in jump tables
6058
6059 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6060
6061         * as/hc08/m08pst.c,
6062         * src/SDCCglue.c: sdccopt works for the hc08 port now
6063
6064 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6065
6066         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6067
6068 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6069
6070         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6071
6072 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6073
6074         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6075         rules
6076         * src/SDCCmain.c,
6077         * src/SDCCglobl.h,
6078         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6079         comments from the peephole optimizer replacement rules
6080         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6081         symbols
6082         * src/SDCCcse.c (updateSpillLocation),
6083         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6084         equivalents
6085         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6086         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6087         objects far pointers
6088
6089 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6090
6091         * src/SDCCsymt.h: a missing part of my last change
6092         * src/pic/ralloc.c (regTypeNum),
6093         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6094
6095 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6096
6097         * src/SDCCicode.h,
6098         * src/SDCCicode.c (aggrToPtrDclType),
6099         * src/SDCCptropt.h,
6100         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6101         ptrPseudoSymConvert),
6102         * src/pic/ralloc.c (regTypeNum),
6103         * src/pic16/ralloc.c (regTypeNum),
6104         * src/hc08/ralloc.c (regTypeNum),
6105         * src/ds390/ralloc.c (regTypeNum),
6106         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6107         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6108
6109 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6110
6111         * link/z80/lkmain.c (afile),
6112         * as/hc08/lkmain.c (afile),
6113         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6114         prevent a pointer problem when a filename has no directory and
6115         no extension specified.
6116
6117 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6118
6119         * link/z80/lkmain.c (afile): allow periods in directory names
6120         * link/z80/lkmain.c (afile),
6121         * as/mcs51/lkmain.c (afile),
6122         * as/hc08/lkmain.c (afile): allow linker script file to have an
6123         extension other than ".lnk"
6124         * link/z80/lklex.c (getfid),
6125         * link/z80/lkmain.c (parse),
6126         * as/mcs51/lklex.c (getfid),
6127         * as/mcs51/lkmain.c (parse),
6128         * as/hc08/lklex.c (getfid),
6129         * as/hc08/lkmain.c (parse): Support comments in the linker script
6130         file on lines by themselves and after filenames
6131
6132 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6133
6134         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6135
6136 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6137
6138         * src/z80/peeph-z80.def: removed some peephole rules that don't
6139         work with multibyte arithmetic (fixed bug #937126)
6140         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6141         to registers and not global variables
6142         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6143         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6144         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6145         checking for assignments not internally generated (fixed bug #931895)
6146         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6147         structure member (fixed bug #930072)
6148
6149 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6150
6151         * src/SDCCmain.c (linkEdit),
6152         * src/hc08/main.c (_hc08_parseOptions),
6153         * as/hc08/Makefile.in,
6154         * as/hc08/aslink.h,
6155         * as/hc08/asm.h,
6156         * as/hc08/m08pst.c,
6157         * as/hc08/lkrloc.c (relr, rele),
6158         * as/hc08/lkarea.c (lnkarea)
6159         * as/hc08/lkmain.c (afile, parse),
6160         * as/hc08/lkelf.c: support for ELF output
6161         * as/hc08/lks19.c (s19),
6162         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6163
6164 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6165
6166         * as/mcs51/lkihx.c: Fixed bug #899105.
6167
6168 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6169
6170         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6171         .dsp files from Unix to DOS.
6172
6173 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6176         function pointers; we have been compliant for several months now.
6177         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6178         change that was accidently commented out
6179         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6180         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6181         bug #922319
6182
6183 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6184
6185         * src/hc08/gen.c: output of all of the internal debugging information
6186         is now controlled by the D() macro; it is disabled by default
6187
6188 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6189
6190         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6191         harder to keep the same registers during a CAST iCode
6192         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6193         long via int can be done in a single cast, if the signedness is
6194         correct.
6195         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6196         putchar() in tinibios.c in ds390's library
6197
6198 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6199
6200         * src/SDCCast.c (decorateType): fixed bug #898889,
6201         cast result of a literal complement too
6202         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6203         fixed check for bitfields
6204
6205 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6206
6207         * src/SDCCicode.c (geniCodeLogic): made it static,
6208         (geniCodeLogicAndOr): added in order to fix bug #905492,
6209         (ast2iCode): fixed bug #905492
6210         * support/regression/tests/bug-905492.c: added
6211         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6212         (processParms): fixed bug #927659: don't copy parms, this will clear
6213         decorated flag
6214         * support/regression/tests/bug-927659.c: added
6215
6216 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6217
6218         * src/SDCCast.c (addCast): don't cast float to char
6219         * device/lib/libsdcc.lib: added _memmove
6220
6221 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6222
6223         * device/lib/large/Makefile: fixed parallel execution by
6224         replacing `make` by `$(MAKE)`
6225
6226 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6227
6228         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6229         offsets (fixes bug #923936)
6230
6231 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6232
6233         * device/lib/small/Makefile: fixed parallel execution by
6234         replacing `make` by `$(MAKE)`
6235
6236 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6237
6238         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6239
6240 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6241
6242         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6243         * src/regression/Makefile: Regression test was not running.
6244
6245 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6246
6247         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6248         complement if possible
6249         * src/SDCCval.c (valComplement),
6250         * src/SDCCicode.c (operandOperation): fixed complement of literal
6251         * support/regression/tests/onebyte.c (testComplement): added
6252
6253 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6254
6255         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6256         return an optimized tree; actually replace actParm with the new tree
6257         * src/SDCCast.h: added some parantheses to remove side effects
6258         * support/regression/tests/bug-920866.c
6259
6260 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6261         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6262         Bit operands were not being handled properly in the pic14 port.
6263         (now src/regression/add.c passes again).
6264
6265 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         * src/SDCC.y (labeled_statement): case and default no longer require
6268         a following statement (RFE #893037)
6269
6270 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6271
6272         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6273         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6274         disabled (fixes bug #916294)
6275         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6276         "mov a,acc"; patch provided by Lenny Story
6277         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6278
6279 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6282         functions
6283         * src/ds390/gen.c (genFunction, genEndFunction),
6284         * src/ds390/ralloc.c (ds390_assignRegisters),
6285         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6286         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6287         pushed if there are parameters passed on the stack. Also, a cleaner
6288         way to decide if r0/r1 should be pushed/popped. (Together they fix
6289         bug #918693)
6290
6291 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6292
6293         * doc/sdccman.lyx,
6294         * device/lib/mcs51/crtpagesfr.asm,
6295         * device/lib/mcs51/crtxinit.asm,
6296         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6297         to avoid confusion with Si Lab's SFRPAGE register.
6298
6299 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6300
6301         * src/SDCCglue.c (emitMaps): allow public sfr variables
6302         * src/SDCCglue.c (initialComments): include compiler build date
6303         with compiler version and put the timestamp of the generated
6304         assembly file on a serperate line to be less confusing.
6305         * src/port.h: added genInitStartup hook
6306         * src/avr/main.c,
6307         * src/ds390/main.c,
6308         * src/hc08/main.c,
6309         * src/pic/main.c,
6310         * src/pic16/main.c,
6311         * src/xa51/main.c,
6312         * src/z80/main.c: genInitStartup initialize as NULL (default to
6313         historical behaviour)
6314         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6315         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6316         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6317         library instead of hard coding it into the compiler.
6318         * support/regression/ports/mcs51-stack-auto/spec.mk,
6319         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6320         * device/lib/mcs51/Makefile,
6321         * device/lib/small/Makefile,
6322         * device/lib/large/Makefile,
6323         * device/lib/mcs51/crtpagesfr.asm,
6324         * device/lib/mcs51/crtstart.asm,
6325         * device/lib/mcs51/crtxclear.asm,
6326         * device/lib/mcs51/crtxinit.asm,
6327         * device/lib/mcs51/crtclear.asm,
6328         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6329         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6330         and into user configurable files.
6331         * device/lib/clean.mk: clean mcs51 directory too
6332         * support/regression/tests/longlit.c: added static to T1 declaration
6333         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6334         accesses in the initialization code
6335
6336 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6337
6338         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6339         OSCTRIMVAL as noted in bug #916008
6340
6341 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6342
6343         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6344         in loops with multiple exits (reported as incorrect registers
6345         used by Martin Helmling in Sdcc-user list)
6346
6347 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6348
6349         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6350         made ds390 register extensions look less like error messages
6351
6352 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6353
6354         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6355         reported by Adam Wozniak in Sdcc-user list
6356
6357 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6358
6359         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6360         arithmetic optimizations, added debug output
6361
6362 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6363
6364         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6365         * sdcc.spec: updated and split sdcc into 3 rpms
6366         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6367         needed for literals of LEFT_OP and '+'
6368         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6369         introduced RESULT_TYPE_NOPROM
6370         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6371         left shift
6372         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6373         limited promotion to int only for '*'
6374         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6375
6376 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6377
6378         * src/pic16/gen.c (genSkip),
6379         (genc16bit2lit), (gencjneshort): commented out
6380         (is_LitOp): new helper function, checks operand type
6381         (genCmpEq): rewritten
6382
6383 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6384
6385         * support/regression/tests/bug-908454.c: added
6386
6387 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6388
6389         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6390         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6391         (geniCodeCast): cosmetic, don't preserve bit storage class
6392         (geniCodeLeftShift): added promotion
6393         (geniCodeLogic): fixed regression
6394         * src/SDCCsymt.c (computeTypeOr): accept bits too
6395         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6396
6397 2004-03-07  Borut Razem <borut.razem AT siol.net>
6398
6399         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6400
6401 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6402
6403         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6404         version of pic16_genPackRegisters which does not check if ic is a
6405         CAST operator,
6406         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6407         function cause string1.c regression test fails
6408
6409 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6410
6411         * sim/ucsim/configure.in,
6412         * sim/ucsim/configure,
6413         * sim/ucsim/doc/Makefile.in: use docdir
6414         * src/SDCC.y: fixed sbit atrributes
6415         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6416         * src/SDCCast.c (decorateType): |^& need special promotion handling
6417         * src/SDCCast.h,
6418         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6419         * src/SDCCsymt.h (computeType),
6420         * src/SDCCicode.c: computeType() needs op
6421         * src/SDCCsymt.c (checkTypeSanity),
6422         * doc/sddman.lyx: "plain" bitfields are unsigned
6423         * src/SDCCsymt.c (computeTypeOr): added
6424         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6425         |^& ops
6426         * src/SDCCval.c (val*): computeType() needs op
6427         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6428         * support/regression/tests/onebyte.c: added tests for |^&
6429
6430 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6431
6432         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6433         for writing icode into asm output.
6434
6435 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6436
6437         * src/pic16/device.c: added some debug lines enabled
6438         with macro DEBUG_CHECK,
6439         * src/pic16/genarith.c: more debug in genPlus,
6440         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6441         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6442         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6443         * (aopForSym): onStack symbols are re-placed in data memspace,
6444         and onStack flag is cleared,
6445         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6446         copy temporary pcodeop,
6447         * (genPcall): added warning for not updating PCLATU,
6448         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6449         always true for pic16 port,
6450         * (genMultOneWord): NEW, supports integer multiplication,
6451         * (genMult): modified to call genMultOneWord,
6452         * (ifxForOp): added warning when return NULL,
6453         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6454         flag is set before call to operandFromSymbol for implicit
6455         added structures,
6456         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6457         options.intlong_rent are set by default,
6458         * (_hasNativeMulFor): modified to allow port generation of integer
6459         multiplication,
6460         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6461         set regtype to REG_SFR for all registers, restricting seting the
6462         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6463
6464 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6465
6466         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6467         more than 500 times in the regression tests
6468
6469 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6470
6471         * support/Util/SDCCerr.h,
6472         * support/Util/SDCCerr.c,
6473         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6474         enumerator_list),
6475         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6476         for symbol conflicts.
6477         * support/valdiags/tests/enum.c,
6478         * support/valdiags/tests/tentdecl.c,
6479         * support/valdiags/tests/struct.c: expect possible error messages
6480         referring to original symbol definitions.
6481         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6482         * src/SDCCsymt.h,
6483         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6484
6485 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6486
6487         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6488
6489 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6490
6491         * src/pic16/ralloc.c (newReg): fixed bug #908929
6492
6493 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6494
6495         * src/ds390/gen.c: added missing #include "main.h"
6496
6497 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6498
6499         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6500         checking if symbol is already in set,
6501         * src/pic16/device.h: prototype for checkAddSym,
6502         * src/pic16/gen.c: (_G): added entry interruptvector,
6503         * (assignResultValue): removed some commented out lines,
6504         * (genFunction): check for ISR via sym->type, absolute section for
6505         interrupt code is created via a new pBlock, the goto instruction is
6506         placed now correctly at the interrupt vector position, changed all
6507         references from ivec to _G.interruptvector,
6508         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6509         is the interrupt is a high priority one, same for return from ISR,
6510         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6511         externs to calls of checkAddSym,
6512         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6513         pic16_pcode_verbose flag is set,
6514         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6515         * src/pic16/pcoderegs.c: message about how many registers are saved
6516         will only be emitted if pic16_pcode_verbose flag is set,
6517
6518 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6519
6520         * src/ds390/ralloc.h,
6521         * src/ds390/ralloc.c (ds390_regWithIdx),
6522         * src/ds390/gen.c (emitcode),
6523         * src/ds390/main.h,
6524         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6525         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6526         ds390operandCompare, getRegsRead, getRegsWritten,
6527         initializeAsmLineNode): customized instruction size calculation for
6528         ds390, started basis for some register optimizations
6529         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6530         corresponding assembly output
6531         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6532         missing push/pop of r0/r1. Optimized push/pops
6533
6534 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6535
6536         * src/mcs51/main.c (instructionSize): fixed ACALL size
6537         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6538
6539 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6540
6541         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6542         the sorting of rlist with NULL elements
6543         * (print_idataType, print_idata): NEW to create idata sections
6544         * src/pic16/device.h: idataSymSet new variable
6545         * src/pic16/gen.c (genFunction): fixed some bugs in string
6546         comparing, improved the absolute section creation for ISRs,
6547         added FSR0L/FSR0H in registers that are saved in an ISR,
6548         * (genInline): fixed the processing of inline snippets,
6549         now they undergo no process by the peephole optimizer
6550         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6551         are placed in idataSymSet,
6552         * (pic16emitStaticSeg): extern symbols are added in externs,
6553         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6554         switching when aboslute variables are placed in access bank memory
6555         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6556         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6557         commented out with #if,
6558         * (pic16_packRegisters): reintroduce the check for CAST because some
6559         symbols are not correctly handled,
6560         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6561         pCodeInstruction instead of pCode,
6562         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6563         pCodeAsmDir definition,
6564         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6565         directive, then the argument directive is emitted without the leading
6566         tab, hack for inline labels which must be in the first column,
6567         * (compareLabel,pic16_findNextInstruction),
6568         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6569         * (insertBankSwitch): modified for the new pCodeAsmDir,
6570
6571 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6572         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6573
6574         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6575         instance,
6576         * (pushSide): commented out with #if,
6577         * (assignResultValue): fixed some typos in saving
6578         registers,
6579         * (genPcall): FIXED and sync'ed with genCall,
6580         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6581         * (genNearPointerGet): fixed to handle some more cases,
6582         implementation scheme via table reads,
6583         * (genConstPointerGet): modified to access code memory correct,
6584         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6585         and improved to handle some cases
6586         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6587         instead of "RETLW" for init data
6588         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6589         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6590         variables are placed in access bank memory (<0x80 and >=0xf80),
6591         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6592         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6593         TBLWT_POSTDEC,TBLWT_PREINC
6594         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6595         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6596         directives
6597         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6598         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6599         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6600         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6601
6602 2004-02-29  Borut Razem <borut.razem AT siol.net>
6603
6604         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6605         support/Util/findme.h, support/Util/system.h: enhance binary relative
6606         search for lib and include by using findProgramPath()
6607
6608 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6609
6610         * src/SDCCpeeph.h,
6611         * src/SDCCpeeph.c (pcDistance),
6612         * src/port.h,
6613         * src/mcs51/ralloc.h,
6614         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6615         * src/mcs51/main.h,
6616         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6617         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6618         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6619         size calculation port specific, started basis for some register
6620         optimizations
6621         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6622         missing push/pop of r0/r1. Optimized push/pops
6623         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6624         * device/lib/_modsint.c (_modsint),
6625         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6626         and stack version so regression tests pass
6627
6628 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6629
6630         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6631         * src/SDCCast.c (decorateType): catch another small optimization
6632         with '?' operator
6633         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6634         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6635         modified to finally use computeType() all over SDCC,
6636         see Feature Request #877103
6637         * src/SDCCval.h: cosmetic
6638         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6639         valCompare(); regression tested in muldiv.c
6640         * support/regression/tests/muldiv.c (testMod): mod sign follows
6641         dividend only
6642
6643 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6644
6645         * src/SDCCast.c (decorateType): fixed bug #902362
6646         * doc/INSTALL.txt: fixed install instructions for win32
6647
6648 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6649
6650         * device/include/Makefile.in (install): fixed by replacing spaces
6651         by tabs
6652         * doc/README.txt,
6653         * doc/INSTALL.txt: updated for release
6654         * doc/sdccman.lyx: added warning for --xstack being buggy
6655
6656 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6657
6658         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6659         to eliminate build warnings.
6660         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6661
6662 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6663            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6664
6665         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6666         removed -penable-stack, added comment for stack pragma, added
6667         warning for not initializing the stack/frame registers, removed
6668         comment at interrupts section
6669
6670         Stack is made permanent, there is no ability to disable stack usage.
6671         * src/pic16/device.h,
6672         * src/pic16/device.c: removed all references to USE_STACK macro,
6673         * src/pic16/device.c (pic16_dump_section): when no elements in
6674         rlist, free rlist before return,
6675         * (pic16_dump_int_registers): NEW, internal registers are a new set
6676         of general purpose registers reused by each function,
6677         * (checkAddReg): returns 1 if registers is added to set,
6678         * (pic16_groupRegistersInSection): when a registers is of type
6679         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6680         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6681         SRCASECMP macro is moved here from device.c
6682         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6683         PO_PCLATU, PO_PRODL, PO_PRODH,
6684         * (pic16_pCodeOpType, genMinus,
6685         changed compares to "a" register, with AOP_ACC,
6686         * (pic16_genPlus): fixed some bugs and indented properly,
6687         * (pic16_addSign): changed size to size+offset in the MOVWF
6688         instruction,
6689         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6690         multiply 8-bit operand by literal, result is 8-bit,
6691         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6692         multiply 2 8-bit operand, result is 8-bit,
6693         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6694         genUMult8X*_16,
6695         * src/pic16/gen.c: changed accUse to contain WREG only,
6696         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6697         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6698         true, do not use immediate addressing any more unless sym is a
6699         pointer in codespace,
6700         * (aopForRemat): do not use immediate addressing when symbol not in
6701         codespace and when symbol's address is requested,
6702         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6703         accUse size (= 1),
6704         * (aopGet): added case for AOP_ACC and don't return "accumulator
6705         bug" but WREG instead,
6706         * (popGetTempReg): pushes contents of temporary register in stack,
6707         * (popReleaseTempReg): pops contents of temporary register from
6708         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6709         * (pic16_popGet): separated case AOP_ACC to return register WREG
6710         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6711         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6712         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6713         the use of immediate pointers to certain cases only.
6714
6715         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6716         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6717         * (assignResultValue, genCall, genRet): modified to use the new
6718         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6719         genPcall is still broken,
6720         * (genFunction): added code to create 'A' type pBlocks when
6721         interrupt functions are generated, code not extensively tested yet,
6722         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6723         * (genEndFunction): modified so ISRs pop stored registers from stack,
6724         * (genMultOneByte): cleanup,
6725         * (AccRsh): added flag andmask, to and result with appropriate mask,
6726         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6727         * (genDataPointerGet): fixed and reenabled its use,
6728         * (genNearDataPointerGet): bugs fixed,
6729         * (genDataPointerSet): bugs fixed,
6730         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6731         pic16_DumpSymbol, pic16_DumpOp,
6732         * src/pic16/genutils.h: function prototypes for the above functions,
6733         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6734         pointers,
6735         * (pic16emitRegularMap): many many many improvements, but needs a
6736         major cleanup,
6737         * src/pic16/main.c: enable_stack in pic16_options is removed,
6738         * (_pic16_parseOptions): removed command line options -penable-stack,
6739         * (_process_pragma): emit stack symbol only when stack pragma is
6740         processed,
6741         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6742         redirected to FSR0L/FSR0H pair,
6743         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6744         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6745         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6746         for immediates,
6747         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6748         * (dumpPicOptype): NEW,
6749         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6750         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6751         with movff instruction,
6752         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6753         added pic16_int_regs, some packRegsFor* functions are commented out,
6754         because produce errors,
6755         * src/pic16/NOTES: minor modifications
6756
6757 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6758
6759         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6760         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6761         --pack-iram.
6762         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6763         * as/mcs51/lkaomf51.c: fixed bug #895763
6764
6765 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6766
6767         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6768
6769 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6770
6771         * doc/sdccman.lyx: added details about the HC08 storage classes and
6772         interrupts, fixed the register usage info for z80 & gbz80
6773
6774 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6775
6776         * doc/sdccman.lyx: added more pic16 port documentation
6777         * device/include/pic16/: added header pic18fregs.h
6778
6779 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6780
6781         * doc/sdccman.lyx: added Vangelis' contribution
6782
6783 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6784
6785         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6786         extend to the next CALL or PCALL, not just to the next CALL.
6787
6788 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6789
6790         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6791
6792 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6793
6794         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6795         bug #895752 and a better fix for bug #716790
6796
6797 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6798
6799         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6800
6801 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6802
6803         * doc/sdccman.lyx: minor changes, minor changed
6804
6805 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6806
6807         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6808         which can't handle SDCC_NEWONEBYTEOPS,
6809         (geniCodeMultiply): removed conversion from mult to shift for pic14
6810         and pic16
6811
6812 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6813
6814         * src/hc08/gen.h,
6815         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6816         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6817         thus fixing bug #895406
6818
6819 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6820
6821         * device/lib/_modsint.c,
6822         * device/lib/_modslong.c: sign follows divisor only
6823         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6824         signs or signedness can be ignored
6825         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6826         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6827         added optimization for IFX,
6828         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6829         arguments;
6830         reenabled optimization for IFX, which was removed on 2004-01-11
6831         * src/SDCCast.h: added return type IFX
6832         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6833         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6834         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6835         SDCC_OLDONEBYTEOPS selects the old behaviour
6836         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6837         changed again and commented promotion rule
6838         * src/SDCCval.c (valDiv): promotion no longer necessary
6839         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6840         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6841         rewritten
6842         * support/regression/tests/onebyte.c: added
6843
6844 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6845
6846         * gen.c (genInline): reverted to old code for assemnling inline
6847         code because of bug reported James Chadd
6848
6849 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6850
6851         * ralloc.h: missing declarations from previous patch,
6852         seems that patch for ralloc.h was never applied, fixed
6853
6854 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6855            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6856
6857         * pcode.c,
6858         * pcode.h,
6859         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6860         indirect addressing. Marked FSR0 as deprecated
6861         * gen.c (pointerCode): commented out, not needed now
6862         (pic16_popGet2p): new MOVFF helper function
6863         (genGenPointerGet),
6864         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6865         (shiftRLong): removed duplicate debugging info
6866
6867 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6868
6869         * src/ds390/gen.c (genNearPointerGet),
6870         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6871         optimization with bits, but not bitfields.
6872         * src/ds390/ralloc.c (packRegisters),
6873         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6874
6875 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6876
6877         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6878
6879 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6880
6881         * src/SDCCsymt.h,
6882         * src/SDCCicode.c (operandFromSymbol),
6883         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6884         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6885         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6886         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6887         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6888         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6889         bug #892038
6890         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6891         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6892         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6893         * src/SDCCsymt.c (newSymbol),
6894         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6895         enumerator_list),
6896         * src/SDCCval.h,
6897         * src/SDCCval.c (newiList): fixed bug #885705
6898
6899 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6900
6901         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6902         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6903
6904 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6905
6906         * device/include/c8051f120.h,
6907         * device/include/c8051f300.h,
6908         * device/include/c8051f310.h: added/updated header files for Silicon
6909         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
6910         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
6911         in new section Submitting patches
6912
6913 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6914
6915         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
6916         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6917         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6918         genGenPointerSet),
6919         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
6920         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6921         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6922         genGenPointerSet),
6923         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
6924         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6925         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6926         genGenPointerSet),
6927         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
6928         genFarPointerGet, genCodePointerGet, genGenPointerGet,
6929         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
6930         genGenPointerSet): fixed bug #892400
6931         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
6932         to eliminate build warnings.
6933         * src/SDCCast.c (processParms),
6934         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
6935         fixed bug 751859
6936         * support/valdiag/valdiag.py: added GCC to the list of defines active
6937         when compiling with gcc
6938
6939 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6940
6941         * support/Util/SDCCerr.h,
6942         * support/Util/SDCCerr.c,
6943         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
6944         with an incomplete type (fixed bug #883734)
6945         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
6946
6947 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6948
6949         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
6950
6951 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6952
6953         * src/SDCCast.c (decorateType),
6954         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
6955         function pointer implementation
6956         * support/regression/tests/funptrs.c: added tests to verify both forms
6957         of function pointers work correctly. Added tests to verify parameters
6958         are passed in the correct order.
6959
6960 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
6961
6962         * device.c (regCompare): registers are sorted by ascending
6963         address and increasing size,
6964         * main.c (_pic16_finaliseOptions): removed the declaration
6965         of compiler macro MCU. Now a macro of the format pic18fxxxx
6966         will be defined from the command line
6967
6968 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6969             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6970
6971         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
6972         PCOP_RLCF was overwritten!
6973         * gen.c (genSkip): commented out calls to pic16_emitcode,
6974         * (genCmpEQ): fixed "long" compares, only high word did get compared,
6975         * (genlshTwo),
6976         * (genRRC): added debugging info,
6977         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
6978         overwritten while shifting,
6979         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
6980         overwritten while shifting,
6981         * (AccLsh),
6982         * (AccRsh),
6983         * (shiftLLeftOrResult),
6984         * (shiftRLeftOrResult),
6985         * (shiftRLong),
6986         * (shiftLLong): Implemented with pic16_emitpcode
6987         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
6988         * (genLeftShift): Fixed bug, operand for shift by variable always
6989         was "and"ed with 0x0f,
6990         * (genLeftShiftLiteral),
6991         * (genrshTwo),
6992         * (genRightShiftLiteral): added debugging info,
6993         * (genrshFour): added comment,
6994         * (genRightShift): determined signedness from operand "left"
6995         instead of "result"
6996
6997 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6998
6999         * src/SDCCicode.c (geniCodeParms),
7000         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7001         function pointers, fixed function pointer bugs #861242 and #861896
7002
7003 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7004
7005         * device/include/c8051f000.h,
7006         * device/include/c8051f120.h,
7007         * device/include/c8051f300.h: added header files for Silicon
7008         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7009
7010 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7011
7012         * src/SDCCast.c (processParams): added new type flow and restructured
7013         (gatherAutoInit): added new type flow
7014         (addCast): cosmetic changes
7015         (getLeftResultType): added new type flow for array indices, patch
7016         provided by Stas, see FR #877103
7017         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7018         array index patch by Stas
7019         * src/SDCCast.h: added prototype getResultTypeFromType()
7020         * src/SDCCval.h,
7021         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7022         * src/pic/glue.c (pic14emitStaticSeg),
7023         * src/pic16/glue.c (pic16emitStaticSeg),
7024         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7025         for initialization of symbols
7026         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7027         * support/Util/SDCCerr.h:
7028         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7029         * .version: bumped version number to 2.3.8
7030         * device/include/Makefile.in (install),
7031         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7032         avoid warnings
7033
7034 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7035
7036         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7037         Slade Rich fixed an optimization bug
7038         * src/pic/pcodepeep.c,
7039         * src/pic/pcoderegs.c
7040         * doc/Makefile (install): added test for directory
7041
7042 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7043
7044         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7045         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7046         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7047         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7048         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7049         * as/mcs51/asexpr.c (term),
7050         * as/hc08/asexpr.c (term): fixed bug #887146
7051
7052 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7053
7054         * src/z80/gen.c (genMult): handle single byte result product
7055         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7056         DUMMY_READ_VOLATILE (fixed bug #886367)
7057
7058 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7059
7060         * support/regression/tests/libmullong.c: fixed logic, on little endian
7061         hosts we ended without a mullong_wrapper()
7062
7063 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7064
7065         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7066         virus/worm forged address usage.
7067
7068 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7069
7070         Fixed promotion, it should be done on AST level:
7071         * src/SDCCast.c (addCast): added promotion to int
7072         (decorateType): updated call to upCast()
7073         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7074         usualUnaryConversions()
7075
7076 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7077
7078         * support/regression/tests/literalop.c (mulWrapper): Added a
7079         wrapper to remove integer overflow warnings.
7080
7081         * support/regression/tests/float_trans.c: Made work on host.
7082
7083         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7084         location of sz80.
7085
7086         * support/regression/generate-cases.py (main): Changed from inline
7087         to a main method.
7088
7089         * doc/Makefile (install): Changed to depth first to get rid of
7090         missing directory install warning.
7091
7092         * as/Makefile (install-doc): Made work on Mac.
7093
7094 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7095
7096         * src/SDCCast.c: added an additional type flow in decorateType() of
7097         opposite direction, see feature request #860006; it's enabled at runtime
7098         by setting the environment variable SDCC_NEWTYPEFLOW
7099         * src/SDCCast.h: changed prototype of decorateType()
7100         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7101         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7102         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7103         see feature request #877103
7104         * src/SDCCval.c: updated call of decorateType()
7105         (valBitwise): fixed bug #882876
7106         (valMinus): added promotion
7107         (valLogicAndOr): result is unsigned
7108         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7109         * src/SDCCsymt.c (computeType),
7110         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7111         must not cause an unsigned operation
7112         * src/pic/glue (pic14emitRegularMap),
7113         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7114
7115 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7116
7117         * src/pic/pcode.c (PCodeID): commented out left over debug code
7118
7119 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7120
7121         * support/valdiag/tests/overflow.c: added shift tests
7122         * src/pic/device.c,
7123         * src/pic/gen.c,
7124         * src/pic/gen.h,
7125         * src/pic/glue.c,
7126         * src/pic/main.c,
7127         * src/pic/pcode.c,
7128         * src/pic/pcode.h,
7129         * src/pic/pcodepeep.c,
7130         * src/pic/pcoderegs.c,
7131         * src/pic/ralloc.c,
7132         * src/pic/ralloc.h: applied patch from Slade Rich;
7133         added support for multiple code pages and multiple RAM banks on the
7134         PIC 14 port. The ASM files now no longer simply assume all the
7135         code / RAM are in the same page / bank. This means the linker can
7136         safely allocate code/RAM of separate ASM files to different pages/banks.
7137         * doc/sdccman.lyx: added Slade's tips
7138         * src/mcs51/peeph.def: fixed bug #880768
7139
7140 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7141
7142         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7143         * src/SDCCast.c (decorateType): fixed bug #880197
7144
7145 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7146
7147         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7148         getopt.h.
7149
7150         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7151         strtof is not part of C89 and isn't included with Mac OS X.
7152
7153 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7154
7155         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7156         shiftL2Left2Result): fixed bug #879326
7157         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7158         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7159         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7160         address fetch for clr instruction
7161         * device/lib/hc08/_mulint.c: created optimized assembly version
7162         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7163
7164 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7165
7166         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7167         proposed in FR #877103
7168
7169 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7170
7171         * src/SDCCval.c (cheapestVal): added missing checks
7172         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7173         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7174
7175 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7176
7177         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7178         equal operands
7179
7180 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7181
7182         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7183         loaded with the linker search paths (-L arguments) and the libraries
7184         to be linked with the current source (-l arguments). Changes
7185         currently will affect only the pic16 port.
7186         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7187         include path the port specific paths and port specific libraries,
7188         * gplink command now contains the $3 argument,
7189         * src/pic16/device.h,
7190         * src/pic16/device.c,: structure PIC_device is made public and
7191         renamed to PIC16_device, the same for variable Pics which is renamed
7192         to Pics16. Updated all references to them.
7193         * src/pic16/glue.c (pic16glue): corrected bug with code
7194         initialization which bypassed the variable initializations block.
7195
7196         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7197         COMPILE_FLAGS and added the --nostdinc option
7198
7199 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7200
7201         * device/include/mc68hc908jb8.h: Register defs for another member
7202         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7203
7204 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7205
7206         Documenting changes from previous commits.
7207         * configure.in (version 1.56),
7208         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7209         when generating output files to configure the pic16 library,
7210         but now I've commented it out, since gputils aren't installed in the
7211         SF compile farm, so library won't compile
7212
7213         * device/lib/Makefile.in (version 1.56): initially I've added in
7214         target 'all' the prerequestive 'model-pic16' so it compiled the
7215         pic16 library, but now I've commented it out for the same reasons
7216         above,
7217         * added targets 'model-pic16' and 'objects-pic16' to compile the
7218         library
7219         * added target 'port-specific-objects-pic16' to handle the
7220         generated libraries and copy them into the build/ directory
7221         * added target 'clean-intermediate-pic16' to clean intermediate
7222         files into pic16 directory
7223         * in target 'installdirs' added line to create directory pic16 in
7224         the installation path
7225
7226         * device/include/Makefile.in (version 1.11): in target 'install'
7227         added lines to copy all header files to installation path,
7228         * in target 'installdirs' added line create directory for pic16
7229         headers in the installation path
7230
7231 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7232
7233         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7234          a function call
7235
7236 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7237
7238         * configure,
7239         * device/lib/configure.in,
7240         * device/lib/configure: fixed for autoconf 2.57
7241
7242 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7243
7244         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7245         option so that it actually works. Made it specific to the z80, since
7246         the gbz80 doesn't have these kinds of I/O ports.
7247
7248 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7249
7250         * device/include/z180.h,
7251         * device/lib/_memcpy.c,
7252         * device/lib/_memmove.c,
7253         * device/lib/_mulint.c,
7254         * device/lib/ser_ir.c,
7255         * device/lib/ser_ir_cts_rts.c,
7256         * device/lib/_strcmp.c,
7257         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7258         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7259         portmode; added deprecation warning for bank= and protmode= forms.
7260         Also, guard against buffer overflow.
7261         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7262
7263 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7264
7265         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7266         changed interrupt vector table generation to only emit declared vectors.
7267         * device/include/Makefile.in: added missing backslash
7268         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7269
7270 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7271
7272         Mainly changes to support compilation of the device libraries
7273         * src/pic16/device.c: stack is allocated via symbol and not
7274         via literal number. The symbol is placed in the corresponding
7275         position of the data ram
7276         * (pic16_dump_section): relocatable and absolute uninitialized
7277         data are now emitted in sorted order to reduce section naming,
7278         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7279         weren't marked as being in the access bank,
7280
7281 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7282
7283         Added portion of GNU PIC Library under the directory
7284         device/include/pic16 and device/lib/pic16. These files
7285         contain the declarations of SFRs for the PIC18Fxx2 devices.
7286         The directory is initialized via configure from toplevel.
7287
7288 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7289
7290         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7291         the spilllocations to be compared correctly
7292
7293 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7294
7295         * src/SDCCast.c (decorateType): fixed bug introduced today
7296
7297 2004-01-12  Borut Razem <borut.razem AT siol.net>
7298
7299         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7300         doc/sdccman.lyx: upper case pragmas are deprecated
7301
7302 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7303
7304         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7305         in simpler and even better code
7306
7307 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7308
7309         * src/SDCCicode.c (operandOperation): fixed bug #874819
7310         * src/SDCCast.c (decorateType): fixed
7311         char foo (unsigned long ul) { return ul > 0; }
7312
7313 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7314
7315         * doc/sdccman.lyx: Moved and added some sections, small changes
7316         all over. Telling LaTeX to be less strict with word spacing
7317         to better keep the right margin. Changed some notes about
7318         maintainance of the ports in section 3.2.1 - is it OK like this?
7319
7320 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7321
7322         SDCC source changes:
7323         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7324         convilong): modified to inform the pic16 port that builtin functions
7325         are external
7326
7327         PIC16 PORT specific changes:
7328         * src/pic16/device.c pic16_dump_equates() added,
7329         processor registers declared internally by the port are emitted in
7330         the translation as equates,
7331         * src/pic16/gen.c: inline code is passed unprocessed to the
7332         translation,
7333         * (pic16_popGetLit2): fnuction modified to take second operand as
7334         pCodeOp pointer and not as literal,
7335         * (popRegFromIdx): prefixed with pic16_,
7336         * (pic16_popCombine2): modified to receive already allocated pCode
7337         operands,
7338         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7339         * (genFunction): initializes local stack frame and pushes on stack
7340         all the registers used by this function,
7341         * (genEndFunction): restores all registers from stack and restores
7342         stack frame,
7343         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7344         improvements,
7345         * (pic16glue): changed the program startup sequence,
7346         * added new dbName code 'A' for functions placed in absolute section
7347         * src/pic16/main.c: added function attribute _naked,
7348         * added pragma 'code' to place a fnuction at an absolute address,
7349         * added command line arguments --debug-ralloc and --pcode-verbose,
7350         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7351         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7352         * (pic16_newpCodeOpLit2): modified to take the second operand as
7353         pCodeOp pointer,
7354         * (pic16_printpBlock): modified to emit each function in a separate
7355         section,
7356         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7357         UPPER for immediate operands,
7358         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7359         instruction,
7360         * src/pic16/peeph.def: all peepholes with movff are commented out,
7361         because there is a problem in the pcode peep optimizer,
7362         * src/pic16/ralloc.c: the register allocator can now reuse local
7363         function symbols for another function. This saves register usage.
7364         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7365
7366         Added file src/pic16/NOTES with information about program writing on
7367         the current port version.
7368
7369 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7370
7371         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7372         and peephole 252 (array access)
7373
7374 2004-01-09  Borut Razem <borut.razem AT siol.net>
7375
7376         * src/SDCCmain.c : fixed #872250: -l command line defined library
7377           files are scanned before standard library files
7378
7379 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7380
7381         * src/SDCCast.c (decorateType): fixed bug #874046
7382
7383 2004-01-09  Borut Razem <borut.razem AT siol.net>
7384
7385         * support/scripts/sdcc.nsi: remove previous installation
7386
7387 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7388
7389         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7390         bytes for last interrupt vector (mcs51)
7391         * sdcc.spec: fixed typo
7392
7393 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7394
7395         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7396         gen51Code): more efficient parameter receive for --model-large
7397         ("bug" #845294)
7398
7399 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7400
7401         * src/ds390/main.c,
7402         * src/z80/main.c: added missed needLinkerScript flags (more than
7403         one port structure defined in these file)
7404         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7405         bug #795325
7406
7407 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7408
7409         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7410         * src/port.h: added flag needLinkerScript in port->linker
7411         structure to inform whether to create a .lnk file or not,
7412         * src/avr/main.c,
7413         * src/ds390/main.c,
7414         * src/hc08/main.c,
7415         * src/mcs51/main.c,
7416         * src/pic/main.c,
7417         * src/pic16/main.c,
7418         * src/xa51/main.c,
7419         * src/z80/main.c: changed appropriately to configure
7420         needLinkerScript flag
7421         * src/pic/gen.c,
7422         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7423         * src/pic/glue.c: added variable udata_section_name to
7424         override default uninitialized data segment definition for
7425         devices only with SHAREBANK memory (reported from Erik Epetrich)
7426         * (pic14emitOverlay): modified to emit a commented overlay segment
7427         directive when no overlay data exist
7428         * (picglue): modified to emit uninitialized data segment
7429         according to udata_section_name
7430         * src/pic/main.c (_pic14_parseOptions): added command line
7431         options --udata-section-name=[name] to override default
7432         udata definition name
7433         * modified _linkCmd and _asmCmd to include compiler passed
7434         arguments via -W option
7435         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7436         object file from '.rel' to '.o' in port->linker structure,
7437         changed size of fptr from 2 to 3 in port structure
7438
7439 2004-01-07  Borut Razem <borut.razem AT siol.net>
7440
7441         * support/scripts/sdcc.nsi: update PATH
7442         * support/scripts/sdcc.ico: craeted
7443
7444 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7445
7446         * device/include/Makefile.in: fix install
7447         * doc/Makefile: fix install
7448
7449 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7450
7451         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7452         in bug #860505
7453         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7454         how the function variable allocation summary is displayed; also
7455         include information about variables allocated to the overlay
7456         segment
7457
7458 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7459
7460         * as/mcs51/lkmain.c: Help about -Y option
7461         * as/mcs51/lkarea.c: Fixed gcc warnings
7462
7463 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7464
7465         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7466         fixed warning
7467         * support/valdiag/tests/overflow.c: added
7468         * src/SDCCast.c (decorateType),
7469         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7470         LEFT_OP (left shift)
7471
7472 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7473
7474         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7475         (default behaviour).
7476
7477 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7478
7479         A python script to validate compiler diagnostic messages. It can be
7480         used to verify that sdcc complains about bad c source code and
7481         gives a good location of the error.
7482         * support/valdiag/Makefile,
7483         * support/valdiag/valdiag.py,
7484         * support/valdiag/tests/*
7485
7486 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7487
7488         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7489         * src/SDCCsymt.c (newEnumType),
7490         * src/SDCCsymt.h
7491         * support/Util/SDCCerr.c,
7492         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7493         enum related bugs.
7494         * support/regression/tests/enum.c: added test for enum values that
7495         require at least 2 bytes of storage.
7496
7497 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7498
7499         * src/common.h: added ifndef/define/endif macros
7500         around the header file.
7501         Bug reported from Jesus Calvino-Fraga
7502
7503 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7504
7505         * sdcc.spec: updated
7506         * device/include/Makefile.in: don't install CVS directories
7507         * device/lib/Makefile.in: added removal of CVS directories after install
7508         * doc/Makefile: fixed install, added local_icons
7509         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7510         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7511         * src/ds390/gen.c (genRightShift): fixed bug #870788
7512         * src/SDCCast.c (decorateType): fixed bug #870781
7513
7514 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7515
7516         PIC16 port related changes:
7517         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7518         added variable stackPos,
7519
7520         * gen.c: genCall, assignResultValue: added support for
7521         pushing/retrieving function parameters to/from stack,
7522         genFunction,genEndFunction: setup stack frame for the
7523         generated function,
7524         genAddrOf: will be changed according to bug 863624
7525
7526         * added files genutils.c and genutils.h which contain gen*
7527         debugged and optimised functions extracted from gen.c
7528
7529         * glue.c: added variable 'externs' which holds extern symbols,
7530         pic16emitRegularMap: is modified to properly handle relocatable
7531          symbols under the new scheme,
7532         pic16createInterruptVect: is modified
7533         pic16printPublics: is modified to emit 'global' assembler directives,
7534         added pic16_printExterns to print extern symbols,
7535         pic16glue: initializes stack/frame pointer in the beginning of
7536         the assembly output. Temporary hack, will be corrected later,
7537         because gplink yet does not support stack and SDCC does not
7538         yet support a type of crt0.o object to create the final binary.
7539
7540         * Removed many lines that contain 8051 legacy code.
7541         * The code is finally placed under a 'code' directive.
7542         * Added port specific options.
7543
7544         * _process_pragma: simplified since now we do not need *special*
7545         include file to define SFR registers. But a separate header
7546         will be needed. This will be developed later.
7547         * _pic16_parseOptions: added, parses port specific options:
7548         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7549         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7550         --preplace-udata-with=
7551
7552         * _pic16_setDefaultOptions: modified to initialize section names,
7553         but hack is temporarly out of order since it needs improvement.
7554         * _pic16_genAssemblerPreamble: configuration words are emitted by
7555         their address instead of their name. This part is incomplete and
7556         supports only the 18Fxx2 devices. Other devices will emit an error
7557         during assembly since they do not contain the same set of config
7558         registers
7559         * _pic16_genIVT: is modified,
7560
7561         * pcode.c: added definitions for some hardware registers that are needed
7562         for stack support
7563         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7564         All PCI entries are updated. Now LFSR is supported.
7565         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7566         * added pic16_newpCodeOpLit2 to support instructions with
7567         two literal arguments
7568         * pic16_pCode2str: corrected code that emits assembler instructions
7569         with two literal operands and those that have an access bit modifier
7570         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7571         this fixes a bug which caused some labels to be lost, when an
7572         assembler directive was added, i.e. banksel,
7573         * pic16_FixRegisterBanking: improved logic that causes the insertion
7574         of bank switching,
7575         * InlineFunction: functions that are called once, are not any more
7576         inlined. This can be a port option in the future,
7577
7578         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7579
7580         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7581         hold the corresponding uninitialized symbols,
7582         * pic16_allocProcessorRegister: registers have explicit marked the
7583         accessBank field,
7584         * pic16_allocInternalRegister: registers are explicit marked as
7585         not used,
7586         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7587         processing list, so bit registers were lost,
7588         *
7589
7590         * ralloc.h: added field 'accessBank' and original symbol operand
7591         in register definition,
7592         * removed the field isMapped from register definition,
7593
7594         ** Several functions have been removed from various sources:
7595         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7596         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7597         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7598         pic16_assignRelocatableRegisters
7599
7600         ** others have been introduced:
7601         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7602         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7603
7604 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7605
7606         * support/scripts/inc2h.pl: changed definition of BIT_AT
7607         to emit 'sbit at' instead of 'bit at'. This was a request.
7608
7609         PIC16 port related preliminary changes:
7610         * gen.c: prefixed function popRegFromString with
7611         pic16_ and all references to it corrected
7612         * pcode.c: all pic16_pc_* hardware registers prefixed
7613         with underscore (_),
7614         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7615         * ralloc.c: newReg(): when register is REG_SFR then
7616         set address to rIdx,
7617         pic16_allocProcessorRegister(): marks register wasUsed=0
7618         pic16_writeUsedRegs(): added a call to assign processor
7619         registers via pic16_assignFixedRegisters
7620
7621 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7622
7623         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7624         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7625         variables in unused register banks.  Also the SSEG is placed
7626         wherever there is enough space for it, and IDATA can be anywhere
7627         in internal RAM.  For now compile using -Wl-Y[stack_size].
7628         The mem file is different for this option as well, since it
7629         makes no sense of talking about DSEG lenght.
7630
7631 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7632
7633         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7634         in certain cases, e.g. when ROM assignment, patch provided
7635         from Albert den Haan.
7636
7637 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7638
7639         Many signedness and type propagation fixes:
7640         * src/SDCCicode.c: made geniCodeCast() static
7641         replaced SPEC_ by IS_ (cosmetic)
7642         (operandOperation): fixed div and mod operation
7643         (usualBinaryConversions): added support for promotion of char
7644         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7645         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7646         (geniCodeAdd): an array index will stay unsigned, even if promoted
7647         from char to int
7648         (geniCodeArray): ditto
7649         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7650         * src/SDCCsymt.c (computeType): added more support for char;
7651         promotion of char is selectable by promoteCharToInt, fixed signedness
7652         for all cases
7653         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7654         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7655         * src/SDCCval (val*): replaced signedness calculation by
7656         computeType()
7657         rearranged if-branches (cosmetic)
7658         (valShift): added warning W_SHIFT_CHANGED
7659         (valCompare): fixed problem with different types
7660         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7661         * support/regression/tests/literalop.c: added many cases
7662         * support/regression/tests/ast_constant_folding.c: changed finally to
7663         'unsigned int'
7664         * .version: new year, new version: 2.3.7
7665         * src/SDCCmain.c (main): applied patch #866468
7666         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7667         provided by Scott Bronson
7668         * doc/sdccman.lyx: updated documentation for sdcdb
7669         updated and added chapter tips
7670
7671 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7672
7673         * src/SDCCsymt.h: missing from yesterday's commits
7674
7675 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7676
7677         * src/SDCC.y (struct_or_union_specifier),
7678         * support/Util/SDCCerr.c,
7679         * support/Util/SDCCerr.h: verify that struct & union tags are used
7680         as declared.
7681
7682 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7683
7684         * src/SDCCglobl.h: missing from yesterday's commits
7685
7686 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7687
7688         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7689         sft_attributes, struct_declaration, parameter_declaration,
7690         type_name, start_block, declaration_list),
7691         * src/SDCC.lex (check_type): support redefinition of typedef names
7692
7693 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7694
7695         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7696         aligned xdata arrays. Erik helped me with the if clause.
7697
7698 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7699
7700         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7701         warning
7702
7703 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7704
7705         * src/SDCCast.h,
7706         * src/SDCCast.c (newAst_),
7707         * src/SDCCicode.h,
7708         * src/SDCCicode.c (ast2iCode, newiCode),
7709         * src/SDCCglobl.h,
7710         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7711         expr, statement, expression_statement, selection_statement,
7712         iteration_statement, expr_opt, jump_statement): foundation for tracking
7713         sequence points
7714         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7715         point code too)
7716
7717 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7718
7719         * support/Util/SDCCerr.c,
7720         * src/SDCCast.h,
7721         * src/SDCCast.c (createCase, createDefault, decorateType),
7722         * src/SDCClabel.c (labelUnreach),
7723         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7724         to error messages.
7725         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7726         (with thanks to Stas Sergeev)
7727         * device/include/time.h,
7728         * device/lib/time.c (CheckTime): suppress unreachable code warning
7729
7730 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7731
7732         * src/SDCCast.c (createIvalCharPtr),
7733         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7734         bug #753752)
7735         * support/regression/tests/nullstring.c: tests for these two bugs
7736
7737 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7738
7739         * support/Util/SDCCerr.h,
7740         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7741         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7742         about storage class and 'at' used inside struct or union
7743         * src/SDCCBBlock.c (iCodeFromeBBlock),
7744         * src/SDCCcse.c (ifxOptimize),
7745         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7746         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7747         printIval, emitStaticSeg, emitOverlay),
7748         * src/SDCClabel.c (deleteIfx),
7749         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7750         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7751         gatherAutoInit, processParms),
7752         * support/Util/SDCCerr.h,
7753         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7754         reporting for post-parse errors.
7755
7756 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7757
7758         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7759         implicit casts via union; they don't work on big endian systems
7760         (possible fix for bug #861138)
7761
7762 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7763
7764         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7765         * src/mcs51/main.c: fixed the fix for bug #737001
7766
7767 2003-12-15  Borut Razem <borut.razem AT siol.net>
7768
7769         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7770
7771 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7772
7773         * support/makebin/makebin.c: put output in binary mode
7774
7775 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7776
7777         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7778         xdata and data memory on startup. Set the environment variable
7779         SDCC_NOGENRAMCLEAR to disable this.
7780         * src/mcs51/peephole.def,
7781         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7782         (allows non-interrupt and interrupt code to safely compete for a resource
7783         without the non-interrupt code having to disable interrupts)
7784
7785 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7786
7787         * src/SDCCicode.c (geniCodeAdd),
7788         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7789         with valFromType if type might be a pointer and host is big endian).
7790         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7791         types, not just integer types.
7792         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7793         multiply defined with mismatching "at" address.
7794
7795 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7796
7797         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7798         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7799         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7800         with embedded nulls (fixed bug #753752)
7801
7802 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7803
7804         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7805         Apparently this did not see much testing (endless loop)
7806
7807 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7808
7809         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7810
7811 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7812
7813         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7814         gracefully handle NULL memmap pointers
7815
7816 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7817
7818         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7819         instead of deleting the iCode when an operand is volatile
7820         * src/z80/gen.c (genDummyRead),
7821         * src/mcs51/gen.c (genDummyRead),
7822         * src/ds390/gen.c (genDummyRead),
7823         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7824         not just IC_RIGHT
7825         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7826         * src/SDCC.y: fixed bug #850420
7827
7828 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7829
7830         Applied z80 i/o port patch from Peter Townson and fixed some operators
7831         to better handle operands in A register.
7832         * device/include/z180.h
7833         * src/SDCC.y
7834         * src/SDCCglue.c
7835         * src/z80/gen.c
7836         * src/z80/gen.h
7837         * src/z80/main.c
7838         * src/z80/peeph-z80.def
7839         * src/z80/peeph.def
7840         * src/z80/z80.h
7841
7842 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7843
7844         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7845
7846 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7847
7848         * device/lib/hc08/_mullong.c: Removed extra #endif
7849
7850 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7851
7852         * sim/ucsim/hc08.src/inst.cc,
7853         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7854         carries from x to h
7855         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7856         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7857         * device/include/stdarg.h: fixed varargs for hc08
7858         * device/lib/Makefile.in,
7859         * device/lib/hc08/Makefile,
7860         * device/lib/hc08/_mulint.c,
7861         * device/lib/hc08/_mullong.c: fixed some endian problems
7862
7863 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7864
7865         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7866         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7867         * device/lib/_gptrget.c,
7868         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7869
7870 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7871
7872         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7873         * src/SDCCast.c (astErrors): fixed bug #846007
7874         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7875
7876 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7877
7878         * src/SDCCast.c (decorateType): disabled a transformation I added in
7879         revision 1.188 (access to fields of a structure at an absolute address);
7880         it breaks with bitfields, extern declarations, and gcse analysis.
7881         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7882         could be assigned through a pointer, so don't complain.
7883         * src/SDCCast.c (astErrors),
7884         * src/SDCCast.h,
7885         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7886
7887 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7888
7889         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7890         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7891         output of __config directives, since gpasm now supports them
7892         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7893         pre-processor macro, i.e. -DMCU=p18f452
7894         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7895         and modified to handle 'cast' icode similarly to '=' icode
7896         * src/pic16/device.h (typedef struct PIC_device): added field
7897         'extMIface' to indicate that chip has external memory interface
7898         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7899         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7900         18F8720
7901
7902 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7903
7904         * src/SDCC.y (pointer): fixed bug #846006
7905         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7906         * src/SDCCast.c (decorateType): fixed bug #846009
7907         * src/ds390/peeph.def,
7908         * src/ds390/gen.c (genAnd, genOr),
7909         * src/mcs51/peeph.def,
7910         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
7911
7912 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7913
7914         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
7915         * src/SDCCdflow.c
7916         * src/SDCCcse.c
7917         * src/SDCCcse.h
7918         * src/SDCCBBlock.h
7919         * src/SDCCBBlock.c
7920
7921 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
7922
7923         fixed bug #845089
7924         * src/SDCCbitv.h,
7925         * src/SDCCbitv.c: added function to free a bitvector
7926         * src/SDCClrange.h,
7927         * src/SDCClrange.c: added function to recompute the liveranges
7928         * src/avr/ralloc.c,
7929         * src/ds390/ralloc.c,
7930         * src/hc08/ralloc.c,
7931         * src/mcs51/ralloc.c,
7932         * src/pic/ralloc.c,
7933         * src/pic16/ralloc.c,
7934         * src/xa51/ralloc.c,
7935         * src/z80/ralloc.c: recompute the liveranges after register packing
7936
7937 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
7938
7939         * src/SDCCloop.c (newInduction): fixed bug #845630
7940
7941 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7942
7943         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
7944         inadvertantly left behind from my 2003-11-12 change
7945
7946 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7947
7948         Updated headers I neglected to commit yesterday.
7949         * src/SDCClrange.h,
7950         * src/SDCCicode.h
7951
7952 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7953
7954         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
7955         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
7956         * src/SDCCopt.c (eBBlockFromiCode),
7957         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
7958         the creation of the key hash table from the sequencing so it can be used
7959         earlier (for some GCSE bug fixes still pending)
7960
7961 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7962
7963         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
7964         * support/regression/tests/addsub.c: testing genPlus shortcut
7965
7966 2003-11-15  Borut Razem <borut.razem AT siol.net>
7967
7968         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
7969
7970 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7971
7972         * src/SDCCcse.c (cseBBlock): fixed bug #527779
7973         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
7974         ordering is immaterial.
7975         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
7976
7977 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7978
7979         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
7980         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
7981         (SIGSEV) of bug #840381
7982         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
7983         unlink new file before rename if new and old filenames are the same)
7984
7985 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7986
7987         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
7988         uninitialized variables) for the mcs51. Set environment variable
7989         SDCC_GENRAMCLEAR to test.
7990         xdata initialization slightly shorter
7991
7992 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7993
7994         * src/SDCCsymt.h,
7995         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
7996         #838241 & 780691 (basicly the same bug)
7997         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
7998         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
7999
8000 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8001
8002         * src/SDCCmain.c (linkEdit): "fix" #834252
8003
8004 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8005
8006         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8007         * src/SDCCast.h,
8008         * src/SDCC.y: fixed bug #819403
8009
8010 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8011
8012         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8013         the reentrant attribute.
8014         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8015         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8016         simulation
8017         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8018         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8019         erroneously reduced to a literal.
8020         * src/hc08/ralloc.c (packRegisters, rematStr),
8021         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8022         some cases
8023
8024 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8025
8026         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8027         * doc/sdccman.lyx: changed from 'article' to 'book'
8028         * doc/Makefile: readded test_suite_spec and cdbfileformat
8029
8030 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8031
8032         * device/include/stdlib.h: include malloc.h to comply with ANSI
8033         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8034
8035 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8036
8037         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8038         * doc/clean.mk: also remove *.out files
8039         * doc/sdccman.lyx: some additions, larger top/bottom margins
8040
8041 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8042
8043         * src/SDCC.y: fixed bug #837365
8044         * support/regression/tests/bitopcse.c
8045         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8046         a symbol (might be valop instead)
8047         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8048         * device/lib/clean.mk: added hc08 to the cleaning list
8049
8050 2003-11-04  Borut Razem <borut.razem AT siol.net>
8051
8052         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8053           made 2003-11-04
8054         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8055           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8056           malloc is declared in standard stdlib.h
8057
8058 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8059
8060         * device/lib/hc08/Makefile: need to clean .rel not .o files
8061         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8062
8063 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8064
8065         * src/port.h,
8066         * src/hc08/main.c,
8067         * src/mcs51/main.c,
8068         * src/ds390/main.c,
8069         * src/z80/main.c,
8070         * src/avr/main.c,
8071         * src/pic/main.c,
8072         * src/pic16/main.c,
8073         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8074         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8075         tests (which uses the port's oclsExpense function)
8076         * src/SDCC.y,
8077         * src/SDCCast.c,
8078         * src/SDCCicode.c,
8079         * src/hc08/gen.c,
8080         * src/ds390/gen.c,
8081         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8082
8083 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8084
8085         * src/SDCCcse.c (ifxOptimize),
8086         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8087         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8088         deleting the IFX iCode.
8089         * src/hc08/ralloc.c: reduced unneeded slocs
8090         * src/hc08/gen.c: fixed bug in asmopToBoolean
8091
8092 2003-11-04  Borut Razem <borut.razem AT siol.net>
8093
8094         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8095           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8096           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8097           transferred to configure
8098
8099 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8100
8101         Use headers defined in the C[++] standards:
8102         * sim/ucsim/gui.src/serio.src/fileio.cc
8103         * sim/ucsim/gui.src/serio.src/frontend.cc
8104         * sim/ucsim/gui.src/serio.src/main.cc
8105         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8106         * support/Util/NewAlloc.c
8107         * as/hc08/lklibr.c
8108         * as/mcs51/lklibr.c
8109         * as/z80/aslist.c
8110         * as/z80/assym.c
8111
8112 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8113
8114         * Added MSVC projects for hc08 assembler and linker:
8115         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8116         /as/hc08/link_hc08.dsp
8117
8118 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8119
8120         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8121
8122 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8123
8124         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8125
8126 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8127
8128         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8129
8130 2003-10-31  Borut Razem <borut.razem AT siol.net>
8131
8132         * support/cpp2/cpplib.h,
8133           support/cpp2/cpplib.c,
8134           support/cpp2/cpplex.c,
8135           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8136           to switch _asm block preprocessing on / off. Default is
8137           #pragma preproc_asm +
8138
8139 2003-10-31  Borut Razem <borut.razem AT siol.net>
8140
8141         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8142           when outputting comment blocks (when executed with -C option) and
8143           _asm (SDCPP specific) blocks
8144
8145 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8146
8147         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8148
8149 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8150
8151         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8152
8153 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8154
8155         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8156         * src/SDCCast.c (decorateType): fixed bug #832664
8157
8158 2003-10-31  Borut Razem <borut.razem AT siol.net>
8159
8160         * support\cpp2\cpplex.c: fixed for SDCPP:
8161           comments(when executed with -C option) and _asm blocks
8162           were included even if they where in skipped #if block.
8163           Applied solution from GCC cpp 3.3.2
8164
8165 2003-10-31  Borut Razem <borut.razem AT siol.net>
8166
8167         * src/SDCC.lex: sdcc now understands both formats:
8168           '# <line_number> <file_name>' and
8169           '#line <line_number> <file_name>'
8170         * support/cpp2/cppmain.c: sdcpp now generates the standard
8171           '# <line_number> <file_name>' instead of former
8172           '#line <line_number> <file_name>'
8173
8174 2003-10-30  Borut Razem <borut.razem AT siol.net>
8175
8176         * support/cpp2/cpphash.h,
8177         * support/cpp2/cpplib.h
8178         * support/cpp2/cpplex.c,
8179         * support/cpp2/cppmain.c,
8180         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8181
8182 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8183
8184         Fixed a number of problems revealed by bug #827883.
8185         * src/SDCCloop.c (loopInvariants): Spill location of the
8186         result operand should be recomputed if extracted from
8187         a loop. Also, don't extract assignments of an iTemp
8188         from a literal.
8189         * src/SDCCast.c (isConformingBody): loop reversal should
8190         not occur if the control variable is involved with a
8191         relational operator.
8192
8193 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8194
8195         * .version: bumped to 2.3.6 to reflect the big improvements
8196         made by Erik and Klaus. Thanks!
8197
8198 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8199
8200         Replaced the livrange code.
8201         * src/SDCClrange.c: added new LR code
8202         * src/SDCCloop.c,
8203         * src/SDCCBBlock.h: removed remainig parts from old LR code
8204         * src/ds390/ralloc.c,
8205         * src/ds390/gen.c: minor fixes to make it work with new code
8206
8207 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8208
8209         * as/hc08/asm.h,
8210         * as/hc08/lkrloc.c,
8211         * src/hc08/gen.c,
8212         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8213         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8214         (tweaked fix for bug #818696)
8215
8216 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8217
8218         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8219
8220 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8221
8222         * src/SDCCmain.c,
8223         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8224         * src/mcs51/gen.c (gencjneshort),
8225         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8226         more efficient (per Scott Bronson's suggestion)
8227
8228 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8229
8230         Extended the semantics of the critical keyword to include
8231         individual statements. See RFE #827755 and #799831
8232         * src/SDCC.y
8233         * src/SDCCicode.c
8234         * src/SDCCopt.c
8235         * src/SDCCast.c
8236         * support/Util/SDCCerr.c
8237         * support/Util/SDCCerr.h
8238         * src/mcs51/gen.c
8239         * src/ds390/gen.c
8240         * src/hc08/gen.c
8241
8242 2003-10-19  Borut Razem <borut.razem AT siol.net>
8243
8244         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8245
8246 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8247
8248         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8249         Fixed bug #818696
8250         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8251         and predecrement operand is displayed
8252
8253 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8254
8255         * src/SDCCval.c (valMinus): fixed bug #826041
8256
8257 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8258
8259         Some hc08 related updates that I missed earlier
8260         * sim/ucsim/stypes.h
8261         * support/regression/ports/hc08/spec.mk
8262
8263 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8264
8265         New target "hc08" for the Motorola 68hc08 family of micros
8266
8267         * configure
8268         * configure.in
8269         * Makefile
8270         * src/hc08/*
8271         * src/SDCCmain.c
8272         * src/port.h
8273         * sim/ucsim/hc08.src/*
8274         * sim/ucsim/configure.in
8275         * src/ucsim/configure
8276         * sim/ucsim/packages_in.mk
8277         * as/hc08/*
8278         * as/Makefile
8279         * device/include/mc68hc908qy.h
8280         * device/lib/hc08/*
8281         * device/lib/Makefile.in
8282         * support/regression/ports/hc08/*
8283         * support/regression/Makefile
8284
8285 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8286
8287         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8288         regression test
8289         * src/ds390/gen.c (genCast): fixed bug #821957
8290
8291 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8292
8293         * device/lib/logf.c: "fixed" overlay bug
8294         * support/regression/ports/host/spec.mk: added m library
8295         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8296         * support/regression/tests/float_trans: added (for Eric)
8297
8298 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8299
8300         * src/mcs51/gen.c (genCpl): fixed bug
8301         http://sf.net/mailarchive/message.php?msg_id=6263915
8302
8303 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8304
8305         * src/SDCCast.c (decorateType): added extended constant folding
8306         * src/SDCCsymt.c (computeType): cleanup
8307         * src/SDCCval.c (valShift): minor optimization
8308         * support/regression/tests/ast_constant_folding.c: added
8309
8310 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8311
8312         * src/SDCCmain.c: removed some unintended changes
8313
8314 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8315
8316         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8317         * src/z80/gen.c: fixed part of bug #817589
8318         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8319
8320 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8323         * src/SDCCcflow.c
8324         * src/SDCCcse.c
8325         * src/SDCCdflow.c
8326         * src/SDCClabel.c
8327         * src/SDCClrange.c
8328         * src/SDCCmem.c
8329         * src/SDCCopt.c
8330         * src/SDCCpeeph.c
8331         * src/SDCCset.c
8332         * src/avr/ralloc.c
8333         * src/ds390/ralloc.c
8334         * src/izt/ralloc.c
8335         * src/mcs51/ralloc.c
8336         * src/pic/ralloc.c
8337         * src/pic16/ralloc.c
8338         * src/xa51/ralloc.c
8339         * src/z80/ralloc.c
8340         * src/z80/gen.c: removed unused label "release:"
8341
8342 2003-10-06  Borut Razem <borut.razem AT siol.net>
8343
8344         * src/SDCC.lex: removed definition of unused variables
8345           save_optimize and save_options
8346
8347 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8348
8349         * clean.mk: removed '=' in "-maxdepth=1"
8350         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8351         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8352
8353 2003-10-06  Borut Razem <borut.razem AT siol.net>
8354
8355         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8356           my_unput() replaced by unput()
8357
8358 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8359
8360         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8361         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8362         type-punned pointer will break strict-aliasing rules"
8363         Old LR behaviour is again default; Klaus' LR can be choosen by
8364         defining the environment variable LRKLAUS
8365         * src/SDCCBBlock.h
8366         * src/SDCCloop.c
8367         * src/SDCClrange.c
8368         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8369         * clean.mk: fixed removal of files in bin/CVS/
8370         * device/lib/clean.mk: fixed removal of directories small and large
8371         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8372         * src/SDCCicode.c,
8373         * src/SDCCval.c: removed superflous test for pedantic
8374
8375 2003-10-05  Borut Razem <borut.razem AT siol.net>
8376
8377         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8378           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8379           message "unmatched #pragma SAVE and #pragma RESTORE"
8380
8381 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8382
8383         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8384           assembly, critical functions, atomic, nojtbound)
8385
8386 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8387
8388         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8389         * src/SDCCBBlock.h
8390         * src/SDCCloop.c
8391         * src/SDCCloop.h
8392         * src/SDCClrange.c
8393
8394 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8395
8396         * src/z80/gen.h,
8397         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8398         * src/mcs51/gen.h
8399         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8400         * src/ds390/gen.h
8401         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8402         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8403         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8404
8405 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8406
8407         * src/z80/gen.c (genRet): fixed bug #524753
8408         * src/z80/gen.c (genCast): fixed internal error on cast from
8409         pointer to long
8410         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8411         fix for bug #477835 to the z80
8412         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8413         for tracking iCodes in the peephole optimizer for z80
8414
8415 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8416
8417         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8418         the other part of bug #814548
8419         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8420
8421 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8422
8423         * src/SDCCcse.c: fixed part of bug #814548
8424
8425 2003-09-28  Borut Razem <borut.razem AT siol.net>
8426
8427         * src/asm.c: rewrite of printILine() to use temporary file instead
8428           a pipe
8429         * src/xa51/main.c: commented out declaration of int rewinds
8430
8431 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8432
8433         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8434
8435 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8436
8437         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8438         * src/asm.c (printILine): Fixed bug #811015
8439
8440 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8441
8442         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8443         freeing.
8444
8445 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8446
8447         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8448         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8449         to correctly handle general case of AOP_PAIRPTR
8450         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8451
8452 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8453
8454         * src/mcs51/ralloc.c (fillGaps),
8455         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8456         register positioning bug)
8457
8458 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8459
8460         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8461
8462 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8463
8464         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8465         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8466         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8467         (ralloc doesn't intentionally do this now, but perhaps later)
8468         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8469         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8470         register positioning bugs (Fixed bug #762602 and #795325)
8471         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8472         (Fixed bug #808779)
8473         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8474         lines that --i-code-in-asm generates
8475
8476 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8477
8478         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8479         trying to fclose a FILE* that was already closed.
8480
8481 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8482
8483         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8484         of const struct should be treated as if const themselves)
8485
8486 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8487
8488         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8489
8490 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8491
8492         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8493         Unix (/n) and DOS (/r/n) line terminations.
8494
8495 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8496
8497         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8498         bug #613775
8499
8500 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8501
8502         * src/mcs51/gen.c (genFunction, genEndFunction),
8503         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8504         and restore of EA so that stack offsets to parameters are
8505         correct when using both critical and reentrant/stack-auto.
8506         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8507         size (can be triggered in error if sloc is shared between
8508         different sized objects)
8509         * device/include/float.h: fixed macros to explicitly use
8510         unsigned long where needed
8511
8512 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8513
8514         Feature req. 799831: added code to allow nesting of critical functions
8515         * src/mcs51/gen.c (genFunction, genEndFunction)
8516         * src/ds390/gen.c (genFunction, genEndFunction)
8517
8518 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8519
8520         * src/SDCCsymt.c (sclsFromPtr),
8521         * src/SDCCsymt.h,
8522         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8523         support for standard C idiom of memory mapped variables; for
8524         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8525         to xdata int at 0x1234 tempvar = 1.
8526         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8527         provided by Akiya ISHIDA
8528
8529 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8530
8531         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8532         * src/SDCCval.c (constVal): added reduction from int to char
8533         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8534         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8535         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8536         to ignore the sign
8537         * support/regression/tests/shifts.c: fixed
8538
8539 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8540
8541         * src/z80/gen.c (genXor): Fixed bug #805445
8542
8543 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8544
8545         Fixed bug #621531 (const & volatile confusion in the type chain).
8546         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8547         refer to the const or volatile state of the pointer itself.
8548
8549         * src/SDCCast.c
8550         * src/SDCCglue.c
8551         * src/SDCCicode.c
8552         * src/SDCCsymt.c
8553         * src/SDCCval.c
8554         * src/SDCC.y
8555         * src/SDCCsymt.h
8556         * src/pic/gen.c
8557         * src/pic/ralloc.c
8558         * src/pic16/gen.c
8559         * src/pic16/ralloc.c
8560         * support/regression/tests/const.c
8561
8562 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8563
8564         When checking for duplicated modules, use absolute paths
8565         instead of relative paths.  Files changed:
8566
8567         * as/mcs51/lklib.c
8568         * link/z80/lklib.c
8569
8570 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8571
8572         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8573
8574 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8575
8576         * device/include/string.h: added size_t typedef, changed
8577         prototypes to use size_t, eliminated separate reentrant and
8578         non-reentrant declarations, added _memmove declaration
8579         * device/lib/_memcpy.c: changed to use size_t instead of int,
8580         changed /4 to >>2 to avoid division library call
8581         * device/lib/_memcmp.c,
8582         * device/lib/_memset.c,
8583         * device/lib/_strncat.c,
8584         * device/lib/_strncpy.c,
8585         * device/lib/_strncmp.c: changed to use size_t instead of int
8586         * device/lib/_memmove.c: new file (fixed bug #772294)
8587         * device/lib/Makefile.in: added _memmove.c
8588         * device/lib/z80/asm_strings.s: fixed bug #772290
8589         * support/regression/tests/bitfields.c: attempt to fix host assertion
8590         failure on amd64-unknown-linux2.2
8591
8592 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8593
8594         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8595         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8596         * as/z80/asmain.c (main): fixed bug #801766
8597
8598 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8599
8600         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8601         compilers
8602
8603 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8604
8605         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8606         reported in bug #800609
8607
8608 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8609
8610         * Top header beautifications in src/pic16 directory:
8611           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8612           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8613           pcoderegs.h, ralloc.c, ralloc.h
8614         * main.c: added top header and GPL license notice
8615         * pcode.c: fixed the if-conditional warning
8616
8617 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8618
8619         * device/lib/_mullong.c: replaced int by short for gcc
8620
8621 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8622
8623         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8624         and JUMPTABLE iCodes properly now (worked by accident before)
8625         * src/mcs51/gen.c (leftRightUseAcc),
8626         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8627         iCode properly now. Use getSize instead of nRegs since a & b
8628         aren't part of the nRegs tally.
8629
8630 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8631
8632         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8633         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8634           before instructions that use the _STATUS register
8635
8636 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8637
8638         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8639         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8640         fetching of the pointer
8641         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8642         copied from genNearPointerSet()
8643         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8644         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8645         If they pop r0/r1 they must be called in the opposite order than aopOp().
8646         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8647         (resp. --stack-auto), prepared for --xstack
8648
8649 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8650
8651         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8652
8653 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8654
8655         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8656         these ports have their own __sdcc_external_start()
8657
8658 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8659
8660         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8661         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8662         type for bits was changed. It resulted in bit variables becoming
8663         global, which is not permitted in PIC 14 assembly output.
8664
8665 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8666
8667         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8668
8669 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8670
8671         Z80 and MCS51 linkers complaint if a public symbol is defined
8672         in more than one library module:
8673
8674         * as/mcs51/lklib.c
8675         * link/z80/lklib.c
8676         * as/mcs51/Makefile.in
8677
8678 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8679
8680         A few small changes that speed up the peephole optimizer.
8681
8682         * src/SDCCpeeph.c
8683
8684 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8685
8686         Try to make the peephole optimizer smarter by maintaining
8687         an association between the assembly source code and the
8688         iCodes that originated them. Put this information to use
8689         with a new peephole rule condition "notVolatile" so that
8690         the rules can be aggressive yet still safe.
8691
8692         * src/SDCCpeeph.c
8693         * src/SDCCpeeph.h
8694         * src/mcs51/gen.c
8695         * src/mcs51/peeph.def
8696
8697 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8698
8699         Fixed bug #741761
8700
8701         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8702         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8703         if the left or right operand symbols have the accuse flag set.
8704
8705 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8706
8707         Changed the type of the result of the ! (NOT) operator to char;
8708         previously it returned the same type as the source. This allows
8709         us to eliminate all the genFloatNot functions (all of its target
8710         implementations were very buggy) since !float can use the same
8711         code as !long now.
8712
8713         * src/SDCCicode.c (ast2iCode): ! returns char
8714         * src/mcs51/gen.c (genNot, genNotFloat),
8715         * src/ds390/gen.c (genNot, genNotFloat),
8716         * src/z80/gen.c (genNot, genNotFloat),
8717         * src/pic/gen.c (genNot, genNotFloat),
8718         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8719
8720 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8721
8722         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8723         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8724            during interrupts. Ensure WSAVE is located at a shared bank address.
8725         2. Fixed page selection in some places
8726         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8727            the registers name strings.
8728         4. Fixed "signed / unsigned compare" compiler warnings.
8729         5. The PIC port manages its own allocation of the general purpose
8730            registers, but makes no attempt to reuse them. As a result when
8731            compiling it soon runs out of general purpose registers. Some
8732            additional code was added to the files pcode.c and device.c to walk
8733            through the function call tree and rename the registers so that they
8734            get reused.
8735
8736         * src/pic/device.c
8737         * src/pic/gen.c
8738         * src/pic/glue.c
8739         * src/pic/pcode.c
8740         * src/pic/pcode.h
8741         * src/pic/ralloc.c
8742         * src/pic/ralloc.h
8743         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8744         genPlus() & genMinus() when the result is the same as left or right
8745
8746 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8747
8748         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8749
8750 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8751
8752         Made bitfield a distinct type from bit so that bitfields
8753         convert as per ANSI C and bits retain their traditional
8754         boolean style behaviour. Implemented bitfield support in
8755         the z80 port.
8756
8757         * src/SDCCsymt.h,
8758         * src/SDCCsymt.c,
8759         * src/SDCCast.c,
8760         * src/cdbFile.c,
8761         * src/mcs51/gen.c,
8762         * src/ds390/gen.c: bit v bitfield split
8763         * src/z80/gen.c: New support for bitfields
8764         * support/regression/tests/bitfields.c: reenabled z80,
8765         added more tests
8766
8767 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8768
8769         Rules 246.x, 247.x relate to bitfields, the others speed up
8770         access to xdata mapped I/O devices.
8771
8772         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8773
8774 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8775
8776         Cleaned up genPackBits and genUnpackBits and added two helper
8777         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8778         for literal assignments in genPackBits (thanks to Frieder for
8779         reminding me).
8780
8781         * src/mcs51/gen.c
8782         * src/ds390/gen.c
8783
8784 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8785
8786         Fixed bug #748310 (pointer to function type mishandled when the
8787         function name is omitted). Also fixed a SIGSEGV when a function
8788         attribute (reentrant, etc) is used on a non-function or on a
8789         function but misplaced before the parameter list.
8790
8791         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8792         bug #748310
8793         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8794         * support/Util/SDCCerr.h,
8795         * support/Util/SDCCerr.c: Added func attr misuse error msg
8796
8797 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8798
8799         Fixed bug #787649 by anonymous
8800         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8801         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8802
8803 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8804
8805         Fixed numerous bitfield problems.
8806
8807         * src/SDCC.y: More bitfield related error checking
8808         * src/SDCCsymt.h,
8809         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8810         * support/Util/SDCCerr.h,
8811         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8812         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8813         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8814         * support/regression/tests/bitfields.c: tests added
8815
8816 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8817
8818         Made the constant following the "interrupt" keyword optional. If
8819         omitted, the function will not automatically be given an entry
8820         in the interrupt vector table (similar to #pragma NOIV, but
8821         less syntacticly kludgy). The interrupt number is also now
8822         range checked. Also fixed a bug in the high order bit example
8823         in the manual.
8824
8825         * src/SDCC.y
8826         * src/SDCCmem.c
8827         * src/SDCCglue.c
8828         * src/SDCCsymt.h
8829         * support/Util/SDCCerr.c
8830         * support/Util/SDCCerr.h
8831         * doc/sdccman.lyx
8832
8833 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8834
8835         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8836         * src/SDCCicode.c (operandOperation): rewritten some ops
8837         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8838         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8839         other type
8840         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8841         be re-activated by defining REDUCE_LITERALS)
8842         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8843         unsigned, but are signed by default
8844         * src/SDCCval.c (constVal): rearranged
8845         * src/SDCCval.c (valMod): preliminary fix
8846         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8847         * support/regression/literalop.c: added, work in progress
8848
8849 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8850
8851         Generate warnings for useless declarations like "char data;"
8852         that don't do what new users expect.
8853
8854         * src/SDCC.y
8855         * support/Util/SDCCerr.h
8856         * support/Util/SDCCerr.c
8857
8858 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8859
8860         * src/SDCCval.c (valMult): fix overflow detection of negative int
8861
8862 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8863
8864         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8865
8866         Changes to support big endian targets:
8867
8868         * src/ports.h
8869         * src/SDCCglue.c
8870         * src/avr/main.c
8871         * src/ds390/main.c
8872         * src/izt/i186.c
8873         * src/mcs51/main.c
8874         * src/pic/main.c
8875         * src/pic16/main.c
8876         * src/xa51/main.c
8877         * src/z80/main.c
8878
8879 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8880
8881         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8882         * device/lib/time.c: fixed warning "integer overflow in expression"
8883
8884 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8885
8886         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8887         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8888         constants are unsigned; added recognition of "u" flag for unsigned
8889         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8890         * src/SDCCval.c (valDiv, valMod): fixed signdness
8891         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8892         signedness of modulo, left and right shift
8893         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8894         * support/Util/SDCCerr.h: added warning W_INT_OVL
8895         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8896         * src/SDCCast.c (ast_print): improved output of constants
8897
8898 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8899
8900         Fixed some warnings when building with MSVC:
8901
8902         * as\mcs51\asdata.c
8903         * as\z80\asdata.c
8904         * as\mcs51\asm.h
8905         * as\z80\asm.h
8906         * link\z80\aslink.h
8907         * link\z80\lkdata.c
8908         * link\z80\lkeval.c
8909         * link\z80\lkgb.c
8910         * link\z80\lkihx.c
8911         * link\z80\lks19.c
8912         * link\z80\lksym.c
8913         * support\cpp2\cpplib.c
8914         * src\ds390\gen.c
8915         * src\mcs51\gen.c
8916
8917 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
8918
8919         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
8920
8921 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8922
8923         * support\librarian\clean.mk: Do not remove Makefile.
8924         * support\librarian\Makefile: added.
8925
8926 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8927
8928         Added librarian to MSVC build:
8929         * all.dsp
8930         * sdcc.dsw
8931         * support\librarian\librarian.dsp
8932
8933         'configure' not needed for librarian, removed:
8934         * support\librarian\configure
8935         * support\librarian\configure.in
8936         * support\librarian\config_in.h
8937         * support\librarian\Makefile.in
8938
8939         Hopefully these ones built the librarian and the rest of sdcc properly:
8940         * Makefile
8941         * Makefile.common.in
8942
8943         Messed up 'configure', so revert to previous version:
8944         * configure
8945         * configure.in
8946
8947 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
8948
8949         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
8950         there, while the mantissa of a double is "only" 53 bits wide.
8951
8952 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8953
8954         Adding sdcclib to the build.  MSVC project coming soon.
8955         Files added/changed:
8956
8957         * support\librarian\clean.mk
8958         * support\librarian\configure
8959         * support\librarian\configure.in
8960         * support\librarian\config_in.h
8961         * support\librarian\Makefile.bcc
8962         * support\librarian\Makefile.in
8963         * support\librarian\sdcclib.c
8964         * Makefile.bcc
8965         * Makefile
8966         * Makefile.common.in
8967         * configure
8968         * configure.in
8969
8970 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8971
8972         Linker now complaints if linked modules have conflicting options, for
8973         example, one compiled using --model-large and another one compiled with
8974         --model-small.  The following files were modified:
8975
8976         * as\mcs51\asdata.c
8977         * as\mcs51\aslink.h
8978         * as\mcs51\asm.h
8979         * as\mcs51\asmain.c
8980         * as\mcs51\asout.c
8981         * as\mcs51\i51pst.c
8982         * as\mcs51\lkdata.c
8983         * as\mcs51\lklibr.c
8984         * as\mcs51\lkmain.c
8985         * as\z80\asdata.c
8986         * as\z80\asm.h
8987         * as\z80\asmain.c
8988         * as\z80\asout.c
8989         * as\z80\z80pst.c
8990         * link\z80\aslink.h
8991         * link\z80\lkdata.c
8992         * link\z80\lklibr.c
8993         * link\z80\lkmain.c
8994         * src\SDCCglue.c
8995
8996 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8997
8998         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
8999         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9000
9001 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9002
9003         * src/z80/mappings.i: fix _mul[us][int,long] entries
9004
9005 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9006
9007         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9008
9009 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9010
9011         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9012         * support/regression/tests/bitopcse.c: added
9013         fixed warning:
9014         * src/avr/gen.c:
9015         * src/pic/gen.c:
9016         * src/pic16/gen.c:
9017         * src/z80/gen.c:
9018         * src/xa51/gen.c:
9019
9020 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9021
9022         added support for new library format to z80, gbz80 linkers:
9023         *link/z80/aslink.h
9024         *link/z80/lklex.c
9025         *link/z80/lklib.c
9026         *link/z80/lklist.c
9027
9028 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9029
9030         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9031         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9032
9033 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9034
9035         added DUMMY_READ_VOLATILE:
9036         * src/SDCC.y:
9037         * src/avr/gen.c:
9038         * src/xa51/gen.c:
9039         * src/z80/gen.c:
9040         * src/pic/gen.c:
9041         * src/pic16/gen.c:
9042         * src/mcs51/gen.c:
9043         * src/ds390/gen.c:
9044         * src/SDCCcse.c (algebraicOpts): many improvements
9045         * src/SDCCcse.h: removed algebraicOpts()
9046         * src/SDCCicode.c (picDummyRead): added
9047
9048 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9049
9050         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9051         "Insufficient space in data memory".
9052
9053 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9054
9055         * src/mcs51/gen.c: fixed bug #771358
9056         * src/z80/gen.c: fixed bug #759087
9057
9058 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9059
9060         * src/pic16/glue.c: minor cleanup by Vangelis
9061
9062 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9063
9064         * device/include/regc515c.h: fixed #758477
9065         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9066         * device/lib/_gptrput.c: saved a few bytes
9067         * my tab spacing is 8, yours too?)
9068         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9069         * device/lib/serial.c: process RX bytes earlier than TX bytes
9070         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9071
9072 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9073
9074         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9075
9076 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9077
9078     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9079
9080 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9081
9082         * device/lib/Makefile.in: bad fix, reverted to 1.43
9083
9084 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9085
9086         * device/lib/Makefile.in: added missing z80 object files
9087
9088 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9089
9090         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9091         pic16 progress by Vangelis:
9092         * src/SDCCglobl.h:
9093         * src/SDCCmain.c:
9094         * src/pic/Makefile:
9095         * src/pic:
9096         * pic/Makefile:
9097         * pic16/device.c:
9098         * pic16/device.h:
9099         * pic16/gen.c:
9100         * pic16/gen.h:
9101         * pic16/genarith.c:
9102         * pic16/glue.c:
9103         * pic16/main.c:
9104         * pic16/pcode.c:
9105         * pic16/pcode.h:
9106         * pic16/pcodepeep.c:
9107         * pic16/peeph.def:
9108
9109 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9110
9111     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9112
9113 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9114
9115     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9116     added gbz80 build to MSVC project.
9117     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9118     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9119     from 8051 stuff and setup so it links using a .lnk file.
9120
9121 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9122
9123     * support/librarian/sdcclib.c: sdcc librarian.
9124     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9125     with sdcclib.
9126
9127 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9128
9129     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9130
9131 2003-07-02  Borut Razem <borut.razem AT siol.net>
9132
9133         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9134         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9135         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9136         src/xa51/main.c, src/z80/main.c:
9137         virtualization of glue() function: each port has it's own glue function,
9138         which is accessed by do_glue function pointer in PORT.general structure
9139
9140 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9141
9142         * DS800C400 fun, improved ROM interface and tinibios.
9143
9144 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9145
9146         * More support for DS80C400. Now includes beginning of interface to ROM.
9147
9148 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9149
9150         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9151
9152 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9153
9154         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9155
9156 2003-06-19  Borut Razem <borut.razem AT siol.net>
9157
9158         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9159
9160 2003-06-19  Borut Razem <borut.razem AT siol.net>
9161
9162         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9163         fixed Z80 port - crt0.o: cannot open.
9164
9165 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9166
9167         * support/Util/MySystem.c (merge_command): revert bad fix
9168
9169 2003-06-18  Borut Razem <borut.razem AT siol.net>
9170
9171         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9172
9173 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9174
9175         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9176         option --use-stdout sends errors to stdout instead of stderr.
9177
9178 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9179
9180         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9181
9182 2003-06-15  Borut Razem <borut.razem AT siol.net>
9183
9184         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9185         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9186         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9187         fixed width array of pointers replaced with sets;
9188         multiple include and lib paths ared transferred to preprocessor and linker
9189         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9190         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9191         fixed width array of pointers
9192         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9193         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9194         fixupPath(), getPathDifference()
9195         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9196         fixed width array of pointers
9197
9198 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9199
9200         * src/pic16/ralloc.c: fix warnings
9201         * src/pic16/pcode.c: fix warning
9202
9203 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9204
9205          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9206         know all the details, but essentially this set of changes enable
9207         the pic16 port to generate movff instructions and generate assembler
9208         directives,
9209         * src/SDCCmain.c:
9210         * src/pic16/gen.c:
9211         * src/pic16/glue.c:
9212         * src/pic16/pcode.c:
9213         * src/pic16/device.c:
9214         * src/pic16/main.c:
9215         * src/pic16/pcode.h:
9216         * src/pic16/pcoderegs.c:
9217         * src/pic16/ralloc.c:
9218         * src/pic16/ralloc.h:
9219
9220 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9221
9222         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9223         added option --vc, so sdcc errors and warnings are compatible with
9224         Microsoft Visual Studio.
9225
9226 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9227
9228         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9229           device/lib/libfloat.lib: added atof function.
9230
9231 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9232
9233         * doc/sdccman.lyx: updated to Lyx 1.3
9234         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9235         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9236         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9237
9238 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9239
9240         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9241
9242 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9243
9244         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9245           additions to the "related tools/documentation" section
9246
9247 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9248
9249         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9250
9251 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9252
9253         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9254         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9255
9256 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9257
9258         * doc/sdccman.lyx: fix double dash and other minor things
9259         * doc/Makefile: fix double dash
9260
9261 2003-05-28  Karl Bongers(patches from Martin Helmling)
9262         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9263           condition and ignore commands.
9264
9265 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9266
9267         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9268           is in parts still quite out of date, I did changes as far as I felt makes sense
9269           for a non-native english speaker.
9270           Please feel free to add to the manual or to correct my changes.
9271         * doc/Makefile: undid touching the date of intermediate tex files.
9272
9273 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9274
9275         * doc/sdccman.lyx: Manual has an index now
9276
9277 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9278
9279         Finalize muluint/mulsint and mululong/mulslong merging:
9280         * device/lib/_mulint.c
9281         * device/lib/_mullong.c
9282         * device/lib/gbz80/mul.s
9283         * device/lib/gbz80/stubs.s
9284         * device/lib/z80/mul.s
9285         * device/lib/z80/stubs.s
9286         * src/SDCCsymt.c (initCSupport)
9287
9288 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9289
9290         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9291         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9292           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9293           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9294           instead of /Zm500.
9295
9296 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9297
9298         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9299           the regression tests I'm not brave enough to enable 245.b, 245.c
9300         * doc/sdccman.lyx: added latex preamble for hyperref package.
9301           Using pdflatex this will give you a hyperlinked pdf file with
9302           bookmarks. (prepend '%' before /usepackage if this breaks something)
9303
9304 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9305
9306          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9307
9308 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9309
9310         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9311
9312 2003-05-21    <johan AT balder>
9313
9314         * src/SDCCglue.c (printIval): fixed bug #739934
9315
9316 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9317
9318         Applied patch from bug 737905 (renamed yylineo to mylineno):
9319         * src/altlex.c
9320         * src/SDCCast.c
9321         * src/SDCglobl.h
9322         * src/SDCC.lex
9323         * src/SDCCsymt.c
9324         * src/SDCCval.c
9325         * src/pic16/pcode.c: Cleaned warnings
9326         * src/pic16/pcodeflow.c: Cleaned warnings
9327         * src/pic16/pcoderegs.c: Cleaned warnings
9328
9329 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9330
9331         * src/pic16/pcode.c: Cleaned warnings
9332         * src/pic16/pcodepeep.c: Cleaned warnings
9333         * src/pic16/ralloc.c: Cleaned warnings
9334
9335 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9336
9337         * doc/sdccman.lyx: fixed bug 739745
9338         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9339
9340 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9341
9342         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9343         it can be defined with CFLAGS when running configure
9344         * src/SDCCmain.c: fixed compiling + linking with object files
9345
9346 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9347
9348         * configure.in: configure for pic16 port,
9349             added --disable-pic16-port
9350         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9351         * src/SDCCmain.c: linkOptions is changed to set *,
9352             added if/endif conditional macros to remove options help
9353             messages from optionsTable when a port is not configured, added
9354             support for the PIc16 port in the ports table, when executing
9355             the compiler with no port specified on command line, a default
9356             port is selected with the new macro DEFAULT_PORT which is
9357             defined in port.h, in setDefaultOptions() linkOptions is removed
9358             from initialization assignment, since now it is a set,
9359             parseCmdLine uses setParseWithComma for linkOptions, in
9360             linkEdit() linkOptions are accessed with new function indexSet()
9361             which returns the i'th item of a set variable. See SDCCset.c, in
9362             linkEdit() when calling buildCmdLine(), added linkOptions as
9363             last argument. Now users can pass arguments to gplink via the
9364             -Wl option, main() uses pic16glue() to glue up pic16 programs
9365         * src/SDCCpeeph.c: various changes to support pic16
9366         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9367             return the i'th item of the set
9368         * src/SDCCset.h: added function prototype for indexSet()
9369         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9370         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9371         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9372             added macro DEFAULT_PORT
9373         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9374         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9375             generated
9376         * src/pic16/glue.c: commented out some error producing lines
9377         * src/pic16/main.c: __config directives are commented out to stop
9378             gpasm complaining and test the linkage with gplink, _linkCmd and
9379             _asmCmd changed to be more gplink and gpasm friendly
9380         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9381             produced an error when parsed, peep rule 12 is added to utilize
9382             movff, but it is commented out since the pCode does not support
9383             yet a command with 2 address arguments
9384
9385 2003-05-18    <johan AT balder>
9386
9387         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9388         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9389 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9390
9391         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9392   Added feature to script commands from file.
9393
9394 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9395
9396         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9397         * src/SDCCutil.c: include ctype.h for win32
9398
9399 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9400
9401         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9402
9403 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9404
9405         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9406   Fixed so you can set breakpoints prior to run, run does not stop
9407   on entry now.  Add tbreak.  Other enhancements and fixes for use
9408   with ddd.
9409
9410 2003-05-12  Borut Razem <borut.razem AT siol.net>
9411
9412         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9413
9414 2003-05-11  Borut Razem <borut.razem AT siol.net>
9415
9416         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9417         the path of bin directory, so that PATH is the only env. variable, which has to be set
9418         in case of standard installation.
9419         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9420         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9421         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9422
9423 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9424
9425         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9426         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9427         temp files are in the port dir; clean the gen/test directory when
9428         generating new test.c
9429         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9430         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9431         * support/regression/tests/zeropad.c: added
9432
9433 2003-05-09    <johan AT balder>
9434
9435         * src/SDCCglue.c: fixed bug #597940
9436
9437 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9438
9439         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9440   cache sfr, optimize next,step, fix off by one sourceline,
9441   support ddd list function.
9442         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9443
9444 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9445
9446         * support/regression/HTMLgen.py: added compare_s2f()
9447         * support/regression/Makefile: redo 1.27
9448         * support/regression/generate-cases.py: redo 1.5
9449
9450 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9451
9452         * support/regression/tests/float.c: workaround 33 bit hex constant
9453         * support/regression/tests/simplefloat.c: fix division for host
9454
9455 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9456
9457         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9458         that tame's the PIC's over-aggressive optimizer.
9459
9460 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9461
9462          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9463          support for MSVC.
9464
9465 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9466
9467         Initial support for DS80C400. "Hello world" runs on TINIm400
9468         (with polled I/O).
9469
9470 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9471
9472          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9473          * Some notes on ddd usage added in debugger/README
9474          Martin Helmling adding more features and fixes for ddd GUI debugger.
9475          Code added for nexti, stepi, up, down, and other adjustments.
9476
9477 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9478
9479         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9480         * src/pic/peeph.def Added two rules to optimize carry manipulation
9481         * src/pic/* removed debug printfs
9482
9483 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9484
9485         * debugger/mcs51/cmd.c: added header newalloc.h
9486
9487 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9488
9489         * as/Makefile: new EXEEXT
9490         * as/z80/Makefile: remove trailing slash of BUILDIR
9491         * as/z80/clean.mk: new EXEEXT
9492         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9493         * support/cpp2/Makefile.in: new EXEEXT
9494         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9495
9496 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9497
9498         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9499         EXEEXT was introduced to fix all related problems with targets
9500         "clean", "install" and "uninstall"; a couple of further flaws
9501         especially with "clean" have been fixed too
9502         * as/mcs51/Makefile.in
9503         * as/mcs51/clean.mk
9504         * as/z80/Makefile
9505         * Makefile
9506         * clean.mk
9507         * debugger/mcs51/Makefile.in
9508         * debugger/mcs51/clean.mk
9509         * link/z80/Makefile
9510         * link/z80/Makefile.in
9511         * link/z80/clean.mk
9512         * link/Makefile
9513         * packihx/Makefile.in
9514         * packihx/clean.mk
9515         * sim/ucsim/Makefile
9516         * sim/ucsim/clean.mk
9517         * sim/ucsim/avr.src/Makefile.in
9518         * sim/ucsim/avr.src/clean.mk
9519         * sim/ucsim/s51.src/Makefile.in
9520         * sim/ucsim/s51.src/clean.mk
9521         * sim/ucsim/xa.src/Makefile.in
9522         * sim/ucsim/xa.src/clean.mk
9523         * sim/ucsim/z80.src/Makefile.in
9524         * sim/ucsim/z80.src/clean.mk
9525         * sim/ucsim/main_in.mk
9526         * sim/ucsim/packages_in.mk
9527         * sim/ucsim/gui.src/Makefile.in
9528         * sim/ucsim/gui.src/serio.src/Makefile.in
9529         * sim/ucsim/gui.src/serio.src/clean.mk
9530         * src/Makefile.in
9531         * src/clean.mk
9532         * support/cpp2/Makefile.in
9533         * support/cpp2/clean.mk
9534         * support/makebin/Makefile
9535         * support/makebin/clean.mk
9536         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9537         * doc/sdccman.lyx: --program-suffix no longer needed
9538
9539 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9540
9541          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9542          Martin Helmling added support for ddd GUI debugger.
9543          Code added to display assembly, set variables, and other commands
9544          to interface to ddd.
9545
9546 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9547
9548         * as/Makefile: fix target clean
9549         * as/clean.mk: fix target clean
9550         * as/z80/clean.mk: fix target clean
9551
9552 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9553
9554         * Makefile.common.in: added  AT EXEEXT AT
9555         * configure.in: removed all mingw32 stuff
9556         * configure: rebuilt from configure.in
9557         * doc/sdccman.lyx: updated section "installation"
9558         * support/scripts/sdcc_mingw32: adapted to configure
9559         * support/scripts/sdcc_cygwin_mingw32: added
9560
9561 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9562
9563         * src/pic Added object file support for the PIC port
9564         * src/pic Applied patch from Craig Franklin (this started the object file support)
9565         * src/regression Updated the PIC regression tests for object files
9566
9567 2003-04-20  Borut Razem <borut.razem AT siol.net>
9568
9569         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9570           lklex.c: In function `getfid':
9571           lklex.c:203: warning: array subscript has type `char'
9572         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9573           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9574         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9575           stack handling macros
9576
9577 2003-04-19  Borut Razem <borut.razem AT siol.net>
9578
9579         * "handling space characters in file path" task:
9580         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9581         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9582         * support/Util/MySystem.h: make it self-sufficient
9583         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9584           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9585           handling space characters in file path
9586         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9587           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9588         * support/Util/MySystem.c: handling space characters in executable's path
9589
9590 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9591
9592         * as/z80/Makefile: fix permanent rebuild of z80
9593         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9594         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9595
9596 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9597
9598         * src/SDCCopt.c: add special case optimization to replace modulo by
9599           a power of two with a bitwise AND.
9600
9601 2003-04-18    <johan AT balder>
9602
9603         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9604
9605 2003-04-17    <johan AT balder>
9606
9607         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9608         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9609
9610 2003-04-13  Borut Razem <borut.razem AT siol.net>
9611
9612         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9613         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9614           fixed mingw problem in adl_NORMALIZE_PATH
9615
9616 2003-04-12  Borut Razem <borut.razem AT siol.net>
9617
9618         * fixed "#pragma SAVE/RESTORE can not be nested":
9619         * src/SDCC.lex: reworked pragma handling functions
9620         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9621         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9622
9623 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9624
9625         * src/SDCCutil.c (pathEquivalent): defined but not used
9626         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9627         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9628         * configure: rebuilt from configure.in
9629         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9630         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9631         * device/include/Makefile.in: replace sdcc_datadir
9632         * device/lib/Makefile.in: replace sdcc_datadir
9633         * Makefile.common.in: add LDFLAGS from configure
9634         * packihx/Makefile.in: use LDFLAGS
9635         * src/Makefile.in: use LDFLAGS
9636         * support/cpp2/Makefile.in: add LDFLAGS from configure
9637         * support/makebin/Makefile: use LDFLAGS
9638         * .version: bumped version number to 2.3.5
9639
9640 2003-04-12  Borut Razem <borut.razem AT siol.net>
9641
9642         * completed "different paths" task:
9643         * src/SDCCmacro.c: fixed bug in handling quotes
9644         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9645         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9646
9647 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9648
9649         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9650
9651 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9652
9653         * ds390/gen.c ds390/peeph.def: fix bug 706781
9654
9655 2003-04-11  Borut Razem <borut.razem AT siol.net>
9656
9657         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9658
9659 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9660
9661         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9662         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9663          set - this bit used to not be set...).
9664         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9665           bad code in PIC Port
9666         * src/regression/and2.c added to test bug 609268
9667         * src/regression/Makefile added and2.c to regression test
9668
9669
9670 2003-04-08    <johan AT CP255758-A>
9671
9672         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9673         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9674         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9675
9676 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9677
9678         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9679         fix bug #487815
9680         * support/cpp2/Makefile.in: fix bug #487815
9681         * configure: rebuilt from configure.in
9682         * Makefile.common.in: docdir changed, new path suffixes
9683         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9684         * sdcc_vc_in.h: reflect changes from sdccconf.h
9685         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9686         * src/SDCCutil.h: remove BINDIR hack
9687         * doc/sdccman.lyx: update new path hierarchy
9688
9689 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9690
9691         * src/SDCCpeeph.c: added okToRemoveSLOC test
9692
9693 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9694
9695         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9696
9697 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9698
9699         * src/SDCCpeeph.c: added labelIsReturnOnly test
9700         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9701
9702 2003-04-05    <johan AT balder>
9703
9704         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9705         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9706         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9707         * src/SDCCast.c: fixed a warning
9708         * src/SDCCast.h: fixed a warning
9709         * src/SDCCicode.c (operandFromAst): fixed a warning
9710
9711 2003-04-04    <johan AT balder>
9712
9713         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9714         * src/SDCCast.c (decorateType): fixed bug #715076
9715         * src/SDCC.y: fixed bug #702907
9716
9717 2003-04-03    <johan AT balder>
9718
9719         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9720         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9721         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9722         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9723         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9724
9725 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9726
9727         * _decdptr.c: fix return values
9728         * _gptrget.c: fix return values
9729         * _gptrgetc.c: fix return values
9730         * _gptrput.c: fix return values
9731         * _mulint.c: fix return values
9732         * as/z80/Makefile: fix 'make -j' problem
9733
9734 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9735
9736         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9737         * configure.in: big cleanup, updated to autoconf 2.5x
9738         * configure: rebuilt from configure.in
9739         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9740         * sdcc_vc_in.h: reflect changes from sdccconf.h
9741         * doc/Makefile: fixed a flaw in "make install"
9742
9743 2003-04-02    <johan AT balder>
9744
9745         * src/ds390/gen.c (genCmp): no comments
9746         * src/mcs51/gen.c (genCmp): no comments
9747         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9748         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9749
9750 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9751
9752         * support/regression/generate-cases.py: place generated file in given sub directory
9753         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9754         * support/regression/Makefile: improvements for 'make -j';
9755         side effect: it's simpler and faster now
9756
9757 2003-03-31  Borut Razem <borut.razem AT siol.net>
9758
9759         * src/z80/main.c: link-{port} and as-{port} defined without path
9760         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9761
9762 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9763
9764         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9765
9766 2003-03-30  Borut Razem <borut.razem AT siol.net>
9767
9768         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9769           changed type of list parameter to set
9770         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9771         * src/port.h: changed type of do_assemble() parameter to set
9772         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9773           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9774           definition of "cppoutfilename" macro with NULL value in preProcess()
9775         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9776         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9777         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9778           replaced with set *binPathSet
9779         * shash_add() deallocates the item, if allready exsists, before adding the new one
9780         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9781
9782 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9783
9784         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9785           a nested for loop bug in the PIC port
9786         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9787           for loops
9788
9789 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9790
9791         * support/Util/dbuf.h: remove C++ stuff to make it portable
9792
9793 2003-03-28  Borut Razem <borut.razem AT siol.net>
9794
9795         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9796           literal strings in stringLiteral()
9797         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9798         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9799           to the project
9800
9801 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9802
9803         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9804
9805 2003-03-26    <johan AT balder>
9806
9807         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9808         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9809         * src/SDCCast.c (decorateType): fixed " -v < 3"
9810
9811 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9812
9813         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9814         Added Lenny Story's debug infrastructure changes:
9815         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9816         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9817         * src/cdbFile.c: added
9818         * src/SDCCdebug.c: added
9819         * src/SDCCdebug.h: added
9820         * src/SDCCast.c (createFunction)
9821         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9822         * src/SDCCmain.c (parseCmdLine, main)
9823         * src/SDCCmem.c (redoStackOffsets)
9824         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9825         * src/SDCCsymt.h
9826         * src/common.h
9827         * src/avr/gen.c (genAVRCode)
9828         * src/ds390/gen.c (gen390Code)
9829         * src/mcs51/gen.c (gen51Code)
9830         * src/pic/gen.c (genpic14Code)
9831         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9832         * src/xa51/gen.c (genXA51Code)
9833         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9834
9835 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9836
9837         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9838         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9839
9840 2003-03-22    <johan AT balder>
9841
9842         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9843
9844 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9845
9846         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9847         * doc/cdbfileformat.lyx: added, written by Lenny Story
9848         * doc/Makefile: added cdbfileformat.lyx
9849         * doc/clean.mk: added cdbfileformat.lyx
9850
9851 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9852
9853         * src/mcs51/peeph.def: fix bug #705773
9854
9855 2003-03-20    <johan AT balder>
9856
9857         An sfr/sbit can have an "at #" AND an initializer
9858         * src/SDCCsymt.c (checkSClass):
9859         * src/SDCCmem.c (allocGlobal):
9860         * src/SDCCmem.c (allocLocal):
9861         * src/SDCCast.c (createBlock):
9862
9863 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9864
9865         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9866
9867 2003-03-16    <johan AT balder>
9868
9869         Undid the hackup of const and volatile, the problem is much bigger
9870         * src/SDCC.y:1.65
9871         * src/SDCCast.c:1.171
9872         * src/SDCCglue.c:1.138
9873         * src/SDCCicode.c:1.146
9874         * src/SDCCsymt.c:1.150
9875         * src/SDCCval.c:1.65
9876
9877 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9878
9879         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9880         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9881
9882 2003-03-13    <johan AT balder>
9883
9884         Hackup const and volatile modifiers in type chains a bit:
9885         * src/SDCC.y:1.63
9886         * src/SDCCast.c:1.169
9887         * src/SDCCglue.c:1.136
9888         * src/SDCCicode.c:1.143
9889         * src/SDCCsymt.c1.146
9890         * src/SDCCsymt.h1.59
9891         * src/SDCCval.c:1.63
9892
9893 2003-03-12    <johan AT balder>
9894
9895         * src/SDCCBBlock.h: more LRH debugging junk
9896         * src/SDCCcflow.h: more LRH debugging junk
9897         * src/SDCCloop.c: more LRH debugging junk
9898         * src/SDCC.y (struct_declaration): fixed bug #697590
9899         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9900         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9901         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9902
9903 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9904         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9905         test function names must now match exactly).
9906         * src/SDCCcse.c: added special case in findCheaperOp to allow
9907         extending a short integer. Makes less awful code for bug 700121 test case.
9908
9909 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9910
9911         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
9912         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
9913
9914 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9915
9916         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
9917         actually called (operandsNotEqual() was called for all
9918         operandsNotEqualX tests).
9919
9920 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9921
9922         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
9923         with shorter literals. Fixes bug 700121.
9924
9925 2003-03-11    <johan AT balder>
9926
9927         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
9928
9929 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
9930
9931         * src/SDCCloop.c (mergeRegions): an evil beast is dead
9932         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
9933
9934 2003-03-10  Borut Razem <borut.razem AT siol.net>
9935
9936         * src/SDCCmain.c: pipe preprocessor's output
9937         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9938         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9939         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9940         which closes all pipes in pipeSet set
9941         * src/SDCCset.c: free deleted item in function deleteSetItem()
9942         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9943         moved from z80 to src subproject
9944         * .version: increased version number to 2.3.4
9945
9946 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
9947
9948         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
9949         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
9950         * support/regression/ports/xa51/spec.mk: fix typo
9951
9952 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
9953
9954         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
9955
9956 2003-03-09  Borut Razem <borut.razem AT siol.net>
9957
9958         * src/SDCCmain.c: pipe preprocessor's output
9959         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
9960         * sdcc_vc_in.h: define pclose as _pclose for WIN32
9961         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
9962         which closes all pipes in pipeSet set
9963         * src/SDCCset.c: free deleted item in function deleteSetItem()
9964         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
9965         moved from z80 to src subproject
9966
9967 2003-03-09  Borut Razem <borut.razem AT siol.net>
9968
9969         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
9970         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
9971         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
9972         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
9973         * src/SDCCglobl.h: unification of WIN32 native definitions
9974
9975 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9976
9977         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
9978
9979 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9980
9981         * src/configure.in:   check for endianess (even while cross-compiling)
9982         * src/configure:      check for endianess (even while cross-compiling)
9983         * src/configure_in.h: check for endianess (even while cross-compiling)
9984         * src/avr/gen.c:        remove old endianess stuff
9985         * src/mcs51/gen.c:      remove old endianess stuff
9986         * src/ds390/gen.c:      remove old endianess stuff
9987         * src/pic/gen.c:        remove old endianess stuff
9988         * src/pic/genarith.c:   remove old endianess stuff
9989         * src/pic/glue.c:       fix endianess check
9990         * src/pic16/gen.c:      remove old endianess stuff
9991         * src/pic16/genarith.c: remove old endianess stuff
9992         * src/pic16/glue.c:     fix endianess check
9993         * src/xa51/gen.c:       remove old endianess stuff
9994         * src/z80/gen.c:        fix endianess check
9995         * src/SDCCglue.c:       fix endianess check
9996         * src/ds390/peeph.def: fix bug 700036
9997
9998 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
9999
10000         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10001         * src/configure: find appropriate data-types on host for SDCC's int and long
10002         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10003         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10004         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10005
10006 2003-03-07    <johan AT balder>
10007
10008         Just a big NOOP:
10009                 some minor cleanups before the big shot
10010                 OP_DEFS and OP_USES now use Kevin's protection
10011                 new option --nolabelopt
10012
10013         * src/SDCCBBlock.c:
10014         * src/SDCCast.c,:
10015         * src/SDCCcflow.c:
10016         * src/SDCCcse.c:
10017         * src/SDCCicode.c:
10018         * src/SDCCicode.h:
10019         * src/SDCClabel.c:
10020         * src/SDCCloop.c:
10021         * src/SDCCmain.c:
10022         * src/ds390/ralloc.c:
10023         * src/mcs51/ralloc.c:
10024         * src/pic/ralloc.c:
10025         * src/xa51/ralloc.c:
10026         * src/z80/ralloc.c:
10027
10028 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10029
10030         * src/pic/pcode.c (get_op): fix 64 bit warnings
10031         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10032         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10033         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10034         * support/regression/tests/malloc.c: fix 64 bit warnings
10035
10036 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10037
10038         * src/mcs51/gen.c (genMinus): fixed bug 696436
10039
10040 2003-03-02  Borut Razem <borut.razem AT siol.net>
10041
10042         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10043
10044 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10045
10046         * configure.in: test for mkstemp
10047         * sdccconf_in.h: add HAVE_MKSTEMP
10048
10049 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10050
10051         * device/include/ctype.h: removed warning while using --stack-auto
10052         * device/include/malloc.h: removed warning while using --stack-auto
10053         * device/include/string.h: removed warning while using --stack-auto
10054
10055 2003-02-23  Borut Razem <borut.razem AT siol.net>
10056
10057         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10058         because NDEBUG is defined (see man assert)
10059         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10060
10061 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10062
10063         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10064         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10065
10066 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10067
10068         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10069         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10070
10071 2003-02-18    <johan AT balder>
10072
10073         * as/mcs51/asmain.c (asmbl): module can start with a digit
10074         * as/z80/asmain.c (asmbl): module can start with a digit
10075
10076 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10077
10078         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10079         * src/asm.c: fix pipe() for Mingw32
10080
10081 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10082
10083         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10084         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10085         make -V work again; --c1mode reads now from stdin
10086         * doc/sdccman.lyx: added --c1mode
10087         * support/Util/SDCCerr.c: new messages for c1 mode
10088         * support/Util/SDCCerr.h: new messages for c1 mode
10089         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10090
10091 2003-02-15    <johan AT balder>
10092
10093         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10094
10095 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10096
10097         * doc/sdccman.lyx: Environment variables, -o and other minor things
10098
10099 2003-02-14    <johan AT balder>
10100
10101         * src/xa51/main.c: before anyone really tries to use it :)
10102
10103         * Install doc's in share/sdcc/doc
10104         * removed some obsolete files
10105         * Do a proper make distclean and uninstall
10106         M Makefile.common.in
10107         R sdccbuild.sh
10108         M as/Makefile
10109         M device/include/Makefile.in
10110         M device/lib/Makefile.in
10111         M doc/sdccman.lyx
10112         M link/Makefile
10113         M sim/ucsim/doc/Makefile.in
10114         M src/clean.mk
10115         R src/avr/peeph.rul
10116         R src/xa51/peeph.rul
10117         M support/cpp2/Makefile.in
10118         M support/makebin/Makefile
10119
10120
10121 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10122
10123         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10124
10125 2003-02-10  Borut Razem <borut.razem AT siol.net>
10126
10127         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10128         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10129         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10130         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10131         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10132         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10133         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10134         src/z80/Makefile.bcc: Borland Makefile cleanup
10135         * as/z80/Makefile.bcc: Added Borland Makefile
10136         * support/cpp2/borland.h: Removed
10137
10138 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10139
10140         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10141         * src/SDCC.lex: new pragma NOIV
10142         * src/SDCCglobl.h: new pragma NOIV
10143         * src/SDCCmem.c: new pragma NOIV
10144
10145 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10146
10147         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10148
10149 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10150
10151         * src/SDCCmain.c: signal handling is switched off by --debug
10152         * doc/Makefile: small fix for install; use clean.mk again
10153         * doc/clean.mk: clean *.pdf and *.html too
10154
10155 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10156
10157         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10158         * device/lib/printfl.c: fix a ds390 bug by making it portable
10159         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10160         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10161         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10162         * debugger/mcs51/cmd.c: converted multi-line string literals
10163         * sim/ucsim/globals.cc: converted multi-line string literals
10164         * src/SDCCmain.c: introduced signal handler to remove temp files
10165         * doc/Makefile: small tweaks, implement clean
10166         * doc: removed generated files
10167
10168 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10169
10170         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10171         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10172         Address Record is not correctly generated for DS390."
10173
10174 2003-02-02  Borut Razem <borut.razem AT siol.net>
10175
10176         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10177         * as/mcs51/asm.h: fixed compilation with Borland C
10178         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10179         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10180         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10181         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10182         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10183         src/z80/Makefile.bcc: delete $(LIB) only if exist
10184         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10185
10186 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10187
10188         * device/include/malloc.h: introduced NULL
10189         * device/include/string.h: introduced NULL
10190         * device/include/stdlib.h: introduced NULL
10191         * device/lib/_memcpy.c: removed NULL
10192         * device/lib/_strcat.c: removed NULL
10193         * device/lib/_strchr.c: removed NULL
10194         * device/lib/_strcmp.c: removed NULL
10195         * device/lib/_strcpy.c: removed NULL
10196         * device/lib/_strcspn.c: removed NULL
10197         * device/lib/_strlen.c: removed NULL
10198         * device/lib/_strncat.c: removed NULL
10199         * device/lib/_strncmp.c: removed NULL
10200         * device/lib/_strncpy.c: removed NULL
10201         * device/lib/_strpbrk.c: removed NULL
10202         * device/lib/_strrchr.c: removed NULL
10203         * device/lib/_strspn.c: removed NULL
10204         * device/lib/_strstr.c: removed NULL
10205         * device/lib/_strtok.c: removed NULL
10206         * device/lib/malloc.c: removed NULL, include own header
10207
10208 2003-02-02    <johan AT balder>
10209
10210         * 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
10211         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10212         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10213         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10214         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10215         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10216
10217 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10218
10219         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10220         area 'DATA'"
10221
10222 2003-02-01    <johan AT balder>
10223
10224         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10225
10226 2003-01-31    <johan AT CP255758-A>
10227
10228         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10229
10230 2003-01-30    <johan AT balder>
10231
10232         * src/SDCCBBlock.c: automatic bug detection
10233         * src/SDCCicode.c: automatic bug detection
10234
10235 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10236
10237         * src/SDCCglobl.h:   now --xram-size 0 works
10238         * src/SDCCmain.c:    now --xram-size 0 works
10239
10240 2003-01-29    <johan AT balder>
10241
10242         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10243
10244 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10245
10246         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10247         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10248         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10249         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10250         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10251         * src/SDCCmain.c:    Added options --xram-size and --code-size
10252
10253 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10254
10255         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10256         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10257
10258 2003-01-27    <johan AT balder>
10259
10260         * src/SDCC.y: fixed bug #613764
10261
10262 2003-01-26    <johan AT balder>
10263
10264         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10265         * src/SDCCsymt.h: fixed bug #673374
10266         * src/SDCCglue.c: fixed bug #661910
10267         * src/SDCCast.c: fixed bug #458099 and 673374
10268
10269 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10270
10271         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10272         * as/mcs51/strcmpi.h: added
10273         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10274         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10275         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10276         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10277         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10278         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10279         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10280         * as/mcs51/Makefile.aslink: new module strcmpi
10281         * as/mcs51/Makefile.asx8051: new module strcmpi
10282         * as/mcs51/Makefil.bcc: new module strcmpi
10283         * as/mcs51/Makefile.in: new module strcmpi
10284         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10285
10286 2003-01-26    <johan AT balder>
10287
10288         * src/SDCCglue.c: reverted back to 1.124
10289         * src/SDCCast.c: reverted back to 1.156
10290         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10291
10292 2003-01-25    <johan AT balder>
10293
10294         * src/SDCCglue.c: A better fix for bug #661910
10295         * src/SDCCast.c: A better fix for bug #661910
10296         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10297
10298 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10299
10300         * src/Makefile.in: remove spawn.o
10301         * src/SDCCmain.c: remove spawn.h
10302         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10303         * src/spawn.c: removed
10304         * src/spawn.h: removed
10305         * support/regression/ports/ds390/spec.mk: link with -r
10306
10307 2003-01-24    <johan AT CP255758-A>
10308
10309         * src/ds390/gen.c (aopOp): fixed bug #667458
10310         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10311         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10312         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10313
10314 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10315
10316         * src/mcs51/peeph.def: better assembler identation by Frieder
10317         * src/mcs51/gen.c: better assembler identation by Frieder
10318
10319 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10320
10321         * as/z80/string.h: removed for gcc 3.2
10322         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10323         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10324
10325 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10326
10327         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10328         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10329         * support/regression/Makefile: separate temp files for ports
10330         * support/regression/generate-cases.py: separate temp files for ports
10331         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10332         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10333
10334 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10335
10336         * moved tinitalk to device/examples/ds390
10337
10338 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10339
10340         * as/mcs51/lkmem.c: rflag is for DS390
10341         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10342         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10343                          (linkEdit): move mem- and map-files the same way as ihx-files
10344         * src/z80/main.c (_setDefaultOptions): removed --generic
10345         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10346         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10347         * src/pic/glue.c (picglue): --c1mode works again
10348         * src/pic16/glue.c (pic16glue): --c1mode works again
10349         * src/asm.c (printCLine): fix #660034
10350
10351 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10352
10353         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10354         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10355         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10356         * as/mcs51/lkmem (summary): better fix for sp problem
10357         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10358         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10359         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10360                                               remove --stack-after-data
10361
10362 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10363
10364         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10365         * src/SDCCutil.c (join): ugly bug: missing '\0'
10366         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10367
10368 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10369
10370         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10371         * src/port.h: typo
10372         * src/pic/main.c (_asmCmd): gpasm supports -o
10373         * src/z80/main.c: more general macros
10374         * device/lib/Makefile.in: remove intermediate files
10375
10376 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10377
10378         * .version: Bumped version number to 2.3.3
10379         * src/SDCCBBlock.c: new option -o
10380         * src/SDCCglobl.h: new option -o
10381         * src/SDCCglue.c: new option -o
10382         * src/SDCCmain.c: new option -o
10383         * src/asm.c: new option -o
10384         * src/ds390/main.c: new option -o
10385         * src/pic/glue.c: new option -o
10386         * src/pic/pcode.c: new option -o
10387         * src/pic/ralloc.c: new option -o
10388         * src/pic16/glue.c: new option -o
10389         * src/pic16/pcode.c: new option -o
10390         * src/pic16/ralloc.c: new option -o
10391         * src/z80/main.c: new option -o
10392         * device/lib/Makefile.in: use -o
10393         * support/regression/ports/ds390/spec.mk: use -o
10394         * support/regression/ports/gbz80/spec.mk: use -o
10395         * support/regression/ports/mcs51/spec.mk: use -o
10396         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10397         * support/regression/ports/z80/spec.mk: use -o
10398         * support/regression/ports/ucz80/spec.mk: use -o
10399         * support/regression/ports/xa51/spec.mk: use -o
10400         * support/regression/fwk/lib/timeout.c: fix usage string
10401
10402 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10403         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10404
10405 2003-01-07    <johan AT balder>
10406
10407         * src/SDCCast.c (decorateType): fixed bug #600035
10408
10409 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10410         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10411         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10412         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10413         * src/pic/pcode.c: outcommented unused variable to remove warnings
10414         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10415
10416 2003-01-06    <karl AT turbobit.com>
10417         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10418    regression tests.
10419
10420 2003-01-06    <johan AT balder>
10421
10422         * src/SDCCicode.c: fixed array add
10423
10424 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10425         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10426         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10427
10428 2003-01-04    <johan AT balder>
10429
10430         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10431
10432 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10433         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10434
10435 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10436         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10437         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10438
10439 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10440         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10441
10442 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10443         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10444
10445 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10446         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10447
10448 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10449
10450     * in \sdcc\as\mcs51\ changed these files in order to create an
10451     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10452     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10453     following files to include the previous two files: aslink.dsp,
10454     Makefile.aslink, Makefile.bcc, and Makefile.in.
10455
10456     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10457     .adb instead of .cdb
10458
10459 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10460
10461         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10462         value from option --iram-size.
10463
10464 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10465
10466         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10467         dram[] array.
10468
10469 2002-09-18    <wiml AT hhhh.org>
10470
10471         * SDCClrange.h: exposed setFromRange() and setToRange()
10472         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10473           packRegsForAccUse() (bug 542397)
10474         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10475           multiple times and emitting the fetch operations more than once
10476           added aopGetUsesAcc() function to allow binary operators to
10477           fetch their operands in the correct order; made genMinus() emit
10478           compact code for X = LITERAL - Y
10479
10480 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10481         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10482         sprintf() in line 1267.
10483
10484 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10485         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10486         like ports.
10487
10488 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10489         Changes to aslink (All the changes are marked with 'JCF'):
10490
10491         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10492         summary().
10493
10494         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10495         area BSEG.  Also moves, if possible, the DATA area down into the internal
10496         ram so more space is available.
10497
10498         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10499         sflag.
10500
10501         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10502         not bytes.  Function summary() which creates a memory usage summary
10503         file with extension .mem.  Reports of overlaping stack and small stack
10504         size.  If the space for the stack is less than 16 bytes aslink trows a
10505         warning.
10506
10507         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10508         the 8051.  Option 'y' for memory summary output file.
10509
10510         Changes to sdcc (All the changes are marked with 'JCF'):
10511
10512         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10513
10514         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10515         overlaying area for it (uses RegBankUsed[4]).
10516
10517         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10518         bank zero as used by default.  By default aslink locates the stack
10519         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10520         the creation of the .mem file.  Delegates the allocation of data area
10521         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10522         the begining of the stack area to aslink.
10523
10524         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10525         glue() in SDCCglue.c creates an area for it.
10526
10527 2002-09-03  Borut Razem <borut.razem AT siol.net>
10528         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10529         sdcc/src/pic/glue.c:
10530         introduced atexit() handler for teporay files removal in case of
10531         errors, assertions, ...
10532
10533 2002-08-29  Borut Razem <borut.razem AT siol.net>
10534         * sdcc/support/cpp2/auto-host_vc_in.h:
10535         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10536         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10537         Maybe there is a similar problem with BORLANDC? It should be checked!
10538
10539         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10540         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10541         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10542         was not executed, and the compiler (cl) launched a warning:
10543         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10544
10545 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10546         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10547
10548 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10549         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10550
10551         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10552           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10553           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10554           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10555           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10556           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10557           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10558         - added Release configuration in VS projects
10559         - review of compiler an linker options
10560         - VC .exe files are generated in bin_vc directory, not to interfere
10561           with binaries generated from other projects (cygwin, mingw, bcc ...)
10562
10563         * sdcc/src/yacc.dsp: added
10564
10565         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10566         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10567         and insert the version number definitions from .version
10568
10569         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10570
10571         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10572         added - genarate auto-host.h using auto-host_vc_in.h as template
10573
10574         * sdcc/sdcc_vc.h,
10575         removed from CVS, generated automatically
10576
10577 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10578         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10579
10580 2002-08-11  Borut Razem <borut.razem AT siol.net>
10581         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10582
10583 2002-08-10  Borut Razem <borut.razem AT siol.net>
10584         * src/SDCCmain.c (main):
10585         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10586         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10587         The consequence was that some temporary files were not removed.
10588
10589         * src/SDCCglue.c:
10590         unification of code in functions tempfilename() and tempfile():
10591         function tempnam() is defined in Visual Studio 6.0 and .NET
10592
10593         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10594
10595         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10596           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10597         - removed compiler command line option /WX: Treats all warnings as errors
10598         - update a list of source files, included into the project
10599
10600         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10601           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10602         changed project type to Generic Project so that can be correcly converted to VS.NET project
10603
10604         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10605
10606         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10607
10608         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10609
10610         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10611         added return 0 statements after assert() to make compiler happy
10612
10613         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10614         added newline in the def file to keep MSC compiler satisfied
10615
10616         * sdcc/src/z80/gen.c:
10617         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10618           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10619         - solved MSC error in function aopDump()
10620
10621         * sdcc_vc.h: define PREFIX as "\\sdcc"
10622
10623 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10624         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10625
10626 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10627         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10628         - Rewrote the register banking algorithm.
10629         - Added pCode live-range analysis to registers (for now, only non-used and
10630         singly-used registers optimized away)
10631
10632         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10633
10634         * 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.
10635
10636 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10637         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10638
10639 2002-04-22  Michael Hope  <michaelh AT vroom>
10640
10641         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10642
10643         * configure.in (DD_COPT): Added include support required for gbdk.
10644
10645         * .version: Bumped version number just to increase it.
10646
10647         * src/SDCCmain.c: Added -nostdinc to the default options.
10648
10649 2002-04-15  Michael Hope  <michaelh AT vroom>
10650
10651         * device/lib/z80/printf.c (sprintf): Added.
10652
10653         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10654
10655         * src/z80/peeph.def: Added transpose redundent load rule.
10656
10657         * src/z80/main.c: Added force callee saves for jaune.
10658
10659         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10660
10661         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10662
10663 2002-03-28  Johan Knol  <johan AT balder>
10664
10665         * src/SDCCval.c: fixed bug #532436
10666
10667 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10668         * /src/port.h:
10669         Added "char *Processor" field to the port structure.
10670
10671         * /src/SDCCmain.c:
10672         Added -p option. Allows port dependent processor to be specified.
10673
10674         * all ports:
10675         Initialized the new field char *Processor field to NULL in all ports
10676
10677         * /src/pic/*:
10678         Compiler generated registers for interrupt context saving
10679         were not getting allocated.
10680
10681 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10682
10683         * /src/SDCCast.c:
10684         Fixed left shift. Will promote the left side of a left shift
10685         if a) left shifting more than size of operand or b) when assigned
10686         to something size > size of left side
10687
10688 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10689         * src/pic/*
10690         tons of changes. Register allocation has been
10691         rewritten. Added customization for the various PICs. Flow
10692         analysis is restructured. ...
10693
10694         * src/pic/device.h:
10695         Added
10696
10697         * src/pic/device.c:
10698         Added. device.c is a PIC port hack to accomodate variations
10699         in PIC devices.
10700
10701 2002-03-13  Michael Hope  <michaelh AT vroom>
10702
10703         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10704
10705 2002-03-04  johanknol  <johanknol AT manik>
10706
10707         * /src/SDCCval.c: fixed
10708
10709         const unsigned char arr[][2] = { { 0, 1 } };
10710         t18.c:1: error: Initializer element is not constant
10711
10712 2002-03-04  bela  <bela AT manik>
10713
10714         * /device/include/mcs51reg.h:
10715         ds89c420 register definition update
10716
10717 2002-03-03    <johan AT FRIJA>
10718
10719         * support/Util/SDCCerr.c: did something, but don't no why anymore
10720
10721         * support/regression/tests/bug-524691.c: made it a little less shy
10722
10723         * src/SDCCast.c (decorateType): fixed bug #524697
10724
10725         * src/SDCCast.c: made some lineno improvements
10726
10727         * src/SDCCval.c (getNelements): changed warning to error
10728
10729         * src/SDCCglue.c (printIvalArray): changed warning to error
10730
10731         * src/SDCCicode.c: fixed a warning for mingw
10732
10733         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10734
10735         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10736
10737 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10738
10739         * src/ds390/peeph.def:
10740         Added some more peephole rules
10741
10742         * src/ds390/gen.c: Various fixes & enhancements
10743
10744         * src/SDCClrange.c, src/SDCClrange.h:
10745         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10746
10747         * src/ds390/ralloc.c:
10748         various fixes & enhancements (ds390) specific
10749
10750         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10751         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10752         from rallocs.
10753
10754         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10755
10756 2002-03-02    <johan AT FRIJA>
10757
10758         * src/SDCCast.c (decorateType): fixed bug #524708
10759
10760         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10761
10762         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10763
10764 2002-03-01  Michael Hope  <michaelh AT vroom>
10765
10766         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10767
10768         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10769
10770 2002-03-01    <johan AT FRIJA>
10771
10772         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10773
10774         * src/SDCCast.c (decorateType): fixed bug #524209
10775
10776         * src/SDCCval.c (valNot): fixed bug #524195
10777
10778 2002-02-26    <johan AT balder>
10779
10780         * src/xa51/gen.c: fixed a warning
10781
10782         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10783
10784         * src/SDCCast.c (decorateType): fixed bug #522534
10785
10786 2002-02-23    <johan AT balder>
10787
10788         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10789
10790 2002-02-22    <johan AT balder>
10791
10792         * src/SDCCast.c: fixed bug #514865
10793
10794         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10795
10796 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10797
10798         * sdcc/src/SDCCloop.c:
10799         Previous fix was not good. basic blocks that have "break" or "return" are
10800         not really partof a loop , but live ranges used in these blocks should
10801         be live thru the entire loop, so set partOfLoop but don't add them to
10802         loop region
10803
10804 2002-02-21    <johan AT FRIJA>
10805
10806         * src/SDCCcse.c: fixed bug #514308
10807
10808 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10809
10810         * src/SDCCloop.c:
10811         Fixed BUG #519583. If a conditional block ended in a return/break
10812         statement inside a loop, it was not being considered part of the loop.
10813
10814         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10815
10816 2002-02-10  Karl Bongers <karl AT turbobit.com>
10817
10818         * debugger/*:
10819         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10820         with lots of comments and notes.
10821
10822         * device/examples/test2.c:
10823         Fix bug, "red" variable not being initialized(compiler complained).
10824
10825         * device/examples/Makefile, examples/test3.c:
10826         Add Makefile in device/examples folder, compiles test3.c
10827         for use as a multiple module SDCDB test case.
10828
10829         * sim/ucsim/cmd.src/cmdset.cc:
10830         Took out debug printfs in ucsim "next" command.
10831
10832         * sim/ucsim/xa.src:
10833         Karl and Johan start ucsim XA support.  Most dissassembly working,
10834         about 75% emulation done(plenty of work remaining).
10835
10836         * sim/ucsim/z80.src:
10837         Add Z80 support to ucsim, add test-ucz80 regression test,
10838         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10839         Notice z80 compiler fails on examples/test3.c/crc code.
10840
10841 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10842
10843         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10844         Added support for --parms-in-bank1
10845
10846         * src/ds390/peeph.def:
10847         added a few more peephole optimzations
10848
10849         * src/ds390/main.c:
10850         1) added __builtin_inp & __builtin_outp used to read in data of given length
10851            from a memory mapped port
10852         2) added __builtin_memcmp
10853         3) added __builtin_swapw swap bytes of a short
10854
10855         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10856         1) handle multiple send & receives from register bank1
10857         2) ralloc can now allocate DPTR1 to some liveRanges
10858
10859         * src/SDCCsymt.c, src/SDCCsymt.h:
10860         changes to handle multiple sends & receives
10861
10862         * src/SDCCptropt.h:
10863         added some pointer arithmetic optimization
10864
10865         * src/SDCCptropt.c:
10866         added some pointer arithmetic optimizations but not stable yet so not
10867         called from anywhere (will get this working shortly)
10868
10869         * src/SDCCopt.c: fixed for multiple sends & receives
10870
10871         * src/SDCCmain.c:
10872         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10873         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10874            set preprocessor defines (depending on options)
10875
10876         * src/SDCCicode.c, src/SDCCicode.h:
10877         changes made to handle multiple sends & receives
10878
10879         * src/SDCCglobl.h:
10880         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10881
10882         * src/SDCCcse.c, src/SDCCcse.h:
10883         added function findbackward def (to be used in upcoming optimization)
10884
10885         * src/SDCCcflow.c, src/SDCCcflow.h:
10886         added function returnAtEnd - to determine if a basic block terminates with
10887         a RETURN iCode
10888
10889         * src/SDCCast.c, src/SDCCast.h:
10890         added option parms-in-bank1
10891
10892         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10893         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10894         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10895         adjusted for --parms-in-bank1 option
10896
10897         * device/include/string.h:
10898         donot redefine "reentrant" keyword
10899
10900         * device/include/ds80c390.h: Added some more SFRs
10901
10902 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10903
10904         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10905
10906 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10907
10908         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10909
10910 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
10911
10912         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
10913
10914 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
10915
10916         * Added --xram-movc option
10917
10918 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
10919
10920         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
10921
10922 2002-01-11  Johan Knol
10923
10924         * Added math lib of Jesus Calvino-Fraga
10925
10926 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
10927
10928         * src/SDCCmain.c (processFile): fix processing of ../../src.c
10929         * support/regression/Makefile: new target test-mcs51-stack-auto
10930         * support/regression/ports/mcs51-stack-auto/spec.mk: added
10931
10932 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10933
10934         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
10935
10936 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
10937
10938         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
10939
10940 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
10941
10942         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
10943
10944         * src/SDCCglue.h: add definition for printIvalChar()
10945
10946 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10947
10948         * src/SDCCast.c: fix #498138 by Johan
10949
10950         * src/SDCCglue.c: fix #498138 by Johan
10951
10952 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
10953
10954         * support/regression/Makefile: fix clean
10955
10956         * support/regression/ports/ds390/support.c: fix transmission of last character
10957
10958 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
10959
10960         * /sdcc/src/ds390/gen.c:
10961         a) improved computing address of stack variable
10962         b) took out some #if 0 code
10963         c) improved parmBytes adjustment
10964         d) improved genPlusIncr & genMinusIncr
10965         e) genCmp could generate bad code (when left assigned to DPTR)
10966         f) Fixed bug in hasInc
10967
10968         * /sdcc/src/ds390/ralloc.c:
10969         a) packRegsForSupport could mess up live information (Fixed)
10970         b) packRegsDPTRuse could be incorrect for left & right shift
10971
10972         * /sdcc/src/mcs51/ralloc.c:
10973         packRegsForSupport could mess up the live information (Fixed)
10974
10975         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
10976
10977         * /sdcc/src/SDCCast.c:
10978         can reverse a loop even if function call is present as long
10979         as the loop control variable is local & is not passed as parameter
10980
10981 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
10982
10983         * /sdcc/ChangeLog: *** empty log message ***
10984
10985         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
10986         More builtin function additions for TININative
10987
10988         * /sdcc/src/ds390/ralloc.c:
10989         Had broken the regression testsuite
10990
10991         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
10992
10993         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
10994         Added funcattr hasStackParms will be set for reentrant functions when there
10995         are paramteres on the stack, this helps in minimizing frame pointer generation
10996         typeFromStr can handle function pointers now
10997
10998         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
10999         *** empty log message ***
11000
11001 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11002
11003         * /src/ds390/gen.c, /src/ds390/main.c:
11004         More builtin function additions for TININative
11005
11006         * /src/ds390/ralloc.c:
11007         Had broken the regression testsuite
11008
11009         * /src/SDCCast.c: Fixed a bug in dumptree
11010
11011         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11012         Added funcattr hasStackParms will be set for reentrant functions when there
11013         are paramteres on the stack, this helps in minimizing frame pointer generation
11014         typeFromStr can handle function pointers now
11015
11016         * /doc/builtins.txt, /doc/TININative.txt:
11017         *** empty log message ***
11018
11019
11020 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11021
11022         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11023         ALPHA version for -mTININative
11024
11025         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11026         updated to reflect changes in the port structure
11027
11028         * /src/port.h:
11029         added function do_assemble (similar to do_link) if non-null this function
11030         will be called to do assembly (-mTININative) requires a multi command
11031         assembly
11032         added function genAssemblerEnd will be called to generate assembler Epilogue
11033
11034         * /src/SDCCsymt.c:
11035         added _JavaNative to debug info printing
11036
11037         * /src/SDCCmain.c: added option --tini-libid
11038         added port->do_assemble function (-mTININative) has a multi command assemble
11039
11040         * /src/SDCCglue.c: Disabled "constExpr" check
11041         added port->genAssemblerEnd function
11042
11043         * /src/SDCCglobl.h: Added option --tini-libid value
11044
11045         * /src/SDCCast.h:
11046         tookout optimizeCompare from the header (has no external references)
11047
11048         * /src/SDCCast.c: made one more function "static"
11049
11050 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11051
11052         * src/z80/mappings.i: Added z80asm support.
11053
11054         * src/z80/main.c: Added z80asm support on --asm=z80asm
11055
11056         * src/z80/gen.c: Fixed asm portability issues.
11057
11058         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11059
11060         * src/SDCCglue.c (printExterns): Added global/extern split.
11061
11062 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11063
11064         * support/regression/Makefile: added test for mcs51 model large
11065
11066         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11067
11068         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11069
11070 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11071
11072         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11073
11074 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11075
11076         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11077
11078         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11079
11080 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11081
11082         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11083
11084         * support/regression/tests/simplefloat.c: Port to mcs51.
11085
11086 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11087         * support/regression/tests/bug-485362.c: Added.
11088
11089         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11090
11091         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11092
11093         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11094
11095         * src/z80/gen.c (aopDump): Added a dump function.
11096
11097 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11098         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11099
11100         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11101
11102         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11103
11104         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11105
11106         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11107
11108         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11109
11110         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11111
11112         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11113
11114         * support/regression/ports/ds390/support.c: Use tinibios.
11115
11116         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11117
11118 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11119
11120         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11121         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11122
11123         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11124
11125         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11126
11127 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11128
11129         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11130
11131         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11132         (packRegsForIYUse): Created and optimised.
11133
11134 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11135
11136         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11137 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11138
11139         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11140
11141         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11142
11143         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11144
11145 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11146
11147         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11148
11149         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11150
11151 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11152
11153         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11154
11155         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11156
11157         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11158
11159 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11160
11161         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11162         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11163         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11164
11165         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11166
11167         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11168         (genNotFloat): Added.
11169         (genUminusFloat): Added.
11170
11171         * device/lib/z80/Makefile: Added floating pt stubs.
11172
11173         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11174
11175         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11176
11177         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11178
11179 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11180
11181         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11182
11183         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11184
11185         * sdcc/support/regression/Makefile: Add port ds390.
11186
11187         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11188
11189         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11190
11191         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11192
11193         * sdcc/support/regression/ports/ds390/support.c: Added.
11194
11195         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11196
11197         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11198
11199         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11200
11201 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11202
11203         * device/include/malloc.h: Added z80 and gbz80 support.
11204
11205         * device/lib/gbz80/heap.s: Added.
11206
11207         * device/lib/z80/heap.s: Added.
11208
11209         * device/lib/malloc.c: Added z80 and gbz80 support.
11210
11211         * support/regression/tests/malloc.c (testMalloc): Added.
11212
11213         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11214
11215         * support/regression/tests/bug-478094.c: Added.
11216
11217         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11218
11219 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11220
11221         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11222
11223         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11224
11225         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11226
11227         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11228
11229         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11230
11231 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11232
11233         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11234
11235 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11236
11237         * support/regression/tests/bug-477927.c: Added.
11238
11239         * src/z80/peeph.def: Added minor rules.
11240
11241         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11242
11243         * src/z80/peeph.def: Added jump optimisation modification.
11244
11245 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11246
11247         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11248
11249 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11250
11251         * support/regression/tests/funptrs.c: Added.
11252
11253 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11254
11255         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11256
11257 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11258
11259         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11260
11261         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11262
11263         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11264         (movLeft2ResultLong): Created.
11265
11266         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11267         (joinPushes): Added.  Joins two char pushes into a word push.
11268
11269 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11270
11271         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11272
11273         * support/makebin/Makefile (install): Added creation of dest dir.
11274
11275 2001-10-24 Karl Bongers <karl AT turbobit.com>
11276
11277         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11278
11279 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11280
11281         * src/z80/ralloc.c: Turned off faulty pack for one use.
11282
11283         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11284
11285         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11286
11287 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11288
11289         * support/regression/Makefile: Improved clean
11290
11291         * support/regression/ports/gbz80/spec.mk: Added clean
11292
11293         * support/regression/ports/host/spec.mk: Added clean
11294
11295         * support/regression/ports/z80/spec.mk: Added clean
11296
11297         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11298
11299         * support/regression/ports/mcs51/timeout.c: little improvements
11300
11301 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11302
11303         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11304
11305         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11306
11307         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11308
11309 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11310
11311         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11312
11313         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11314
11315 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11316         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11317
11318         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11319
11320         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11321
11322         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11323
11324         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11325
11326         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11327
11328         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11329
11330         * support/regression/tests/longor.c: Added.
11331
11332 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11333
11334         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11335
11336         * as/mcs51/aslink.h: define PATH_MAX
11337
11338         * as/mcs51/asm.h: define PATH_MAX
11339
11340         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11341
11342         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11343
11344         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11345
11346         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11347
11348         * src/SDCCglobl.h: define PATH_MAX
11349
11350         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11351
11352         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11353
11354 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11355
11356         * src/z80/gen.c (gencjneshort): Fixed
11357
11358         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11359
11360 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11361
11362         * support/regression/tests/bug-469671.c: Added.
11363
11364         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11365
11366 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11367
11368         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11369
11370         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11371
11372 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11373
11374         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11375
11376         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11377
11378         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11379
11380         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11381
11382         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11383
11384         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11385
11386         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11387
11388 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11389
11390         * 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.
11391
11392         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11393
11394         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11395
11396 2001-10-07    <johan AT FRIJA>
11397
11398         * device/lib/gets.c (gets): fixed the return value.
11399
11400 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11401         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11402
11403         * 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.
11404
11405         * 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.
11406
11407         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11408
11409         * src/pic/gen.c: Removed Safe_strdup.
11410
11411         * configure.in: Added option to enable libgc support.
11412
11413         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11414         (bitVectUnion): Optimised.
11415         (bitVectIntersect): Optimised.
11416         (bitVectBitsInCommon): Optimised.
11417         (bitVectCplAnd): Optimised.
11418
11419         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11420
11421 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11422
11423         * src/SDCCmain.c: distinguish between assembler debug and plain options
11424
11425         * src/avr/main.c:   remove standard assembler options
11426
11427         * src/ds390/main.c: remove standard assembler options
11428
11429         * src/mcs51/main.c: remove standard assembler options
11430
11431         * src/port.h: removed "PENDING" comment
11432
11433 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11434
11435         * src/device/lib/_mulint.c  : new, with assember functions
11436
11437         * src/device/lib/_mullong.c : new, with assember functions
11438
11439         * src/device/lib/_divuint.c : with assember functions
11440
11441         * src/device/lib/_divsint.c : with assember functions
11442
11443         * src/device/lib/_divulong.c: with assember functions
11444
11445         * src/device/lib/_divslong.c: with assember functions
11446
11447         * src/device/lib/_moduint.c : with assember functions
11448
11449         * src/device/lib/_modsint.c : with assember functions
11450
11451         * src/device/lib/_modulong.c: with assember functions
11452
11453         * src/device/lib/_modslong.c: with assember functions
11454
11455         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11456
11457         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11458
11459         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11460                                       replaced _mululong.c and _mulslong.c by _mullong.c
11461
11462 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11463
11464         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11465
11466 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11467
11468         * src/SDCCglue.c: test, if win32api is available for MINGW
11469
11470 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11471
11472         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11473         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11474         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11475         * support/regression/ports/host/spec.mk: removed GENERIC
11476         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11477         * support/regression/ports/z80/spec.mk: removed GENERIC
11478
11479 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11480
11481         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11482
11483         * support/regression/tests/bug-467035.c: Created.
11484
11485 2001-10-01    <johan AT FRIJA>
11486
11487         * src/SDCC.y: fixed bug #466586 part 1
11488
11489 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11490
11491         * SDCCicode.c: z80 has no generic pointers
11492         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11493
11494 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11495
11496         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11497
11498 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11499
11500         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11501
11502         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11503
11504 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11505
11506         * configure.in: Fixed up so that ucsim is only configured once.
11507
11508         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11509
11510         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11511         (getPathDifference): As above.
11512
11513         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11514
11515         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11516
11517 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11518         * .version: Updated to 2.3.1
11519
11520         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11521         Added copyright header.
11522
11523         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11524         (assemble): Added support for macro based assembler commands.
11525         (linkEdit): Added support for macro based linker commands.
11526         (preProcess): Changed the pre-processor to use macros.
11527         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11528         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11529
11530         * device/lib/z80/crt0.s: Added module name for debugging.
11531
11532 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11533
11534         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11535
11536         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11537
11538         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11539
11540         * src/Makefile.in: Added SDCCmacro and SDCCutil
11541
11542 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11543
11544         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11545
11546 2001-09-16    <johan AT FRIJA>
11547
11548         * 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.
11549
11550 2001-09-15    <johan AT FRIJA>
11551
11552         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11553         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11554
11555 2001-09-11    <johan AT FRIJA>
11556
11557         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11558
11559 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11560
11561         * support/regression/tests/bug-460444.c: Added test case.
11562
11563         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11564         (genCast): Added justification for all of the asserts.
11565
11566 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11567
11568         * support/regression/support.c: _xdata replaced by xdata
11569
11570         * support/regression/spec.mk: removed _generic
11571
11572 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11573
11574         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11575
11576         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11577         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11578
11579         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11580
11581         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11582
11583         * support/regression/tests/bug-460010.c: Added test case.
11584
11585         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11586
11587 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11588
11589         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11590
11591         * support/regression/testfwk.c: removed workaround for bug #436344
11592
11593         * support/regression/tests/bp.c: use less memory with mcs51
11594
11595         * support/regression/tests/bug-441448.c: use less memory
11596
11597         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11598
11599         * support/regression/collate-results.py: typo
11600
11601 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11602
11603         * support/regression/tests/fetchoverlap.c: Added new test case.
11604
11605         * support/regression/tests/bp.c: Added new test case.
11606
11607         * support/regression/tests/bug-448984.c: Added new test case.
11608
11609         * support/regression/tests/pow2shifts.c: Added new test case.
11610
11611         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11612         (genlshTwo): Fixed right shift for count > 8.
11613
11614         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11615
11616 2001-09-08    <johan AT FRIJA>
11617
11618         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11619
11620 2001-09-07    <johan AT FRIJA>
11621
11622         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11623
11624         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11625
11626 2001-09-06    <johan AT FRIJA>
11627
11628         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11629         * bernhard noted me at this: "() equals to (void)" (1.38)
11630
11631 2001-09-05    <johan AT FRIJA>
11632
11633         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11634
11635 2001-09-04    <johan AT FRIJA>
11636
11637         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11638
11639
11640 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11641
11642         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11643
11644 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11645
11646         * link/z80/aslink.h: Fixed path for PATH_MAX
11647
11648 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11649
11650         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11651
11652         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11653
11654         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11655
11656         * 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.
11657
11658 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11659
11660         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11661         (genCmp): Fixed up genCmp for the GB with longs.
11662
11663         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11664
11665         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11666
11667         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11668
11669         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11670
11671 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11672
11673         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11674
11675 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11676
11677         * 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.
11678
11679         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11680
11681 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11682
11683         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11684
11685         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11686
11687 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11688
11689   * sim/ucsim/configure:    little improvement of Cygwin-detection
11690   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11691   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11692   * support/regression/tests/bug-221100.c: small changes for mcs51
11693   * support/regression/tests/bug-221168.c: small changes for mcs51
11694   * support/regression/tests/bug-227710.c: small changes for mcs51
11695   * support/regression/tests/staticinit.c: small changes for mcs51
11696   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11697   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11698   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11699
11700 $Revision$