* src/mcs51/gen.c (genCmp): optimization for RFE 1162453
[fw/sdcc] / ChangeLog
1 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
4         * src/SDCCglue.c (initPointer), fixed bug 1496419
5         * support/regression/tests/bug1496419.c: new, added
6
7 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
8
9         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
10         IP0H to IPH0.
11
12 2006-06-19 Raphael Neider <rneider AT web.de>
13
14         * src/pic/glue.h,src/pic16/glue.h: added prototypes
15         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
16           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
17           (pic14printExterns,pic14printPublics,pic16printPublics,
18           pic16_printExterns): use new functions to emit symbols
19           (picglue,pic16glue): emit publics before emitting externs
20         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
21           locally defined functions to avoid bug #1443651
22         * support/regression/tests/bug-716242.c: removed pic16 workaround
23         * support/regression/ports/pic16/spec.mk: ignore errors during build
24
25 2006-06-19 Raphael Neider <rneider AT web.de>
26
27         * src/pic/glue.h: added pic14aopLiteral prototype
28         * src/pic/glue.c (pic14aopLiteral): return unsigned int
29         * src/pic/gen.c: removed stdint.h dependency
30           (aopGet): use Safe_strdup()
31           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
32           (genDataPointerSet): use pic14aopLiteral()
33         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
34           for pic16; thanks to Bernhard and Maarten
35
36 2006-06-18 Borut Razem <borut.razem AT siol.net>
37
38         * support/regression/tests/structflexarray.c: flexible array members
39           not supported by gcc < 3
40         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
41           GUI tool by default
42         * src/pic/gen.c: don't include [p]strdin.h on solaris
43         * support/Util/pstdint.h: addad svn attributes
44         * support/regression/tests/constantRange.c,
45           support/regression/tests/rotate.c: include inttypes.h instead
46           stdint.h on solaris, addad svn attributes
47
48 2006-06-18 Raphael Neider <rneider AT web.de>
49
50         * src/SDCCsymt.c (initCSupport): change return type of divschar to
51           int for PIC16
52         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
53           (pic16_genMinusBits): simplified sign-extension
54           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
55             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
56             adjusted to correctly handle mixed-signed operands, disabled
57             now unused multiplciation routines
58         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
59           (assignResultValue): added argument denoting the size of the result
60             as returned by the function (fixes upcasts in assigning from
61             function calls: char foo(); int i = foo();)
62           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
63             function result to assignResultValue
64           (genMult): disabled inlined multiplication code
65           (genDiv): augmented to also handle the modulus operator, fixed to
66             handle mixed-signed operands correctly
67           (genMod): simply call genDiv, disabled unused code
68           (genAssign): fixed missing (sign-)extension on result
69         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
70             valid char operands, allow signed operands for native code, added
71             division and modulo operator handling
72         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
73
74         As a consequence, onebyte.c (if split into two files) and muldiv.c
75         pass regression tests.
76
77 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
78
79         * doc/Makefile.in: two runs of makeindex seem needed to get
80         correct page references in the index of sdccman.pdf
81         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
82
83 2006-06-17 Borut Razem <borut.razem AT siol.net>
84
85         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
86
87 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
88
89         * doc/sdccman.lyx: updated, added (porting source code, debugging),
90         mentioned ec2drv and paulmon
91
92 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
93
94         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
95           consecutive abs areas
96           (find_empty_space, allocate_space): added map to handle codemap or
97            xdatamap,
98           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
99            absolute idata and xdata
100         * as/mcs51/lkmem.c (summary2): updated legend
101
102 2006-06-16 Raphael Neider <rneider AT web.de>
103
104         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
105
106 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
107
108         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
109           1208515
110         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
111
112 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
113
114         * src/port.h (struct PORT): added field gp_tags, to hold the tag
115         value of generic pointers,
116         * src/avr/main.c,
117           src/ds390/main.c,
118           src/hc08/main.c,
119           src/izt/i186.c,
120           src/izt/tlcs900h.c,
121           src/mcs51/main.c,
122           src/pic/main.c,
123           src/pic16/main.c,
124           src/xa51/main.c,
125           src/z80/main.c: PORT structure, added elements for gp_tags field,
126         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
127         fields in the PORT structure of each port,
128         * src/SDCCast.c (decorateType): allow processing of generic pointers
129         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
130         S_FIXED symbols
131
132 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
133
134         * link/z80/lkgb.c,
135         * link/z80/lkgg.c,
136         * src/pic16/gen.c,
137         * src/pic16/main.c,
138         * src/pic16/pcode.c,
139         * src/pic/main.c,
140         * src/pic/pcoderegs.c,
141         * src/SDCCicode.c,
142         * src/SDCCmain.c,
143         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
144           bug 1504689 on minGW
145
146 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
147
148         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
149
150 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
151
152         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
153
154 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
155
156         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
157           for optimization
158
159 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
160
161         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
162         to a char variable. Fixed bug #1504211
163         * device/include/pic16/adc.h,
164         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
165         and fixed bug #1364390
166
167 2006-06-10 Borut Razem <borut.razem AT siol.net>
168
169         * CVSROOT: removed the CVS left-over
170
171 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
172
173         * as/hc08/asmain.c (asexit),
174         * as/hc08/lkmain.c (lkexit),
175         * as/mcs51/asmain.c (asexit),
176         * as/mcs51/lkmain.c (lkexit),
177         * src/SDCCglue.c (DEFSETFUNC),
178         * src/SDCCmain.c (linkEdit, assemble),
179         * support/librarian/sdcclib.c (AddRel),
180           replaced unlink() by standard C remove()
181         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
182         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
183           gatherImplicitVariables): new, added to fix bug 608752,
184           (createFunction): added gatherImplicitVariables()
185         * src/SDCCast.h: added createRMW prototype
186         * src/SDCCsymt.h (struct symbol): added infertype
187         * support/regression/tests/bug608752.c: new, added
188
189 2006-06-10 Raphael Neider <rneider AT web.de>
190
191         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
192           multibyte dummy reads (fixes #1503234)
193
194 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
195
196         * device/include/mcs51/compiler.h: new, added header file to enable
197           creating common sfr definition header files for different compilers
198
199 2006-06-05 Raphael Neider <rneider AT web.de>
200
201         * src/pic16/{pcode.h,genarith.c}:
202           introduced pCodeOp combining any two pCodeOps (previously only
203           two register operands could be combined), removed pcop2 from
204           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
205         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
206         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
207           rewritten to use new PO_TWO_OPS
208         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
209         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
210           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
211           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
212           (pic16_get_op): embraced return arg to allow #define return(x),
213             added new case for combined opcodes
214           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
215           (pic16_pCode2str,pic16_getRegFrompCodeOp,
216            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
217
218 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
219
220         * src/SDCCval.c (checkConstantRange): added
221         * src/SDCCval.h: added checkConstantRange
222         * support/Util/SDCCerr.c,
223         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
224         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
225         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
226         * src/SDCCast.c (decorateType): added checkConstantRange,
227         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
228         can be emitted with the correct always true/false warning,
229         added optimization for double '!';
230         result of decorateType() must be assigned back to the tree, because
231         decorateType() can change the tree
232         * src/SDCCicode.c (geniCodeLogic),
233         (geniCodeAssign): replaced new checkConstantRange, added warnings,
234         (checkConstantRange): removed, it was only a fragment which never
235         emitted a warning
236         * src/SDCCsymt.c (computeType): fixed promotion for
237         "-1 < (unsigned bit) b"
238         * src/pic/ralloc.c (packRegsForAssign),
239         * src/pic16/ralloc.c (packRegsForAssign),
240         * src/hc08/ralloc.c (packRegsForAssign),
241         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
242         from mcs51
243         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
244         * support/regression/tests/constantRange.c: added
245         * support/valdiag/tests/constantRange.c: added
246         * support/valdiag/valdiag.py: added -DPORT_HOST=1
247
248 2006-06-02 Borut Razem <borut.razem AT siol.net>
249
250         * support/regression/ports/pic16/support.c: increase stack size
251           to 255 bytes
252         * support/regression/Makefile.in: sort tests by name so that the
253           resutlts can be compared on different machines / platforms
254
255 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
256
257         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
258         * src/ds390/gen.c (emitLabel): new, added,
259           (genDjnz): fixed stack overflow bug,
260           (throughout): cosmetic changes to sync with mcs51/gen.c,
261           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
262         * src/mcs51/gen.c (genEndFunction): small optimization,
263           (throughout): cosmetic changes to sync with ds390/gen.c
264
265 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
266
267         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
268           (_print_format): fixed printing pointers
269         * src/mcs51/gen.c (emitLabel, movb): new, added,
270           (genAssign): small optimization,
271           (genDjnz): fixed stack overflow bug,
272           (throughout): replaced sprintf with SNPRINTF,
273           replaced mcs51_regWithIdx with REG_WITH_INDEX,
274           replaced emitcode("mov", "b,...") with MOVB(...),
275           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
276           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
277         * src/mcs51/peeph.def: added rules 140 and 264
278         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
279           so they may get optimized into registers
280
281 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
282
283         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
284           immediately when encountered,
285           (printUsage): always use stderr even on windows
286
287 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
288
289         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
290         (processParms): fixed bug #1247551
291         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
292         parseCmdLine, main): print '--version' to stdout,
293         print 'help' to stdout if --help is given,
294         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
295         arguments are given; fixed --help
296
297 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
298
299         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
300         * support/regression/tests/bug-1493710.c: added
301
302 2006-05-27 Borut Razem <borut.razem AT siol.net>
303
304         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
305           static instead auto
306         * support/regression/ports/pic16/support.c: increase stack size
307           from default 64 bytes to 128 bytes
308         * support/regression/tests/staticinit.c,
309           support/regression/tests/float.c: regression tests fully enabled
310           for pic16 port by putting the initialized data arrays into the code
311           section
312         * support/regression/ports/pic16/spec.mk: don't link default libraries.
313           This was changed by mistake in the previous version.
314
315 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
316
317         * src/pic16/gen.c (genFunction, genEndFunction): some
318         beautifications, fixed bug with falsely restoring FSR2 in large
319         stack model, thanks to Beau E. Cox for reporting the bug
320
321 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
322
323         * debugger/mcs51/break.c,
324         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
325           use %p to print pointers, made address variables unsigned
326         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
327         * debugger/mcs51/symtab.c (parseSymbol): must return something
328         * src/mcs51/gen.c (aopForSym): small optimization,
329            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
330           (freeAsmop): added missing break,
331           (aopPut): removed parameter bvolatile, determine it inside the function,
332           (saveRegisters, unsaveRegisters): small optimization,
333           (genIpush): removed pointless check,
334           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
335           replaced sprintf with SNPRINTF,
336           replaced strcpy with strncpyz,
337           updated aopPut calls,
338           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
339         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
340
341 2006-05-24 Borut Razem <borut.razem AT siol.net>
342
343         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
344           modification of test for the pic16 port, put the array to the code
345           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
346
347 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
348
349         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
350         * support/Util/pstdint.h: added
351
352 2006-05-22 Borut Razem <borut.razem AT siol.net>
353
354         * src/regression/Makefile: removed bool2.c test, added -q linker option
355         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
356           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
357           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
358           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
359           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
360           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
361           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
362           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
363           define SUPPORT_BIT_TYPES 0, removed unused bit variables
364
365 2006-05-22 Raphael Neider <rneider AT web.de>
366
367         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
368           bug #1492360 (problematic due to generic pointers, see code)
369
370 2006-05-22 Borut Razem <borut.razem AT siol.net>
371
372         * support/regression/ports/pic16/specs.mk: removed stack size linker
373           directive
374         * support/regression/tests/array.c,
375           support/regression/tests/bitopcse.c,
376           support/regression/tests/bug-908454.c,
377           support/regression/tests/malloc.c: modified for pic16 regression test
378         * support/regression/tests/bitfields.c:
379           pic16 - excluded bitfileds of size > 8
380         * support/regression/tests/bp.c: pic16 - reduced data size
381         * support/regression/tests/bug-221100.c: pic16 - reduced data size
382         * support/regression/tests/bug-460010.c:
383           pic16 - used the absolute address the fits in memory
384         * support/regression/tests/bug-716242.c:
385           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
386         * support/regression/tests/float.c:
387           pic16 - excluded - data size too big
388         * support/regression/tests/onebyte.c:
389           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
390         * support/regression/tests/shifts.c:
391           pic16 - function names probably have to differ in first X characters
392           (gpasm limitation?)
393         * support/regression/tests/staticinit.c:
394           pic16 - excluded some tests due error: no target memory available for
395           section ".idata"
396
397 2006-05-22 Borut Razem <borut.razem AT siol.net>
398
399         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
400           second try. Thanks Stas Sergeev once more.
401
402 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
403
404         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
405           (genLeftShift, genRightShift): fixed bug 1491627
406         * src/hc08/peeph.def (rules 7, 8.x): added
407         * support/regression/tests/shifts.c (ShiftLeftByParam,
408           ShiftRightByParam, testShiftByParam): added to test variable shifting
409
410 2006-05-20 Raphael Neider <rneider AT web.de>
411
412         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
413         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
414           (allocReg): add only new registers to dynAllocRegs,
415           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
416             #1489055, #1445850, and probably #1483693
417
418 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
419
420         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
421         bug in for-loop that didn't emit the last of CONFIG and ID registers
422
423 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
424
425         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
426           with offset
427         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
428           1489016, 1434401 and 1490124
429         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
430           1489016, 1434401 and 1490124
431
432 2006-05-17 Borut Razem <borut.razem AT siol.net>
433
434         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
435           thanks Stas Sergeev
436
437 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
438
439         * device/include/mcs51/P89c51RD2.h,
440         * device/include/mcs51/P89LPC901.h,
441         * device/include/mcs51/P89LPC922.h,
442         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
443
444 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
445
446         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
447         to fix missing stack pragma in compiled binary object file,
448
449 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
450
451         * support/packihx/configure.in,
452         * support/packihx/configure: removed warning, autoconf >= 2.5x can
453         determine sizeof basic types even while cross compiling
454
455 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
456
457         * src/avr/gen.c (aopop),
458         * src/ds390/gen.c (aopOp),
459         * src/hc08/gen.c (aopOp),
460         * src/mcs51/gen.c (aopop),
461         * src/pic16/gen.c (pic16_aopOp),
462         * src/pic/gen.c (aopOp),
463         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
464         if size of operand is smaller than spill location
465
466 2006-05-12 Borut Razem <borut.razem AT siol.net>
467
468         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
469           have to have CR/LF line endings even if they are checked out on *nix
470           or on WIN32 in cygwin binmode
471
472 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
473
474         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
475         * device/include/ds80c390.h: added sfr16 definitions
476         * src/ds390/gen.c,
477         * src/ds390/gen.h,
478         * src/ds390/main.c,
479         * src/ds390/ralloc.c,
480         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
481           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
482           bit returning functions
483         * support/regression/tests/sfr16.c: enabled test on ds390
484
485 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
486
487         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
488         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
489
490 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
491
492         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
493         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
494           (cl_address_space constructor): removed expensive initialization,
495           (cl_address_space::get_cell): extended for late initialization,
496           (cl_address_space::*): use late initialization,
497           (cl_address_decoder::activate): removed expensive initialization,
498           This reduced regression test running time by 25%
499
500 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
501
502         * packihx/,
503         * configure.in,
504         * configure,
505         * sdcc.dsw,
506         * Makefile.bcc,
507         * Makefile.in,
508         * support/packihx/Makefile.in,
509         * support/packihx/clean.mk,
510         * support/packihx/Makefile.bcc,
511         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
512
513 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
514
515         * src/SDCCval.c (valNot): fix for regression test failure
516           of not.c on big endian hosts
517
518 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
519
520         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
521
522 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
523
524         * device/lib/mcs51/Makefile.in: changed string comparison operator
525           to = for POSIX compliance; == is bash extension
526
527 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
528
529         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
530           kosmonaut_pirx
531
532 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
533
534         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
535         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
536         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
537         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
538         bug report #1478657,
539
540 2006-05-05 Borut Razem <borut.razem AT siol.net>
541
542         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
543           making the html
544
545 2006-05-02 Borut Razem <borut.razem AT siol.net>
546
547         * doc/Makefile.in: removed *.ind dependency since there is no rule to
548           create *.ind, which made make to fail if invoked with -j 2
549
550 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
551
552         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
553           Hubert Sack for patch 1479782
554
555 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
556
557         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
558
559 2006-05-01 Raphael Neider <rneider AT web.de>
560
561         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
562           (create_pic): store only prefix-free device name,
563           (init_pic): check for device names with "16" prefix,
564           (list_valid_pics),
565         * src/pic/device.h (struct PIC_device),
566         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
567             stored device name,
568         * device/include/pic/pic12f{635,675,629,683}.h,
569         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
570         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
571         * device/include/pic/pic16f505.h,
572         * device/lib/pic/libdev/pic16f505.c: removed
573         * device/include/pic/pic14devices.txt: added support for pic12f
574             devices, removed unsupported non 16-bit devices
575             [above changes provided by patch from Zik Saleeba]
576         * src/pic/*, src/pic16/*, device/include/pic16/*,
577           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
578
579 2006-05-01 Borut Razem <borut.razem AT siol.net>
580
581         * configure.in, configure, doc/Makefile.in:
582           sync with nightly build makefile - latex, dvipdf and dvips
583           not needed any more
584
585 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
586
587         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
588         in the library source
589
590 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
591
592         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
593
594 2006-04-28 Raphael Neider <rneider AT web.de>
595
596         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
597         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
598           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
599         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
600
601 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
602
603         * device/lib/pic/libdev/Makefile.in,
604         * device/lib/hc08/Makefile.in,
605         * device/lib/gbz80/Makefile.in,
606         * device/lib/z80/Makefile.in,
607         * device/lib/ds390/Makefile.in,
608         * device/lib/ds400/Makefile.in: added srcdir to include search path,
609         thanks to Borut for the bug report
610         * configure.in,
611         * configure: always create doc/Makefile independent from --enable-doc
612         * Makefile.in: always install from directory doc independent from
613         --enable-doc
614         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
615         removed
616         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
617         * doc/Makefile.in: install *.txt if present
618         * device/include/Makefile.in (install): added installation of pic/*.inc
619         and pic/*.txt files again, they were erroneously removed
620
621 2006-04-28 Raphael Neider <rneider AT web.de>
622
623         * src/pic/{gen.c,main.h,pcode.c},
624         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
625             concerning signedness with casts
626
627 2006-04-28 Raphael Neider <rneider AT web.de>
628
629         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
630             definition of an interrupt handler,
631         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
632             interrupt handler stuff from picglue() to separate routine,
633           (picglue): enabled definition of intr handlers in files w/o main()
634
635 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
636
637         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
638           compilation with MSVC 2005 Express Edition (VC8)
639
640 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
641
642         * device/lib/Makefile: fixed build of gbz80 lib
643
644 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
645
646         * support/regression/tests/bug-460010.c,
647         * support/regression/tests/bug-524691.c,
648         * support/regression/tests/bug-716242.c: removed conditional defines
649           that are already in testfwk.h
650
651 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
652
653         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
654           (AccAXRsh1): added, shift right by 1,
655           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
656            AccAXLrl1
657         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
658
659 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
660
661         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
662         remove cast to same type
663         * src/SDCCast.c (decorateType): fix for RFE 1475742,
664         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
665         * as/z80/Makefile,
666         * link/z80/Makefile: removed, they have moved to
667         Makefile.in files
668         * configure,
669         * configure.in: replaced duplicate message about ucsim by missing sdcpp
670         * install-sh: fix bug #1204398 by setting umask 0022
671         * device/lib/Makefile: separate build of z80 and gbz80 lib
672
673 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
674
675         Enabled VPATH feature: changed nearly all Makefiles (149 files).
676         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
677
678         One basic decision: e.g. src/clean.mk includes further files. In order
679         to make this work there are two solutions:
680         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
681           run configure on them. This way they can use
682           'include $(srcdir)/port-clean.mk'
683         - always include clean.mk by the Makefile at the same level. To avoid
684           that `make clean` tries to include and build Makefile.dep the
685           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
686           implemented, because now even `make uninstall` doesn't create
687           Makefile.in. clean.mk could be eliminated by pasting it in
688           Makefile.in.
689
690         * debugger/mcs51/Makefile.in: build own objects from library sources
691         (SLIB, SDCC) in current directory
692
693         * configure, configure.in: renamed --disable-device-lib-build in
694         --disable-device-lib; added --enable-doc, the required tools are
695         searched by configure; added result message; the toolchain for the
696         belonging ports are now only built, if the port is enabled.
697
698         * support/regression/*: all output is written in directory gen, because
699         the fwk and ports directories don't livet in the build tree using vpath
700
701         * doc/sdccman.lyx: renamed --disable-device-lib-build to
702         --disable-device-lib, added --enable-doc, added section VPATH
703
704         * sim/ucsim/configure.in,
705         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
706         z80 are enabled by default
707
708 2006-04-24 Raphael Neider <rneider AT web.de>
709
710         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
711             to config word, "pic14_"-prefixed some extern functions
712           (pic14_emitConfigWord): emit __config directive(s) if assignment to
713             config word has been found
714         * src/pic/device.h: added prototypes
715         * src/pic/pcode.c: added "pic14_"-prefix where needed
716         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
717             fixup
718         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
719             words,
720           (pic14emitRegularMap): ignore config words,
721           (pic14createInterruptVect): moved generating __config directives away
722           (picglue): have __config directives emitted
723
724 2006-04-24 Borut Razem <borut.razem AT siol.net>
725
726         * doc/Makefile: sync with nightly build makefile
727
728 2006-04-24 Raphael Neider <rneider AT web.de>
729
730         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
731             registers that have not been assigned proper liveranges,
732             fixes #1469504 and #1474602,
733           (pCodeRegOptimizeRegUsage): fixed typo in comment
734
735 2006-04-24 Borut Razem <borut.razem AT siol.net>
736
737         * device/examples/main8051.c: deleted - it was removed from CVS
738           24.mar.2000 and after that modified 18.feb.2001, so it reappered
739           after the transition to Subversion
740         * src/SDCCalloc.h: deleted - it was removed  from CVS
741           3.feb.2001 and after that modified 18.feb.2001, so it reappered
742           after the transition to Subversion
743         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
744           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
745           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
746           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
747
748 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
749
750         * as/asx8051.dsp: added mcs51/strcmpi.h
751         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
752         * as/hc08/aslink.h: updated lnksect prototype
753         * as/hc08/asm.h,
754         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
755         * as/hc08/asmain.c,
756         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
757           (newdot): handle A_ABS
758         * as/hc08/asout.c,
759         * as/mcs51/asout.c (outarea): output address
760         * as/hc08/lkaomf51.c,
761         * as/mcs51/lkaomf51.c: disabled unused array UsageType
762         * as/hc08/m08pst.c,
763         * as/mcs51/i51pst.c,
764         * as/z80/z80pst.c: "ABS" is not A_OVR
765         * as/hc08/lkarea.c (newarea): read a_addr,
766           (lnkarea): added codemap array, sort absolute areas to the front,
767            combine all GSINITx/GSFINAL,
768           (find_empty_space, allocate_space): new functions,
769           (lnksect): return next address, handle absolute sections
770         * as/mcs51/lkarea.c (newarea): read a_addr,
771           lnksect2 prototype changed,
772           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
773           (find_empty_space, allocate_space): new, factored out of lnksect2,
774           (lnksect2): return next address, handle absolute sections
775         * as/hc08/lkhead.c,
776         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
777         * as/hc08/lklibr.c (addfile, fndsym),
778         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
779           index out of range and detect both '\' and '/'
780         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
781         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
782           regression tests (ds390 cannot return bool yet)
783         * doc/sdccman.lyx: changed version number, document changed --no-peep,
784           document critical interrupts on z80, document changed SDCC define
785         * src/asm.c (_asxxxx_mapping): fixed .org directive,
786           (_a390_mapping): added .org directive
787         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
788           (genMultOneByte): fixed warnings
789         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
790           ones
791         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
792         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
793           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
794         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
795         * src/pic16/main.c: removed newReg prototype
796         * src/pic16/pcode.c,
797         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
798           warnings
799         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
800           ones
801         * src/pic16/ralloc.c
802         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
803           to fix warnings
804         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
805           from short to PIC_OPTYPE
806         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
807         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
808           optype from short to PIC_OPTYPE
809         * src/port.h: made int_size unsigned to fix warnings
810         * src/SDCC.y: fixed warning on MSVC
811         * src/SDCCicode.c (getArraySizePtr): return unsigned int
812         * src/SDCCopt.c (convertToFcall): fixed warnings
813         * src/SDCCsymt.h: removed double prototype for genSymName
814         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
815           offset int to fix warnings
816
817 2006-04-22 Borut Razem <borut.razem AT siol.net>
818
819         * doc/sdccman.lyx, */Makefile, */Makefile.in:
820           references to CVS replaced with Subversion
821
822 2006-04-21 Borut Razem <borut.razem AT siol.net>
823
824         * doc/sdccman.lyx, */Makefile, */Makefile.in:
825           references to CVS replaced with Subversion
826
827 2006-04-19 Borut Razem <borut.razem AT siol.net>
828
829         * src/version.awk: adapted for svn
830         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
831           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
832           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
833           /binutils-avr/etc/*.vi, *.jin: removed all properties
834           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
835
836 2006-04-19 Borut Razem <borut.razem AT siol.net>
837
838         * CVS to Subversion migration completed
839
840 2006-04-18 Borut Razem <borut.razem AT siol.net>
841
842         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
843           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
844
845 2006-04-17 Borut Razem <borut.razem AT siol.net>
846
847         * device/include/Makefile.in: added pic/*.inc to the installation
848
849 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
850
851         * support/regression/collate-results.py: fixed output in case of
852         a valdiag error
853         * support/regression/generate-cases.py: fixed splitting of pathnames
854         with dots
855         * as/hc08/lklibr.c (addfile),
856         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
857
858 2006-04-11 Raphael Neider <rneider AT web.de>
859
860         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
861         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
862         * src/pic16/pcode.c (assignValnums): fixed #1460578
863
864 2006-04-11 Raphael Neider <rneider AT web.de>
865
866         * device/lib/pic/libdev/*.c,
867         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
868           fixes #1468739, enables compilation in --std-c99 mode
869         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
870
871 2006-04-11 Raphael Neider <rneider AT web.de>
872
873         * src/pic/device.c (find_device): removed debug output
874           (list_valid_pics): enabled verbose listing of supported devices
875         * device/include/stdbool.h: define bool as char for pic14/16 as well
876
877 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
878
879         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
880
881 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
882
883         * .version: bumped version to 2.5.6
884         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
885
886 2006-04-06 Raphael Neider <rneider AT web.de>
887
888         * .version: bumped version to 2.5.6 (pic14 ABI changed)
889         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
890         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
891           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
892             pic14_constructAbsMap
893           (pic14printPublics): declare absolute global symbols as global
894           (pic14createInterruptVect),
895         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
896           (newReg): assume new registers unused, use correct name in
897             hashtable (reg->name instead of name), more debugLog output
898         * src/pic/device.h (PIC_device): added fields for verbose output
899         * src/pic/device.c: moved device definition to pic14devices.txt,
900             added routines for runtime parsing of pic14devices.txt,
901             added support for second config word
902         * src/pic/main.c (_process_pragma): removed #pragma maxram,
903           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
904           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
905           (_pic14_parseOptions): moved pCodeInitRegisters here
906           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
907         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
908           (pCodeInitRegisters): rewrapped comments, perpared new approach to
909             handling the pseudo stack
910         * device/lib/Makefile.in: ignore failures in objects-pic16,
911         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
912         * device/lib/pic/NEWS: document new dependency on picXXX.lib
913         * device/lib/pic/Makefile.subdir,
914         * device/lib/pic16/Makefile.subdir: improved clean rules
915         * device/lib/pic/libdev/: NEW, pic14 device libraries
916         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
917         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
918         * device/include/Makefile.in: create subdir and install pic14 headers
919         * device/include/pic/p16f_common.inc: removed unused declarations
920         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
921             PICs from inc2h.pl v1.6,
922             replaced BIT_AT macros with struct declarations
923         * device/include/pic/pic14devices.txt: definition of supported devices,
924             all above improvements contributed by Zik Saleeba, thanks
925         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
926         * support/scripts/sdcc.nsi: also install pic14 device libraries and
927             headers
928
929 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
930
931         * device/include/mcs51/c8051f410.h: added interrupt numbers,
932         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
933           thanks to Charles Olds
934
935 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
936
937         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
938
939 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
940
941         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
942         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
943         * support/regression/bug1464657.c: added, new test
944
945 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
946
947         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
948           version number
949
950 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
951
952         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
953           --no-peep and --peep-file <file> are used don't use default rules but
954           do use the <file>
955
956 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
957
958         * src/mcs51/gen.c (genCall): fixed bug 1457608
959
960 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
961
962         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
963         changes seem to cause (trigger?) problems with the build system.
964
965 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
966
967         * src/SDCCpeeph.c (operandsLiteral): new, added,
968           (callFuncByName): inserted operandsLiteral
969         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
970
971 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
972
973         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
974         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
975
976 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
977
978         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
979           implemented patch 1120823 Thanks to Willy De la Court (normal
980           interrupts need an interrupt number now if they are made critical),
981           and enabled nesting of critical functions though not for gbz80
982           (genCritical, genEndCritical): added functions
983           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
984         * src/z80/mappings.i: added "ei" to all mappings
985
986 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
987
988         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
989         submitted by the Debian SDCC maintainer Aurelien Jarno:
990         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
991         archive with gcc 4.1 on mips and wrote the patch"
992
993 2006-03-16 Raphael Neider <rneider AT web.de>
994
995         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
996           the left operand is shorter than the result (c* = lit-c* + int),
997           fixes bug #1450796
998         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
999           OP_SYMBOL
1000
1001 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1002
1003         * src/.version: increased version number to 2.5.5
1004         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1005         linking is done manually in pic16 port's _linkEdit,
1006         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1007         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1008         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1009         allocate asmop as AOP_ACC,
1010         (aopForRemat): added parameter 'bool result' in function declaration,
1011         (pic16_aopGet): return AOP_ACC when accessing WREG,
1012         (pic16_popGetTempReg): minor modification,
1013         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1014         'pic16_allocWithIdx',
1015         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1016         calling function in absolute addresses,
1017         (genAssign): take into account AOP_ACC asmop,
1018         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1019         * src/pic16/pcoderegs.c: some debug functions and lines added,
1020         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1021         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1022         register too,
1023         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1024         call to allocReg, not by manually allocating a new one,
1025         (pic16_assignRegisters): now before going through the register
1026         allocating functions mark all registers as free. This eliminates some
1027         side effects resulting from peephole parser done earlier in the backbone
1028
1029 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1030
1031         * src/SDCCicode.c (geniCodeLogic),
1032         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1033
1034 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1035
1036         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1037           (genSend): bugfix, do not allocate and free twice,
1038           (shiftRLong): handle partially overlapping aops
1039         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1040
1041 2006-03-08 Borut Razem <borut.razem AT siol.net>
1042
1043         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1044           for pic16
1045
1046 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1047
1048         * support/regression/tests/bug1409955.c: new, added
1049         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1050         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1051           (aopForSym, aopOp): increment asmop.allocated if reused,
1052           (freeAsmop): decrement asmop.allocated and check for zero instead of
1053           using asmop.freed,
1054           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1055           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1056            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1057            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1058            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1059            genSignedRightShift, genRightShift, genDataPointerGet,
1060            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1061            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1062             in reverse order from allocation,
1063           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1064             added swappedLR to keep track
1065         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1066           pdata & code for GCC, z80, gbz80 & hc08
1067         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1068
1069 2006-03-08 Raphael Neider <rneider AT web.de>
1070
1071         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1072
1073 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1074
1075         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1076         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1077         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1078
1079 2006-03-06 Borut Razem <borut.razem AT siol.net>
1080
1081         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1082           made the linker quiet
1083
1084 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1085
1086         * src/pic16/gen.c (genPcall): fixed bug #1443644
1087         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1088         which dumps before the function entry point a data byte which represents
1089         the number of the local variables used by the specified function, added
1090         'xinst' for initial support for Extended Instruction Support,
1091         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1092         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1093         port->fun_prefix anymore (may change later),
1094         (genFunction, genEndFunction): do not store/restore local registers for
1095         _main (this should take care the --main-return command line option in
1096         the future),
1097         (genOr): removed some legacy pic-port instructions,
1098         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1099         performing operations with SFR's causes data to be written more than
1100         once to each SFR. Perhaps SFRs should be handled in special cases...
1101         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1102         pcode.h
1103         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1104         into account for stack starting position,
1105         (struct OPTIONS pic16_optionsTable): added command line argument
1106         --extended or -y for Extended Instruction Support,
1107         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1108         (deassignLRs): *** perhaps the most important change, old 'for' code
1109         (commented out for reference), didn't account for some registers which
1110         were left marked 'not free' after a pointer operation. The change
1111         reduces register usage a lot in some cases
1112
1113 2006-03-04 Borut Razem <borut.razem AT siol.net>
1114
1115         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1116           _clean
1117         * support/regression/tests/bug-524697.c: decreased array size for
1118           mcs51 to fit into the internal RAM
1119         * support/regression/Makefile.in: a little bit more verbose
1120
1121 2006-03-03 Borut Razem <borut.razem AT siol.net>
1122
1123         * support/regression/fwk/lib/testfwk.c,
1124           support/regression/fwk/include/testfwk.h: introduced function
1125           _prints(), nonrecursive _printn(), call _initEmu() from main()
1126         * support/regression/ports/gbz80/support.asm,
1127           support/regression/ports/ucz80/support.asm,
1128           support/regression/ports/z80/support.asm,
1129           support/regression/ports/ds390/support.c,
1130           support/regression/ports/hc08/support.c,
1131           support/regression/ports/host/support.c,
1132           support/regression/ports/mcs51/support.c,
1133           support/regression/ports/xa51/support.c: added empty _initEmu()
1134           function
1135         * support/regression/ports/pic16/gpsim.cmd,
1136           support/regression/ports/pic16/spec.mk,
1137           support/regression/ports/pic16/support.c,
1138           support/regression/Makefile.in: added pic16 regression test
1139
1140 2006-03-01 Raphael Neider <rneider AT web.de>
1141
1142         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1143           genConstPointerGet): use safe way of generating MOVFF to cover
1144             literals as well as registers, fixes bug #1440527
1145         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1146             dereference
1147           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1148             more correctly, fixes bug #1232186
1149           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1150         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1151             gplink guess the correct processor in more cases, applied patch
1152             from Till Riedel attached to and fixing bug #1436552
1153
1154 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1155
1156         * support/regression/tests/array.c: added, contains check for #1434401
1157         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1158
1159 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1160
1161         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1162         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1163         * device/include/mcs51/c8051f326.h,
1164         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1165         * device/include/mcs51/c8051f000.h,
1166         * device/include/mcs51/c8051f018.h,
1167         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1168           PCON_IDLE,PCON_STOP and added sfr16 definitions
1169
1170 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1171
1172         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1173           genGetWord): fixed bug 1409955
1174
1175 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1176
1177         * device/include/hc08/mc68hc908gp32.h,
1178         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1179
1180 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1181
1182         * src/SDCCast.c (constExprValue): return NULL if not a value
1183         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1184         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1185         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1186
1187 2006-02-13 Borut Razem <borut.razem AT siol.net>
1188
1189         * src/regression/ptrarg.c: added, fails due to bug #1430967
1190         * src/regression/Makefile: ptrarg.c added, ...
1191
1192 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1193
1194         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1195         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1196
1197 2006-02-11 Borut Razem <borut.razem AT siol.net>
1198
1199         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1200           print "Processor: xxx" message to stdout only if --verbose
1201
1202 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1203
1204         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1205         * support/regression/tests/bug1426356.c: added
1206         * support/regression/tests/bitfields.c: removed 2 tests
1207
1208 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1209
1210         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1211         * device/include/mcs51/c8051f330.h,
1212         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1213           PCON_IDLE,PCON_STOP and added sfr16 definitions
1214         * device/lib/_divsint.c,
1215         * device/lib/_divuint.c,
1216         * device/lib/_divulong.c,
1217         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1218           register bank bug for small stackauto
1219
1220 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1221
1222         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1223
1224 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1225
1226         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1227         * all.dsp: corrected several bin paths
1228         * device/include/mcs51/c8051f120.h,
1229         * device/include/mcs51/c8051f300.h,
1230         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1231           to PCON_IDLE,PCON_STOP
1232         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1233         * device/lib/printf_large.c (output_float): fixed bug 1388703
1234         * support/regression/tests/bug1057979.c: added test for bug 1388703
1235
1236 2006-02-08 Raphael Neider <rneider AT web.de>
1237
1238         * src/pic/pcode.c (pciTRIS): fixed typo,
1239           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1240           (LinkFlow): fixed handling of flows that end in a call,
1241           (ReuseReg): perform safety check earlier
1242         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1243             to work with flows at the beginning of a pBlock,
1244             fixes #1426557 (Symbol not previously defined),
1245           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1246             usage information
1247           (RemoveUnusedRegisters): update register usage info
1248         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1249             created, reuse existing ones instead
1250         * src/pic/gen.c (genPcall): fixed #1424719
1251
1252 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1253
1254         * link/z80/lkmain.c,
1255         * link/z80/lklex.c,
1256         * link/z80/lkdata.c,
1257         * link/z80/aslink.h: fixed build on current cygwin:
1258         replaced getline() by lk_getline()
1259
1260 2006-02-01 Borut Razem <borut.razem AT siol.net>
1261
1262         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1263           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1264           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1265           src/regression/bool1.c, src/regression/bool2.c,
1266           src/regression/bool3.c, src/regression/call1.c,
1267           src/regression/compare.c, src/regression/compare10.c,
1268           src/regression/compare2.c, src/regression/compare3.c,
1269           src/regression/compare4.c, src/regression/compare5.c,
1270           src/regression/compare6.c, src/regression/compare7.c,
1271           src/regression/compare8.c, src/regression/compare9.c,
1272           src/regression/configword.c, src/regression/for.c,
1273           src/regression/inline.c, src/regression/mult1.c,
1274           src/regression/nestfor.c, src/regression/or1.c,
1275           src/regression/pointer1.c, src/regression/ptrfunc.c,
1276           src/regression/rotate1.c, src/regression/rotate2.c,
1277           src/regression/rotate3.c, src/regression/rotate4.c,
1278           src/regression/rotate5.c, src/regression/rotate6.c,
1279           src/regression/rotate7.c, src/regression/string1.c,
1280           src/regression/struct1.c, src/regression/sub.c,
1281           src/regression/sub2.c, src/regression/switch1.c,
1282           src/regression/while.c, src/regression/xor.c,
1283           src/regression/create_stc, src/regression/simulate,
1284           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1285           regression tests
1286         * src/regression/gpsim_assert.h: added
1287
1288 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1289
1290         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1291         ((void (code *) (void)) 0) ();
1292         * as/hc08/aslex.c,
1293         * as/hc08/aslink.h,
1294         * as/hc08/asm.h,
1295         * as/hc08/asmain.c,
1296         * as/hc08/lkdata.c,
1297         * as/hc08/lklex.c,
1298         * as/hc08/lkmain.c,
1299         * as/mcs51/aslex.c,
1300         * as/mcs51/aslink.h,
1301         * as/mcs51/asm.h,
1302         * as/mcs51/asmain.c,
1303         * as/mcs51/lkdata.c,
1304         * as/mcs51/lklex.c,
1305         * as/mcs51/lkmain.c,
1306         * as/z80/aslex.c,
1307         * as/z80/asm.h,
1308         * as/z80/asmain.c: fixed build on current cygwin:
1309         replaced getline() by as_getline()
1310
1311 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1312
1313         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1314         declarator in the symbol chain
1315         * src/SDCCsymt.h,
1316         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1317         parameter list for function pointers
1318         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1319         * support/regression/tests/bug-716242.c: added
1320
1321 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1322
1323         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1324         offset if possible
1325         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1326
1327 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1328
1329         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1330         inifinitely recurseable, added static
1331         * support/regression/tests/bug-1408066.c: added
1332
1333 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1334
1335         * src/SDCCicode.h,
1336         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1337         renamed, added possibility to create "postLoopLbl"-labels
1338         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1339         newiTempLoopHeaderLabel
1340         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1341         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1342         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1343         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1344         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1345         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1346         (basicInduction): fixed bug #136564, made static,
1347         (loopInduction): changed parameter of basicInduction, made static,
1348         (addPostLoopBlock): added
1349         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1350         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1351         findLoopEndSeq
1352         * support/regression/tests/bug-136564.c: added
1353         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1354         --std-sdcc99 to LIBSDCCFLAGS
1355
1356 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1357
1358         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1359         while loop
1360         * support/regression/tests/bug-1406131.c: added
1361
1362 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1363
1364         * src/SDCCast.c (decorateType): fix promotion of unary minus
1365         * src/SDCCsymt.c (computeType): beautified
1366         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1367         (valUnaryPM, valComplement): fix sign and promotion,
1368         (valNot): ANSI: result type is int (SDCC: unsigned char)
1369         * support/regression/tests/uminus.c: speedup by removing superflous
1370         test case 'int'
1371         * support/regression/tests/onebyte.c: added promotion and signedness
1372         tests for unary minus
1373         * support/regressions/tests/bug-477927.c: disable warning about
1374         uninitialized variables
1375         * support/regression/tests/not.c: added
1376
1377 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1378
1379         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1380         * src/mcs51/gen.c (gen51Code): show final register usage after
1381         fillGaps in asm with --i-code-in-asm
1382         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1383         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1384         incUsed, rliveClear, adjustIChain): made static,
1385         (setFromRange): excluded because it's unused,
1386         (findPrevUseSym, markWholeLoop): added,
1387         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1388         through all branches of predecessors enables sdcc to emit the warning
1389         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1390         (rlivePoint): made static, added parameter emitWarnings which is only
1391         true during the first run out of two,
1392         (findRecursiveSucc, findRecursivePred): removed,
1393         (computeLiveRanges): made static, added parameter emitWarnings,
1394         (dumpIcRlive): added for debugging only
1395         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1396         removed prototype of setFromRange()
1397         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1398         in call of computeLiveRanges()
1399         * support/regression/tests/bug-895992.c: added
1400         * support/regression/tests/bug-971834.c: added
1401         * support/valdiag/tests/bug-895992.c: added
1402         * support/valdiag/tests/bug-971834.c: added
1403
1404 2005-12-18 Raphael Neider <rneider AT web.de>
1405
1406         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1407           (genUnpackBits): improved code for direct operands,
1408           (genPackBits): improved code for literal assignment to bitfields
1409             and for direct destination operands (no FSR indirection),
1410             prevented redundant AND, fixes #1362800,
1411           (AccLsh): added parameter to disable masking of the result
1412         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1413           skip instructions with side-effects (like incfsz),
1414           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1415         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1416         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1417           fixes #1375263
1418
1419 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1420
1421         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1422         volatile variables as spill location
1423
1424 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1425
1426         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1427         replacing literals
1428         * support/regression/tests/bug-1376320.c: added
1429
1430 2005-12-08 Raphael Neider <rneider AT web.de>
1431
1432         * src/pic/device.c: renamed is_shared to pic14_is_shared
1433         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1434         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1435           (is_valid_identifier): added for above workaround
1436
1437 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1438
1439         * device/lib/Makefile.in: fixed to enable port-specific-objects
1440         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1441           char, thanks Hubert Sack
1442         * doc/sdccman.lyx: documented --xstack-loc,
1443           elaborated a bit more on interrupts and pitfalls,
1444           removed "setjmp/longjmp unsupported",
1445           documented some unsupported C99 features
1446         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1447         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1448           if, thanks Hubert Sack
1449         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1450         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1451           make make_library
1452         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1453           regression tests can report resource usage (rfe 700441)
1454         * support/regression/collate-results.py: report resource usage
1455         * support/regression/ports/ds390/spec.mk,
1456         * support/regression/ports/hc08/spec.mk,
1457         * support/regression/ports/mcs51/spec.mk,
1458         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1459         * support/regression/ports/ds390/uCsim.cmd,
1460         * support/regression/ports/hc08/uCsim.cmd,
1461         * support/regression/ports/mcs51/uCsim.cmd,
1462         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1463         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1464           library, use the default one
1465         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1466           building the library
1467
1468 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1469
1470         * config.dsp: added dependency on .version and configure_vc.awk
1471         * device/include/setjmp.h: updated for --stack-auto and --xstack
1472         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1473         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1474         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1475         * device/lib/libsdcc.lib: added _setjmp
1476         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1477           (decorateType): fixed bug 1372851,
1478           (optimizeGetHbit): fixed warning
1479         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1480           array initialisation
1481         * support/regression/tests/bug1057979.c: added test for bug 1358192
1482         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1483
1484 2005-12-03 Borut Razem <borut.razem AT siol.net>
1485
1486         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1487           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1488
1489 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1490
1491         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1492         createIval): implement symbol independant "flexible array member",
1493         (createIvalCharPtr): implemented flexible array initialisation with a
1494         string
1495         * src/SDCCsymt.c (copyStruct): removed,
1496         (getSize): fixed misleading comment,
1497         (getAllocSize): removed, the additional allocation size is now in
1498         sym->flexArrayLength,
1499         (checkStructFlexArray): new, syntax checks for flexible array members,
1500         (compStructSize): added syntax checks for "flexible array members"
1501         (copyStruct): removed,
1502         (copyLinkChain): removed inefficient fix for bug 770487
1503         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1504         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1505         symbol->flexArrayLength
1506         * src/SDCCerr.c,
1507         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1508         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1509         * support/regression/tests/structflexarray.c: added
1510         * support/valdiag/tests/structflexiblearray.c: added
1511
1512 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1513
1514         * src/SDCCast.c (decorateType): fixed bug 1368489
1515         * support/Util/SDCCerr.c,
1516         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1517
1518 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1519
1520         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1521           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1522
1523 2005-11-27 Borut Razem <borut.razem AT siol.net>
1524
1525         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1526           support/cpp2/mkdeps.h: added command line option
1527           -obj-ext=<extension> to SDCPP to define object file externion, used
1528           for generation of make dependencies (-M)
1529         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1530
1531 2005-11-26 Borut Razem <borut.razem AT siol.net>
1532
1533         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1534           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1535           added pic and pic16 libraries
1536
1537 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1538
1539         * device/include/float.h: Corrected typo in prototype of __fsgt
1540
1541 2005-11-25 Borut Razem <borut.razem AT siol.net>
1542
1543         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1544           added creation of model-mcs51-stack-auto libraries
1545
1546 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1547
1548         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1549         and fields-list too
1550         * src/SDCCast.c (createIvalArray): removed obsolete comment
1551
1552 2005-11-24 Borut Razem <borut.razem AT siol.net>
1553
1554         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1555           added missing device/lib/mcs51/crt*.asm sources
1556
1557 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1558
1559         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1560
1561 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1562
1563         * device/lib/_fs2schar.c,
1564         * device/lib/_fs2sint.c,
1565         * device/lib/_fs2slong.c: optimized inline asm
1566
1567 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1568
1569         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1570           Better handling of floats between -1.0 and 0.0.
1571
1572 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1573
1574         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1575           (the missing "if"s prohibited removal of redundant labels)
1576
1577 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1578
1579         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1580           Properly convert floats between -1.0 and 0.0 to long, int, and char
1581           types (max integer value of negative floats tends to zero).
1582         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1583           Removed changes made so to work properly with floats between
1584           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1585           and _fs2char.c
1586
1587 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1588
1589         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1590         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1591         (genCast) cosmetic change
1592         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1593         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1594         from mcs51
1595         * support/regression/tests/bitfields (testSignedBitfields): added
1596
1597 2005-11-18 Borut Razem <borut.razem AT siol.net>
1598
1599         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1600         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1601           introduced SILENT option to make building of pic16 libraries less
1602
1603 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1604
1605         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1606           Now they work properly with floats between -1.0 and 0.0
1607         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1608
1609 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1610
1611         * src/SDCCicode.c (printOperand): added missing else
1612
1613 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1614
1615         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1616         reformatted for better readability
1617         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1618         signed bitfields
1619
1620 2005-11-17 Borut Razem <borut.razem AT siol.net>
1621
1622         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1623           introduced SILENT option to make building of pic16 libraries less
1624           verbose - used for nightly snapshot build
1625         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1626           available on Win32 platforms.
1627         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1628           medium, large, pic and pic16
1629
1630 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1631
1632         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1633           printf("%f"...) sets fraction to zero.
1634
1635 2005-11-16 Raphael Neider <rneider AT web.de>
1636
1637         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1638           fixes #1357221
1639         * src/pic/gen.c (genIfx): implemented for CARRY bit
1640         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1641           to generic pointers, fixes #1357332,
1642           (pic16_movLit2f): NEW,
1643           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1644
1645 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1646
1647         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1648
1649 2005-11-11 Raphael Neider <rneider AT web.de>
1650
1651         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1652         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1653           compute pointer's type from operand,
1654           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1655           improved single bit reads, fixes bug #1353379
1656
1657 2005-11-09 Borut Razem <borut.razem AT siol.net>
1658
1659         * support/scripts/sdcc.nsi: added lib/pic to the package
1660
1661 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1662
1663         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1664
1665 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1666
1667         * support/regression/tests/bug1348008.c: added
1668         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1669         * support/regression/tests/bug1337835.c: updated comment
1670
1671 2005-11-06 Borut Razem <borut.razem AT siol.net>
1672
1673         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1674           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1675           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1676           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1677           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1678           dynamic construction of cl_error_class and derivates - 2.nd try
1679
1680 2005-11-05 Borut Razem <borut.razem AT siol.net>
1681
1682         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1683           bug, which caused Bus Errors on sparc solaris
1684
1685 2005-11-04 Borut Razem <borut.razem AT siol.net>
1686
1687         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1688           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1689           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1690           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1691           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1692           and derivates to resolve the initialization problem on OSX
1693
1694 2005-11-02 Borut Razem <borut.razem AT siol.net>
1695
1696         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1697           corrected typo - #include <winsock2.h>
1698
1699 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1700
1701         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1702           (_asxxxx_mapping): added org directive for future enhancements
1703
1704 2005-11-01 Borut Razem <borut.razem AT siol.net>
1705
1706         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1707           enabled sockets on WIN32
1708         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1709
1710 2005-10-31 Borut Razem <borut.razem AT siol.net>
1711
1712         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1713           WIN32 backslash path delimiters should be escaped when used in C strings
1714         * support/regression/tests/bitfields.c: exclude failing assertions for
1715           __CYGWIN32__ and __MINGW32__ hosts
1716
1717 2005-10-30 Borut Razem <borut.razem AT siol.net>
1718
1719         * src/SDCCutil.c: corrected double comparison typo
1720
1721 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1722
1723         * device/lib/medium/Makefile: added for new memory model medium
1724         * device/include/asm/mcs51/features.h: updated for medium/pdata
1725         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1726           added Multiply & Accumulate sbit's and MAC0_PAGE define
1727         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1728         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1729         * device/lib/_mullong.c: update for medium model
1730         * device/lib/incl.mk: added medium model
1731         * doc/sdccman.lyx: documented medium model
1732         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1733         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1734         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1735         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1736           (allocParms): set SCLS and OCLS to pdata for medium model
1737         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1738           for pdata,
1739           (powof2): return <0 if not power of 2
1740         * src/avr/gen.c (genBitWise): use updated powof2
1741         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1742           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1743           (shiftLLeftOrResult): use B if necessary
1744         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1745         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1746         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1747         * support/regression/Makefile.in: added test-mcs51-medium
1748         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1749
1750 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1751
1752         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1753         specifier unsigned
1754         * device/lib/time.c (mktime): fixed bug 1334315
1755
1756 2005-10-28 Raphael Neider <rneider AT web.de>
1757
1758         * device/include/pic/p16f_common.inc: added common declarations
1759         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1760
1761 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1762
1763         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1764           (aopPutUsesAcc): added to predict accumulator use,
1765           (assignResultValue): save acc if necessary,
1766           (genMinusDec): store result if indirectly addressed,
1767           (genDivOneByte):  save acc if necessary,
1768           (movLeft2Result): bugfix if left already in acc,
1769           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1770             attention to accumulator use (esp. pdata),
1771           (genReceive): receive pdata correctly
1772         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1773         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1774
1775 2005-10-27 Raphael Neider <rneider AT web.de>
1776
1777         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1778
1779 2005-10-27 Raphael Neider <rneider AT web.de>
1780
1781         * .version: changed version to 2.5.4
1782         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1783         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1784           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1785             arithmetics support routines
1786         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1787         * device/lib/Makefile.in: also create installdir for pic
1788
1789         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1790           pic14 port as well
1791         * src/pic/device.c (dump_sfr): rewritten to delegate register
1792           placement to the linker (use `extern sym' rather than sym EQU addr),
1793           (validAddress): fixed to check last specified address
1794         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1795           (popGetLit): truncate literal value to 8 bit,
1796           (popGet): moved assert to more appropriate place
1797           (popGetExternal): create pCode operand from and mark the according
1798             symbol as being `extern'
1799           (popGetAddr): added sanity check on immediate's offset, provide
1800             GPOINTER tag on demand
1801           (aopPut): fixed for immediates,
1802           (mov2w_op): move operand's address or contents to WREG (depending on
1803             operand type), safer variant of mov2w,
1804           (movwf,call_libraryfunc): NEW, handy abbreviations,
1805           (get_argument_pcop,get_return_val_pcop,pass_argument,
1806           get_returnvalue): interface for accessing function parameters and
1807             return values,
1808           (assignResultValuei,genRet): use new parameter/return value interface
1809           (pic14_getDataSize): back to old version handling generic pointers,
1810           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1811             provided implementation and/or fixed old one,
1812           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1813             calls, removed legacy 8051 reference code
1814           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1815           (loadSignToC): NEW, move the operands sign bit to CARRY,
1816           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1817             genRightShiftSigned, accepts negative shift counts,
1818           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1819           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1820             generic pointers, __data pointers and __code pointers,
1821           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1822             and signed bitfields, limit bitfields to 8 bit,
1823           (genDataPointerGet): fixed number of bytes read,
1824           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1825           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1826             pointers to constant data are no longer assumed to point to __code
1827             space, removed invalid pointer types,
1828           (bitpatternFromVal): retrieve the PICs representation of an integer
1829             or float literal,
1830           (genDataPointerSet): fixed assigning to po_immediate operands,
1831           (genGenPointerSet): implemented as library call,
1832           (genIfx): fixed incorrect condition,
1833           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1834             provide GPOINTER tag according to destination's storage class,
1835           (genCast): added code to handle casting to generic pointers, added
1836             sign-/zero extension of the result
1837           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1838         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1839         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1840           extend the result
1841         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1842           address/register resides in the shared banks
1843           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1844             put all variables into separate sections (have the linker arrange
1845             them)
1846           (picglue): put init code and interrupt handlers in separate sections
1847         * src/pic/main.c: added port specific options table, modified to PORT
1848           structure to make GPOINTERs 3 byte, added pic14_options
1849           (_pic14_do_link): private linking routine (update paths to libraries,
1850             add libsdcc.lib by default)
1851         * src/pic/main.h: declare pic14_options
1852         * src/pic/pcode.c: fixed instructions i/o relations,
1853           (RegCond): reverted to correct version,
1854           (newpCodeOpLit): truncate literals to 8 bit,
1855           (genericPrint): added debug output,
1856           (getRegFromInstruction): fixed for various operand types, simplified
1857           (BuildFlow): fixed broken handling of isntructions with labels
1858           (LinkFlow): start at last instruction in flow (skip trailing comments),
1859             pass the flow on to the next instruction after CALL
1860           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1861           (insertPCodeInstruction): fixed inserting after a skip instruction,
1862           (DoBankSelect): fixed for labeled instructions
1863           (OptimizepBlock): honor --nopeep switch
1864           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1865         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1866         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1867           (pCodeOptime2pCodes): allow disabling this optimization via
1868             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1869             but is still buggy), started implementation of a dataflow based
1870             pCode optimization (CSE + dead code elimination)
1871           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1872         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1873           names are independant of the stack location and therefore portable across
1874           devices
1875
1876 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1877
1878         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1879           (selectSpil): fixed bug 1337835 by not spilling bit variables
1880         * support/regression/tests/bug1337835.c: added test for this bug
1881         * src/mcs51/peeph.def: restart after rule 3.c,
1882           addded rules 263.x to optimize loading constants
1883
1884 2005-10-26 Raphael Neider <rneider AT web.de>
1885
1886         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1887         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1888           (genAssign): emit warning when casting literals to generic pointer
1889             type, also applies when taking the address of a fixed variable,
1890           (genCast): improved casting to generic pointers
1891         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1892           extern variables, added verbose error message
1893         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1894
1895 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1896
1897         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1898         carry must be complemented too
1899         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1900         could be emitted by genMinus
1901         * src/SDCCval.c (constVal): fixed bug 1305065
1902
1903 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1904
1905         * src/SDCCast.c (addCast): added promotion for bit variables
1906         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1907         promotion casts + optimisation
1908         (optimizeGetWord): fix warning 'i' might be used uninitialized
1909         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1910         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1911
1912 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1913
1914         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1915         all chars are promoted to int; promotion should be handled in SDCCast.c
1916
1917 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1918
1919         * device/lib/_strcmp.c: Fixed bug 1326457
1920
1921 2005-10-11 Raphael Neider <rneider AT web.de>
1922
1923         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1924         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1925
1926 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1927
1928         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1929         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1930
1931 2005-10-04 Raphael Neider <rneider AT web.de>
1932
1933         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1934           device/lib/pic16/pics.all: added pic18f1320
1935         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1936
1937 2005-09-30 Raphael Neider <rneider AT web.de>
1938
1939         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1940         * src/pic16/devices.inc: NEW, provides device descriptions
1941         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1942
1943 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1944
1945         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1946           GETHBIT
1947
1948 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1949
1950         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1951           documented Any Order Bit, Higher Order Byte and Higher Order Word
1952         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1953         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1954           (optimizeGetAbit): new, to get any bit, not only the high bit,
1955           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1956           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1957           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1958           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1959             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1960             GETABIT, GETBYTE, GETWORD: decorate them,
1961           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1962           (ast_print): added GETABIT, GETBYTE, GETWORD
1963         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1964         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1965           (geniCodeBinary): new generic binary icode,
1966           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1967         * src/port.h: updated comment for PORT.hasExtBitOp
1968         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1969           (genGetByte): new, to get a single byte,
1970           (genGetWord): new, to get a word from a long,
1971           (gen51Code): added GETABIT, GETBYTE, GETWORD
1972         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1973
1974 2005-09-23 Raphael Neider <rneider AT web.de>
1975
1976         * configure.in, configure: have device/lib/pic configured
1977         * device/lib/Makefile.in: added model-pic14
1978         * device/lib/clean.mk: added pic/ to clean rule
1979         * device/lib/pic: added rudimentary pic14 library providing support
1980           functions for multiplication/division/generic pointer access
1981         * src/SDCCopt.c (convilong): mark support functions as extern
1982           for pic14 port as well
1983         * src/pic/gen.c (genMult): added assertions,
1984           (genpic14Code): emit warning on unhandled iCodes
1985         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1986         * src/pic/pcode.c (pCodeOpCopy),
1987         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1988           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1989           SFR_REGISTER}), made safe for future extensions
1990         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1991           instructions even if preceeded by SKIP instructions (also remove
1992           them); removed unused code
1993         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1994           prevents leaving parts of the structure uninitialized after copying
1995
1996 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1997
1998         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1999           ago by me
2000         * support/regression/tests/addsub.c: added test for the bug
2001
2002 2005-09-21 Raphael Neider <rneider AT web.de>
2003
2004         * device/include/pic16/pic18f1220.h,
2005           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2006         * device/lib/pic16/Makefile.rules: added missing opening paren
2007         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2008           are provided in genutils.c,
2009           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2010           operand/result sizes,
2011           (genCmp): assert on NULL pointers first, then check deref'ed values
2012         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2013           result size
2014
2015 2005-09-18 Raphael Neider <rneider AT web.de>
2016
2017         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2018           as these are now unused,
2019           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2020         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2021           local, avoids uninitialized pointer dereference on r->name
2022         * src/pic16/ralloc.c (newReg): fixed indentation
2023
2024 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2025
2026         * src/SDCCval.c (constVal): fixed bug 730366
2027         * support/Util/SDCCerr.c,
2028         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2029
2030 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2031
2032         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2033
2034 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2035
2036         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2037
2038 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2039
2040         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2041           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2042         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2043           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2044         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2045         * packihx/packihx.c (hexDigit): made c unsigned char
2046         * as/mcs51/lklibr.c (fndsym),
2047         * link/z80/lkgb.c (gb),
2048         * link/z80/lklibr.c (fndsym),
2049         * link/z80/lkrloc.c (relr),
2050         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2051         * src/SDCC.lex (checkCurrFile, process_pragma),
2052         * src/SDCCglue.c (spacesToUnderscores),
2053         * src/SDCCmain.c (setParseWithComma, processFile),
2054         * src/asm.c (tvsprintf, printCLine),
2055         * src/avr/gen.c (emitcode, aopPut),
2056         * src/ds390/gen.c (emitcode),
2057         * src/hc08/gen.c (emitcode, emitinline),
2058         * src/mcs51/gen.c (emitcode, genInline),
2059         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2060           tokenizeLineNode),
2061         * src/pic/ralloc.c (debugLog),
2062         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2063           tokenizeLineNode),
2064         * src/pic16/ralloc.c (debugLog),
2065         * src/z80/main.c (_process_pragma):
2066            made all ctype.h function calls safe
2067         * src/SDCCopt.c: include math.h for fabs
2068         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2069           and used them throughout the code to make ctype.h function calls safe
2070         * src/ds390/main.c (asmLineNodeFromLineNode),
2071         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2072         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2073            unsigned char*
2074         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2075           (newpCodeAsmDir): made ctype.h function calls safe
2076         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2077           pic16_emitcode):  made lbp unsigned char*
2078         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2079           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2080         * src/xa51/gen.c (emitcode),
2081         * src/z80/gen.c (_emit2): made lbp unsigned char*
2082         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2083            char*
2084
2085 2005-09-05 Raphael Neider <rneider AT web.de>
2086
2087         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2088           access bank splitpoint
2089
2090 2005-09-05 Raphael Neider <rneider AT web.de>
2091
2092         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2093
2094 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2095
2096         * .version: changed to version 2.5.3
2097         * doc/sdccman.lyx: changed version to 2.5.3,
2098           documented --codeseg and --constseg and pragma codeseg and constseg,
2099           documented bit parameters (reentrant) and bit returning
2100         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2101            currFunc->recvSize, but is this ok for all ports?
2102           (ast2iCode): result of ~ on unsigned char must be cast to int for
2103            bool to work
2104         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2105           function pointers in bit space
2106         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2107           (processFuncArgs): call port.reg_parm() with reentrancy info
2108         * src/port.h,
2109         * src/avr/main.c,
2110         * src/ds390/main.c,
2111         * src/hc08/main.c,
2112         * src/pic/main.c,
2113         * src/pic16/main.c,
2114         * src/xa51/main.c,
2115         * src/z80/main.c: port.reg_parm prototype extended with
2116           "bool reentrant" parameter
2117         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2118           options.stackAuto for allocating bit register parameters
2119         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2120           (genSend): set BitBankUsed if it is,
2121           (selectRegBank): factored out of genCall for use in genPcall,
2122           (genCall): removed redundant dtype assignmen, use selectRegBank,
2123           (genPcall): handle returning in Carry properly, save in F0 if needed,
2124           (genReceive): handle bit register parameters
2125         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2126           (mcs51_assignRegisters): enable bit registers for all reentrant
2127            functions and don't set BitBankUsed unconditionally
2128         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2129         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2130         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2131
2132 2005-08-27 Borut Razem <borut.razem AT siol.net>
2133
2134         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2135         ppc-osx (Darwin) does not support -u option. It seems that it is
2136         supported only on Linux - GNU cp
2137
2138 2005-08-25 Borut Razem <borut.razem AT siol.net>
2139
2140         * sim/ucsim/gui.src/serio.src/Makefile.in,
2141           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2142           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2143           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2144           install and strip, since the strip at /usr/ccs/bin should be used
2145           on solaris
2146
2147 2005-08-24 Borut Razem <borut.razem AT siol.net>
2148
2149         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2150
2151 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2152
2153         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2154         ffffffffu
2155
2156 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2157
2158         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2159         * as/mcs51/lkmain.c (link_main): fixed warning
2160         * device/include/stdbool.h: ds390 has no advanced bit support yet
2161         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2162         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2163         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2164           and updated their macros
2165         * src/SDCCval.c (constVal): updated comment for renamed b_long
2166
2167 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2168
2169         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2170         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2171           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2172           (oprio): set priority for '['
2173         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2174            and adb_24_bit
2175         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2176         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2177         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2178         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2179           added overlayable BIT_BANK area
2180         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2181           (summary2): explain 'T' in legenda
2182         * as/mcs51/lkrloc.c: replaced old K&R style,
2183           (relr): added R_BIT processing,
2184           (errmsg): added "Bit-addressable relocation error",
2185           (adb_bit): added for converting from byte- to bit-addressable space,
2186           (adb_24_bit): added for converting from byte- to bit-addressable space
2187         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2188            used in reentrant functions now even as return value
2189         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2190         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2191           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2192         * src/SDCCglobl.h: added indicator BitBankUsed
2193         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2194            the bit registers b0-b7
2195         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2196           (geniCodeCast): fixed bug 1263853,
2197           (geniCodeLogicAndOr): put result in bool or char,
2198           (geniCodeReceive): added parameter func for accessing the return type,
2199           (geniCodeFunctionBody): pass func to geniCodeReceive
2200         * src/SDCCmain.c: added indicator BitBankUsed
2201         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2202         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2203           (checkSClass): don't put automatic bool/bit on stack,
2204           (checkFunction): removed check on function cannot return bit
2205         * src/SDCCsymt.h: added newBoolLink prototype
2206         * src/mcs51/gen.c (rb1regs): added bit registers,
2207           (movc): created for assigning to carry,
2208           (pushReg, popReg): created for pushing registers,
2209           (sameRegs): check both AOP_REG and AOP_CRY types,
2210           (aopOp): handle bit registers,
2211           (aopPut): optimization no self-assign,
2212           (saveRegisters): push reg->base (bits) only once for bit registers,
2213            and use pushReg,
2214           (unsaveRegisters): pop reg->base only once and use popReg,
2215           (assignResultValue): added parameter func and return in carry for bits,
2216           (genIpush): optimization no reload in A if not changed,
2217           (genSend): bit parameters in reentrant functions are passed in bit
2218            registers by first assigning to bits in B, then save registers and
2219            copy B to bits,
2220           (genCall): handle returning in Carry properly, save it in F0 if needed,
2221           (genPcall): updated assignResultValue call, this is not safe yet for bit
2222            returning function !!!
2223           (genFunction): don't generate equ's for bit registers and use pushReg,
2224           (genEndFunction): take care of bit returning functions and use popReg,
2225           (genRet): return bit in Carry,
2226           (genIfx): optimize bit registers and other directly addressable bits,
2227           (genReceive): updated assignResultValue call
2228         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2229           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2230            registers when using stack-auto
2231         * src/mcs51/ralloc.c (_G): added allBitregs,
2232           (regs8051): added the bit registers,
2233           (createStackSpil): use macro IS_BIT,
2234           (getRegBit): added to allocate a bit register, else spill,
2235           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2236           (updateRegUsage): factored out to ease stepping while debugging,
2237           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2238            also allocate bit registers,
2239           (fillGaps): handle bit registers,
2240           (findAllBitregs): added to create bit vector with all bit registers,
2241           (mcs51_allBitregs): returns this bit vector,
2242           (mcs51_assignRegisters): when using stack-auto use bit registers for
2243            passing parameters and creating local variables
2244         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2245
2246 2005-08-22 Borut Razem <borut.razem AT siol.net>
2247
2248         * device/lib/Makefile.in: replaced find option -or with -o
2249           to make it run on solaris
2250
2251 2005-08-22 Raphael Neider <rneider AT web.de>
2252
2253         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2254           fixes #1265442 (crash on Solaris)
2255
2256 2005-08-20 Borut Razem <borut.razem AT siol.net>
2257
2258         * configure, configure.in: added tests for libsocket and libnsl libraries,
2259           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2260           from support/regression/Makefile.in
2261         * support/regression/Makefile.in: added
2262         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2263         * sim/ucsim/libtool: regenerated on sparc-solaris
2264         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2265           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2266           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2267           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2268           sparc-solaris, which doesn't use GNU ld linker
2269         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2270         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2271
2272 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2273
2274         * src/mcs51/peeph.def: updated comments
2275
2276 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2277
2278         * device/lib/_gptrget.c,
2279         * device/lib/_gptrput.c: slightly shorter
2280         * doc/sdccman.lyx: incremented version
2281         * src/mcs51/peeph.def: moved peephole comments to the line of first
2282           change to better keep line correlation, reanimated 186.e
2283         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2284
2285 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2286
2287         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2288           David Saxton with quotes around file name.
2289
2290 2005-08-15 Borut Razem <borut.razem AT siol.net>
2291
2292         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2293           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2294           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2295           make tests run on x86_64 platform
2296
2297 2005-08-13 Raphael Neider <rneider AT web.de>
2298
2299         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2300           as it might be executed DURING a build (parallel make is wonderful)
2301
2302 2005-08-13 Raphael Neider <rneider AT web.de>
2303
2304         * device/lib/Makefile.in (port-specific-objects-pic16):
2305           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2306         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2307           dependency
2308         * device/lib/pic16/Makefile.rules: build subdirs before creating
2309           the library, removed builddir rule, create $(builddir) early in
2310           recurse rule, use empty recurse rule for leaf directories
2311         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2312           mkdir errors (race condition), removed duplicate suffix "hex"
2313           from clean rules
2314         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2315         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2316           prevents mkdir -p from aborting on Alpha
2317
2318 2005-08-12 Raphael Neider <rneider AT web.de>
2319
2320         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2321           db-statements in order to allow for arrays of pointers in code
2322           sections to be placed without interspersed 0-padding, fixes
2323           bug #1256215
2324         * (emitStatistics): fixed division by zero for pic18f1220
2325         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2326           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2327         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2328         * (pic16_pCodeConstString): keep track of already emitted string
2329           literals to prevent "duplicate definitions of symbol _str_NR"
2330         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2331           debug message
2332         * device/lib/Makefile.in: ignore failing PIC16 library builds
2333         * device/lib/pic16/Makefile: do not build if gputils are missing
2334         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2335
2336 2005-08-10 Raphael Neider <rneider AT web.de>
2337
2338         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2339           my last commit)
2340
2341 2005-08-10 Raphael Neider <rneider AT web.de>
2342
2343         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2344           Rokas' patch to add the new fixed point type "__fixed16x16"
2345         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2346           functions for __fixed16x16 arithmetics
2347         * device/lib/pic16: reimplemented the build system to support
2348           a separate build directory, better handling of libio (create
2349           the library in a separate subdir for each architecture) and
2350           easier configuration (centralized in Makefile.common)
2351
2352 2005-08-07 Raphael Neider <rneider AT web.de>
2353
2354         * src/pic16/gen.c (genrshTwo): fixed sign extension
2355         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2356         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2357           added T0CONbits
2358         * device/include/pic16/pic18f4220.h: NEW, header for
2359           pic18f4220 and pic18f4320
2360         * device/include/pic16/pic18fregs.h: added new devices,
2361           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2362         * device/include/pic16/signal.h: resolved name clashes
2363           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2364           to also allow testing for interrupt enable bits, added
2365           comments on how to use the macros
2366         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2367         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2368           register definitions for the devices
2369         * device/lib/pic16/pics.all: added new devices
2370         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2371           allocated memory
2372         * device/lib/pic16/libc/stdlib/memfree: do not count
2373           the block header as free memory
2374         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2375           simplified and added missing end-of-blocklist-marker
2376           (reported by Peter Onion, fixes #1252814)
2377         * (_mergeHeapBlock): fixed loop condition
2378         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2379           len==0, restructured code
2380         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2381           up a bit, reduced bitfield accesses, prevent endless loops
2382           in case of heap corruption
2383         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2384           "unreferenced arguments/must return a value" warnings
2385         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2386           replaced BAUDREG with SPBRG
2387         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2388           device/lib/pic16/debug/gstack/gstack.c: replaced
2389           _naked, _asm, _endasm with __naked, __asm, __endasm
2390
2391 2005-08-05 Raphael Neider <rneider AT web.de>
2392
2393         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2394           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2395
2396 2005-08-05 Borut Razem <borut.razem AT siol.net>
2397
2398         * device/lib/Makefile.in: added missing ';'
2399         * configure: removed ^M characters
2400
2401 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2402
2403         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2404           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2405           License
2406
2407 2005-08-04 Borut Razem <borut.razem AT siol.net>
2408
2409         * configure.in: pic16 libraries build 2nd try - enable running
2410           configure in device/lib/pic16
2411         * configure: regenerated from configure.in
2412         * device/lib/Makefile.in: create $(PORT)/bin directory
2413
2414 2005-08-03 Raphael Neider <rneider AT web.de>
2415
2416         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2417           to get/set values via pointers
2418         * (genUnpackBits,genPackBits): changed detection of
2419           ptr->bitfield vs. sym.bitfield, fixed access via generic
2420           pointers, removed dead (wrong) code for multibyte bitfields
2421         * (genNearPointerGet, genGenPointerGet): removed useless code,
2422           fixed bitfield detection, fixes #1250594
2423         * (genNearPointerSet): removed useless code
2424         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2425           and introduced macro pic16_emitpcode that conditionally emits
2426           the origin of the following pCode (useful for debugging SDCC)
2427         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2428         * (createDefmap): fixed handling of LFSR for --optimize-df
2429
2430 2005-08-02 Borut Razem <borut.razem AT siol.net>
2431
2432         * device/lib/Makefile.in: pic16 libraries build enabled since
2433           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2434
2435 2005-08-02 Raphael Neider <rneider AT web.de>
2436
2437         * src/pic16/gen.c (genPackBits): removed deprecated warning
2438         * (genGenPointerSet): fixed bitfield detection
2439
2440 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2441
2442         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2443
2444 2005-07-31 Raphael Neider <rneider AT web.de>
2445
2446         * device/lib/pic16/libdev/pic18f458.c,
2447           device/include/pic16/pic18f458.h: added missing T0CONbits
2448
2449 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2450
2451         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2452
2453 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2454
2455         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2456
2457 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2458
2459         * device/include/mcs51/at89c51ed2.h: added.
2460
2461 2005-07-23 Raphael Neider <rneider AT web.de>
2462
2463         * src/pic/gen.h: added emitpcode macro for debugging
2464         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2465           and replace by macro adding debug information on demand
2466         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2467         * (gencjne): tried to fix; replaced with correct (slower) code
2468         * (gen{Unp,P}ackBits): fixed single bit access
2469         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2470         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2471           previous instruction
2472         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2473           register has to be handled with care (forbidding movement
2474           of assignments/uses, removing assignments completely, ...)
2475         * (pCodeOptime2pCodes): make use of regIsSpecial
2476         * added lots of debugging output (commented out)
2477         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2478           from being reused as result UNLESS it is known to work
2479
2480 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2481
2482         * support/Util/dbuf.h: include <stddef.h> for size_t
2483         * .version: changed to version 2.5.2
2484
2485 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2486
2487         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2488
2489 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2490
2491         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2492           (genModOneByte): removed needless psha/pula
2493
2494 2005-07-22 Raphael Neider <rneider AT web.de>
2495
2496         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2497           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2498         * src/pic/gen.c (resolveIfx): do not "invent" labels
2499         * (genSkipc): changed to positive logic
2500         * (genSkipCond): removed as no longer needed
2501         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2502           backport from PIC16
2503         * (genLeftShift): check operands are in different registers
2504         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2505           INCF does not update CARRY...
2506         * src/pic/main.c: fixed _linkCmd
2507         * src/pic/pcode.c (unlinkpCode): added inactive code
2508         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2509           alive (do not assign result and operand overlapping registers)
2510
2511 2005-07-22 Raphael Neider <rneider AT web.de>
2512
2513         * src/pic/device.c (dump_sfr): replaced register declaration with
2514           call to emitSymbolToFile() to avoid duplicate symbols
2515         * (assignRelocatableRegisters): do not declare external symbols
2516         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2517           right (take size of type, not etype)
2518         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2519         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2520         * (packRegsForAccUse): disabled assignment of WREG as
2521           the result reg to prevent occurence of just fixed #1235003,
2522           fixes #1242954
2523         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2524           symbols (avoids duplicate symbols in .asm file)
2525         * (pic14emitRegularMap): use emitSymbolToFile()
2526         * src/pic/gen.c (aopOp): fixed spillLocation handling
2527         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2528         * (genDataPointerSet): removed unneccessary variables/output
2529
2530 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2531
2532         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2533         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2534
2535 2005-07-21 Raphael Neider <rneider AT web.de>
2536
2537         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2538           architecture cannot handle them efficiently, fixes bug #1235003
2539         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2540           check for empty sets before using them (fixes bug #1232190)
2541
2542 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2543
2544         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2545           (lnksect2): generate warnings for memory overlap
2546         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2547           constseg to set the name of these segments so you can instruct the linker
2548           to place them in banks
2549         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2550         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2551           added code_seg and const_seg to options
2552         * src/SDCCglue.c (emitMaps): use options.const_seg,
2553           (createInterruptVect): put interrupt vectors in segment HOME,
2554           (glue): put HOME before static segment and put the main glue in HOME,
2555           (glue): use options.code_seg
2556         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2557         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2558           these segments so you can instruct the linker to place them in banks
2559           (linkEdit): use code_loc for HOME segment which should be the first
2560           segment in code memory now
2561         * src/SDCCmem.c: fixed more stuff like bug 1238386
2562         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2563           (changePointer): don't change function pointers to code pointers for
2564           banked functions,
2565           (compareType): added exceptional check for banked function pointers
2566         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2567         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2568           after static in code memory
2569         * src/mcs51/gen.c: added aopLiteralLong prototype,
2570           (aopForSym): use getSize for functions,
2571           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2572           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2573           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2574           the segment,
2575           (genPcall): use call for literal function pointers and generate banked
2576           calls over the one trampoline so there's only one place for the user to
2577           modify according to his/hers hardware,
2578           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2579           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2580         * src/mcs51/main.c: added keyword banked,
2581           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2582         * support/Util/SDCCerr.c,
2583         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2584           needed for passing the bank and address to the trampoline
2585         * device/lib/mcs51/crtbank.asm: added for bankswitching
2586         * device/lib/mcs51/Makefile: added crtbank
2587
2588 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2589
2590         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2591           for fields at offset 0 of a struct or union as reported
2592           on 2005-07-07 in the developer mailing list.
2593
2594 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2595
2596         * src/SDCCmem.c: fixed bug 1238386
2597
2598 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2599
2600         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2601           (patch #1144962), added peephole 300, enabled 259.x
2602         * doc/sdccman.lyx: removed screenshot and provided link instead
2603
2604 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2605
2606         * doc/sdccman.lyx: added section about debugging with ddd
2607         * doc/figures/ddd_example.eps: screenshot of debugging session
2608
2609 2005-07-04 Raphael Neider <rneider AT web.de>
2610
2611         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2612           like CODE pointers, fixes #1115683
2613         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2614           call, fixes bugs #1232211, #1228110,
2615           fixed wrong casts to pCodeFlow from pCodeInstructions
2616
2617 2005-07-04 Raphael Neider <rneider AT web.de>
2618
2619         * src/pic/gen.c (popGet): changed assert to allow for
2620           bit operands
2621         * (popGetAddr): changed signature to provide
2622           an additional index, patched all call sites
2623         * (genCmpEq): handle literal-like operands correctly
2624         * (genAddrOf): added sanity checks on __code/__data pointers
2625         * (genAssign): added handling of symbols from __code section
2626         * (gencjne): do not generate code for comparisons whose result
2627           is neither stored nor used, fixes bug #1171114
2628         * (AccLsh, AccRsh): operate on operand instead of WREG
2629         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2630           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2631           by known count
2632         * rewrote complete shift-by-literal logic, commented unused
2633           functions out
2634         * (genConstPointerGet): get multiple bytes (if result size > 1),
2635           fixed handling of non-immediate addresses
2636         * (genPointerGet): handle CODE pointers like CONST pointers
2637         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2638         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2639           operand is to be treated as a literal or not
2640         * (mov2w,genPcall,genCmpEq),
2641           src/pic/genarith.c: use aop_isLitLike() to decide between
2642           literal/register contents
2643         * (addSign): added missing offset
2644         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2645           only emit comment in debug-mode,
2646           use {aop,op}_isLitLike throughout the file
2647         * src/pic/glue.c: fix initializers for pointers (work in progress)
2648         * src/pic/pcode.c (get_op): honor index on _const symbols
2649         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2650         * (dumppBlock): added pCode size estimation
2651         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2652           check for IS_SYMOP before OP_SYMBOL'ing
2653         * fixed indentation, compacted switch-statements
2654         * (allocReg): find free register and allocate it instead of
2655           allocating new registers all the time
2656         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2657           registers as its operands (necessary only for multibyte GETs)
2658
2659 2005-07-01 Raphael Neider <rneider AT web.de>
2660
2661         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2662           debugging .asm-output macros FENTRY + FEXIT
2663         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2664           way... I wonder...
2665         * (emitpComment): NEW, printf to pCode
2666         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2667           offset handling
2668         * (popGetAddr): NEW, variant of popGet to access an immediates
2669           high(er) bytes instead of the n'th byte of memory they reference,
2670           replaced popGet with popGetAddr where neccessary
2671         * (genDataPointerGet): reactivated and fixed implementation
2672         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2673           accesses
2674         * (genDataPointerSet): fixed multibyte assignments
2675         * (genpic14Code): fixed --i-code-in-asm handling
2676         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2677         * (genPlus): fixed index-out-of-bounds error
2678         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2679         * src/pic/ralloc.c: added debugging output macro FENTRY2
2680         * (spillThis): fixed indentation, enbraced for-body for clarity
2681         * (rematStr): commented out as now unused
2682         * (regTypeNum): commented out special spill case (overwrites
2683           arbitrary values)
2684         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2685
2686 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2687
2688         * doc/sdccman.lyx: documented sfr16/sfr32,
2689           added example for using storage class with function pointers
2690         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2691
2692 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2693
2694         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2695         * device/lib/_itoa.c,
2696         * device/lib/_ltoa.c: optimized codesize
2697         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2698           but don't know how to suppress the double warning.
2699         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2700         * support/Util/SDCCerr.c,
2701         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2702
2703 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2704
2705         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2706           fixed old K&R prototypes
2707         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2708         * device/lib/_gptrget.c,
2709         * device/lib/_gptrgetc.c,
2710         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2711           also new versions for small generic pointers and banked generic pointers
2712         * src/port.h: added const_name
2713         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2714         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2715         * src/SDCCcse.c (findPrevIc): check all associative operators
2716         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2717         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2718         * src/SDCCmem.c: updated comments,
2719           set far-space to 0 for pdata, results in optimized code
2720         * src/SDCCmem.h: added macro CONST_NAME
2721         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2722           moving the info into the highest bits, see also gptrget/gptrput
2723         * src/src.dsp: added sdcc.ico to project files
2724         * src/avr/gen.c (genCast): fixed bug 0x%d
2725         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2726         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2727           relation between ptr_type and DCL_TYPE,
2728           (genCast): fixed bug 0x%d
2729         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2730           (CODE)" for const_name
2731         * src/hc08/gen.c (genCast): fixed bug 0x%d
2732         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2733           (hc08_port): added "CONST (CODE)" for const_name
2734         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2735           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2736           between ptr_type and DCL_TYPE,
2737           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2738           operand* and took AOP() inside function so sfr-ness can be checked,
2739           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2740           new prototype,
2741           (genFunction, genEndFunction): optimized stack setup,
2742           (genMinus): optimized for literals with ending zeroes (in bytes),
2743           (genCast): fixed bug 0x%d
2744         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2745           (mcs51_port): added "CONST (CODE)" for const_name
2746         * src/mcs51/peeph.def: made rule 226 more generic
2747         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2748         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2749         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2750         * src/z80/main.c (z80_port): added NULL for const_name,
2751           (gbz80_port): added NULL for const_name
2752         * support/regression/tests/bug663539.c,
2753         * support/regression/tests/sfr16.c: new tests
2754
2755 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2756
2757         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2758
2759 2005-06-24 Raphael Neider <rneider AT web.de>
2760
2761         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2762           corrected typos...
2763         * device/include/pic16/signal.h: added USBIF
2764           and SIG_USB
2765
2766 2005-06-24 Raphael Neider <rneider AT web.de>
2767
2768         * device/lib/pic16/libdev/pic18f2455.c,
2769           device/include/pic16/pic18f2455.h: NEW
2770         * device/include/pic16/pic18fregs.h,
2771           device/lib/pic16/pics.all,
2772           src/pic16/device.c: added 18f2455
2773         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2774           device/include/pic16/{pic18f[68][567].h,usart.h}:
2775           replaced MULTIPLE_USARTS define with more relaible
2776           compatibility sfrs (for USART access)
2777
2778 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2779
2780         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2781           and the output asm file line is printed on two lines.
2782
2783 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2784
2785         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2786           BGT, BLE, BHI, and BLS instructions
2787         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2788           genCmpEq): removed
2789         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2790           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2791           fixes bug #1216342
2792         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2793
2794 2005-06-15 Raphael Neider <rneider AT web.de>
2795
2796         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2797         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2798         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2799           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2800           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2801
2802 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2803
2804         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2805           Marcel Telka in bug #1215704
2806
2807 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2808
2809         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2810           located in shared memory bank.
2811
2812 2005-05-31 Raphael Neider <rneider AT web.de>
2813
2814         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2815           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2816           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2817
2818 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2819
2820         * device/lib/_strncpy.c: fixed the fix
2821
2822 2005-05-26 Raphael Neider <rneider AT web.de>
2823
2824         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2825           initializers with \0, bug #1208187
2826         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2827           intializers with \0, bug #1208187
2828
2829 2005-05-26 Raphael Neider <rneider AT web.de>
2830
2831         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2832           initializers with \0, bug #1208187
2833         * src/pic16/main.c (_process_pragma): added sanity checks
2834           for stack position and size, emit warnings when appropriate
2835
2836 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2837
2838         * device/lib/_strncpy.c: fixed not filling with \0
2839
2840 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2841
2842         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2843           createFunction),
2844         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2845           compound_statement),
2846         * src/SDCCsymt.h,
2847         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2848
2849 2005-05-24 Raphael Neider <rneider AT web.de>
2850
2851         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2852
2853 2005-05-24 Raphael Neider <rneider AT web.de>
2854
2855         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2856           TRISE definitions, closes bug #1162453
2857
2858 2005-05-22 Raphael Neider <rneider AT web.de>
2859
2860         * src/pic16/main.c (_process_pragma): check for missing
2861           arguments to pragmas code and udata
2862         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2863           consistency fixes to match other headers (thanks to Jim Paris)
2864         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2865
2866 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2867
2868         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2869
2870 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2871
2872         * support/regression/tests/bug1198642.c: new test
2873         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2874         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2875         * support/scripts/resource.h,
2876         * support/scripts/resource.rc,
2877         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2878         * support/scripts/sdcc.ico: added 32x32 icon
2879
2880 2005-05-18 Raphael Neider <rneider AT web.de>
2881
2882         * device/lib/pic16/libdev/pic18f*.c,
2883         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2884           keywords to "__sfr" and "__at (X)"
2885         * device/include/pic16/pic18fregs.h: added pic18f4520
2886         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2887           #1203088 (MPLAB compatibility)
2888
2889 2005-05-17 Raphael Neider <rneider AT web.de>
2890
2891         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2892         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2893         * device/lib/pic16/pics.all: added new devices
2894         * src/pic16/device.c: added support for pic18f4520
2895
2896 2005-05-16 Raphael Neider <rneider AT web.de>
2897         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2898         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2899         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2900           convenience function for bit access
2901
2902 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2903
2904         * device/lib/printf_large.c: fixed bug 1193299
2905         * support/regression/tests/bug1057979.c: added test %3.3s
2906
2907 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2908
2909         * device/include/mcs51/8051.h,
2910         * device/include/mcs51/8052.h: made parseable with lint
2911         * device/include/mcs51/lint.h: added include file for (sp)lint
2912         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2913         * doc/cdbfileformat.lyx,
2914         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2915
2916 2005-05-14 Raphael Neider <rneider AT web.de>
2917
2918         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2919         * device/lib/pic16/libc/stdlib/itoa.c (new)
2920         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2921         * device/lib/pic16/libio/Makefile: exclude subdir according to
2922           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2923         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2924         * src/pic16/gen.c (genFunction): prevent annoying warning
2925         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2926           nameclashes on BeOS
2927         * support/cpp2/cppmain.c (cpp_output_string): new
2928         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2929           fixes bug 1116802
2930
2931 2005-05-13 Borut Razem <borut.razem AT siol.net>
2932
2933         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2934
2935 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2936
2937         * .version: changed to version 2.5.1; back to bleeding edge development
2938
2939 2005-05-11 Borut Razem <borut.razem AT siol.net>
2940
2941         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2942           generate PDF version 1.3 documents
2943
2944 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2945
2946         * .version: changed to version 2.5.0
2947
2948 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2949
2950         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2951
2952 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2953
2954         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2955         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2956         well as many smaller updates.
2957         * .version: changed to version 2.5.0-pre1
2958
2959 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2960
2961         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2962
2963 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2964
2965         * support/regression/tests/bug1185672.c: added
2966         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2967           bug 1185672
2968         * src/mcs51/gen.c (genCall): added comments, made it look safer
2969         * src/mcs51/gen.c (genEndFunction): simplified
2970
2971 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2972
2973         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2974
2975 2005-04-14 Borut Razem <borut.razem AT siol.net>
2976
2977         * fixed bug 1045046 - SIGSEGV with really simple code?:
2978           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2979           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2980
2981 2005-04-14 Borut Razem <borut.razem AT siol.net>
2982
2983         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2984           src/pic16/device.h: temporarily disabled experimental #inline pragma
2985           for 2.5.0 release
2986
2987 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2988
2989         * device/include/z80/stdio.h,
2990         * device/include/z80/string.h: removed these highly incomplete files so
2991           SDCC can use the default ones in device/include/
2992
2993 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2994
2995         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2996         gcc warning.
2997         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2998         fix sdcpp warnings.
2999
3000 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3001
3002         * device/include/malloc.h: removed redundant __reentrant prototypes
3003         * device/lib/_mullong.c: added working xstack variant in asm (C version
3004           doesn't pass regression tests)
3005         * device/lib/bpx.c: used __data and made bpx char for mcs51
3006         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3007           (createFunction): fixed bug with xstackPtr
3008         * src/SDCCcse.c: corrected comments
3009         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3010           (killDeadCode, eBBlockFromiCode): removed unused code
3011         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3012           corrected comments
3013         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3014           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3015           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3016           (genModOneByte): fixed warning in MSVC
3017         * src/mcs51/main.c (): added comments
3018         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3019
3020 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3021
3022         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3023
3024 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3025
3026         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3027
3028 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3029
3030         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3031         characters arrays of larger size than the declared one.
3032
3033 2005-04-10 Borut Razem <borut.razem AT siol.net>
3034
3035         * src/pic/gen.c (genInline),
3036           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3037           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3038           (findNextInstruction), (findPrevInstruction),
3039           (findInstructionUsingLabel),
3040           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3041         * src/pic/pcode.c (findLabel): added missing '\n'
3042         * src/src.dsp: added SDCCdwarf2.c to the project
3043
3044 2005-04-09 Borut Razem <borut.razem AT siol.net>
3045
3046         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3047
3048 2005-04-08 Raphael Neider <rneider AT web.de>
3049
3050         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3051           into the chain after a given one) and mergeDefmapSymbols (combine
3052           defmap entries for each symbol per pcode)
3053         * (createDefmap): have defmap entries merged in the end
3054         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3055           a symbol before replacing one access type's symbol, merge symbols in
3056           the end (replacement symbol might already have an entry)
3057         * (assignValnums): keep reference to written WREG intact
3058
3059 2005-04-08 Raphael Neider <rneider AT web.de>
3060
3061         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3062           Alpha)
3063
3064 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3065
3066         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3067         bytes
3068
3069 2005-04-07 Raphael Neider <rneider AT web.de>
3070
3071         * device/include/pic16/usart.h: added compatibility defines for
3072           devices with more than one USART
3073         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3074
3075 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3076
3077         * device/lib/Makefile.in: updated for port specific include
3078
3079 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3080
3081         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3082
3083 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3084
3085         * device/include/8051.h,
3086         * device/include/8052.h,
3087         * device/include/at89S8252.h,
3088         * device/include/at89c55.h,
3089         * device/include/at89x051.h,
3090         * device/include/at89x51.h,
3091         * device/include/at89x52.h,
3092         * device/include/mcs51reg.h,
3093         * device/include/reg51.h,
3094         * device/include/reg764.h,
3095         * device/include/regc515c.h,
3096         * device/include/sab80515.h: (re)moved these 12 files
3097         * device/include/mcs51/8051.h,
3098         * device/include/mcs51/8052.h,
3099         * device/include/mcs51/at89S8252.h,
3100         * device/include/mcs51/at89c55.h,
3101         * device/include/mcs51/at89x051.h,
3102         * device/include/mcs51/at89x51.h,
3103         * device/include/mcs51/at89x52.h,
3104         * device/include/mcs51/mcs51reg.h,
3105         * device/include/mcs51/reg51.h,
3106         * device/include/mcs51/reg764.h,
3107         * device/include/mcs51/regc515c.h,
3108         * device/include/mcs51/sab80515.h: and added them here
3109
3110 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3111
3112         * device/include/stdarg.h: changed SDCC specific keywords to double
3113           underlined form.
3114         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3115           mcs51 and ds390.
3116         * device/include/hc08/mc68hc908gp32.h,
3117         * device/include/hc08/mc68hc908jb8.h,
3118         * device/include/hc08/mc68hc908jkjl.h,
3119         * device/include/hc08/mc68hc908qy.h: fixed comments
3120         * device/include/mcs51/README: updated
3121         * device/include/mcs51/c8051f120.h: added PINRSF
3122         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3123         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3124           amidst code. Also inline is not supported.
3125
3126 2005-04-06 Raphael Neider <rneider AT web.de>
3127
3128         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3129         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3130           callers stack/frame pointers
3131
3132 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3133
3134         * device/include/pic16/usart.h: added, missing in previous commit,
3135         * device/include/pic16/adc.h: fixed typo,
3136         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3137         commit,
3138         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3139         <p18fxxx.inc>
3140         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3141         uninitialized because a bug appears with gplink
3142         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3143         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3144         complains for unrecognised option
3145
3146 2005-04-05 Raphael Neider <rneider AT web.de>
3147
3148         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3149           structs as well (using memcpy)
3150         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3151           on ISRs (GOTO has no label)
3152         * src/pic16/device.h: added OF_OPTIMIZE_DF
3153         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3154           new data flow analysis/optimization
3155         * src/pic16/pcode.c: added (prototypes for and implementation of)
3156           dataflow analysis functions, fixed pCodeInstructions' inCond and
3157           outCond values, made RCALL a branch instruction
3158         * (pic16_unlinkpCode): keep C line if possible
3159         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3160           C line moved if possible
3161         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3162         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3163           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3164         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3165           new flow)
3166         * (pic16_getJumptabpCode): NEW, needed in...
3167         * (LinkFlow): fixed handling of jumptables, calls and conditional
3168           branches
3169         * (pic16_InsertCommentAfter): NEW
3170         * (pic16_pCodeReplace): made verbose and flow preserving
3171         * (AnalyzeFlow): added call to data flow analysis
3172         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3173         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3174         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3175
3176 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3177
3178         * src/SDCCast.c (decorateType): fixed bug #1105626
3179
3180 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3181
3182         * device/include/asm/pic16/features.h,
3183         * pic18f*.h headers,
3184         * device/include/pic16/adc.h,
3185         * device/include/pic16/delay.h,
3186         * device/include/pic16/i2c.h,
3187         * device/include/pic16/malloc.h,
3188         * device/include/pic16/stdio.h,
3189         * device/include/pic16/stdlib.h,
3190         * device/include/pic16/string.h,
3191         * device/lib/pic16/libc/stdio/printf_tiny.c,
3192         * device/lib/pic16/libc/stdio/printf_small.c,
3193         * device/lib/pic16/libc/stdio/strmgpsim.c,
3194         * device/lib/pic16/libc/stdio/strmmssp.c,
3195         * device/lib/pic16/libc/stdio/strmusart.c,
3196         * device/lib/pic16/libc/stdio/vfprintf.c,
3197         * device/lib/pic16/libc/stdlib/ltoa.c,
3198         * device/lib/pic16/libc/stdlib/putchar.c,
3199         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3200         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3201         * device/lib/pic16/libc/stdlib/memchrram.c,
3202         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3203         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3204         * device/lib/pic16/libio/adc/adcbusy.c,
3205         * device/lib/pic16/libio/adc/adcread.c,
3206         * device/lib/pic16/libio/adc/adcsetch.c,
3207         * device/lib/pic16/libio/usart/ubaud.c,
3208         * device/lib/pic16/libio/usart/ubusy.c,
3209         * device/lib/pic16/libio/usart/udrdy.c,
3210         * device/lib/pic16/libio/usart/uopen.c,
3211         * device/lib/pic16/libio/usart/uputc.c,
3212         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3213         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3214         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3215         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3216         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3217         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3218         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3219         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3220         specific keywords to double underlined form,
3221         * device/lib/pic16/libc/Makefile.rules,
3222         * device/lib/pic16/libsdcc/Makefile.rules,
3223         * device/lib/pic16/libm/Makefile,
3224         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3225         to compile with C standard set in Makefile.common
3226         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3227         rand.c and crc.c in compilation process,
3228         * device/lib/pic16/libsdcc/int/divuint.c,
3229         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3230         `c' from signed to unsigned,
3231         * device/lib/pic16/startup/crt0.c,
3232         * device/lib/pic16/startup/crt0i.c,
3233         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3234         keywords to double underlined form, bug fixes in _do_cinit function
3235         which prevented the correct initialization of the .idata segment,
3236         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3237         core to enter a infinite loop
3238         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3239
3240 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3241
3242         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3243
3244 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3245
3246         * device/include/Makefile.in: add support for hc08 subdirectory
3247         * device/include/hc08/: new subdirectory
3248         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3249         Lucas Loizaga, thanks!
3250         * device/include/hc08/mc68hc908qy.h,
3251         * device/include/hc08/mc68hc908gp32.h,
3252         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3253         their own directory. Changed internal macro names to use the compiler
3254         reserved namespace. Changed SDCC specific keywords to double
3255         underlined form.
3256         * device/include/math.h,
3257         * device/include/malloc.h,
3258         * device/include/stdarg.h,
3259         * device/include/stdbool.h
3260         * device/include/string.h,
3261         * device/include/tinibios.h,
3262         * device/include/ds400rom.h,
3263         * device/include/8051.h,
3264         * device/include/8052.h,
3265         * device/include/80c51xa.h,
3266         * device/include/at89c55.h,
3267         * device/include/at89S8252.h,
3268         * device/include/at89x51.h,
3269         * device/include/at89x52.h,
3270         * device/include/ds80c390.h,
3271         * device/include/reg764.h,
3272         * device/include/regc515c.h,
3273         * device/include/sab80515.h,
3274         * device/include/mcs51/c8051f000.h,
3275         * device/include/mcs51/c8051f018.h,
3276         * device/include/mcs51/c8051f020.h,
3277         * device/include/mcs51/c8051f040.h,
3278         * device/include/mcs51/c8051f060.h,
3279         * device/include/mcs51/c8051f120.h,
3280         * device/include/mcs51/c8051f300.h,
3281         * device/include/mcs51/c8051f310.h,
3282         * device/include/mcs51/c8051f320.h,
3283         * device/include/mcs51/c8051f330.h,
3284         * device/include/mcs51/c8051f350.h,
3285         * device/include/z180.h: Changed SDCC specific keywords to double
3286         underlined form.
3287
3288 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3289
3290         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3291         18F4455,
3292         * (pic16_assignConfigWordValue): disable testing of configuration
3293         register value with config mask,
3294         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3295         function with port->fun_prefix,
3296         * (genFunction): when generating a naked interrupt function never
3297         create an absolute segment placed in interrupt vector address, place
3298         the actual interrupt function at IVA instead, when an interrupt
3299         function is generated with unspecified interrupt then do not create
3300         the absolute section,
3301         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3302         code for generating a call to generic pointer get/put function with
3303         a call to function pic16_callGenericPointer(),
3304         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3305         the call to the generic pointer get/put functions with prefixing the
3306         function name with port->fun_prefix,
3307         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3308         * src/pic16/main.c (_process_pragma): prefix function with
3309         port->fun_prefix,
3310         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3311         calling assembler, old 18Fxxxx macro is deprecated,
3312         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3313         PC_ASMDIR in while condition,
3314         * (findInstruction): add PC_ASMDIR in while condition,
3315         * (buildCallTree): prefix main with port->fun_prefix,
3316         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3317         identifier for variable with banked access in instructions BTFSS,
3318         BTFSC, BCF, BSF, BTG
3319         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3320         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3321         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3322         perform optimization when enviroment variable NO_REG_OPT is set,
3323         * (insideLRBlock): NEW, return 1 if register is inside an
3324         INF_LOCALREGS block,
3325         * (RemoveRegFromLRBlock): remove a register that is completely
3326         eliminated by register optimization, but it is still left in local
3327         register store/restore in/from stack block,
3328         * (Remove2pcodes): after removing register, check to see if it
3329         should be removed from local register store/restore in/from stack
3330         block,
3331         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3332         DUMMY_READ_VOLATILE,
3333
3334         * device/include/pic16/adc.h: minor prototype modifications and
3335         update,
3336         * device/include/pic16/malloc.h: added GPL notice various
3337         modifications,
3338         * device/include/pic16/stdint.h: NEW, standard header for ints
3339         * device/include/pic16/delay.h: NEW, header for delay functions,
3340         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3341         delay1mtcy,
3342         * device/include/pic16/signal.h: NEW, header providing helper macros
3343         for implementing signal handlers,
3344         * device/include/pic16/stdio.h: added prototypes for functions,
3345         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3346         prototypes for stdin and stdout, added macro PUTCHAR to
3347         automatically implement putchar function prototype,
3348         * device/include/pic16/usart.h: modified and updated USART library,
3349         * device/lib/pic16/libio/adc/,
3350         * device/lib/pic16/libio/i2c: some modifications to improve library
3351         performance,
3352         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3353         family of functions,
3354         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3355         family of functions and other sources,
3356         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3357         of the PIC18Fxx[28] devices,
3358         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3359         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3360         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3361         _do_cinit function, because the previous failed when local variables
3362         where not placed in the same memory bank,
3363         * device/lib/pic16/libsdcc/char/: various modifications to improve
3364         library performance,
3365         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3366         information on the new functions of the c library and more...
3367
3368 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3369
3370         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3371
3372 2005-03-26 Raphael Neider <rneider AT web.de>
3373
3374         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3375           if condition == CARRY)
3376         * (genCmp): adapted to new genSkipc semantics
3377         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3378           on rIfx (genCmp was broken)
3379
3380 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3381
3382         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3383         * src/z80/main.c (_keywords[]),
3384         * src/SDCCglobal.h (struct options),
3385         * src/SDCC.y,
3386         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3387         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3388         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3389         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3390         always available in leading double underscore form. The C99 support is
3391         mostly missing, but it's a start.
3392         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3393         reserved identifier "__data".
3394
3395 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3396
3397         * src/mcs51/peeph.def: fixed bug 1170013
3398
3399 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3400
3401         * device/include/mcs51reg.h: fixed bug 842007
3402
3403 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3404
3405         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3406         last time.
3407
3408 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3409
3410         * src/port.h (struct PORT),
3411         * src/avr/ralloc.c (avr_assignRegisters),
3412         * src/avr/main.c,
3413         * src/ds390/ralloc.c (ds390_assignRegisters),
3414         * src/ds390/main.c,
3415         * src/hc08/ralloc.c (hc08_assignRegisters),
3416         * src/hc08/main.c,
3417         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3418         * src/mcs51/main.c,
3419         * src/pic/ralloc.c (pic14_assignRegisters),
3420         * src/pic/main.c,
3421         * src/pic16/ralloc.c (pic16_assignRegisters),
3422         * src/pic16/main.c,
3423         * src/xa51/ralloc.c (xa51_assignRegisters),
3424         * src/xa51/main.c,
3425         * src/z80/ralloc.c (z80_assignRegisters),
3426         * src/z80/ralloc.h,
3427         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3428         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3429         * src/SDCCcse.h,
3430         * src/SDCCdflow.c (computeDataFlow),
3431         * src/SDCCdflow.h,
3432         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3433         * src/SDCCloop.h,
3434         * src/SDCCcflow.c (*),
3435         * src/SDCCcflow.h,
3436         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3437         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3438         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3439         immedDom() returning wrong block; probably fixes bug #1160833)
3440
3441 2005-03-20 Borut Razem <borut.razem AT siol.net>
3442
3443         * support/scripts/inc2h.pl: WIN32 port
3444
3445 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3446
3447         * device/lib/makefile.in: added abs.c and labs.c
3448
3449 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3450
3451         * device/include/stdint.h: added
3452         * device/lib/abs.c: added
3453         * device/lib/labs.c: added
3454         * device/include/stdlib.h: added abs() and labs() prototypes
3455         * device/lib/libsdcc.lib: added abs and labs
3456         * device/include/float.h,
3457         * device/lib/_fsmul.c,
3458         * device/lib/printf_fast.c,
3459         * device/lib/printf_tiny.c: updated comments
3460
3461 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3462
3463         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3464         bug #1164313
3465
3466 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3467
3468         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3469         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3470
3471 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3472
3473         * device/lib/printf_large.c: removed inline assembly for portability and
3474           readability. Use printf_fast if speed or size are more important.
3475         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3476         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3477
3478 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3479
3480         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3481         prevent compiler warning
3482
3483 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3484
3485         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3486         moved to level 0 and declared as static. Also they are explicit
3487         placed in access bank. This was necessery because some times they
3488         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3489         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3490         optimizations. Currently only compare to unsigned char is implemented,
3491         * src/pic16/gen.c: added fReturnIdx array,
3492         * (struct resolvedIfx) is moved to gen.h and made public,
3493         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3494         * (aopForSym): added an optimization to directly store in stack of
3495         the operand of a SEND iCode,
3496         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3497         but as registers instead (AOP_REG) using the fReturnIdx array,
3498         * (pic16_freeAsmop): remove the freed register from the
3499         _G.sregsAlloc field,
3500         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3501         a compare of 'WREG',
3502         * (pic16_popGetTempRegCond): changed function prototype, now
3503         function takes also a bitVector argument v which holds the current
3504         set of registers that are allocated for stack access by aopForSym,
3505         registers allocated in aopForSym for accessing stack symbols are not
3506         any more part of the functions usedRegs field,
3507         * (genCall): some times aopOp is called for a stack variable to be
3508         send, aopForSym might perform the push, if this is true make sure
3509         that genCall doesn't push the variable twice by testing _G.resDirect,
3510         * (genFunction): changed testing for unspecified interrupt number
3511         from 256 to INTNO_UNSPEC,
3512         * modified selection scheme of frame pointer generation. Previously
3513         if function did use local registers a frame pointer was generated,
3514         now a frame pointer is generated only if function has arguments
3515         (that need PLUSW2 register access), or has stack arguments, or the
3516         compiler is not instructed to omit the frame pointer,
3517         * (genEndFunction): before restoring local registers that were saved
3518         in the function preamble, also restore the registers that *might*
3519         have been allocated for stack access,
3520         * (genRet): removed some old comments,
3521         * (genCmp, the active (RN's) version): added a call to the
3522         pic16_genCmp_special function to perform the compare with a more
3523         robust and optimized way,
3524         * (genInline): a feature has been added in inline code generation,
3525         which allows a wildcard variable substitution when writing inline
3526         assembly. Code is incomplete and experimental therefore undocumented,
3527         * (genCast): changed order of aopOp for result and right to allow
3528         aopForSym to directly load the result if possible,
3529         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3530         perform an optimized compare on some selected special occasions,
3531         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3532         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3533         generate an IVT any more,
3534         * src/pic16/main.c (pic16_optionsTable): added command line option
3535         --optimize-cmp,
3536         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3537         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3538         macros,
3539         * src/pic16/NOTES: Raphael Neider added in list of active developers
3540         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3541         jumptable_end to prevent bug #,
3542         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3543         inCond and outCond fields,
3544         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3545         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3546         turn off register spilling,
3547         * (packRegsForOneUse): synced with other ports' versions although it
3548         is not used currently,
3549         * (pic16_packRegisters): added an optimization while reading
3550         structure bitfields, some registers may be saved (malloc code is
3551         decreased by 80 bytes)
3552
3553 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3554
3555         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3556         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3557         this can be optimized more?
3558
3559 2005-03-10 Raphael Neider <rneider AT web.de>
3560
3561         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3562           genNearPointerGet): (hopefully) fixed access to bitfields via
3563           pointers (p->bitN = x; and x = p->bitN; failed)
3564
3565 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3566
3567         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3568
3569 2005-03-09 Raphael Neider <rneider AT web.de>
3570
3571         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3572
3573 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3574
3575         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3576         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3577           (regTypeNum): set REG_BIT type if necessary
3578         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3579         * support/regression/tests/critical.c: check bug 1144613
3580
3581 2005-03-02 Raphael Neider <rneider AT web.de>
3582
3583         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3584
3585 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3586
3587         * src/avr/ralloc.c (serialRegAssign),
3588         * src/ds390/ralloc.c (serialRegAssign),
3589         * src/hc08/ralloc.c (serialRegAssign),
3590         * src/mcs51/ralloc.c (serialRegAssign),
3591         * src/pic/ralloc.c (serialRegAssign),
3592         * src/pic16/ralloc.c (serialRegAssign),
3593         * src/xa51/ralloc.c (serialRegAssign),
3594         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3595
3596 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3597
3598         * src/SDCCast.c (decorateType): fixed bug 1124787
3599
3600 2005-02-20 Hubert Sack <sack AT digiplan.de>
3601         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3602
3603         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3604         patch #1121755
3605
3606 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3607
3608         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3609         to keep the correct label reference count when adding/removing references
3610         to labels. A peephole file using this is appended to patch #1144962.
3611
3612 2005-02-14 Raphael Neider <rneider AT web.de>
3613
3614         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3615         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3616         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3617           retrievals of result operand's value on assignment
3618
3619 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3620
3621         * device/include/pic16/string.h: modified prototype for memccpy()
3622         to memccpy(void *, void *, char, size_t)
3623         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3624         check whether to omit frame pointer or not,
3625         * (genInline): convert all occurences of "\n" to LF in inline
3626         assembler blocks, this helps formatting the inline text,
3627         * (pic16_loadFSR0): modified prototype,
3628         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3629         removed some 8051 legacy code,
3630         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3631         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3632         before allocating temporary registers in functions,
3633
3634 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3635
3636         * support/regression/tests/bitvars.c: corrected the "fix"
3637
3638 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3639
3640         * support/regression/tests/bitvars.c,
3641         * support/regression/tests/bitwise.c,
3642         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3643
3644 2005-02-10 Raphael Neider <rneider AT web.de>
3645
3646         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3647           different size for Alpha
3648         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3649
3650 2005-02-09 Raphael Neider <rneider AT web.de>
3651
3652         * src/SDCC.lex(doPragma) : save and restore warning options as well
3653           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3654         * have #pragma less_pedantic set the errorlevel to WARNING
3655           (fixes #1117001)
3656         * (cloneOptimize) : fixed wrong malloc's size
3657         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3658           facilitate correct handling of #pragma (save|restore)
3659
3660 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3661
3662         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3663
3664 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3665
3666         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3667
3668 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3669
3670         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3671
3672 2005-02-02 Raphael Neider <rneider AT web.de>
3673
3674         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3675         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3676         * (pic16_storeForReturn): fixed to allow returning function pointers
3677         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3678         * device/include/pic16/{stddef.h,stdbool.h}: added
3679
3680 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3681
3682         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3683
3684 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3685
3686         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3687         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3688          appeared to be required
3689
3690 2005-01-31 Borut Razem <borut.razem AT siol.net>
3691
3692         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3693           include/mcs51 and include/z80 directories to the package
3694
3695 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3696
3697         * src/hc08/gen.c (genFunction): fixed bug #1112752
3698
3699 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3700
3701         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3702
3703 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3704
3705         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3706
3707 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3708
3709         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3710
3711 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3712
3713         * device/include/c8051fxxx.h: removed these 6 files
3714         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3715
3716 2005-01-26 Raphael Neider <rneider AT web.de>
3717
3718         * src/pic16/gen.c (genAssign): fixed assignment from longs
3719           in codespace (were cut to three bytes)
3720         * (genDummyRead): implemented (except for CODESPACE...),
3721           fixed bug #1108575
3722         * src/pic16/glue.c (emitStatistics): beautified
3723         * device/lib/pic16/libm/Makefile: added include path
3724
3725 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3726
3727         * src/z80/gen.c (aopPut): fixed bug #1103902
3728
3729 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3730
3731         * device/lib/expf.c: fixed bug #1095792
3732
3733 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3734
3735         * device/lib/pic16/libm: added Math library sources
3736
3737 2005-01-24 Raphael Neider <rneider AT web.de>
3738
3739         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3740           to enable upcast to pCodeOpReg2 (there is no type tag to
3741           differenciate the two and pic16_popGet2p cast into PCOR2)
3742         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3743           (sizeof(sectNames) changed to sizeof(sectName))
3744           Both patches fix segfaults under MinGW.
3745
3746 2005-01-23 Raphael Neider <rneider AT web.de>
3747
3748         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3749           Safe_[mc]?alloc()'ed variables
3750         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3751           of (byte sized) temporaries (assign them to WREG for now)
3752         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3753           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3754           this might fix SIGSEGVs on MinGW...
3755         * src/SDCCopt.c (killDeadCode): restored original behaviour
3756           (volatile operands might get thrown away though)
3757
3758 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3759
3760         * src/pic16/gen.c: fixed bug #1106975,
3761         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3762         pointer update, INTCON is saved, global interrupts are disabled and
3763         restored after updateing TOS.
3764         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3765         * added function attribute 'shadowregs' to take advantage of shadow
3766         registers,
3767         * added function attribute 'wparam' as an alternative to the wparam
3768         pragma,
3769         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3770         user declares a non-ISR function as 'shadowregs',
3771         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3772
3773 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3774
3775         * .version: bumped version number to 2.4.8
3776         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3777         pic16 port,
3778         * device/lib/pic16/libio/i2c/: I2C module support library,
3779         * device/include/pic16/i2c.h: I2C support library header,
3780         * device/lib/pic16/libc/stdio/: standard IO support sources,
3781         * (printf_small.c): printf_small() source, supports float print,
3782         * (printf_tiny.c): printf_tiny() source, does not support floats,
3783         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3784         enable global optimizations for entire library source, other
3785         Makefiles in the source tree are also modified to reflect this,
3786         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3787         function,
3788         * doc/sdccman.lyx: updated to reflect new changes,
3789         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3790         sym->onStack if-case,
3791         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3792         sbit, idata, _idata, xdata, _xdata,
3793         * added pragma library, to link an external library, (see doc),
3794         * removed command line options, --pomit-config-words, --pomit-ivt,
3795         --pleave-reset-vector,
3796         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3797         when calling assembler to reflect memory model used, also define
3798         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3799         reflect stack model used,
3800         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3801         on stack return NULL,
3802
3803 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3804
3805         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3806           of the operands is volatile. Fixes #1020220
3807
3808 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3809
3810         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3811         * (OptimizeRegUsage): make sure that there is really no other flow where
3812           the first pCode is used
3813
3814 2005-01-22 Raphael Neider <rneider AT web.de>
3815
3816         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3817           to fix #1106967 (pCode->seq are not set up correctly)
3818
3819 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3820
3821         * src/SDCCglue.c (glue): make sure code area is declared before the
3822         static initialization area.
3823
3824 2005-01-21 Raphael Neider <rneider AT web.de>
3825
3826         * device/lib/Makefile.in: fixed test for pic16 install dir
3827         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3828           optimizations
3829         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3830           added --optimize-goto compiler switch and pragma wparam documentation
3831         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3832         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3833           and PRODH closing bug #1071770 (peephole optimizer)
3834
3835 2005-01-19 Raphael Neider <rneider AT web.de>
3836
3837         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3838           cmdLine buffers (used when calling sdcpp...) are large enough
3839           (MAX_PATH=256 truncates arguments leading to system halts when
3840           used in MinGW...)
3841         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3842         * (genUminus): rewritten to for efficiency
3843         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3844           used uninitialized in some cases)
3845         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3846           copy the third byte from the int -- now assumes 0x80 (data memory)
3847         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3848           operands (genAddLit expects the iCode's operands to swapped as
3849           well), fixed leftover bytes (crashed for short left operands)
3850         * (pic16_genMinusDec): performance improvements, removed false
3851           PIC14 emitSKPNCs
3852         * (pic16_genMinus): fixed to cope with differently sized operands
3853         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3854           for --obanksel > 1
3855         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3856         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3857           new banksel optimization
3858         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3859           analysis for temporary registers (segfaults...)
3860         * src/pic16/peeph.def: added rule
3861
3862 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3863
3864         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3865         which converts a float number to its ASCII representation
3866         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3867         functions to convert the fractional and integer part of a float to ASCII,
3868         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3869         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3870         ram
3871         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3872         _STATMEM macros,
3873         * device/include/pic16/adc.h: added GPL info,
3874         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3875         a pCodeOp as tested operand,
3876         * (genNearPointerGet): optimized bit testing, does not use
3877         intermediate register for bit value, test directly instead with
3878         BTFSS, BTFSC, works only for single bits,
3879         * (genpic16Code): dump the name of the iCode in the asm,
3880         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3881         renamed to pic16_decodeOp,
3882         * (serialRegAssign): do not allocate a temporary register for iCode
3883         sequences that test a single bit for 1/0
3884
3885 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3886
3887         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3888         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3889         access stack and frame pointers. They are initially assigned to
3890         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3891         accessing SFRs. Updated all occurences of modification of stack or
3892         frame pointer in gen.c and pcode.c,
3893         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3894         assigning of a literal value to pointers,
3895         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3896         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3897         selected
3898
3899 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3900
3901         * doc/sdccman.lyx: update documentation about stack pragma, added
3902         some info for stack memory models
3903
3904 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3905
3906         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3907
3908 2005-01-08 Raphael Neider <rneider AT web.de>
3909
3910         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3911           udata sections to fix bug #1097823
3912
3913 2005-01-05 Raphael Neider <rneider AT web.de>
3914
3915         * src/pic16/gen.c (genGenericShift): added handling of differently
3916           sized left operand and result
3917
3918 2005-01-04 Raphael Neider <rneider AT web.de>
3919
3920         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3921         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3922           to hold the condition bit)
3923         * added new version of genCmp (old code available via #define)
3924         * added new version of genShiftLeft/genShiftRight in a generic
3925           way, now supports shifting by negative values
3926         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3927           shiftCount (expected by genGenericShift)
3928         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3929         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3930           dump
3931         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3932           is an invalid literal too...)
3933
3934 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3935
3936         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3937         from Raphael Neider,
3938         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3939         for 8-bit literals. This fixes some literal operands which are sign
3940         extended to 16-bits ints when instruction needs only 8-bits.
3941
3942 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3943
3944         * device/lib/logf.c: added mcs51 assembly version
3945         * device/lib/expf.c: added mcs51 assembly version
3946         * device/lib/_logexpf.c: new shared asm code for expf and logf
3947         * device/include/math.h: add defines for assembly math library
3948         * device/lib/Makefile.in: build new _logexpf.c
3949         * device/lib/libfloat.lib: use new _logexpf.c
3950
3951 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3952
3953         * src/pic/device.c
3954         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3955           device types which have less than 0x7f registers.
3956
3957 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3958
3959         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3960
3961 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3962
3963         * device/lib/printf_fast.c: only build on supported arch.
3964         * device/lib/printf_tiny.c: only build on supported arch.
3965         * device/lib/printf_fast_f.c: only build if asm float lib
3966         * device/lib/_fsget1arg.c: only build if asm float lib
3967         * device/lib/_fsget2args.c: only build if asm float lib
3968         * device/lib/_fsnormalize.c: only build if asm float lib
3969         * device/lib/_fsreturnval.c: only build if asm float lib
3970         * device/lib/_fsrshift.c: only build if asm float lib
3971         * device/lib/_fsswapargs.c: only build if asm float lib
3972         * device/include/stdio.h: don't provide print_fast,
3973           print_fast_f, print_tiny prototypes if --xstack used
3974
3975 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3976
3977         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3978         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3979           to the SOURCES
3980
3981 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3982
3983         * device/lib/printf_fast_f.c: same as printf_fast, but
3984           with floating point enabled
3985         * device/lib/printf_fast.c: minor tweaks
3986         * device/include/stdio.h: add printf_fast_f
3987
3988 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3989
3990         * src/SDCCmain.c: make --float-reent default for mcs51
3991         * device/lib/_fsadd.c: added mcs51 assembly version
3992         * device/lib/_fssub.c: added mcs51 assembly version
3993         * device/lib/_fsmul.c: added mcs51 assembly version
3994         * device/lib/_fsdiv.c: added mcs51 assembly version
3995         * device/lib/_fseq.c: added mcs51 assembly version
3996         * device/lib/_fsneq.c: added mcs51 assembly version
3997         * device/lib/_fsgt.c: added mcs51 assembly version
3998         * device/lib/_fslt.c: added mcs51 assembly version
3999         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
4000         * device/lib/Makefile.in: add _fscmp to build
4001         * device/lib/libfloat.lib: add _fscmp to build
4002
4003 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4004
4005         * device/lib/_fs2slong.c: added mcs51 assembly version
4006         * device/lib/_fs2sint.c: added mcs51 assembly version
4007         * device/lib/_fs2schar.c: added mcs51 assembly version
4008         * device/lib/_fs2ulong.c: added mcs51 assembly version
4009         * device/lib/_fs2uint.c: added mcs51 assembly version
4010         * device/lib/_fs2uchar.c: added mcs51 assembly version
4011         * device/lib/_slong2fs.c: added mcs51 assembly version
4012         * device/lib/_sint2fs.c: added mcs51 assembly version
4013         * device/lib/_schar2fs.c: added mcs51 assembly version
4014         * device/lib/_ulong2fs.c: added mcs51 assembly version
4015         * device/lib/_uint2fs.c: added mcs51 assembly version
4016         * device/lib/_uchar2fs.c: added mcs51 assembly version
4017         * device/include/float.h: added #define to select asm vs c
4018
4019 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4020
4021         * device/lib/printf_fast.c: improvements to float output
4022         * device/include/float.h: add defines for assembly float library
4023         * device/lib/_fsget1arg.c: receive 1 float arg
4024         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4025         * device/lib/_fsnormalize.c: normalize a float
4026         * device/lib/_fsreturnval.c: return float, various helper routines
4027         * device/lib/_fsrshift.c: right shift a float's mantissa
4028         * device/lib/_fsswapargs.c: swap 2 floats
4029         * device/lib/Makefile.in: build these 6 new files for mcs51
4030         * device/lib/libfloat.lib: add these 6 files to the library
4031
4032 2004-12-26 Borut Razem <borut.razem AT siol.net>
4033
4034         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4035           built by gcc 3.4.2
4036
4037 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4038
4039         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4040           and fully reentrant and register bank neutral.
4041         * device/lib/printf_fast.c: added float (not enabled by default),
4042           added compact/slower integer (also not enabled by default),
4043           improved size/speed of fast integer code, other minor changes
4044         * device/include/stdio.h, device/lib/Makefile.in,
4045           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4046
4047 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4048
4049         * src/pic16/pcode.c: declaring variables other than at the start of a
4050           block is not supported in C by VC6.
4051
4052 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4053
4054         * applied a previous patch from Raphael Neider that wasn't included
4055         in the previous commits, which fixes infinite loops within jumptable
4056         improvements,
4057         * made some fixes that previous patches introduced
4058
4059 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4060
4061         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4062         that fixes an issue with AOP_PCODE asmop's offset,
4063         * (pic16_popCopyReg): update instance field too,
4064         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4065         function of pic port,
4066         * (genCmp, genAnd, genAssign),
4067         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4068
4069 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4070
4071         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4072         variables initial values to idata section,
4073         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4074         variables in some functions. This utilizes parmBytes field of iCode
4075         structure to hold the offset of the variable in stack. (might be
4076         able to use the stack field too?)
4077         * applied patch from Raphael Neider # ### , # ###
4078         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4079         variable initial values in idata section,
4080         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4081         for static variables with initial value
4082         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4083         applied fix in while loop from Raphael Neider.
4084
4085 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4086
4087         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4088         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4089         * src/ds390/ralloc.c (serialRegAssign): spill bits
4090         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4091         * support/Util/SDCCerr.c,
4092         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4093         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4094         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4095
4096 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4097
4098         * device/include/sdcc-lib.h: inserted LGPL, added includes
4099           asm/ds390/features.h and asm/mcs51/features.h
4100         * device/include/asm/default/features.h,
4101         * device/include/asm/gbz80/features.h,
4102         * device/include/asm/z80/features.h: added empty _AUTOMEM
4103           and _STATMEM
4104         * device/include/asm/ds390/features.h,
4105         * device/include/asm/mcs51/features.h: added files with defines for
4106           _AUTOMEM and _STATMEM indicating automatic and static storage class
4107         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4108         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4109         * src/SDCCicode.c (geniCodeCast),
4110         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4111         * src/SDCCloop.c (loopInduction): removed unused variable lr
4112         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4113           to convertToFcall to include char modulo (RFE 1065037), added check
4114           if left operand is unsigned and use abs of literal value
4115         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4116           as it doesn't work after conversion from peephole.def to peephole.rul
4117         * src/mcs51/gen.c (toBoolean): added check for size,
4118           (genModOneByte): optimized code for signed char modulo a literal
4119           power of 2 (thanks to Hubert Sack),
4120           (genRRC): removed unnecessary "clr c",
4121           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4122         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4123           jump optimization,
4124           swapped rules 256.c and 256.d,
4125           extended 256.d by using new multiple checks (thanks Erik),
4126           added rules 256.e and 256.f,
4127           updated rule 261.a and 261.b to new generated code
4128         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4129
4130 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4131
4132         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4133           induction related bugs, including first part of bug #1074377
4134
4135 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4136
4137         * applied patch from bug-report #1076292,
4138         * applied patches for genAnd and Goto-optimizations for Raphael
4139         Neider,
4140         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4141         dump a less iCode information,
4142         * src/pic16/device.h (pic16_options_t): added field debgen,
4143         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4144         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4145         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4146         puclic,
4147         * (various functions): added macros FENTRY and FENTRY2 to functions,
4148         to emit function prologue,
4149         * (various functions): fixed indentation,
4150         * (genNearPointerGet): fixed loading of FSR0,
4151         * (genPackBits): applied patch from Raphael Neider to fix updating
4152         of FSR0 and touching only the modified bits,
4153         * src/pic16/genarith.c (various functions): added macros FENTRY to
4154         emit function prologue in comments,
4155         * src/pic16/pcode.h: added functions debugf2, debugf3,
4156         * src/pic16/ralloc.c: partial fix for packForPush caused
4157         segmentation fault,
4158
4159 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4160
4161         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4162           <stsp AT users.sourceforge.net> with reversed byte order
4163         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4164
4165 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4166
4167         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4168           bug #1074377
4169         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4170         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4171
4172 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4173
4174         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4175
4176 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4177
4178         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4179           conditions,
4180           (setFromConditionArgs): friendly operand parser for peephole rules,
4181           (operandBaseName, operandsNotRelated): new peephole condition
4182           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4183           architecture specific register naming into account, handles n-way
4184           comparisons, and supports quoted literals
4185         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4186
4187 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4188
4189         * src/mcs51/peeph.def: fixed bug #1076940
4190
4191 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4192
4193         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4194
4195 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4196
4197         Adding support for replacing ljmps with sjmps in jumptables
4198         generated for switch statements. For now you need to set the
4199         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4200         Now 4 algorithms for mcs51 jumptable generation are used:
4201         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4202         addresses loaded pc-relative for up to 112 cases and stack-pushing
4203         target addresses loaded with offset from dptr for up to 256 cases.
4204
4205         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4206         * src/mcs51/main.c: adapted constants for switch table generation
4207         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4208
4209 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4210
4211         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4212         * support/regression/tests/bug1057979.c: added test for bug 1073386
4213
4214 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4215
4216         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4217         compilers
4218
4219 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4220
4221         * src/pic16/device.h,
4222         * src/pic16/genarith.c,
4223         * src/pic16/glue.c,
4224         * src/pic16/main.c,
4225         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4226
4227 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4228
4229         Large cummulative patch for pic16 port.
4230         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4231         to call when a stack overflow occurs,
4232         * (malloc.h): added CVS Id tag,
4233         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4234         variable,
4235         * added libc directory. The current version of LibC contains string
4236         functions, ctype functions and macros and some functions of the
4237         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4238         be extensively tested in the future. Standard disclaimer here.
4239         Library is not automatically build yet. But one can build it by
4240         invoking 'make' inside the libc directory.
4241         * added ADC library under libio. Preliminary version yet.
4242
4243         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4244         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4245         aopForRemat() now and not by pic16_aopOp(),
4246         * (pic16_popGetTempReg): removed warning messgae when allocating
4247         temporary registers, its a buggy feature and will be removed,
4248         * (pic16_popGet): set register instance field in AOP_CRY,
4249         * (pic16_outBitC): fixed for results in size greater than 1,
4250         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4251         * (pic16_storeForReturn): optimized return of 0,
4252         * (genCmp): experimental code for new genCmp which uses PIC18's
4253         special compare&skip instructions. Initial tests fail some times
4254         with variables grater than 1 byte in size, so new code is disabled,
4255         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4256         a single bit,
4257         * (genCast): began a fix to optimize the casting of a bit to another
4258         bit, now assigning a bitfield to another bitfield will fail, sorry,
4259         * src/pic16/main.c: disabled the use of lr-support feature,
4260         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4261         * added some function prototypes, added function _debugf prototype,
4262         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4263         bits with offset (case PO_GPR_BIT),
4264         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4265         command line,
4266         * (isBankInstruction): modified to return 0 for no banking instruction,
4267         and 1 for banking instruction,
4268         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4269         caused stop processing pCodes after a inline assembly block,
4270         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4271         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4272         registers when it shouldn't,
4273         * src/pic16/ralloc.c (allocReg): add preliminary support for
4274         supporting a limited set of temporary registers,
4275
4276 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4277
4278         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4279           genDataPointerSet): ensure assignments always copy in MSB to LSB
4280           order,
4281           (loadRegFromAop): recognize CLRH optimization,
4282           (genFunction): optimize RECEIVE iCodes in reentrant functions
4283
4284 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4285
4286         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4287           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4288           selected.
4289         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4290         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4291           contiguous with data
4292
4293 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4294
4295         * device/lib/_gptrget.c (_gptrget),
4296         * device/lib/_gptrgetc.c (_gptrgetc),
4297         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4298           instead of sjmp to ret
4299         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4300           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4301
4302 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4303
4304         * .version: bumped version to 2.4.7
4305         * device/lib/_gptrget.c (_gptrget): is now _naked
4306         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4307         * device/lib/_gptrput.c (_gptrput): is now _naked
4308         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4309           (createFunction): fixed xstack
4310         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4311         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4312           or bit either,
4313           (geniCodeCritical): store original interrupt state in an iTemp bit
4314           var unless stack-auto
4315         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4316         * src/SDCCmain.c (setIncludePath): added include/target to search path
4317         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4318         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4319           prototype,
4320           (processFuncArgs): put bit vars in bit area
4321         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4322           unsaveRBank): fixed xstack,
4323           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4324           (genFunction, genEndFunction): fixed xstack,
4325           (genAssign): optimization don't walk backwards through mem
4326         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4327         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4328         * support/regression/Makefile: also make library (for stack-auto) when
4329           making "all" and added "test-mcs51-xstack-auto"
4330         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4331         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4332         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4333         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4334         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4335           make-library by MAKE_LIBRARY
4336         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4337           regression tests for xstack
4338         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4339         * support/regression/tests/critical.c: test for critical on mcs51
4340
4341 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4342
4343         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4344           built version of sdcc instead of installed version
4345
4346 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4347
4348         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4349         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4350           vprintf.c now
4351         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4352         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4353           WARNING: remove device/lib/build/z80/printf.o by hand when
4354           updating from previous build!
4355         * device/lib/z80/printf.c: updated comment
4356         * support/regression/tests/bug1057979.c: test all ports now
4357         * support/regression/tests/bug1065458.c: file added
4358
4359 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4360
4361         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4362           *_start and *_end symbols for static functions
4363
4364 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4365
4366         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4367           and search crt0.o in all library paths,
4368           (setIncludePath): proper handling of --nostdinc,
4369           (setLibPath): proper handling of --nostdlib
4370         * support/regression/Makefile,
4371         * support/regression/ports/ds390/spec.mk,
4372         * support/regression/ports/gbz80/spec.mk,
4373         * support/regression/ports/hc08/spec.mk,
4374         * support/regression/ports/mcs51/spec.mk,
4375         * support/regression/ports/mcs51-large/spec.mk,
4376         * support/regression/ports/mcs51-stack-auto/spec.mk,
4377         * support/regression/ports/z80/spec.mk: use include and lib files from
4378           built version of sdcc instead of installed version
4379         * doc/sdccman.lyx: fixed typo in --nostdinc
4380
4381 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4382
4383         * src/pic/pcode.c,
4384         * src/pic/device.c,
4385         * src/pic/ralloc.c,
4386         * src/pic/gen.c : added support to generate code for struct bit fields.
4387
4388 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4389
4390         * as/xa51/xa_version.h,
4391         * device/include/errno.h,
4392         * device/include/regc515c.h,
4393         * device/lib/_itoa.c,
4394         * device/lib/_ltoa.c,
4395         * device/lib/ser_ir_cts_rts.c,
4396         * sim/ucsim/xa.src/glob.cc,
4397         * sim/ucsim/xa.src/inst_gen.cc,
4398         * sim/ucsim/xa.src/xa_bit.cc,
4399         * sim/ucsim/xa.src/xa_sfr.cc,
4400         * sim/ucsim/z80.src/inst_dd.cc,
4401         * sim/ucsim/z80.src/inst_fdcb.cc,
4402         * support/scripts/keil2sdcc.pl,
4403         * src/pic16/pic16.dsp,
4404         * src/pic16/pic16a.dsp: corrected cvs line endings
4405         * device/lib/printf_large.c: fixed bug 1057979
4406         * src/pic16/gen.c: fixed non-C standard code
4407         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4408         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4409         * support/regression/ports/mcs51/support.c: reload T1 asap
4410         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4411           pdata use and clear idata startup behaviour
4412         * support/regression/tests/bug1057979.c: added
4413
4414 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4415
4416         * device/examples/ds390/ow390/ad26.h,
4417         * device/examples/ds390/ow390/cnt1d.h,
4418         * device/examples/ds390/ow390/crcutil.c,
4419         * device/examples/ds390/ow390/ownet.h,
4420         * device/examples/ds390/ow390/owsesu.c,
4421         * device/examples/ds390/ow390/swt12.h,
4422         * device/examples/ds390/ow390/swtoper.c,
4423         * device/examples/ds390/ow390/temp10.h,
4424         * device/examples/ds390/ow390/thermodl.c,
4425         * device/examples/ds390/tinitalk/tinitalk.dsp,
4426         * device/examples/ds390/tinitalk/tinitalk.dsw,
4427         * device/examples/mcs51/clock/hw.h,
4428         * device/examples/mcs51/simple2/go.bat,
4429         * device/examples/serialcomm/windows/serial.h,
4430         * device/examples/xa51/dummy.c,
4431         * device/examples/xa51/hello.c,
4432         * device/include/80c51xa.h,
4433         * device/include/at89x051.h: corrected cvs line endings
4434
4435 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4436
4437         * src/pic16/main.c (options): added command line --gstack, to trace
4438         stack over/under flows,
4439         * added pragma 'wparam' to allow passing first byte of function
4440         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4441         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4442         call to __gstack_test function and sets up the symbol as extern,
4443         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4444         * popaop): added call to pic16_testStackOverflow,
4445         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4446         wparamList list,
4447         * (genCall, genPcall): now all parameters are passed via stack
4448         except in functions that are pass to wparam pragma in which WREG is
4449         used too,
4450         * (genPcall): REENTRANT flag is checked to see if variable prototype
4451         contains reentrant keyword, don't call a non-reentrant function, via
4452         a reentrant function pointer or vice versa, functions are never
4453         passed via WREG,
4454         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4455         D.Winkler,
4456         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4457         SIGSEGV when accessing a NULL register stucture,
4458         * (pic16_printGPointerType): modified to handle UPPER modifier for
4459         function initializers, changed prototype of function to simpler one,
4460         * (pic16_printIvalFuncPtr): check to see if function is already
4461         added in externs list,
4462         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4463         optimized a move from W to SFR with a move to the same register
4464         later after a CALL,
4465         * device/lib/pic16/debug: NEW directory, contains debug features
4466         which are enabled when linking with libdebug.lib, currently command
4467         line option --gstack enables stack pointer tracing for over/under
4468         flow, corresponding sources are in debug/gstack
4469
4470 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4471
4472         * doc/sdccman.lyx: updated SDCC version,
4473         * (PIC16 port): update list of command line options,
4474         * src/pic16/device.h (structure pic16_options_t): added field gstack
4475         to enable stack overflow tracing on push/pops,
4476         * src/pic16/device.c (statistics structure): added statistics
4477         structure,
4478         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4479         pic16_dump_int_registers): increase statistics counters for each
4480         * variable which is encountered
4481         * (pic16_dump_usection): emit each .udata variable to its own udata
4482         section,
4483         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4484         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4485         parameters via stack, otherwise use old scheme,
4486         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4487         assembler output file,
4488         * src/pic16/main.c: added command line options --gstack to enable
4489         push/pop tracing for stack overflow,
4490         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4491         instructions): added size of each instruction,
4492         * (pic16_countInstruction): estimate size of instructions in
4493         the_pFile list, inline assembly blocks are not counted,
4494         * (pic16_FixRegisterBanking): trace previous register usage, when
4495         banksel optimizations is greater than 0, don't emit a redudant
4496         banksel directive,
4497
4498 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4499
4500         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4501         * src/pic16/ralloc.c : applied same fix for pic16.
4502         * src/pic/gen.c : tidied it up a little.
4503
4504 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4505
4506         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4507         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4508
4509 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4510
4511         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4512
4513 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4514
4515         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4516         non-reentrant function __modsint in the interrupt function (thus
4517         corrupting math operations during serial I/O)
4518         * device/lib/ser_ir.c: as above, changed buffersize
4519         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4520         256.c,d for zeroing
4521         * doc/Makefile: added option -t for rsync
4522
4523 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4524
4525         * src/SDCCast.h (struct ast),
4526         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4527
4528 2004-10-20 Borut Razem <borut.razem AT siol.net>
4529
4530         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4531         package
4532
4533 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4534
4535         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4536         makefile targets,
4537         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4538         support functions to replace long sequences of MOVFF's from access
4539         bank registers to stack and vice versa,
4540         * src/pic16/device.h: added new field opt_flags, where optimization
4541         flags can be set to enable certain features,
4542         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4543         * pBlock, (genFunction, genEndFunction): surroung loop for
4544         saving/loading used registers in stack with PC_INFO pCodes,
4545         INF_LREGS. Code in between can then be optimized by pCode optimizer
4546         to support function calls,
4547         * (genDataPointerSet): fixed bug which loaded float fields in
4548         structures with corrupt data,
4549         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4550         in a standard way debug info on stderr. Feature used for developing
4551         and debugging only,
4552         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4553         obsolete chunks of code,
4554         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4555         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4556         * pic16/src/pcode.c (pic16_newpCodeInfo,
4557         * (pic16_newpCodeOpLocalRegs),
4558         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4559         feature,
4560         * (pic16_pCodeConstString): printing of the initial value of a
4561         symbol as a comment is inhibited since parsing was already done by
4562         copyStr and output is corrupt,
4563         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4564
4565 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4566
4567         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4568
4569 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4570
4571         * as/mcs51/lkarea.c: removed old K&R style,
4572           (lnksect): changed check on boundary error,
4573           (lnksect2): changed check on boundary error,
4574           (lnksect2): extend XSTK to end of page if size = 1
4575         * as/mcs51/lkmain.c: removed old K&R style,
4576           (Areas51): create l_IRAM symbol
4577         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4578         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4579           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4580         * device/lib/_mullong.c: added version to be compiled with xstack
4581         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4582         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4583         * device/lib/mcs51/crtxstack.asm: fixed comment
4584         * src/SDCCglue.c: maxInterrupts defaults to 0,
4585           (emitMaps): added pdata,
4586           (createInterruptVect): (re)moved default,
4587           (glue): added pdata,
4588           (glue): moved __start__xstack to XSTK with default size 1
4589         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4590           and options.float_rent when options.stackAuto is set,
4591           (linkEdit): only write XDATA_NAME if provided on command line
4592         * src/SDCCmem.h,
4593         * src/SDCCmem.c: added pdata
4594         * src/port.h: added pdata_name to PORT
4595         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4596           (saveRegisters, unsaveRegisters): removed usage of B,
4597           (genMinus): fixed accumulator clash,
4598           (genJumpTab): added comment, this needs another look
4599         * src/mcs51/gen.c: added check for "B in use" paranoia,
4600           added pushB() and popB()
4601         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4602           chance
4603         * src/avr/main.c,
4604         * src/ds390/main.c,
4605         * src/hc08/main.c,
4606         * src/mcs51/main.c,
4607         * src/pic/main.c,
4608         * src/pic16/main.c,
4609         * src/xa51/main.c,
4610         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4611           added PSEG (PAG,XDATA) or NULL to port specifier
4612         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4613         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4614           (_mcs51_genInitStartup): removed __start__xstack equ,
4615           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4616         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4617         * src/z80/gen.c (_rleAppend): fixed warnings
4618         * support/regression/tests/zeropad.c: added pdata test
4619         * .version: bumped to 2.4.6
4620
4621 2004-10-17 Borut Razem <borut.razem AT siol.net>
4622
4623         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4624         as a part of nightly build
4625
4626 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4627
4628         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4629         WREG holds the first byte function parameters,
4630         * (aopForSym): take special case for symbols which are in FARSPACE
4631         but in CODESPACE too,
4632         * (assignResultValue): modified to take into account _G.useWreg,
4633         * (genCall): don't use wreg for parameter passing when function is
4634         declared as reentrant, too, added optimization INCF to stack
4635         pointer when stack parameter count is 1,
4636         * (genFunction, genEndFunction): refurnished and fixed to not using
4637         wreg for passing parameters when function has varargs or is
4638         reentrant, fixed bug with symbol name compare for generating
4639         functions in absolute address,
4640         * (pic16_storeForReturn): refurnished,
4641         * (genCmp): began writing a new version of the function, not ready
4642         yet, therefore it is disabled,
4643         * (genAssign): do not read code memory when assigning a function to
4644         a pointer function,
4645         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4646         array of characters, not pointer,
4647         * (pic16initialComments): in debug mode emit an .ident directive for
4648         the assembler,
4649         * (_process_pragma): emit a new warning type (internal to pic16)
4650         when setting stack to default length, emit a similar warning when
4651         placing a function at absolute address and address is not word aligned
4652         * (_pic16_parseOptions): added 'return TRUE' statement,
4653         * (_pic16_linkEdit): if compiling a source, then add the source's
4654         file object, first in the list of objects to link,
4655
4656 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4657
4658         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4659         * src/pic/main.c : removed VC warning.
4660         * src/pic/gen.c : changed comment.
4661
4662 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4663
4664         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4665         reference to a deprecated symbol _GPTRREG was causing failure to
4666         link. Thanks G. M. Gallant for the info.
4667
4668 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4669
4670         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4671         comments for Bugs item #954788.
4672
4673 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4674
4675         * src/pic16/device.c (pic16_dump_gsection,
4676         * pic16_groupRegistersInSection): handle symbols declared to be in
4677         access bank differently,
4678         * src/pic16/gen.c (struct _G): added field resDirect,
4679         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4680         send values read from stack directly to result and don't allocate
4681         temporary values,
4682         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4683         same registers,
4684         * (pic16_sameRegsOfs): NEW,
4685         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4686         free because they were not allocated from temporary pool,
4687         * pic16_popRegFromString): workaround to fix a problem with
4688         allocating variables twice or never,
4689         * (genGenPointerGet): using PRODL instead of FSR0H,
4690         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4691         instead of FSR0H,
4692         * (genAssign): take advantage of the _G.resDirect flag,
4693         * (genCast): around line 11844, use mov2f instead of directly
4694         MOVFF'ing between operands to account for literal values,
4695         * src/pic16/genutils.c: some new debug functions for gpsim have been
4696         added,
4697         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4698         float with integer part only,
4699         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4700         place variables in access bank
4701         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4702         updated sources to reflect recent changes in gen.c
4703
4704 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4705
4706         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4707         sources that searched for headers in installation path, now the
4708         device/include/pic16 is used,
4709         * src/pic16/glue.c (pic16glue),
4710         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4711         .line directives if not in debug mode, this suppresses assembler's
4712         warnings for ignored directives
4713
4714 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4715
4716         * src/port.h: made reset_regparms prototype void parameter explicit.
4717         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4718         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4719         * doc/sdccman.lyx: documented warning disabling and how to use
4720           printf_large to make it print floats.
4721         * device/include/stdbool.h: NEW
4722         * device/lib/_atof.c,
4723         * device/lib/_divuint.c,
4724         * device/lib/_divulong.c,
4725         * device/lib/expf.c,
4726         * device/lib/printf_large.c,
4727         * device/lib/sincosf.c,
4728         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4729         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4730           a completely reentrant lib.
4731
4732 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4733
4734         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4735         * device/include/pic16/stdio.h: fixed bug with colon
4736
4737 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4738
4739         * device/include/pic16/stdio.h,
4740         * device/include/pic16/stdlib.h,
4741         * device/include/pic16/math.h: NEW
4742         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4743         declared as _naked to reduce overhead
4744         * device/lib/Makefile.in (target port-specific-objects-pic16):
4745         changed * to *.* so to ignore the CVS directory,
4746         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4747         stacked variables back in stack,
4748         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4749         corruption
4750
4751 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4752
4753         * .version: bumped version number to 2.4.5
4754         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4755         * support/Util/SDCCerr.c (messages structure): added entry for
4756         W_POSSBUG2
4757
4758         Large cumulative patch for pic16 port and libraries.
4759         * device/include/pic16/sdcc-lib.h,
4760         * device/include/pic16/stdarg.h,
4761         * device/include/asm/pic16/features.h,
4762         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4763         * device/include/pic16/float.h: changes reentrant keyword with
4764         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4765         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4766         updated target build-libraries to include objects from gptr,
4767         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4768         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4769         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4770         all function headings,
4771         * src/SDCCmain.c: added global parameter userIncDirsSet,
4772         * (parseCmdLine): when option -I is encountered add directory to
4773         userIncDirsSet too,
4774         * src/version.awk: added space between control and long,
4775         * src/pic16/NOTES: added some notes for the port,
4776         * src/pic16/gen.c: added prototype for mov2fp function,
4777         * (fReturnpic16[]): properly named return value registers,
4778         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4779         * (aopForSym): added code to handle symbols with onStack flag set,
4780         symbols onStack are allocated PTRSIZE bytes,
4781         * (aopFreeAsmop): handles special case where asmops are stack objects,
4782         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4783         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4784         added argument lock to trace flaws in allocating temporary registers
4785         when developing port,
4786         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4787         * (pic16_popRegFromString): reenabled allocating a direct register
4788         from string,
4789         * (assignResultValue): various beautifications,
4790         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4791         referenced function argument,
4792         * (genIpush): reenabled to allow stacked arguments, handles only
4793         ic->parmPush iCodes,
4794         * (genCall, genPcall): major changes to allow for variable argument
4795         functions, fixed a bug with falsely restoring stack pointer after
4796         returning from call,
4797         * (genFunction): pending code for critical function,
4798         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4799         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4800         * (genNearPointerGet): fixed bug with indirect reading, was always
4801         reading from INDF0
4802         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4803         pointers,
4804         * (genAddrOf): rewrote code to take address of a stacked function parameter
4805         * (genCast): fixed casting to generic pointer type,
4806         * src/pic16/gen.h: added AOP_STA,
4807         * (struct asmop): added field stk,
4808         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4809         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4810         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4811         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4812         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4813         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4814         generic pointers,
4815         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4816         and library paths,
4817         * (pic16_port structure): generic pointer size is set to 3,
4818         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4819         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4820         compiler warning,
4821         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4822         operand is an iTemp,
4823
4824 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4825
4826         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4827         * debugger/mcs51/simi.c: addapt new syntax of s51
4828
4829 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4830
4831         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4832         * src/pic16/pcode.c: commented out some calls to free() in order to
4833         fix bug #989576,
4834
4835 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4836
4837         * src/SDCCicode.h,
4838         * src/SDCCicode.c (isiCodeInFunctionCall),
4839         * src/avr/ralloc.c (selectSpil),
4840         * src/pic/ralloc.c (selectSpil),
4841         * src/pic16/ralloc.c (selectSpil),
4842         * src/ds390/ralloc.c (selectSpil),
4843         * src/hc08/ralloc.c (selectSpil),
4844         * src/xa51/ralloc.c (selectSpil),
4845         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4846         stack in the middle of a function call sequence (fixes bug #1020268)
4847         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4848         costs associated with the minimum switch case.
4849
4850 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4851
4852         * src/SDCC.lex: fixed bug #1030549
4853
4854 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4855
4856         * src/SDCCcse.h (struct cseDef),
4857         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4858         over a function call if the CSE is derived from a symbol whose
4859         address has been taken (fixes bug #1029883)
4860         * support/regression/tests/bug-1029883: a new regression test for
4861         this bug
4862
4863 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4864
4865         * src/hc08/gen.c (emitinline): fixed bug #1029778
4866         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4867         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4868         and starts toward RFE #905167)
4869
4870 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4871
4872         * src/pic16/gen.c (mov2f): New function to move an operand to
4873         another without considering if it is a literal or a register,
4874         * (pic16_sameRegs): don't check if they are both AOP_REG,
4875         * (AccRsh): removed andmask=0 lines,
4876         * (genLeftShift): duplicated to be improved in future versions,
4877         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4878         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4879         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4880         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4881         * (insertBankSwitch): fixed inserting banksel directives algorithm
4882         for instructions that follow a skip instruction, this fixes a report
4883         for broken subtraction code generation,
4884         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4885         iCode is a left op, just in case result and right share the same
4886         registers
4887
4888 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4889
4890         * src/hc08/main.c,
4891         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4892         preservation of HX
4893         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4894         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4895         on 2004-09-12; it was buggy
4896
4897 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4898
4899         * src/SDCCsymt.h: removed RESULT_CHECK
4900         * src/SDCCast.c,
4901         * src/SDCCglue.c,
4902         * src/SDCCval.c,
4903         * src/pic/glue.c,
4904         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4905
4906 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4907
4908         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4909         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4910         configuration values no more rejected by compiler, they are assigned
4911         to configuration registers with a warning message instead,
4912         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4913         the for-loop so last conf register is emitted too,
4914         * (_pic16_initPaths): link library libsdcc.lib by default,
4915         * (_hasNativeMulFor): modified test for multiplication according to
4916         Raphael Neider's remarks. Integer multiplication is also done with
4917         support functions,
4918         * device/include/pic16/pic18fregs.h: corrected type error in while
4919         testing and including 18f6720 header file
4920
4921 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4922
4923         * src/pic16/device.h (pic16_options): removed field use_crt,
4924         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4925         until an optimization to handle single bits is added,
4926         * (pic16_loadFSR0): moved before genUnpackBits,
4927         * (genAnd): some white lines removed,
4928         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4929         leave_reset flags in pic16_options when using crt modules,
4930
4931 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4932
4933         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4934           for bugs 898889 & 979599. Also used some safer print instructions.
4935
4936 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4937
4938         * src/pic16/device.h (pic16_options_t): added field use_crt,
4939         crt_name, no_crt,
4940         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4941         catch a probable future bug,
4942         * src/pic16/gen.c: aopIdx function commented out,
4943         * (genAssign): commented out old code which used aopIdx,
4944         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4945         code, added if conditionals to take into account the --use-crt
4946         command line options,
4947         * src/pic16/main.c (pic16_optionsTable): added new command line
4948         options, --use-crt= and --no-crt,
4949         * (_pic16_linkEdit): now the proper crt object is added in the
4950         linker command line except than when --no-crt is specified,
4951         * src/pic16/pcode.c,
4952         * src/pic16/pcode.h: added some structures and functions for a new
4953         optimization scheme to compansate for instruction overhead between
4954         same iCodes, this scheme is currently under development and is not
4955         working in any way,
4956         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4957         to && operator,
4958         * device/lib/pic16/startup/crt0i.c,
4959         * device/lib/pic16/startup/crt0iz.c: added global char variable
4960         __uflags to force the generation of an idata section
4961
4962 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4963
4964         * doc/Makefile,
4965         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4966         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4967
4968 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4969
4970         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4971         Frieder) and clarified the default code optimization mode
4972
4973 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4974
4975         * src/SDCC.lex (doPragma, process_pragma),
4976         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4977         "opt_code_size", and "opt_code_balanced"
4978         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4979         regrouped options by category, added support for category headers
4980         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4981         and "--opt-code-size"
4982         * doc/sdccman.lyx: documented these new options and pragmas
4983         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4984         preference into account
4985
4986 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4987
4988         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4989           geniCodePreDec): Fixed bug 904237 by generating a warning
4990         * src/SDCCerr.h,
4991         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4992
4993 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4994
4995         * src/pic/device.c : When no max ram set validate full memory range.
4996         * src/pic/pcode.c,
4997         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4998
4999 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5000
5001         * device/lib/_gptrget.c,
5002         * device/lib/_gptrput.c: updated comment
5003         * device/lib/calloc.c,
5004         * device/lib/free.c,
5005         * device/lib/malloc.c,
5006         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5007         * src/SDCCcse.c (cseBBlock),
5008         * src/SDCCicode.c (printOperand, geniCodeArray),
5009         * src/SDCCicode.h (struct operand): fixed bug 868103
5010         * support/regression/tests/bug-868103.c: added
5011         * src/SDCCast.c (searchLitOp),
5012         * src/SDCCcse.h (struct cseDef),
5013         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5014         * src/SDCCicode.h (struct operand),
5015         * src/SDCCsymt.h (struct sym_link),
5016         * src/avr/gen.c (hasInc),
5017         * src/ds390/gen.c (hasInc),
5018         * src/hc08/gen.c (genPlusIncr, hasInc),
5019         * src/mcs51/gen.c (hasInc),
5020         * src/pic16/glue.c (pic16_printIvalChar),
5021         * src/pic16/ralloc.c (regWithIdx),
5022         * src/xa51/gen.c (hasInc) : removed warnings
5023         * src/SDCCast.c (createBlock): added comment ???
5024         * src/hc08/ralloc.c: updated comments
5025
5026 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5027
5028         * doc/sdccman.lyx: updated section on switch statements, added
5029         section about semaphore locking
5030         * doc/Makefile: added option -info for latex2html
5031         * device/lib/_gptrget.c,
5032         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5033
5034 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5035
5036         * src/pic/device.h,
5037         * src/pic/device.c,
5038         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5039          maxram is less than 0x100.
5040
5041 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5042
5043         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5044
5045 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5046
5047         * src/port.h,
5048         * src/mcs51/main.c,
5049         * src/ds390/main.c,
5050         * src/z80/main.c,
5051         * src/hc08/main.c,
5052         * src/pic/main.c,
5053         * src/pic16/main.c,
5054         * src/avr/main.c,
5055         * src/xa51/main.c
5056         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5057         a jump table is the best form for a switch statement, including
5058         automatic insertion of missing cases to make the case range
5059         continuous. Developed in collaboration with Frieder Ferlemann.
5060
5061 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5062
5063         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5064         accumulator result if it needs sign extension
5065
5066 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5067
5068         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5069
5070 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5071
5072         * device/lib/gbz80/printf.c,
5073         * device/lib/z80/printf.c: removed define for NULL
5074
5075 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5076
5077         * as/xa51/xa_link.c,
5078         * device/examples/ds390/ow390/ad26.c,
5079         * device/examples/ds390/ow390/cnt1d.c,
5080         * device/examples/ds390/ow390/counter.c,
5081         * device/examples/ds390/ow390/ds2480.h,
5082         * device/examples/ds390/ow390/ds2480ut.c,
5083         * device/examples/ds390/ow390/findtype.c,
5084         * device/examples/ds390/ow390/gethumd.c,
5085         * device/examples/ds390/ow390/owllu.c,
5086         * device/examples/ds390/ow390/ownetu.c,
5087         * device/examples/ds390/ow390/swt12.c,
5088         * device/examples/ds390/ow390/swtloop.c,
5089         * device/examples/ds390/ow390/temp.c,
5090         * device/examples/ds390/ow390/temp10.c,
5091         * device/examples/ds390/ow390/thermo21.c,
5092         * device/examples/ds390/ow390/tinilnk.c,
5093         * device/examples/ds390/ow390/tstfind.c,
5094         * device/examples/serialcomm/windows/serial.cpp,
5095         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5096         * device/include/reg51.h: fixed line endings for cvs
5097
5098 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5099
5100         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5101         packRegsForAccUse, packRegisters): new accumulator register
5102         packing algorithm
5103         * support/regression/ports/hc08/support.c (_putchar): suppress
5104         warning of unused variable
5105         * src/SDCCicode.c: added SWAP entry to codeTable
5106
5107 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5108
5109         * device/lib/sprintf.c: forgot to add this file before previous commit
5110
5111 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5112
5113         * src/pic16/gen.c (genPackBits): added operand right in function
5114         parameters, load result directly if p_type is POINTER (that is
5115         called by genNearPointerSet)
5116         * (genUnPackBits): added operand left in function parameters,
5117         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5118         FSR0 if accessing bitfields,
5119
5120 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5121
5122         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5123           _print_format; updated printf, sprintf, vsprintf
5124         * device/include/asm/default/features.h: corrected comment/define
5125         * device/lib/Makefile.in: added sprintf.c
5126         * device/lib/libsdcc.lib: added sprintf module
5127         * device/lib/printf_large.c,
5128         * device/lib/vprintf.c,
5129         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5130           into these 3 files
5131         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5132         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5133         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5134           hc08 test
5135         * support/regression/tests/zeropad.c: define idata as data for hc08
5136
5137 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5138
5139         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5140         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5141         labels are referenced at least once (even if a reference is not found)
5142         * src/hc08/gen.c (emitcode): set isComment flag for comments
5143         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5144         loads), rules 6a..6b (optimize jumps to return)
5145
5146 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5147
5148         * device/lib/acosf.c (acosf),
5149         * device/lib/asinf.c (asinf),
5150         * device/lib/atanf.c (atanf),
5151         * device/lib/ceilf.c (ceilf),
5152         * device/lib/cosf.c (cosf),
5153         * device/lib/coshf.c (coshf),
5154         * device/lib/cotf.c (cotf),
5155         * device/lib/fabsf.c (fabsf),
5156         * device/lib/floorf.c (floorf),
5157         * device/lib/log10f.c (log10f),
5158         * device/lib/logf.c (logf),
5159         * device/lib/sinf.c (sinf),
5160         * device/lib/sinhf.c (sinhf),
5161         * device/lib/sqrtf.c (sqrtf),
5162         * device/lib/tanf.c (tanf),
5163         * device/lib/tanhf.c (tanhf),
5164         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5165         replaced all instances of "reentrant" in the library functions
5166         defined in math.h with this macro.
5167         * support/regression/tests/float_trans.c: reenabled test for hc08
5168
5169 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5170
5171         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5172         erroneously deleted
5173
5174 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5175
5176         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5177         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5178         multi-byte volatile operands are used
5179         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5180         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5181         initialization to area GSINIT0 so that it would always precede
5182         any static initializers in GSINIT
5183         * support/regression/tests/zeropad.c: fixed idata define for hc08
5184         * support/regression/tests/bug-927659.c,
5185         * support/regression/tests/float_trans.c: disabled tests for hc08
5186         pending missing library routines
5187         * .version: increased version number to 2.4.4 - hc08 port now passes
5188         regression tests
5189
5190
5191 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5192
5193         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5194         * Makefile.common.in,
5195         * as/Makefile,
5196         * as/hc08/Makefile.in,
5197         * as/mcs51/Makefile.in,
5198         * as/z80/Makefile.in,
5199         * debugger/mcs51/Makefile.in,
5200         * device/include/Makefile.in,
5201         * device/lib/Makefile.in,
5202         * doc/Makefile,
5203         * link/Makefile,
5204         * link/z80/Makefile.in,
5205         * packihx/Makefile.in,
5206         * sim/ucsim/main_in.mk,
5207         * sim/ucsim/avr.src/Makefile.in,
5208         * sim/ucsim/doc/Makefile.in,
5209         * sim/ucsim/gui.src/serio.src/Makefile.in,
5210         * sim/ucsim/hc08.src/Makefile.in,
5211         * sim/ucsim/s51.src/Makefile.in,
5212         * sim/ucsim/xa.src/Makefile.in,
5213         * sim/ucsim/z80.src/Makefile.in,
5214         * src/Makefile.in,
5215         * support/cpp2/Makefile.in,
5216         * support/librarian/Makefile,
5217         * support/makebin/Makefile: added DESTDIR to the install path proposed
5218         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5219         * doc/sdccman.lyx: added DESTDIR documentation
5220
5221 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5222
5223         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5224         instruction for interrupt handlers, use fast returns when returning
5225         from high priority interrupts
5226
5227 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5228
5229         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5230         code generation
5231         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5232         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5233         bugs, ported much of Bernhard's code from mcs51
5234         * src/mcs51/gen.c (genSend),
5235         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5236         than one when calling a reentrant function
5237         * device/lib/_mullong.c: defined an alternate struct layout for big
5238         endian ports (hc08)
5239
5240 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5241
5242         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5243         test
5244
5245 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5246
5247         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5248         are sane and complete before asking the port its prefered parameter
5249         passing method (fixes bug #1017633)
5250         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5251         and _ret3
5252
5253 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5254
5255         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5256         problem in bitfields >= 8 bits.
5257
5258 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5259
5260         * src/SDCCsymt.c: undid changes that were not meant to be committed
5261
5262 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5263
5264         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5265
5266 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5267
5268         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5269           copied and wrong bit got inverted
5270
5271 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5272
5273         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5274         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5275         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5276         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5277         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5278         assignments to bitfields at known addresses
5279         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5280         reads from bitfields at known addresses
5281         * src/hc08/ralloc.c (packRegisters),
5282         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5283         genhc08Code): optimize pointer get values used as conditionals
5284         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5285         and branch
5286
5287 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5288
5289         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5290         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5291         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5292         as conditionals
5293
5294 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5295
5296         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5297
5298 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5299
5300         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5301         related problems
5302
5303 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5304
5305         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5306
5307 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5308
5309         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5310         mcs51 port
5311
5312 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5313
5314         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5315
5316 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5317
5318         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5319         cases use more compact code.
5320
5321 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5322
5323         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5324
5325 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5326
5327         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5328
5329 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5330
5331         * src/SDCCsymt.h,
5332         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5333         parameter of changePointer() from symbol* to sym_link*
5334         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5335         * src/SDCCsymt.c (compareType): void* type is castable to other
5336         pointers, but not necesarily an exact match.
5337         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5338         is no longer blindly treated as an exact match.
5339         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5340
5341 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5342
5343         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5344
5345 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5346
5347         * src/pic/gen.c,
5348         * src/pic/pcode.c,
5349         * src/pic/ralloc.h,
5350         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5351
5352 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5353
5354         * src/pic/device.c,
5355         * src/pic/device.h,
5356         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5357
5358 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5359
5360         * src/mcs51/gen.c (emitcode): fixed bug #992819
5361
5362 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5363
5364         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5365           there's no need to make it worse
5366
5367 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5368
5369         * src/mcs51/ralloc.c (deassignLR),
5370         * src/ds390/ralloc.c (deassignLR),
5371         * src/hc08/ralloc.c (deassignLR),
5372         * src/z80/ralloc.c (deassignLR),
5373         * src/pic/ralloc.c (deassignLR),
5374         * src/pic16/ralloc.c (deassignLR),
5375         * src/avr/ralloc.c (deassignLR),
5376         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5377         rlivePoint): fixed another part of bug #971834
5378
5379 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5380
5381         * src/z80/main.c: enabled "critical" keyword
5382         * src/z80/mappings.i,
5383         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5384         functions (fixes bug #979646)
5385         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5386
5387 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5388
5389         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5390           such as c:\mydir.
5391
5392 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5393
5394         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5395           doesn't disable too much optimizations
5396
5397 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5398
5399         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5400
5401 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5402
5403         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5404
5405 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5406
5407         * src/pic/gen.c tidied up tabs
5408         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5409         * src/pic/main.c tidied up tabs
5410         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5411         * src/pic/pcoderegs.c tidied up tabs
5412         * src/pic/ralloc.c tidied up tabs
5413
5414 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5415
5416         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5417         to S_FIXED for pic16 port and when symbol is not in level 0,
5418         allocate for S_REGISTER storage class and pic16 port, too,
5419         * src/pic16/device.h: prototype for checkSym,
5420         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5421         * (pic16_assignConfigWordValue): test the value and the mask to
5422         validate that the value is suitable for the configuration word,
5423         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5424         collect extern declared symbols, don't emit symbol twice, check
5425         first if symbol is in publics set first,
5426         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5427         * added command line '--fstack' which enables an experimental
5428         feature for stack access, too buggy to be used yet...
5429         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5430         * (pic16_allocDirReg): when register has storage class S_REGISTER
5431         allocate in pic16_dynAccessRegs,
5432         * device/include/pic16/pic18f????.h: modified configuration word
5433         naming convention, words started as CONFIG0H but should be CONFIG1H
5434
5435 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5436
5437         * device/include/mcs51reg.h: fixed bug 970993
5438
5439 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5440
5441         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5442         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5443         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5444         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5445         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5446         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5447           error/warning numbers,
5448           added function setWarningDisabled()
5449         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5450         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5451           _memcmp.c _memmove.c calloc.c realloc.c free.c
5452         * support/regression/tests/malloc.c: added tests for new functionality
5453         * support/regression/tests/zeropad.c: added tests for truncated initializers
5454           and initialized char arrays starting with '\x0'
5455         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5456
5457 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5458
5459         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5460
5461 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5462
5463         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5464         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5465         peephole 177.e. Thanks to anonymous
5466
5467 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5468
5469         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5470         function isn't used in the source but referenced as a
5471         variable initializer then declare it as extern in .asm file
5472
5473 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5474
5475         * .version: increased version number to 2.4.3
5476
5477         Adding version extension according to ChangeLog CVS revision
5478         * src/Makefile.in (target all): added dependency 'version.h'
5479         * (rule version.h): added rule to create version.h from ChangeLog,
5480         * (rule dep): added dependency version.h,
5481         * src/version.awk: AWK script to create version.h
5482         * src/SDCCdwarf2.c (dwWriteModule),
5483         * src/SDCCglue.c (initialComments),
5484         * src/SDCCmain.c (printVersionInfo): modified to write after
5485         version string the version extension number,
5486         * src/SDCCutil.c: included "version.h"
5487         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5488         number,
5489         * src/SDCCutil.h: added prototype for getBuildNumber
5490
5491         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5492         includeDirsSet, too,
5493         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5494         const char [] is found in function prototype...
5495
5496         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5497         moving to WREG with source is already in WREG,
5498         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5499         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5500         * (aopForSym): stack'ed symbols are partially supported, added
5501         if-clause to support symbols in FARSPACE,
5502         * (sameRegs): added test for AOP_ACC to see if registers are same,
5503         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5504         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5505         * (pic16_popRegFromString): will not allocate a new register if it
5506         doesn't find one by name, bug may have introduced...
5507         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5508         * (genIpush): revived to use pic16 port's stack,
5509         * (genAddrOf): added incomplete case for stack'ed operand,
5510         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5511         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5512         can handle multibyte operands,
5513         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5514         * (pic16initialComments): added message for MPLAB compatibility
5515         mode enabled,
5516         * src/pic16/main.h: prototype for pic16_mplab_comp,
5517         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5518         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5519         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5520         because of increased complexity of procedure,
5521         * (_process_pragma): stack pragma changed to format 'stack pos len',
5522         emit symbol '_stack_end' to conform with gplink,
5523         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5524         to search for register,
5525         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5526         PO_GPR_REGISTER,
5527         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5528         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5529         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5530         case for PO_GPR_REGISTER,
5531         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5532         dies, the new era is ahead !...
5533         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5534         pic16_dynInternalRegs,
5535         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5536         * (pic16_allocDirReg): minor optimizations and bug fixes,
5537         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5538
5539         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5540         load stack and frame pointer with address of 'stack_end' symbol
5541
5542 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5543
5544         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5545         without source code but only variable initializers
5546
5547 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5548
5549         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5550         external are not declared as extern to reduce overhead while linking
5551
5552 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5553
5554         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5555
5556 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5557
5558         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5559           Yee Keat for the patch
5560         * src/SDCCast.c (decorateType): fixed bug #979599
5561         * src/ds390/gen.h: removed local fReturnSizeDS390
5562         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5563         * src/ds390/gen.c (genAnd, genOr, genXor),
5564         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5565
5566 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5567
5568         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5569         add relFilesSet to $3, manipulate $2 to handle linking of object
5570         files without source files in command line,
5571         * device/include/pic16 (all headers): added ID location macros,
5572         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5573         entries for ID location bytes,
5574         * (pic16_assignIdByteValue): NEW,
5575         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5576         added field dumpcalltree to pic16_options_t,
5577         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5578         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5579         emitting rFalseIfx label after check_carry label,
5580         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5581         pic16_emitDIRegs), NEW
5582         * (pic16glue): dump .calltree file when option --calltree found,
5583         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5584         * (_pic16_genAssemblerPreamble): emit ID locations after
5585         configuration registers,
5586         * (pic16_linkCmd): modifications of the link command,
5587         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5588         * (pic16_pCodeInitRegisters): don't init stack registers,
5589         * (pic16_findPrevInstruction): fixed bug,
5590         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5591         bug with immediate registers,
5592         * (buildCallTree): traces stack push and pop,
5593         * (pct2): dump also stack usage for each function,
5594         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5595         * (pic16_allocDirReg): various modifications,
5596         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5597         fixed to 1,
5598
5599 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5600
5601         * src/pic16/pcode.c: removed buggy double colon
5602
5603 2004-07-01 Borut Razem <borut.razem AT siol.net>
5604
5605         * support/scripts/sdcc.nsi: added include/pic16 to setup
5606
5607 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5608
5609         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5610         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5611         target 'clean',
5612         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5613         specific command line arguments. Also added sample lkr script
5614         for placing a variable at a specific memory bank.
5615         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5616         at a specific memory bank,
5617         * (pic16_dump_isection): fixed bug which caused string literals to
5618         be omitted when dumping idata section,
5619         * (pic16_groupRegistersInSection): added code to handle registers
5620         in specific memory banks,
5621         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5622         public, all references are renamed too,
5623         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5624         AOP_DPTR2,
5625         * (pic16_storeForReturn): added case to handle when dest is WREG,
5626         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5627         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5628         pic16_rel_udata, check to see if that register is marked as being
5629         a member of a specific memory bank,
5630         * (pic16_printIvalCharPtr): added code to add string literals either
5631         to code or the idata sections,
5632         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5633         also accept the 'udata' pragma,
5634         * src/pic16/main.h: new structure types sectName and sectSym
5635         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5636         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5637         * (pic16_findPrevInstruction): fixed, it returned nothing,
5638         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5639         instruction combinations,
5640         * (pic16_FixRegisterBanking): heavily reorganised,
5641         * (pic16_AnalyzeBanking): if generating banksel directives is
5642         disabled, then don't call FixRegisterBanking at all,
5643         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5644         completely removed,
5645         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5646
5647 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5648
5649         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5650         Phuah Yee Keat <yk.phuah AT nestac.com>
5651
5652 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5653
5654         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5655         correctly the IVT even if it is relocated to some other location
5656
5657 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5658
5659         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5660         * device/include/pic16/pic18f2220.h: NEW,
5661         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5662         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5663         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5664         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5665         nodefaultlibs, ivt_loc is the location of the interrupt vector
5666         table, and nodefaultlibs signs that default libraries should not be
5667         linked in link stage,
5668         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5669         according to --ivt-loc argument,
5670         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5671         when pragma stack is found,
5672
5673 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5674
5675         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5676         256 (range check), 257 (do while), 258.a-f (bit banging
5677         f.e. on 3-wire SPI bus)
5678
5679 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5680
5681         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5682         variables used exclusively within a loop
5683
5684 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5685
5686         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5687
5688 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5689
5690         * src/SDCClrange.c (computeClash): fixed bug #971834
5691
5692 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5693
5694         * src/mcs51/gen.c (genCmp): fixed bug #975903
5695         * src/hc08/gen.c (operandsEqu),
5696         * src/ds390/gen.c (operandsEqu),
5697         * src/z80/gen.c (operandsEqu),
5698         * src/pic/gen.c (operandsEqu),
5699         * src/pic16/gen.c (operandsEqu),
5700         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5701         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5702
5703 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5704
5705         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5706
5707 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5708
5709         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5710         default case in switch statement,
5711         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5712         to eliminate problem with initialisation of pointers, but problem
5713         still exists,
5714         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5715         * (emitStaticSegment): removed various lines emitting debug info,
5716         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5717         added processor registers for utilizing EEPROM,
5718         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5719         configurable and set 8
5720
5721 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5722
5723         * .version: increased version number to 2.4.2,
5724
5725         Cumulative patch for pic16 port
5726         * src/pic16/device.c: changed scheme to dump initial values for
5727         variables in idata segment, all print_idata* functions were removed,
5728         now the pic16_printIval* will be called,
5729         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5730         * _pic16_printPointerType, pic16_printPointerType,
5731         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5732         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5733         NEW, similar to the respective functions in SDCCglue.c,
5734         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5735         way, emitting hex bytes,
5736         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5737
5738 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5739
5740         * src/avr/ralloc.c (serialRegAssign),
5741         * src/xa51/ralloc.c (serialRegAssign),
5742         * src/pic/ralloc.c (serialRegAssign),
5743         * src/pic16/ralloc.c (serialRegAssign),
5744         * src/hc08/ralloc.c (serialRegAssign),
5745         * src/z80/ralloc.c (serialRegAssign),
5746         * src/ds390/ralloc.c (serialRegAssign),
5747         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5748
5749 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5750
5751         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5752         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5753
5754 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5755
5756         Cumulative patch for pic16 port:
5757         * src/pic16/device.h (typedef PIC16_device) modified fields for
5758         defining microcontrollers,
5759         * src/pic16/device.c: added new info for all devices in Pics16 array,
5760         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5761         to be optimised out by the pCode optimiser,
5762         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5763         specially, bug reported by G.M. Gallant,
5764         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5765         as force'd so that cannot be optimised out by pCode optimiser,
5766         * src/pic16/pcode.c,
5767         * src/pic16/pcodepeeph.c,
5768         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5769         they are disabled by default, but can be enabled explicit with
5770         command argument --denable-peeps, for testing,
5771         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5772         --pomit-ivt in COMPILE_FLAGS
5773
5774 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5775
5776         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5777           compilation on MSVC
5778
5779 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5780
5781         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5782
5783 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5784
5785         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5786         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5787
5788 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5789
5790         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5791         would only assign 0x300001 register.
5792
5793 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5794
5795         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5796         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5797
5798 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5799
5800         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5801         for ds80c400
5802         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5803         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5804         added peephole 254 (left shift), 255 (jump table)
5805
5806 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5807
5808         * device/lib/Makefile.in: removed comment line with model-pic16,
5809         * (target port-specific-objects-pic16): the libraries and objects
5810         are copied to the build directory form the device/lib/pic16/bin
5811         directory
5812
5813         Cumulative patch concerning pic16 port:
5814         * library directory has been re-organized,
5815         * added support for PIC18F1220,
5816         * added headers and library sources for chips 18f1220,18f6520,
5817         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5818
5819         * configuration registers setting has changed, now each supported
5820         device has a complete description of the registers it uses,
5821         * all initialisations are moved to idata sections, these section
5822         can be absolute or relocatable,
5823         * fixed initialisation of codespace variables,
5824         * fixed warning about PCLATU and gpsim,
5825         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5826         * (genAssign): use table reads when assigning from variables in codespace,
5827         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5828         char/int variables placed in codespace,
5829         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5830         registers set in .asm file, no need for --pomit-config-words anymore,
5831         * (pic16glue): some 8051 legacy segments are commented out
5832         (to be removed completely),
5833         * added support for alternative assembler and linker with --asm=
5834         and --link= command line arguments,
5835         * peepholes are disabled automatically in the port, no need to
5836         specify on command line,
5837         * port supports natively char/int/long multiplication, but converts
5838         all divisions to support functions,
5839         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5840         to the file set in variable $2,
5841         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5842         strings in ASCII format and not in hex,
5843         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5844         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5845         allocate proper register if iCodes aren't temporary,
5846
5847 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5848
5849         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5850
5851 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5852
5853         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5854         is commented out
5855
5856 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5857
5858         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5859         computed address is reused
5860         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5861         multi-byte bitfields
5862
5863 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5864
5865         * src/z80/gen.c: (genArrayInit): must check for pointers too
5866
5867 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5868
5869         * support/regression/tests/zeropad.c: never meant to commit the
5870           nestedstruct test: removed, added check for GCC version
5871
5872 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5873
5874         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5875         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5876         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5877           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5878           bugs 928906 and 954082 half-empty initializers
5879         * src/SDCCsymt.h,
5880         * src/SDCCsymt.c (getAllocSize): added for above fix
5881         * src/z80/gen.c (genArrayInit): fixed bug 741044
5882         * support/regression/tests/zeropad.c: added tests
5883
5884 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5885
5886         * src/pic16/device.c (pic16_dump_section): corrected bug which
5887         caused some symbols of the libraries to be misplaced
5888
5889 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5890
5891         * src/pic16/glue.c,
5892         * src/pic16/ralloc.h,
5893         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5894         to fix conflict with pic port
5895
5896 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5897
5898         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5899         externs configuration variables,
5900         * src/pic16/ralloc.h,
5901         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5902         prototype in header, commented out some debug messages
5903
5904 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5905
5906         * src/pic16/glue.c,
5907         * src/pic16/main.c,
5908         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5909         for gpasm COFF object generation. Thanks to D. Hawkins for
5910         his patch info
5911
5912 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5913
5914         * src/ds390/main.c,
5915         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5916         Brock for spotting this)
5917         * src/ds390/gen.c (genEndFunction),
5918         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5919         interrupt handler and critical. Disable push/pop optimizations when
5920         peephole optimizations disabled.
5921
5922 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5923
5924         Updated pic16 library sources and headers.
5925         * device/lib/pic16/pic18f*/ ,
5926         * device/include/pic16/*.h: modified to handle structured SFR
5927         definitions
5928
5929 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5930
5931         * src/port.h (PORT structure): added hook initPaths, now each
5932         port can declare its own default search paths,
5933         which can been seen with the --print-search-dirs option,
5934         see pic16 port for example,
5935         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5936         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5937         * (doPrintSearchDirs): NEW, replaces in a central manner the
5938         printing of search dirs which was split in set*Paths functions,
5939         * (main): added call to port->initPaths and doPrintSearchDirs,
5940         * src/avr/main.c,
5941         * src/ds390/main.c,
5942         * src/hc08/main.c,
5943         * src/izt/i186.c,
5944         * src/izt/tlcs900h.c,
5945         * src/mcs51/main.c,
5946         * src/pic/main.c,
5947         * src/pic16/main.c: modified port structures to reflect addition of
5948         initPaths hook,
5949
5950         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5951         * (pic16_dump_section): for registers in same address reserve memory once,
5952         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5953         to no_banksel,
5954         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5955         result is greater in size than right or left,
5956         * (pic16_genUMult8X8_8): there are some cases where the result can
5957         be 16 bits size, so handle these,
5958         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5959         * (pic16_outBitC): modified to emit pcodes,
5960         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5961         or not,
5962         * (genDivOneByte): implemented algorithm to divide 8-bits,
5963         * (genCmp): uncommented goto, but issues still exist,
5964         * (genAnd): fixed a bug with variables >8bits,
5965         * (genPackBits): optimization added that uses BCF/BSF to change a
5966         single bit,
5967         * (genAssign): fixed bug when assigning floating point literals,
5968         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5969         __sdcc_gsinit_startup label,
5970         * src/pic16/main.c (_pic16_init): removed search directory
5971         initialisations,
5972         * (_pic16_initPaths): NEW, used to initialise search directories,
5973         * (_hasNativeMulFor): support functions for all except char/int
5974         multiplication, and char division,
5975         * (PIC16_port struct): modified entry for native mul support,
5976         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5977         no_banksel option,
5978         * (buildCallTree): call to register_usage is ifdef'ed out,
5979
5980 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5981
5982         * device/include/string.h: applied Stas Sergeev's patch to make this
5983         header file compatible with the preprocessor -Wundef option
5984         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5985         failure (fixes bug #941458)
5986
5987 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5988
5989         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5990         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5991         that the variable, not the function, should be static
5992         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5993         to be consistent with non-literal case
5994
5995 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5996
5997         * src/SDCCast.c (isConformingBody): fixed bug #949967
5998         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5999         convilong): fixed bug #952086
6000
6001 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6002
6003         * src/SDCCmem.c (allocVariables): fixed bug #955321
6004
6005 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6006
6007         * src/hc08/main.c (_hc08_genAssemblerEnd),
6008         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6009         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6010         completely eliminated the use of a temporary file
6011         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6012         when more than one file linked
6013         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6014
6015 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6016
6017         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6018         which fixes bug #543481
6019         * support/regression/tests/bug-751703.c: fixed comments left from a
6020         cut and paste error
6021         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6022         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6023         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6024         scopes
6025         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6026         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6027         are now changed to underscores in moduleName
6028
6029 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6030
6031         * as/mcs51/lkmem.c: better fix for bug #954173
6032
6033 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6034         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6035
6036         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6037         * device/include/c8051f000.h,
6038         * device/include/c8051f120.h,
6039         * device/include/c8051f300.h,
6040         * device/include/c8051f310.h,
6041         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6042         PWM16) and detab'ed
6043
6044 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6045
6046         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6047         and mailing lists, doc'ed --no-peep-comments, removed reference
6048         to knoppix (newest version has no LyX/LaTeX), other minor changes
6049         * src/SDCCglue.c (glue): save 2 bytes stack space with
6050         option --main-return. The ljmp could probably be avoided too
6051
6052 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6053
6054         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6055
6056 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6057
6058         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6059         * src/SDCCopt.c (isLocalWithoutDef),
6060         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6061         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6062         (credit to Maarten Brock for patch #949363, on which this is based)
6063         * support/regression/tests/bug-751703.c: some test cases of extern used
6064         within inner scopes.
6065
6066 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6067
6068         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6069         SPEC_STRUCT
6070         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6071         struct definitions
6072         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6073         dwWriteLabel): fix to create valid debugger symbols even when
6074         the module name has non-alphanumeric symbols in it
6075         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6076         when a variable's allocation has been optimized away
6077
6078
6079 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6080
6081         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6082         * src/hc08/main.c,
6083         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6084         * src/mcs51/main.c,
6085         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6086         * src/ds390/main.c,
6087         * src/z80/gen.c (z80_emitDebuggerSymbol),
6088         * src/z80/main.c,
6089         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6090         * src/pic/main.c,
6091         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6092         * src/pic16/main.c,
6093         * src/avr/gen.c (avr_emitDebuggerSymbol),
6094         * src/avr/main.c,
6095         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6096         * src/xa51/main.c,
6097         * src/SDCCdebug.c (emitDebuggerSymbol),
6098         * src/SDCCdebug.h,
6099         * src/port.h: added a debugger struct to the port struct. Added a
6100         callback for defining debugger symbols
6101
6102         * src/SDCCast.c (createLabel),
6103         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6104         with isitmp = 1
6105         * src/SDCCicode.h,
6106         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6107         iCode back to the ast for the function
6108
6109         * src/hc08/ralloc.c (hc08_assignRegisters),
6110         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6111         unneeded fields from the regs struct.
6112         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6113         pushReg() & pullReg() functions instead of emitcode()
6114
6115         * src/hc08/gen.c (genLabel, genhc08Code),
6116         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6117
6118         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6119         debugger hooks
6120
6121         * src/hc08/gen.c (genEndFunction, genhc08Code),
6122         * src/hc08/gen.h,
6123         * src/mcs51/gen.c (genEndFunction, gen51Code),
6124         * src/mcs51/gen.h,
6125         * src/ds390/gen.c (genEndFunction, gen390Code),
6126         * src/ds390/gen.h,
6127         * src/z80/gen.c (genEndFunction, genZ80Code),
6128         * src/z80/gen.h,
6129         * src/z80/z80.h,
6130         * src/pic/gen.c (genEndFunction, genpic14Code),
6131         * src/pic/gen.h,
6132         * src/pic16/gen.c (genEndFunction, genpic16Code),
6133         * src/pic16/gen.h,
6134         * src/avr/gen.c (genEndFunction, genAVRCode),
6135         * src/avr/gen.h,
6136         * src/xa51/gen.c (genEndFunction, genXA51Code),
6137         * src/xa51/gen.h,
6138         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6139         specific code to cdbFile.c and out of the backend code generators
6140
6141         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6142         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6143         starting address is now 0
6144
6145         * as/hc08/asm.h,
6146         * as/hc08/m08pst.c,
6147         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6148         assembler directive for DWARF support
6149         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6150
6151         * src/src.dsp,
6152         * src/Makefile.in,
6153         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6154
6155 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6156
6157         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6158         and inappropriate peephole optimization in jump tables
6159
6160 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6161
6162         * as/hc08/m08pst.c,
6163         * src/SDCCglue.c: sdccopt works for the hc08 port now
6164
6165 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6166
6167         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6168
6169 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6170
6171         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6172
6173 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6176         rules
6177         * src/SDCCmain.c,
6178         * src/SDCCglobl.h,
6179         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6180         comments from the peephole optimizer replacement rules
6181         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6182         symbols
6183         * src/SDCCcse.c (updateSpillLocation),
6184         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6185         equivalents
6186         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6187         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6188         objects far pointers
6189
6190 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6191
6192         * src/SDCCsymt.h: a missing part of my last change
6193         * src/pic/ralloc.c (regTypeNum),
6194         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6195
6196 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6197
6198         * src/SDCCicode.h,
6199         * src/SDCCicode.c (aggrToPtrDclType),
6200         * src/SDCCptropt.h,
6201         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6202         ptrPseudoSymConvert),
6203         * src/pic/ralloc.c (regTypeNum),
6204         * src/pic16/ralloc.c (regTypeNum),
6205         * src/hc08/ralloc.c (regTypeNum),
6206         * src/ds390/ralloc.c (regTypeNum),
6207         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6208         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6209
6210 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6211
6212         * link/z80/lkmain.c (afile),
6213         * as/hc08/lkmain.c (afile),
6214         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6215         prevent a pointer problem when a filename has no directory and
6216         no extension specified.
6217
6218 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6219
6220         * link/z80/lkmain.c (afile): allow periods in directory names
6221         * link/z80/lkmain.c (afile),
6222         * as/mcs51/lkmain.c (afile),
6223         * as/hc08/lkmain.c (afile): allow linker script file to have an
6224         extension other than ".lnk"
6225         * link/z80/lklex.c (getfid),
6226         * link/z80/lkmain.c (parse),
6227         * as/mcs51/lklex.c (getfid),
6228         * as/mcs51/lkmain.c (parse),
6229         * as/hc08/lklex.c (getfid),
6230         * as/hc08/lkmain.c (parse): Support comments in the linker script
6231         file on lines by themselves and after filenames
6232
6233 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6234
6235         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6236
6237 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6238
6239         * src/z80/peeph-z80.def: removed some peephole rules that don't
6240         work with multibyte arithmetic (fixed bug #937126)
6241         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6242         to registers and not global variables
6243         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6244         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6245         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6246         checking for assignments not internally generated (fixed bug #931895)
6247         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6248         structure member (fixed bug #930072)
6249
6250 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6251
6252         * src/SDCCmain.c (linkEdit),
6253         * src/hc08/main.c (_hc08_parseOptions),
6254         * as/hc08/Makefile.in,
6255         * as/hc08/aslink.h,
6256         * as/hc08/asm.h,
6257         * as/hc08/m08pst.c,
6258         * as/hc08/lkrloc.c (relr, rele),
6259         * as/hc08/lkarea.c (lnkarea)
6260         * as/hc08/lkmain.c (afile, parse),
6261         * as/hc08/lkelf.c: support for ELF output
6262         * as/hc08/lks19.c (s19),
6263         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6264
6265 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6266
6267         * as/mcs51/lkihx.c: Fixed bug #899105.
6268
6269 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6270
6271         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6272         .dsp files from Unix to DOS.
6273
6274 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6275
6276         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6277         function pointers; we have been compliant for several months now.
6278         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6279         change that was accidently commented out
6280         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6281         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6282         bug #922319
6283
6284 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6285
6286         * src/hc08/gen.c: output of all of the internal debugging information
6287         is now controlled by the D() macro; it is disabled by default
6288
6289 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6290
6291         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6292         harder to keep the same registers during a CAST iCode
6293         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6294         long via int can be done in a single cast, if the signedness is
6295         correct.
6296         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6297         putchar() in tinibios.c in ds390's library
6298
6299 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6300
6301         * src/SDCCast.c (decorateType): fixed bug #898889,
6302         cast result of a literal complement too
6303         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6304         fixed check for bitfields
6305
6306 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         * src/SDCCicode.c (geniCodeLogic): made it static,
6309         (geniCodeLogicAndOr): added in order to fix bug #905492,
6310         (ast2iCode): fixed bug #905492
6311         * support/regression/tests/bug-905492.c: added
6312         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6313         (processParms): fixed bug #927659: don't copy parms, this will clear
6314         decorated flag
6315         * support/regression/tests/bug-927659.c: added
6316
6317 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6318
6319         * src/SDCCast.c (addCast): don't cast float to char
6320         * device/lib/libsdcc.lib: added _memmove
6321
6322 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6323
6324         * device/lib/large/Makefile: fixed parallel execution by
6325         replacing `make` by `$(MAKE)`
6326
6327 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6328
6329         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6330         offsets (fixes bug #923936)
6331
6332 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6333
6334         * device/lib/small/Makefile: fixed parallel execution by
6335         replacing `make` by `$(MAKE)`
6336
6337 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6338
6339         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6340
6341 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6342
6343         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6344         * src/regression/Makefile: Regression test was not running.
6345
6346 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6347
6348         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6349         complement if possible
6350         * src/SDCCval.c (valComplement),
6351         * src/SDCCicode.c (operandOperation): fixed complement of literal
6352         * support/regression/tests/onebyte.c (testComplement): added
6353
6354 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6355
6356         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6357         return an optimized tree; actually replace actParm with the new tree
6358         * src/SDCCast.h: added some parantheses to remove side effects
6359         * support/regression/tests/bug-920866.c
6360
6361 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6362         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6363         Bit operands were not being handled properly in the pic14 port.
6364         (now src/regression/add.c passes again).
6365
6366 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6367
6368         * src/SDCC.y (labeled_statement): case and default no longer require
6369         a following statement (RFE #893037)
6370
6371 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6372
6373         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6374         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6375         disabled (fixes bug #916294)
6376         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6377         "mov a,acc"; patch provided by Lenny Story
6378         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6379
6380 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6381
6382         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6383         functions
6384         * src/ds390/gen.c (genFunction, genEndFunction),
6385         * src/ds390/ralloc.c (ds390_assignRegisters),
6386         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6387         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6388         pushed if there are parameters passed on the stack. Also, a cleaner
6389         way to decide if r0/r1 should be pushed/popped. (Together they fix
6390         bug #918693)
6391
6392 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6393
6394         * doc/sdccman.lyx,
6395         * device/lib/mcs51/crtpagesfr.asm,
6396         * device/lib/mcs51/crtxinit.asm,
6397         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6398         to avoid confusion with Si Lab's SFRPAGE register.
6399
6400 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         * src/SDCCglue.c (emitMaps): allow public sfr variables
6403         * src/SDCCglue.c (initialComments): include compiler build date
6404         with compiler version and put the timestamp of the generated
6405         assembly file on a serperate line to be less confusing.
6406         * src/port.h: added genInitStartup hook
6407         * src/avr/main.c,
6408         * src/ds390/main.c,
6409         * src/hc08/main.c,
6410         * src/pic/main.c,
6411         * src/pic16/main.c,
6412         * src/xa51/main.c,
6413         * src/z80/main.c: genInitStartup initialize as NULL (default to
6414         historical behaviour)
6415         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6416         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6417         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6418         library instead of hard coding it into the compiler.
6419         * support/regression/ports/mcs51-stack-auto/spec.mk,
6420         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6421         * device/lib/mcs51/Makefile,
6422         * device/lib/small/Makefile,
6423         * device/lib/large/Makefile,
6424         * device/lib/mcs51/crtpagesfr.asm,
6425         * device/lib/mcs51/crtstart.asm,
6426         * device/lib/mcs51/crtxclear.asm,
6427         * device/lib/mcs51/crtxinit.asm,
6428         * device/lib/mcs51/crtclear.asm,
6429         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6430         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6431         and into user configurable files.
6432         * device/lib/clean.mk: clean mcs51 directory too
6433         * support/regression/tests/longlit.c: added static to T1 declaration
6434         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6435         accesses in the initialization code
6436
6437 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6438
6439         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6440         OSCTRIMVAL as noted in bug #916008
6441
6442 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6443
6444         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6445         in loops with multiple exits (reported as incorrect registers
6446         used by Martin Helmling in Sdcc-user list)
6447
6448 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6449
6450         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6451         made ds390 register extensions look less like error messages
6452
6453 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6454
6455         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6456         reported by Adam Wozniak in Sdcc-user list
6457
6458 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6459
6460         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6461         arithmetic optimizations, added debug output
6462
6463 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6464
6465         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6466         * sdcc.spec: updated and split sdcc into 3 rpms
6467         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6468         needed for literals of LEFT_OP and '+'
6469         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6470         introduced RESULT_TYPE_NOPROM
6471         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6472         left shift
6473         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6474         limited promotion to int only for '*'
6475         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6476
6477 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6478
6479         * src/pic16/gen.c (genSkip),
6480         (genc16bit2lit), (gencjneshort): commented out
6481         (is_LitOp): new helper function, checks operand type
6482         (genCmpEq): rewritten
6483
6484 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6485
6486         * support/regression/tests/bug-908454.c: added
6487
6488 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6489
6490         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6491         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6492         (geniCodeCast): cosmetic, don't preserve bit storage class
6493         (geniCodeLeftShift): added promotion
6494         (geniCodeLogic): fixed regression
6495         * src/SDCCsymt.c (computeTypeOr): accept bits too
6496         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6497
6498 2004-03-07  Borut Razem <borut.razem AT siol.net>
6499
6500         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6501
6502 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6503
6504         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6505         version of pic16_genPackRegisters which does not check if ic is a
6506         CAST operator,
6507         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6508         function cause string1.c regression test fails
6509
6510 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6511
6512         * sim/ucsim/configure.in,
6513         * sim/ucsim/configure,
6514         * sim/ucsim/doc/Makefile.in: use docdir
6515         * src/SDCC.y: fixed sbit atrributes
6516         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6517         * src/SDCCast.c (decorateType): |^& need special promotion handling
6518         * src/SDCCast.h,
6519         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6520         * src/SDCCsymt.h (computeType),
6521         * src/SDCCicode.c: computeType() needs op
6522         * src/SDCCsymt.c (checkTypeSanity),
6523         * doc/sddman.lyx: "plain" bitfields are unsigned
6524         * src/SDCCsymt.c (computeTypeOr): added
6525         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6526         |^& ops
6527         * src/SDCCval.c (val*): computeType() needs op
6528         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6529         * support/regression/tests/onebyte.c: added tests for |^&
6530
6531 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6532
6533         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6534         for writing icode into asm output.
6535
6536 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6537
6538         * src/pic16/device.c: added some debug lines enabled
6539         with macro DEBUG_CHECK,
6540         * src/pic16/genarith.c: more debug in genPlus,
6541         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6542         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6543         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6544         * (aopForSym): onStack symbols are re-placed in data memspace,
6545         and onStack flag is cleared,
6546         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6547         copy temporary pcodeop,
6548         * (genPcall): added warning for not updating PCLATU,
6549         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6550         always true for pic16 port,
6551         * (genMultOneWord): NEW, supports integer multiplication,
6552         * (genMult): modified to call genMultOneWord,
6553         * (ifxForOp): added warning when return NULL,
6554         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6555         flag is set before call to operandFromSymbol for implicit
6556         added structures,
6557         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6558         options.intlong_rent are set by default,
6559         * (_hasNativeMulFor): modified to allow port generation of integer
6560         multiplication,
6561         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6562         set regtype to REG_SFR for all registers, restricting seting the
6563         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6564
6565 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6566
6567         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6568         more than 500 times in the regression tests
6569
6570 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6571
6572         * support/Util/SDCCerr.h,
6573         * support/Util/SDCCerr.c,
6574         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6575         enumerator_list),
6576         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6577         for symbol conflicts.
6578         * support/valdiags/tests/enum.c,
6579         * support/valdiags/tests/tentdecl.c,
6580         * support/valdiags/tests/struct.c: expect possible error messages
6581         referring to original symbol definitions.
6582         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6583         * src/SDCCsymt.h,
6584         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6585
6586 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6587
6588         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6589
6590 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6591
6592         * src/pic16/ralloc.c (newReg): fixed bug #908929
6593
6594 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6595
6596         * src/ds390/gen.c: added missing #include "main.h"
6597
6598 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6599
6600         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6601         checking if symbol is already in set,
6602         * src/pic16/device.h: prototype for checkAddSym,
6603         * src/pic16/gen.c: (_G): added entry interruptvector,
6604         * (assignResultValue): removed some commented out lines,
6605         * (genFunction): check for ISR via sym->type, absolute section for
6606         interrupt code is created via a new pBlock, the goto instruction is
6607         placed now correctly at the interrupt vector position, changed all
6608         references from ivec to _G.interruptvector,
6609         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6610         is the interrupt is a high priority one, same for return from ISR,
6611         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6612         externs to calls of checkAddSym,
6613         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6614         pic16_pcode_verbose flag is set,
6615         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6616         * src/pic16/pcoderegs.c: message about how many registers are saved
6617         will only be emitted if pic16_pcode_verbose flag is set,
6618
6619 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6620
6621         * src/ds390/ralloc.h,
6622         * src/ds390/ralloc.c (ds390_regWithIdx),
6623         * src/ds390/gen.c (emitcode),
6624         * src/ds390/main.h,
6625         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6626         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6627         ds390operandCompare, getRegsRead, getRegsWritten,
6628         initializeAsmLineNode): customized instruction size calculation for
6629         ds390, started basis for some register optimizations
6630         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6631         corresponding assembly output
6632         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6633         missing push/pop of r0/r1. Optimized push/pops
6634
6635 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6636
6637         * src/mcs51/main.c (instructionSize): fixed ACALL size
6638         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6639
6640 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6641
6642         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6643         the sorting of rlist with NULL elements
6644         * (print_idataType, print_idata): NEW to create idata sections
6645         * src/pic16/device.h: idataSymSet new variable
6646         * src/pic16/gen.c (genFunction): fixed some bugs in string
6647         comparing, improved the absolute section creation for ISRs,
6648         added FSR0L/FSR0H in registers that are saved in an ISR,
6649         * (genInline): fixed the processing of inline snippets,
6650         now they undergo no process by the peephole optimizer
6651         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6652         are placed in idataSymSet,
6653         * (pic16emitStaticSeg): extern symbols are added in externs,
6654         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6655         switching when aboslute variables are placed in access bank memory
6656         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6657         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6658         commented out with #if,
6659         * (pic16_packRegisters): reintroduce the check for CAST because some
6660         symbols are not correctly handled,
6661         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6662         pCodeInstruction instead of pCode,
6663         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6664         pCodeAsmDir definition,
6665         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6666         directive, then the argument directive is emitted without the leading
6667         tab, hack for inline labels which must be in the first column,
6668         * (compareLabel,pic16_findNextInstruction),
6669         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6670         * (insertBankSwitch): modified for the new pCodeAsmDir,
6671
6672 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6673         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6674
6675         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6676         instance,
6677         * (pushSide): commented out with #if,
6678         * (assignResultValue): fixed some typos in saving
6679         registers,
6680         * (genPcall): FIXED and sync'ed with genCall,
6681         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6682         * (genNearPointerGet): fixed to handle some more cases,
6683         implementation scheme via table reads,
6684         * (genConstPointerGet): modified to access code memory correct,
6685         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6686         and improved to handle some cases
6687         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6688         instead of "RETLW" for init data
6689         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6690         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6691         variables are placed in access bank memory (<0x80 and >=0xf80),
6692         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6693         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6694         TBLWT_POSTDEC,TBLWT_PREINC
6695         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6696         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6697         directives
6698         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6699         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6700         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6701         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6702
6703 2004-02-29  Borut Razem <borut.razem AT siol.net>
6704
6705         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6706         support/Util/findme.h, support/Util/system.h: enhance binary relative
6707         search for lib and include by using findProgramPath()
6708
6709 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6710
6711         * src/SDCCpeeph.h,
6712         * src/SDCCpeeph.c (pcDistance),
6713         * src/port.h,
6714         * src/mcs51/ralloc.h,
6715         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6716         * src/mcs51/main.h,
6717         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6718         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6719         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6720         size calculation port specific, started basis for some register
6721         optimizations
6722         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6723         missing push/pop of r0/r1. Optimized push/pops
6724         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6725         * device/lib/_modsint.c (_modsint),
6726         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6727         and stack version so regression tests pass
6728
6729 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6730
6731         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6732         * src/SDCCast.c (decorateType): catch another small optimization
6733         with '?' operator
6734         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6735         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6736         modified to finally use computeType() all over SDCC,
6737         see Feature Request #877103
6738         * src/SDCCval.h: cosmetic
6739         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6740         valCompare(); regression tested in muldiv.c
6741         * support/regression/tests/muldiv.c (testMod): mod sign follows
6742         dividend only
6743
6744 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6745
6746         * src/SDCCast.c (decorateType): fixed bug #902362
6747         * doc/INSTALL.txt: fixed install instructions for win32
6748
6749 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6750
6751         * device/include/Makefile.in (install): fixed by replacing spaces
6752         by tabs
6753         * doc/README.txt,
6754         * doc/INSTALL.txt: updated for release
6755         * doc/sdccman.lyx: added warning for --xstack being buggy
6756
6757 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6758
6759         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6760         to eliminate build warnings.
6761         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6762
6763 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6764            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6765
6766         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6767         removed -penable-stack, added comment for stack pragma, added
6768         warning for not initializing the stack/frame registers, removed
6769         comment at interrupts section
6770
6771         Stack is made permanent, there is no ability to disable stack usage.
6772         * src/pic16/device.h,
6773         * src/pic16/device.c: removed all references to USE_STACK macro,
6774         * src/pic16/device.c (pic16_dump_section): when no elements in
6775         rlist, free rlist before return,
6776         * (pic16_dump_int_registers): NEW, internal registers are a new set
6777         of general purpose registers reused by each function,
6778         * (checkAddReg): returns 1 if registers is added to set,
6779         * (pic16_groupRegistersInSection): when a registers is of type
6780         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6781         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6782         SRCASECMP macro is moved here from device.c
6783         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6784         PO_PCLATU, PO_PRODL, PO_PRODH,
6785         * (pic16_pCodeOpType, genMinus,
6786         changed compares to "a" register, with AOP_ACC,
6787         * (pic16_genPlus): fixed some bugs and indented properly,
6788         * (pic16_addSign): changed size to size+offset in the MOVWF
6789         instruction,
6790         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6791         multiply 8-bit operand by literal, result is 8-bit,
6792         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6793         multiply 2 8-bit operand, result is 8-bit,
6794         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6795         genUMult8X*_16,
6796         * src/pic16/gen.c: changed accUse to contain WREG only,
6797         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6798         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6799         true, do not use immediate addressing any more unless sym is a
6800         pointer in codespace,
6801         * (aopForRemat): do not use immediate addressing when symbol not in
6802         codespace and when symbol's address is requested,
6803         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6804         accUse size (= 1),
6805         * (aopGet): added case for AOP_ACC and don't return "accumulator
6806         bug" but WREG instead,
6807         * (popGetTempReg): pushes contents of temporary register in stack,
6808         * (popReleaseTempReg): pops contents of temporary register from
6809         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6810         * (pic16_popGet): separated case AOP_ACC to return register WREG
6811         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6812         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6813         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6814         the use of immediate pointers to certain cases only.
6815
6816         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6817         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6818         * (assignResultValue, genCall, genRet): modified to use the new
6819         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6820         genPcall is still broken,
6821         * (genFunction): added code to create 'A' type pBlocks when
6822         interrupt functions are generated, code not extensively tested yet,
6823         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6824         * (genEndFunction): modified so ISRs pop stored registers from stack,
6825         * (genMultOneByte): cleanup,
6826         * (AccRsh): added flag andmask, to and result with appropriate mask,
6827         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6828         * (genDataPointerGet): fixed and reenabled its use,
6829         * (genNearDataPointerGet): bugs fixed,
6830         * (genDataPointerSet): bugs fixed,
6831         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6832         pic16_DumpSymbol, pic16_DumpOp,
6833         * src/pic16/genutils.h: function prototypes for the above functions,
6834         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6835         pointers,
6836         * (pic16emitRegularMap): many many many improvements, but needs a
6837         major cleanup,
6838         * src/pic16/main.c: enable_stack in pic16_options is removed,
6839         * (_pic16_parseOptions): removed command line options -penable-stack,
6840         * (_process_pragma): emit stack symbol only when stack pragma is
6841         processed,
6842         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6843         redirected to FSR0L/FSR0H pair,
6844         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6845         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6846         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6847         for immediates,
6848         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6849         * (dumpPicOptype): NEW,
6850         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6851         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6852         with movff instruction,
6853         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6854         added pic16_int_regs, some packRegsFor* functions are commented out,
6855         because produce errors,
6856         * src/pic16/NOTES: minor modifications
6857
6858 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6859
6860         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6861         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6862         --pack-iram.
6863         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6864         * as/mcs51/lkaomf51.c: fixed bug #895763
6865
6866 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6867
6868         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6869
6870 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6871
6872         * doc/sdccman.lyx: added details about the HC08 storage classes and
6873         interrupts, fixed the register usage info for z80 & gbz80
6874
6875 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6876
6877         * doc/sdccman.lyx: added more pic16 port documentation
6878         * device/include/pic16/: added header pic18fregs.h
6879
6880 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6881
6882         * doc/sdccman.lyx: added Vangelis' contribution
6883
6884 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6885
6886         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6887         extend to the next CALL or PCALL, not just to the next CALL.
6888
6889 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6890
6891         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6892
6893 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6894
6895         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6896         bug #895752 and a better fix for bug #716790
6897
6898 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6899
6900         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6901
6902 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6903
6904         * doc/sdccman.lyx: minor changes, minor changed
6905
6906 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6907
6908         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6909         which can't handle SDCC_NEWONEBYTEOPS,
6910         (geniCodeMultiply): removed conversion from mult to shift for pic14
6911         and pic16
6912
6913 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6914
6915         * src/hc08/gen.h,
6916         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6917         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6918         thus fixing bug #895406
6919
6920 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6921
6922         * device/lib/_modsint.c,
6923         * device/lib/_modslong.c: sign follows divisor only
6924         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6925         signs or signedness can be ignored
6926         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6927         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6928         added optimization for IFX,
6929         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6930         arguments;
6931         reenabled optimization for IFX, which was removed on 2004-01-11
6932         * src/SDCCast.h: added return type IFX
6933         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6934         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6935         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6936         SDCC_OLDONEBYTEOPS selects the old behaviour
6937         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6938         changed again and commented promotion rule
6939         * src/SDCCval.c (valDiv): promotion no longer necessary
6940         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6941         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6942         rewritten
6943         * support/regression/tests/onebyte.c: added
6944
6945 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6946
6947         * gen.c (genInline): reverted to old code for assemnling inline
6948         code because of bug reported James Chadd
6949
6950 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6951
6952         * ralloc.h: missing declarations from previous patch,
6953         seems that patch for ralloc.h was never applied, fixed
6954
6955 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6956            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6957
6958         * pcode.c,
6959         * pcode.h,
6960         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6961         indirect addressing. Marked FSR0 as deprecated
6962         * gen.c (pointerCode): commented out, not needed now
6963         (pic16_popGet2p): new MOVFF helper function
6964         (genGenPointerGet),
6965         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6966         (shiftRLong): removed duplicate debugging info
6967
6968 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         * src/ds390/gen.c (genNearPointerGet),
6971         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6972         optimization with bits, but not bitfields.
6973         * src/ds390/ralloc.c (packRegisters),
6974         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6975
6976 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6977
6978         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6979
6980 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6981
6982         * src/SDCCsymt.h,
6983         * src/SDCCicode.c (operandFromSymbol),
6984         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6985         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6986         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6987         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6988         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6989         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6990         bug #892038
6991         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6992         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6993         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6994         * src/SDCCsymt.c (newSymbol),
6995         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6996         enumerator_list),
6997         * src/SDCCval.h,
6998         * src/SDCCval.c (newiList): fixed bug #885705
6999
7000 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7001
7002         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7003         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7004
7005 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7006
7007         * device/include/c8051f120.h,
7008         * device/include/c8051f300.h,
7009         * device/include/c8051f310.h: added/updated header files for Silicon
7010         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7011         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7012         in new section Submitting patches
7013
7014 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7015
7016         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7017         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7018         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7019         genGenPointerSet),
7020         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7021         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7022         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7023         genGenPointerSet),
7024         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7025         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7026         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7027         genGenPointerSet),
7028         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7029         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7030         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7031         genGenPointerSet): fixed bug #892400
7032         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7033         to eliminate build warnings.
7034         * src/SDCCast.c (processParms),
7035         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7036         fixed bug 751859
7037         * support/valdiag/valdiag.py: added GCC to the list of defines active
7038         when compiling with gcc
7039
7040 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7041
7042         * support/Util/SDCCerr.h,
7043         * support/Util/SDCCerr.c,
7044         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7045         with an incomplete type (fixed bug #883734)
7046         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7047
7048 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7049
7050         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7051
7052 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7053
7054         * src/SDCCast.c (decorateType),
7055         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7056         function pointer implementation
7057         * support/regression/tests/funptrs.c: added tests to verify both forms
7058         of function pointers work correctly. Added tests to verify parameters
7059         are passed in the correct order.
7060
7061 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7062
7063         * device.c (regCompare): registers are sorted by ascending
7064         address and increasing size,
7065         * main.c (_pic16_finaliseOptions): removed the declaration
7066         of compiler macro MCU. Now a macro of the format pic18fxxxx
7067         will be defined from the command line
7068
7069 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7070             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7071
7072         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7073         PCOP_RLCF was overwritten!
7074         * gen.c (genSkip): commented out calls to pic16_emitcode,
7075         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7076         * (genlshTwo),
7077         * (genRRC): added debugging info,
7078         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7079         overwritten while shifting,
7080         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7081         overwritten while shifting,
7082         * (AccLsh),
7083         * (AccRsh),
7084         * (shiftLLeftOrResult),
7085         * (shiftRLeftOrResult),
7086         * (shiftRLong),
7087         * (shiftLLong): Implemented with pic16_emitpcode
7088         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7089         * (genLeftShift): Fixed bug, operand for shift by variable always
7090         was "and"ed with 0x0f,
7091         * (genLeftShiftLiteral),
7092         * (genrshTwo),
7093         * (genRightShiftLiteral): added debugging info,
7094         * (genrshFour): added comment,
7095         * (genRightShift): determined signedness from operand "left"
7096         instead of "result"
7097
7098 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7099
7100         * src/SDCCicode.c (geniCodeParms),
7101         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7102         function pointers, fixed function pointer bugs #861242 and #861896
7103
7104 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7105
7106         * device/include/c8051f000.h,
7107         * device/include/c8051f120.h,
7108         * device/include/c8051f300.h: added header files for Silicon
7109         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7110
7111 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7112
7113         * src/SDCCast.c (processParams): added new type flow and restructured
7114         (gatherAutoInit): added new type flow
7115         (addCast): cosmetic changes
7116         (getLeftResultType): added new type flow for array indices, patch
7117         provided by Stas, see FR #877103
7118         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7119         array index patch by Stas
7120         * src/SDCCast.h: added prototype getResultTypeFromType()
7121         * src/SDCCval.h,
7122         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7123         * src/pic/glue.c (pic14emitStaticSeg),
7124         * src/pic16/glue.c (pic16emitStaticSeg),
7125         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7126         for initialization of symbols
7127         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7128         * support/Util/SDCCerr.h:
7129         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7130         * .version: bumped version number to 2.3.8
7131         * device/include/Makefile.in (install),
7132         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7133         avoid warnings
7134
7135 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7136
7137         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7138         Slade Rich fixed an optimization bug
7139         * src/pic/pcodepeep.c,
7140         * src/pic/pcoderegs.c
7141         * doc/Makefile (install): added test for directory
7142
7143 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7144
7145         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7146         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7147         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7148         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7149         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7150         * as/mcs51/asexpr.c (term),
7151         * as/hc08/asexpr.c (term): fixed bug #887146
7152
7153 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7154
7155         * src/z80/gen.c (genMult): handle single byte result product
7156         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7157         DUMMY_READ_VOLATILE (fixed bug #886367)
7158
7159 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7160
7161         * support/regression/tests/libmullong.c: fixed logic, on little endian
7162         hosts we ended without a mullong_wrapper()
7163
7164 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7165
7166         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7167         virus/worm forged address usage.
7168
7169 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7170
7171         Fixed promotion, it should be done on AST level:
7172         * src/SDCCast.c (addCast): added promotion to int
7173         (decorateType): updated call to upCast()
7174         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7175         usualUnaryConversions()
7176
7177 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7178
7179         * support/regression/tests/literalop.c (mulWrapper): Added a
7180         wrapper to remove integer overflow warnings.
7181
7182         * support/regression/tests/float_trans.c: Made work on host.
7183
7184         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7185         location of sz80.
7186
7187         * support/regression/generate-cases.py (main): Changed from inline
7188         to a main method.
7189
7190         * doc/Makefile (install): Changed to depth first to get rid of
7191         missing directory install warning.
7192
7193         * as/Makefile (install-doc): Made work on Mac.
7194
7195 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7196
7197         * src/SDCCast.c: added an additional type flow in decorateType() of
7198         opposite direction, see feature request #860006; it's enabled at runtime
7199         by setting the environment variable SDCC_NEWTYPEFLOW
7200         * src/SDCCast.h: changed prototype of decorateType()
7201         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7202         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7203         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7204         see feature request #877103
7205         * src/SDCCval.c: updated call of decorateType()
7206         (valBitwise): fixed bug #882876
7207         (valMinus): added promotion
7208         (valLogicAndOr): result is unsigned
7209         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7210         * src/SDCCsymt.c (computeType),
7211         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7212         must not cause an unsigned operation
7213         * src/pic/glue (pic14emitRegularMap),
7214         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7215
7216 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7217
7218         * src/pic/pcode.c (PCodeID): commented out left over debug code
7219
7220 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7221
7222         * support/valdiag/tests/overflow.c: added shift tests
7223         * src/pic/device.c,
7224         * src/pic/gen.c,
7225         * src/pic/gen.h,
7226         * src/pic/glue.c,
7227         * src/pic/main.c,
7228         * src/pic/pcode.c,
7229         * src/pic/pcode.h,
7230         * src/pic/pcodepeep.c,
7231         * src/pic/pcoderegs.c,
7232         * src/pic/ralloc.c,
7233         * src/pic/ralloc.h: applied patch from Slade Rich;
7234         added support for multiple code pages and multiple RAM banks on the
7235         PIC 14 port. The ASM files now no longer simply assume all the
7236         code / RAM are in the same page / bank. This means the linker can
7237         safely allocate code/RAM of separate ASM files to different pages/banks.
7238         * doc/sdccman.lyx: added Slade's tips
7239         * src/mcs51/peeph.def: fixed bug #880768
7240
7241 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7242
7243         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7244         * src/SDCCast.c (decorateType): fixed bug #880197
7245
7246 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7247
7248         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7249         getopt.h.
7250
7251         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7252         strtof is not part of C89 and isn't included with Mac OS X.
7253
7254 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7255
7256         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7257         shiftL2Left2Result): fixed bug #879326
7258         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7259         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7260         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7261         address fetch for clr instruction
7262         * device/lib/hc08/_mulint.c: created optimized assembly version
7263         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7264
7265 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7266
7267         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7268         proposed in FR #877103
7269
7270 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7271
7272         * src/SDCCval.c (cheapestVal): added missing checks
7273         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7274         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7275
7276 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7277
7278         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7279         equal operands
7280
7281 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7282
7283         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7284         loaded with the linker search paths (-L arguments) and the libraries
7285         to be linked with the current source (-l arguments). Changes
7286         currently will affect only the pic16 port.
7287         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7288         include path the port specific paths and port specific libraries,
7289         * gplink command now contains the $3 argument,
7290         * src/pic16/device.h,
7291         * src/pic16/device.c,: structure PIC_device is made public and
7292         renamed to PIC16_device, the same for variable Pics which is renamed
7293         to Pics16. Updated all references to them.
7294         * src/pic16/glue.c (pic16glue): corrected bug with code
7295         initialization which bypassed the variable initializations block.
7296
7297         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7298         COMPILE_FLAGS and added the --nostdinc option
7299
7300 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7301
7302         * device/include/mc68hc908jb8.h: Register defs for another member
7303         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7304
7305 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7306
7307         Documenting changes from previous commits.
7308         * configure.in (version 1.56),
7309         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7310         when generating output files to configure the pic16 library,
7311         but now I've commented it out, since gputils aren't installed in the
7312         SF compile farm, so library won't compile
7313
7314         * device/lib/Makefile.in (version 1.56): initially I've added in
7315         target 'all' the prerequestive 'model-pic16' so it compiled the
7316         pic16 library, but now I've commented it out for the same reasons
7317         above,
7318         * added targets 'model-pic16' and 'objects-pic16' to compile the
7319         library
7320         * added target 'port-specific-objects-pic16' to handle the
7321         generated libraries and copy them into the build/ directory
7322         * added target 'clean-intermediate-pic16' to clean intermediate
7323         files into pic16 directory
7324         * in target 'installdirs' added line to create directory pic16 in
7325         the installation path
7326
7327         * device/include/Makefile.in (version 1.11): in target 'install'
7328         added lines to copy all header files to installation path,
7329         * in target 'installdirs' added line create directory for pic16
7330         headers in the installation path
7331
7332 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7333
7334         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7335          a function call
7336
7337 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7338
7339         * configure,
7340         * device/lib/configure.in,
7341         * device/lib/configure: fixed for autoconf 2.57
7342
7343 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7344
7345         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7346         option so that it actually works. Made it specific to the z80, since
7347         the gbz80 doesn't have these kinds of I/O ports.
7348
7349 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7350
7351         * device/include/z180.h,
7352         * device/lib/_memcpy.c,
7353         * device/lib/_memmove.c,
7354         * device/lib/_mulint.c,
7355         * device/lib/ser_ir.c,
7356         * device/lib/ser_ir_cts_rts.c,
7357         * device/lib/_strcmp.c,
7358         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7359         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7360         portmode; added deprecation warning for bank= and protmode= forms.
7361         Also, guard against buffer overflow.
7362         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7363
7364 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7365
7366         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7367         changed interrupt vector table generation to only emit declared vectors.
7368         * device/include/Makefile.in: added missing backslash
7369         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7370
7371 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7372
7373         Mainly changes to support compilation of the device libraries
7374         * src/pic16/device.c: stack is allocated via symbol and not
7375         via literal number. The symbol is placed in the corresponding
7376         position of the data ram
7377         * (pic16_dump_section): relocatable and absolute uninitialized
7378         data are now emitted in sorted order to reduce section naming,
7379         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7380         weren't marked as being in the access bank,
7381
7382 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7383
7384         Added portion of GNU PIC Library under the directory
7385         device/include/pic16 and device/lib/pic16. These files
7386         contain the declarations of SFRs for the PIC18Fxx2 devices.
7387         The directory is initialized via configure from toplevel.
7388
7389 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7390
7391         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7392         the spilllocations to be compared correctly
7393
7394 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7395
7396         * src/SDCCast.c (decorateType): fixed bug introduced today
7397
7398 2004-01-12  Borut Razem <borut.razem AT siol.net>
7399
7400         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7401         doc/sdccman.lyx: upper case pragmas are deprecated
7402
7403 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7406         in simpler and even better code
7407
7408 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7409
7410         * src/SDCCicode.c (operandOperation): fixed bug #874819
7411         * src/SDCCast.c (decorateType): fixed
7412         char foo (unsigned long ul) { return ul > 0; }
7413
7414 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7415
7416         * doc/sdccman.lyx: Moved and added some sections, small changes
7417         all over. Telling LaTeX to be less strict with word spacing
7418         to better keep the right margin. Changed some notes about
7419         maintainance of the ports in section 3.2.1 - is it OK like this?
7420
7421 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7422
7423         SDCC source changes:
7424         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7425         convilong): modified to inform the pic16 port that builtin functions
7426         are external
7427
7428         PIC16 PORT specific changes:
7429         * src/pic16/device.c pic16_dump_equates() added,
7430         processor registers declared internally by the port are emitted in
7431         the translation as equates,
7432         * src/pic16/gen.c: inline code is passed unprocessed to the
7433         translation,
7434         * (pic16_popGetLit2): fnuction modified to take second operand as
7435         pCodeOp pointer and not as literal,
7436         * (popRegFromIdx): prefixed with pic16_,
7437         * (pic16_popCombine2): modified to receive already allocated pCode
7438         operands,
7439         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7440         * (genFunction): initializes local stack frame and pushes on stack
7441         all the registers used by this function,
7442         * (genEndFunction): restores all registers from stack and restores
7443         stack frame,
7444         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7445         improvements,
7446         * (pic16glue): changed the program startup sequence,
7447         * added new dbName code 'A' for functions placed in absolute section
7448         * src/pic16/main.c: added function attribute _naked,
7449         * added pragma 'code' to place a fnuction at an absolute address,
7450         * added command line arguments --debug-ralloc and --pcode-verbose,
7451         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7452         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7453         * (pic16_newpCodeOpLit2): modified to take the second operand as
7454         pCodeOp pointer,
7455         * (pic16_printpBlock): modified to emit each function in a separate
7456         section,
7457         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7458         UPPER for immediate operands,
7459         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7460         instruction,
7461         * src/pic16/peeph.def: all peepholes with movff are commented out,
7462         because there is a problem in the pcode peep optimizer,
7463         * src/pic16/ralloc.c: the register allocator can now reuse local
7464         function symbols for another function. This saves register usage.
7465         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7466
7467         Added file src/pic16/NOTES with information about program writing on
7468         the current port version.
7469
7470 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7471
7472         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7473         and peephole 252 (array access)
7474
7475 2004-01-09  Borut Razem <borut.razem AT siol.net>
7476
7477         * src/SDCCmain.c : fixed #872250: -l command line defined library
7478           files are scanned before standard library files
7479
7480 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7481
7482         * src/SDCCast.c (decorateType): fixed bug #874046
7483
7484 2004-01-09  Borut Razem <borut.razem AT siol.net>
7485
7486         * support/scripts/sdcc.nsi: remove previous installation
7487
7488 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7489
7490         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7491         bytes for last interrupt vector (mcs51)
7492         * sdcc.spec: fixed typo
7493
7494 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7495
7496         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7497         gen51Code): more efficient parameter receive for --model-large
7498         ("bug" #845294)
7499
7500 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7501
7502         * src/ds390/main.c,
7503         * src/z80/main.c: added missed needLinkerScript flags (more than
7504         one port structure defined in these file)
7505         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7506         bug #795325
7507
7508 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7509
7510         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7511         * src/port.h: added flag needLinkerScript in port->linker
7512         structure to inform whether to create a .lnk file or not,
7513         * src/avr/main.c,
7514         * src/ds390/main.c,
7515         * src/hc08/main.c,
7516         * src/mcs51/main.c,
7517         * src/pic/main.c,
7518         * src/pic16/main.c,
7519         * src/xa51/main.c,
7520         * src/z80/main.c: changed appropriately to configure
7521         needLinkerScript flag
7522         * src/pic/gen.c,
7523         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7524         * src/pic/glue.c: added variable udata_section_name to
7525         override default uninitialized data segment definition for
7526         devices only with SHAREBANK memory (reported from Erik Epetrich)
7527         * (pic14emitOverlay): modified to emit a commented overlay segment
7528         directive when no overlay data exist
7529         * (picglue): modified to emit uninitialized data segment
7530         according to udata_section_name
7531         * src/pic/main.c (_pic14_parseOptions): added command line
7532         options --udata-section-name=[name] to override default
7533         udata definition name
7534         * modified _linkCmd and _asmCmd to include compiler passed
7535         arguments via -W option
7536         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7537         object file from '.rel' to '.o' in port->linker structure,
7538         changed size of fptr from 2 to 3 in port structure
7539
7540 2004-01-07  Borut Razem <borut.razem AT siol.net>
7541
7542         * support/scripts/sdcc.nsi: update PATH
7543         * support/scripts/sdcc.ico: craeted
7544
7545 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7546
7547         * device/include/Makefile.in: fix install
7548         * doc/Makefile: fix install
7549
7550 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7551
7552         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7553         in bug #860505
7554         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7555         how the function variable allocation summary is displayed; also
7556         include information about variables allocated to the overlay
7557         segment
7558
7559 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7560
7561         * as/mcs51/lkmain.c: Help about -Y option
7562         * as/mcs51/lkarea.c: Fixed gcc warnings
7563
7564 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7565
7566         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7567         fixed warning
7568         * support/valdiag/tests/overflow.c: added
7569         * src/SDCCast.c (decorateType),
7570         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7571         LEFT_OP (left shift)
7572
7573 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7574
7575         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7576         (default behaviour).
7577
7578 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7579
7580         A python script to validate compiler diagnostic messages. It can be
7581         used to verify that sdcc complains about bad c source code and
7582         gives a good location of the error.
7583         * support/valdiag/Makefile,
7584         * support/valdiag/valdiag.py,
7585         * support/valdiag/tests/*
7586
7587 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7588
7589         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7590         * src/SDCCsymt.c (newEnumType),
7591         * src/SDCCsymt.h
7592         * support/Util/SDCCerr.c,
7593         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7594         enum related bugs.
7595         * support/regression/tests/enum.c: added test for enum values that
7596         require at least 2 bytes of storage.
7597
7598 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7599
7600         * src/common.h: added ifndef/define/endif macros
7601         around the header file.
7602         Bug reported from Jesus Calvino-Fraga
7603
7604 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7605
7606         * sdcc.spec: updated
7607         * device/include/Makefile.in: don't install CVS directories
7608         * device/lib/Makefile.in: added removal of CVS directories after install
7609         * doc/Makefile: fixed install, added local_icons
7610         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7611         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7612         * src/ds390/gen.c (genRightShift): fixed bug #870788
7613         * src/SDCCast.c (decorateType): fixed bug #870781
7614
7615 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7616
7617         PIC16 port related changes:
7618         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7619         added variable stackPos,
7620
7621         * gen.c: genCall, assignResultValue: added support for
7622         pushing/retrieving function parameters to/from stack,
7623         genFunction,genEndFunction: setup stack frame for the
7624         generated function,
7625         genAddrOf: will be changed according to bug 863624
7626
7627         * added files genutils.c and genutils.h which contain gen*
7628         debugged and optimised functions extracted from gen.c
7629
7630         * glue.c: added variable 'externs' which holds extern symbols,
7631         pic16emitRegularMap: is modified to properly handle relocatable
7632          symbols under the new scheme,
7633         pic16createInterruptVect: is modified
7634         pic16printPublics: is modified to emit 'global' assembler directives,
7635         added pic16_printExterns to print extern symbols,
7636         pic16glue: initializes stack/frame pointer in the beginning of
7637         the assembly output. Temporary hack, will be corrected later,
7638         because gplink yet does not support stack and SDCC does not
7639         yet support a type of crt0.o object to create the final binary.
7640
7641         * Removed many lines that contain 8051 legacy code.
7642         * The code is finally placed under a 'code' directive.
7643         * Added port specific options.
7644
7645         * _process_pragma: simplified since now we do not need *special*
7646         include file to define SFR registers. But a separate header
7647         will be needed. This will be developed later.
7648         * _pic16_parseOptions: added, parses port specific options:
7649         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7650         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7651         --preplace-udata-with=
7652
7653         * _pic16_setDefaultOptions: modified to initialize section names,
7654         but hack is temporarly out of order since it needs improvement.
7655         * _pic16_genAssemblerPreamble: configuration words are emitted by
7656         their address instead of their name. This part is incomplete and
7657         supports only the 18Fxx2 devices. Other devices will emit an error
7658         during assembly since they do not contain the same set of config
7659         registers
7660         * _pic16_genIVT: is modified,
7661
7662         * pcode.c: added definitions for some hardware registers that are needed
7663         for stack support
7664         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7665         All PCI entries are updated. Now LFSR is supported.
7666         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7667         * added pic16_newpCodeOpLit2 to support instructions with
7668         two literal arguments
7669         * pic16_pCode2str: corrected code that emits assembler instructions
7670         with two literal operands and those that have an access bit modifier
7671         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7672         this fixes a bug which caused some labels to be lost, when an
7673         assembler directive was added, i.e. banksel,
7674         * pic16_FixRegisterBanking: improved logic that causes the insertion
7675         of bank switching,
7676         * InlineFunction: functions that are called once, are not any more
7677         inlined. This can be a port option in the future,
7678
7679         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7680
7681         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7682         hold the corresponding uninitialized symbols,
7683         * pic16_allocProcessorRegister: registers have explicit marked the
7684         accessBank field,
7685         * pic16_allocInternalRegister: registers are explicit marked as
7686         not used,
7687         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7688         processing list, so bit registers were lost,
7689         *
7690
7691         * ralloc.h: added field 'accessBank' and original symbol operand
7692         in register definition,
7693         * removed the field isMapped from register definition,
7694
7695         ** Several functions have been removed from various sources:
7696         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7697         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7698         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7699         pic16_assignRelocatableRegisters
7700
7701         ** others have been introduced:
7702         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7703         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7704
7705 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7706
7707         * support/scripts/inc2h.pl: changed definition of BIT_AT
7708         to emit 'sbit at' instead of 'bit at'. This was a request.
7709
7710         PIC16 port related preliminary changes:
7711         * gen.c: prefixed function popRegFromString with
7712         pic16_ and all references to it corrected
7713         * pcode.c: all pic16_pc_* hardware registers prefixed
7714         with underscore (_),
7715         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7716         * ralloc.c: newReg(): when register is REG_SFR then
7717         set address to rIdx,
7718         pic16_allocProcessorRegister(): marks register wasUsed=0
7719         pic16_writeUsedRegs(): added a call to assign processor
7720         registers via pic16_assignFixedRegisters
7721
7722 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7723
7724         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7725         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7726         variables in unused register banks.  Also the SSEG is placed
7727         wherever there is enough space for it, and IDATA can be anywhere
7728         in internal RAM.  For now compile using -Wl-Y[stack_size].
7729         The mem file is different for this option as well, since it
7730         makes no sense of talking about DSEG lenght.
7731
7732 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7733
7734         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7735         in certain cases, e.g. when ROM assignment, patch provided
7736         from Albert den Haan.
7737
7738 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7739
7740         Many signedness and type propagation fixes:
7741         * src/SDCCicode.c: made geniCodeCast() static
7742         replaced SPEC_ by IS_ (cosmetic)
7743         (operandOperation): fixed div and mod operation
7744         (usualBinaryConversions): added support for promotion of char
7745         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7746         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7747         (geniCodeAdd): an array index will stay unsigned, even if promoted
7748         from char to int
7749         (geniCodeArray): ditto
7750         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7751         * src/SDCCsymt.c (computeType): added more support for char;
7752         promotion of char is selectable by promoteCharToInt, fixed signedness
7753         for all cases
7754         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7755         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7756         * src/SDCCval (val*): replaced signedness calculation by
7757         computeType()
7758         rearranged if-branches (cosmetic)
7759         (valShift): added warning W_SHIFT_CHANGED
7760         (valCompare): fixed problem with different types
7761         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7762         * support/regression/tests/literalop.c: added many cases
7763         * support/regression/tests/ast_constant_folding.c: changed finally to
7764         'unsigned int'
7765         * .version: new year, new version: 2.3.7
7766         * src/SDCCmain.c (main): applied patch #866468
7767         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7768         provided by Scott Bronson
7769         * doc/sdccman.lyx: updated documentation for sdcdb
7770         updated and added chapter tips
7771
7772 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7773
7774         * src/SDCCsymt.h: missing from yesterday's commits
7775
7776 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7777
7778         * src/SDCC.y (struct_or_union_specifier),
7779         * support/Util/SDCCerr.c,
7780         * support/Util/SDCCerr.h: verify that struct & union tags are used
7781         as declared.
7782
7783 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7784
7785         * src/SDCCglobl.h: missing from yesterday's commits
7786
7787 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7788
7789         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7790         sft_attributes, struct_declaration, parameter_declaration,
7791         type_name, start_block, declaration_list),
7792         * src/SDCC.lex (check_type): support redefinition of typedef names
7793
7794 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7795
7796         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7797         aligned xdata arrays. Erik helped me with the if clause.
7798
7799 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7800
7801         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7802         warning
7803
7804 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7805
7806         * src/SDCCast.h,
7807         * src/SDCCast.c (newAst_),
7808         * src/SDCCicode.h,
7809         * src/SDCCicode.c (ast2iCode, newiCode),
7810         * src/SDCCglobl.h,
7811         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7812         expr, statement, expression_statement, selection_statement,
7813         iteration_statement, expr_opt, jump_statement): foundation for tracking
7814         sequence points
7815         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7816         point code too)
7817
7818 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7819
7820         * support/Util/SDCCerr.c,
7821         * src/SDCCast.h,
7822         * src/SDCCast.c (createCase, createDefault, decorateType),
7823         * src/SDCClabel.c (labelUnreach),
7824         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7825         to error messages.
7826         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7827         (with thanks to Stas Sergeev)
7828         * device/include/time.h,
7829         * device/lib/time.c (CheckTime): suppress unreachable code warning
7830
7831 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7832
7833         * src/SDCCast.c (createIvalCharPtr),
7834         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7835         bug #753752)
7836         * support/regression/tests/nullstring.c: tests for these two bugs
7837
7838 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7839
7840         * support/Util/SDCCerr.h,
7841         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7842         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7843         about storage class and 'at' used inside struct or union
7844         * src/SDCCBBlock.c (iCodeFromeBBlock),
7845         * src/SDCCcse.c (ifxOptimize),
7846         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7847         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7848         printIval, emitStaticSeg, emitOverlay),
7849         * src/SDCClabel.c (deleteIfx),
7850         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7851         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7852         gatherAutoInit, processParms),
7853         * support/Util/SDCCerr.h,
7854         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7855         reporting for post-parse errors.
7856
7857 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7858
7859         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7860         implicit casts via union; they don't work on big endian systems
7861         (possible fix for bug #861138)
7862
7863 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7864
7865         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7866         * src/mcs51/main.c: fixed the fix for bug #737001
7867
7868 2003-12-15  Borut Razem <borut.razem AT siol.net>
7869
7870         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7871
7872 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7873
7874         * support/makebin/makebin.c: put output in binary mode
7875
7876 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7877
7878         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7879         xdata and data memory on startup. Set the environment variable
7880         SDCC_NOGENRAMCLEAR to disable this.
7881         * src/mcs51/peephole.def,
7882         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7883         (allows non-interrupt and interrupt code to safely compete for a resource
7884         without the non-interrupt code having to disable interrupts)
7885
7886 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7887
7888         * src/SDCCicode.c (geniCodeAdd),
7889         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7890         with valFromType if type might be a pointer and host is big endian).
7891         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7892         types, not just integer types.
7893         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7894         multiply defined with mismatching "at" address.
7895
7896 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7897
7898         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7899         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7900         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7901         with embedded nulls (fixed bug #753752)
7902
7903 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7904
7905         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7906         Apparently this did not see much testing (endless loop)
7907
7908 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7909
7910         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7911
7912 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7913
7914         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7915         gracefully handle NULL memmap pointers
7916
7917 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7918
7919         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7920         instead of deleting the iCode when an operand is volatile
7921         * src/z80/gen.c (genDummyRead),
7922         * src/mcs51/gen.c (genDummyRead),
7923         * src/ds390/gen.c (genDummyRead),
7924         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7925         not just IC_RIGHT
7926         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7927         * src/SDCC.y: fixed bug #850420
7928
7929 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7930
7931         Applied z80 i/o port patch from Peter Townson and fixed some operators
7932         to better handle operands in A register.
7933         * device/include/z180.h
7934         * src/SDCC.y
7935         * src/SDCCglue.c
7936         * src/z80/gen.c
7937         * src/z80/gen.h
7938         * src/z80/main.c
7939         * src/z80/peeph-z80.def
7940         * src/z80/peeph.def
7941         * src/z80/z80.h
7942
7943 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7944
7945         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7946
7947 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7948
7949         * device/lib/hc08/_mullong.c: Removed extra #endif
7950
7951 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7952
7953         * sim/ucsim/hc08.src/inst.cc,
7954         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7955         carries from x to h
7956         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7957         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7958         * device/include/stdarg.h: fixed varargs for hc08
7959         * device/lib/Makefile.in,
7960         * device/lib/hc08/Makefile,
7961         * device/lib/hc08/_mulint.c,
7962         * device/lib/hc08/_mullong.c: fixed some endian problems
7963
7964 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7965
7966         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7967         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7968         * device/lib/_gptrget.c,
7969         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7970
7971 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7972
7973         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7974         * src/SDCCast.c (astErrors): fixed bug #846007
7975         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7976
7977 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7978
7979         * src/SDCCast.c (decorateType): disabled a transformation I added in
7980         revision 1.188 (access to fields of a structure at an absolute address);
7981         it breaks with bitfields, extern declarations, and gcse analysis.
7982         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7983         could be assigned through a pointer, so don't complain.
7984         * src/SDCCast.c (astErrors),
7985         * src/SDCCast.h,
7986         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7987
7988 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7989
7990         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7991         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7992         output of __config directives, since gpasm now supports them
7993         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7994         pre-processor macro, i.e. -DMCU=p18f452
7995         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7996         and modified to handle 'cast' icode similarly to '=' icode
7997         * src/pic16/device.h (typedef struct PIC_device): added field
7998         'extMIface' to indicate that chip has external memory interface
7999         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
8000         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8001         18F8720
8002
8003 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8004
8005         * src/SDCC.y (pointer): fixed bug #846006
8006         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8007         * src/SDCCast.c (decorateType): fixed bug #846009
8008         * src/ds390/peeph.def,
8009         * src/ds390/gen.c (genAnd, genOr),
8010         * src/mcs51/peeph.def,
8011         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8012
8013 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8014
8015         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8016         * src/SDCCdflow.c
8017         * src/SDCCcse.c
8018         * src/SDCCcse.h
8019         * src/SDCCBBlock.h
8020         * src/SDCCBBlock.c
8021
8022 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8023
8024         fixed bug #845089
8025         * src/SDCCbitv.h,
8026         * src/SDCCbitv.c: added function to free a bitvector
8027         * src/SDCClrange.h,
8028         * src/SDCClrange.c: added function to recompute the liveranges
8029         * src/avr/ralloc.c,
8030         * src/ds390/ralloc.c,
8031         * src/hc08/ralloc.c,
8032         * src/mcs51/ralloc.c,
8033         * src/pic/ralloc.c,
8034         * src/pic16/ralloc.c,
8035         * src/xa51/ralloc.c,
8036         * src/z80/ralloc.c: recompute the liveranges after register packing
8037
8038 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8039
8040         * src/SDCCloop.c (newInduction): fixed bug #845630
8041
8042 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8043
8044         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8045         inadvertantly left behind from my 2003-11-12 change
8046
8047 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8048
8049         Updated headers I neglected to commit yesterday.
8050         * src/SDCClrange.h,
8051         * src/SDCCicode.h
8052
8053 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8054
8055         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8056         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8057         * src/SDCCopt.c (eBBlockFromiCode),
8058         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8059         the creation of the key hash table from the sequencing so it can be used
8060         earlier (for some GCSE bug fixes still pending)
8061
8062 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8063
8064         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8065         * support/regression/tests/addsub.c: testing genPlus shortcut
8066
8067 2003-11-15  Borut Razem <borut.razem AT siol.net>
8068
8069         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8070
8071 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8072
8073         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8074         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8075         ordering is immaterial.
8076         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8077
8078 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8079
8080         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8081         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8082         (SIGSEV) of bug #840381
8083         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8084         unlink new file before rename if new and old filenames are the same)
8085
8086 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8087
8088         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8089         uninitialized variables) for the mcs51. Set environment variable
8090         SDCC_GENRAMCLEAR to test.
8091         xdata initialization slightly shorter
8092
8093 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8094
8095         * src/SDCCsymt.h,
8096         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8097         #838241 & 780691 (basicly the same bug)
8098         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8099         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8100
8101 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8102
8103         * src/SDCCmain.c (linkEdit): "fix" #834252
8104
8105 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8106
8107         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8108         * src/SDCCast.h,
8109         * src/SDCC.y: fixed bug #819403
8110
8111 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8112
8113         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8114         the reentrant attribute.
8115         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8116         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8117         simulation
8118         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8119         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8120         erroneously reduced to a literal.
8121         * src/hc08/ralloc.c (packRegisters, rematStr),
8122         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8123         some cases
8124
8125 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8126
8127         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8128         * doc/sdccman.lyx: changed from 'article' to 'book'
8129         * doc/Makefile: readded test_suite_spec and cdbfileformat
8130
8131 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8132
8133         * device/include/stdlib.h: include malloc.h to comply with ANSI
8134         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8135
8136 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8137
8138         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8139         * doc/clean.mk: also remove *.out files
8140         * doc/sdccman.lyx: some additions, larger top/bottom margins
8141
8142 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8143
8144         * src/SDCC.y: fixed bug #837365
8145         * support/regression/tests/bitopcse.c
8146         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8147         a symbol (might be valop instead)
8148         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8149         * device/lib/clean.mk: added hc08 to the cleaning list
8150
8151 2003-11-04  Borut Razem <borut.razem AT siol.net>
8152
8153         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8154           made 2003-11-04
8155         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8156           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8157           malloc is declared in standard stdlib.h
8158
8159 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8160
8161         * device/lib/hc08/Makefile: need to clean .rel not .o files
8162         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8163
8164 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8165
8166         * src/port.h,
8167         * src/hc08/main.c,
8168         * src/mcs51/main.c,
8169         * src/ds390/main.c,
8170         * src/z80/main.c,
8171         * src/avr/main.c,
8172         * src/pic/main.c,
8173         * src/pic16/main.c,
8174         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8175         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8176         tests (which uses the port's oclsExpense function)
8177         * src/SDCC.y,
8178         * src/SDCCast.c,
8179         * src/SDCCicode.c,
8180         * src/hc08/gen.c,
8181         * src/ds390/gen.c,
8182         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8183
8184 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8185
8186         * src/SDCCcse.c (ifxOptimize),
8187         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8188         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8189         deleting the IFX iCode.
8190         * src/hc08/ralloc.c: reduced unneeded slocs
8191         * src/hc08/gen.c: fixed bug in asmopToBoolean
8192
8193 2003-11-04  Borut Razem <borut.razem AT siol.net>
8194
8195         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8196           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8197           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8198           transferred to configure
8199
8200 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8201
8202         Use headers defined in the C[++] standards:
8203         * sim/ucsim/gui.src/serio.src/fileio.cc
8204         * sim/ucsim/gui.src/serio.src/frontend.cc
8205         * sim/ucsim/gui.src/serio.src/main.cc
8206         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8207         * support/Util/NewAlloc.c
8208         * as/hc08/lklibr.c
8209         * as/mcs51/lklibr.c
8210         * as/z80/aslist.c
8211         * as/z80/assym.c
8212
8213 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8214
8215         * Added MSVC projects for hc08 assembler and linker:
8216         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8217         /as/hc08/link_hc08.dsp
8218
8219 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8220
8221         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8222
8223 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8224
8225         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8226
8227 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8228
8229         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8230
8231 2003-10-31  Borut Razem <borut.razem AT siol.net>
8232
8233         * support/cpp2/cpplib.h,
8234           support/cpp2/cpplib.c,
8235           support/cpp2/cpplex.c,
8236           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8237           to switch _asm block preprocessing on / off. Default is
8238           #pragma preproc_asm +
8239
8240 2003-10-31  Borut Razem <borut.razem AT siol.net>
8241
8242         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8243           when outputting comment blocks (when executed with -C option) and
8244           _asm (SDCPP specific) blocks
8245
8246 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8247
8248         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8249
8250 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8251
8252         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8253
8254 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8255
8256         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8257         * src/SDCCast.c (decorateType): fixed bug #832664
8258
8259 2003-10-31  Borut Razem <borut.razem AT siol.net>
8260
8261         * support\cpp2\cpplex.c: fixed for SDCPP:
8262           comments(when executed with -C option) and _asm blocks
8263           were included even if they where in skipped #if block.
8264           Applied solution from GCC cpp 3.3.2
8265
8266 2003-10-31  Borut Razem <borut.razem AT siol.net>
8267
8268         * src/SDCC.lex: sdcc now understands both formats:
8269           '# <line_number> <file_name>' and
8270           '#line <line_number> <file_name>'
8271         * support/cpp2/cppmain.c: sdcpp now generates the standard
8272           '# <line_number> <file_name>' instead of former
8273           '#line <line_number> <file_name>'
8274
8275 2003-10-30  Borut Razem <borut.razem AT siol.net>
8276
8277         * support/cpp2/cpphash.h,
8278         * support/cpp2/cpplib.h
8279         * support/cpp2/cpplex.c,
8280         * support/cpp2/cppmain.c,
8281         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8282
8283 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8284
8285         Fixed a number of problems revealed by bug #827883.
8286         * src/SDCCloop.c (loopInvariants): Spill location of the
8287         result operand should be recomputed if extracted from
8288         a loop. Also, don't extract assignments of an iTemp
8289         from a literal.
8290         * src/SDCCast.c (isConformingBody): loop reversal should
8291         not occur if the control variable is involved with a
8292         relational operator.
8293
8294 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8295
8296         * .version: bumped to 2.3.6 to reflect the big improvements
8297         made by Erik and Klaus. Thanks!
8298
8299 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8300
8301         Replaced the livrange code.
8302         * src/SDCClrange.c: added new LR code
8303         * src/SDCCloop.c,
8304         * src/SDCCBBlock.h: removed remainig parts from old LR code
8305         * src/ds390/ralloc.c,
8306         * src/ds390/gen.c: minor fixes to make it work with new code
8307
8308 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8309
8310         * as/hc08/asm.h,
8311         * as/hc08/lkrloc.c,
8312         * src/hc08/gen.c,
8313         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8314         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8315         (tweaked fix for bug #818696)
8316
8317 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8318
8319         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8320
8321 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8322
8323         * src/SDCCmain.c,
8324         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8325         * src/mcs51/gen.c (gencjneshort),
8326         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8327         more efficient (per Scott Bronson's suggestion)
8328
8329 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8330
8331         Extended the semantics of the critical keyword to include
8332         individual statements. See RFE #827755 and #799831
8333         * src/SDCC.y
8334         * src/SDCCicode.c
8335         * src/SDCCopt.c
8336         * src/SDCCast.c
8337         * support/Util/SDCCerr.c
8338         * support/Util/SDCCerr.h
8339         * src/mcs51/gen.c
8340         * src/ds390/gen.c
8341         * src/hc08/gen.c
8342
8343 2003-10-19  Borut Razem <borut.razem AT siol.net>
8344
8345         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8346
8347 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8348
8349         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8350         Fixed bug #818696
8351         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8352         and predecrement operand is displayed
8353
8354 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8355
8356         * src/SDCCval.c (valMinus): fixed bug #826041
8357
8358 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8359
8360         Some hc08 related updates that I missed earlier
8361         * sim/ucsim/stypes.h
8362         * support/regression/ports/hc08/spec.mk
8363
8364 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8365
8366         New target "hc08" for the Motorola 68hc08 family of micros
8367
8368         * configure
8369         * configure.in
8370         * Makefile
8371         * src/hc08/*
8372         * src/SDCCmain.c
8373         * src/port.h
8374         * sim/ucsim/hc08.src/*
8375         * sim/ucsim/configure.in
8376         * src/ucsim/configure
8377         * sim/ucsim/packages_in.mk
8378         * as/hc08/*
8379         * as/Makefile
8380         * device/include/mc68hc908qy.h
8381         * device/lib/hc08/*
8382         * device/lib/Makefile.in
8383         * support/regression/ports/hc08/*
8384         * support/regression/Makefile
8385
8386 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8387
8388         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8389         regression test
8390         * src/ds390/gen.c (genCast): fixed bug #821957
8391
8392 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8393
8394         * device/lib/logf.c: "fixed" overlay bug
8395         * support/regression/ports/host/spec.mk: added m library
8396         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8397         * support/regression/tests/float_trans: added (for Eric)
8398
8399 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8400
8401         * src/mcs51/gen.c (genCpl): fixed bug
8402         http://sf.net/mailarchive/message.php?msg_id=6263915
8403
8404 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8405
8406         * src/SDCCast.c (decorateType): added extended constant folding
8407         * src/SDCCsymt.c (computeType): cleanup
8408         * src/SDCCval.c (valShift): minor optimization
8409         * support/regression/tests/ast_constant_folding.c: added
8410
8411 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8412
8413         * src/SDCCmain.c: removed some unintended changes
8414
8415 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8416
8417         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8418         * src/z80/gen.c: fixed part of bug #817589
8419         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8420
8421 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8422
8423         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8424         * src/SDCCcflow.c
8425         * src/SDCCcse.c
8426         * src/SDCCdflow.c
8427         * src/SDCClabel.c
8428         * src/SDCClrange.c
8429         * src/SDCCmem.c
8430         * src/SDCCopt.c
8431         * src/SDCCpeeph.c
8432         * src/SDCCset.c
8433         * src/avr/ralloc.c
8434         * src/ds390/ralloc.c
8435         * src/izt/ralloc.c
8436         * src/mcs51/ralloc.c
8437         * src/pic/ralloc.c
8438         * src/pic16/ralloc.c
8439         * src/xa51/ralloc.c
8440         * src/z80/ralloc.c
8441         * src/z80/gen.c: removed unused label "release:"
8442
8443 2003-10-06  Borut Razem <borut.razem AT siol.net>
8444
8445         * src/SDCC.lex: removed definition of unused variables
8446           save_optimize and save_options
8447
8448 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8449
8450         * clean.mk: removed '=' in "-maxdepth=1"
8451         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8452         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8453
8454 2003-10-06  Borut Razem <borut.razem AT siol.net>
8455
8456         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8457           my_unput() replaced by unput()
8458
8459 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8460
8461         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8462         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8463         type-punned pointer will break strict-aliasing rules"
8464         Old LR behaviour is again default; Klaus' LR can be choosen by
8465         defining the environment variable LRKLAUS
8466         * src/SDCCBBlock.h
8467         * src/SDCCloop.c
8468         * src/SDCClrange.c
8469         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8470         * clean.mk: fixed removal of files in bin/CVS/
8471         * device/lib/clean.mk: fixed removal of directories small and large
8472         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8473         * src/SDCCicode.c,
8474         * src/SDCCval.c: removed superflous test for pedantic
8475
8476 2003-10-05  Borut Razem <borut.razem AT siol.net>
8477
8478         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8479           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8480           message "unmatched #pragma SAVE and #pragma RESTORE"
8481
8482 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8483
8484         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8485           assembly, critical functions, atomic, nojtbound)
8486
8487 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8488
8489         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8490         * src/SDCCBBlock.h
8491         * src/SDCCloop.c
8492         * src/SDCCloop.h
8493         * src/SDCClrange.c
8494
8495 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8496
8497         * src/z80/gen.h,
8498         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8499         * src/mcs51/gen.h
8500         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8501         * src/ds390/gen.h
8502         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8503         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8504         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8505
8506 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8507
8508         * src/z80/gen.c (genRet): fixed bug #524753
8509         * src/z80/gen.c (genCast): fixed internal error on cast from
8510         pointer to long
8511         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8512         fix for bug #477835 to the z80
8513         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8514         for tracking iCodes in the peephole optimizer for z80
8515
8516 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8517
8518         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8519         the other part of bug #814548
8520         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8521
8522 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8523
8524         * src/SDCCcse.c: fixed part of bug #814548
8525
8526 2003-09-28  Borut Razem <borut.razem AT siol.net>
8527
8528         * src/asm.c: rewrite of printILine() to use temporary file instead
8529           a pipe
8530         * src/xa51/main.c: commented out declaration of int rewinds
8531
8532 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8533
8534         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8535
8536 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8537
8538         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8539         * src/asm.c (printILine): Fixed bug #811015
8540
8541 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8542
8543         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8544         freeing.
8545
8546 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8547
8548         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8549         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8550         to correctly handle general case of AOP_PAIRPTR
8551         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8552
8553 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8554
8555         * src/mcs51/ralloc.c (fillGaps),
8556         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8557         register positioning bug)
8558
8559 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8560
8561         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8562
8563 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8564
8565         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8566         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8567         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8568         (ralloc doesn't intentionally do this now, but perhaps later)
8569         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8570         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8571         register positioning bugs (Fixed bug #762602 and #795325)
8572         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8573         (Fixed bug #808779)
8574         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8575         lines that --i-code-in-asm generates
8576
8577 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8578
8579         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8580         trying to fclose a FILE* that was already closed.
8581
8582 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8583
8584         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8585         of const struct should be treated as if const themselves)
8586
8587 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8588
8589         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8590
8591 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8592
8593         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8594         Unix (/n) and DOS (/r/n) line terminations.
8595
8596 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8597
8598         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8599         bug #613775
8600
8601 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8602
8603         * src/mcs51/gen.c (genFunction, genEndFunction),
8604         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8605         and restore of EA so that stack offsets to parameters are
8606         correct when using both critical and reentrant/stack-auto.
8607         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8608         size (can be triggered in error if sloc is shared between
8609         different sized objects)
8610         * device/include/float.h: fixed macros to explicitly use
8611         unsigned long where needed
8612
8613 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8614
8615         Feature req. 799831: added code to allow nesting of critical functions
8616         * src/mcs51/gen.c (genFunction, genEndFunction)
8617         * src/ds390/gen.c (genFunction, genEndFunction)
8618
8619 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8620
8621         * src/SDCCsymt.c (sclsFromPtr),
8622         * src/SDCCsymt.h,
8623         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8624         support for standard C idiom of memory mapped variables; for
8625         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8626         to xdata int at 0x1234 tempvar = 1.
8627         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8628         provided by Akiya ISHIDA
8629
8630 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8631
8632         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8633         * src/SDCCval.c (constVal): added reduction from int to char
8634         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8635         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8636         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8637         to ignore the sign
8638         * support/regression/tests/shifts.c: fixed
8639
8640 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8641
8642         * src/z80/gen.c (genXor): Fixed bug #805445
8643
8644 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8645
8646         Fixed bug #621531 (const & volatile confusion in the type chain).
8647         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8648         refer to the const or volatile state of the pointer itself.
8649
8650         * src/SDCCast.c
8651         * src/SDCCglue.c
8652         * src/SDCCicode.c
8653         * src/SDCCsymt.c
8654         * src/SDCCval.c
8655         * src/SDCC.y
8656         * src/SDCCsymt.h
8657         * src/pic/gen.c
8658         * src/pic/ralloc.c
8659         * src/pic16/gen.c
8660         * src/pic16/ralloc.c
8661         * support/regression/tests/const.c
8662
8663 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8664
8665         When checking for duplicated modules, use absolute paths
8666         instead of relative paths.  Files changed:
8667
8668         * as/mcs51/lklib.c
8669         * link/z80/lklib.c
8670
8671 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8672
8673         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8674
8675 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8676
8677         * device/include/string.h: added size_t typedef, changed
8678         prototypes to use size_t, eliminated separate reentrant and
8679         non-reentrant declarations, added _memmove declaration
8680         * device/lib/_memcpy.c: changed to use size_t instead of int,
8681         changed /4 to >>2 to avoid division library call
8682         * device/lib/_memcmp.c,
8683         * device/lib/_memset.c,
8684         * device/lib/_strncat.c,
8685         * device/lib/_strncpy.c,
8686         * device/lib/_strncmp.c: changed to use size_t instead of int
8687         * device/lib/_memmove.c: new file (fixed bug #772294)
8688         * device/lib/Makefile.in: added _memmove.c
8689         * device/lib/z80/asm_strings.s: fixed bug #772290
8690         * support/regression/tests/bitfields.c: attempt to fix host assertion
8691         failure on amd64-unknown-linux2.2
8692
8693 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8694
8695         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8696         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8697         * as/z80/asmain.c (main): fixed bug #801766
8698
8699 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8700
8701         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8702         compilers
8703
8704 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8705
8706         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8707         reported in bug #800609
8708
8709 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8710
8711         * Top header beautifications in src/pic16 directory:
8712           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8713           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8714           pcoderegs.h, ralloc.c, ralloc.h
8715         * main.c: added top header and GPL license notice
8716         * pcode.c: fixed the if-conditional warning
8717
8718 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8719
8720         * device/lib/_mullong.c: replaced int by short for gcc
8721
8722 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8723
8724         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8725         and JUMPTABLE iCodes properly now (worked by accident before)
8726         * src/mcs51/gen.c (leftRightUseAcc),
8727         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8728         iCode properly now. Use getSize instead of nRegs since a & b
8729         aren't part of the nRegs tally.
8730
8731 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8732
8733         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8734         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8735           before instructions that use the _STATUS register
8736
8737 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8738
8739         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8740         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8741         fetching of the pointer
8742         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8743         copied from genNearPointerSet()
8744         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8745         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8746         If they pop r0/r1 they must be called in the opposite order than aopOp().
8747         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8748         (resp. --stack-auto), prepared for --xstack
8749
8750 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8751
8752         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8753
8754 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8755
8756         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8757         these ports have their own __sdcc_external_start()
8758
8759 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8760
8761         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8762         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8763         type for bits was changed. It resulted in bit variables becoming
8764         global, which is not permitted in PIC 14 assembly output.
8765
8766 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8767
8768         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8769
8770 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8771
8772         Z80 and MCS51 linkers complaint if a public symbol is defined
8773         in more than one library module:
8774
8775         * as/mcs51/lklib.c
8776         * link/z80/lklib.c
8777         * as/mcs51/Makefile.in
8778
8779 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8780
8781         A few small changes that speed up the peephole optimizer.
8782
8783         * src/SDCCpeeph.c
8784
8785 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8786
8787         Try to make the peephole optimizer smarter by maintaining
8788         an association between the assembly source code and the
8789         iCodes that originated them. Put this information to use
8790         with a new peephole rule condition "notVolatile" so that
8791         the rules can be aggressive yet still safe.
8792
8793         * src/SDCCpeeph.c
8794         * src/SDCCpeeph.h
8795         * src/mcs51/gen.c
8796         * src/mcs51/peeph.def
8797
8798 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8799
8800         Fixed bug #741761
8801
8802         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8803         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8804         if the left or right operand symbols have the accuse flag set.
8805
8806 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8807
8808         Changed the type of the result of the ! (NOT) operator to char;
8809         previously it returned the same type as the source. This allows
8810         us to eliminate all the genFloatNot functions (all of its target
8811         implementations were very buggy) since !float can use the same
8812         code as !long now.
8813
8814         * src/SDCCicode.c (ast2iCode): ! returns char
8815         * src/mcs51/gen.c (genNot, genNotFloat),
8816         * src/ds390/gen.c (genNot, genNotFloat),
8817         * src/z80/gen.c (genNot, genNotFloat),
8818         * src/pic/gen.c (genNot, genNotFloat),
8819         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8820
8821 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8822
8823         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8824         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8825            during interrupts. Ensure WSAVE is located at a shared bank address.
8826         2. Fixed page selection in some places
8827         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8828            the registers name strings.
8829         4. Fixed "signed / unsigned compare" compiler warnings.
8830         5. The PIC port manages its own allocation of the general purpose
8831            registers, but makes no attempt to reuse them. As a result when
8832            compiling it soon runs out of general purpose registers. Some
8833            additional code was added to the files pcode.c and device.c to walk
8834            through the function call tree and rename the registers so that they
8835            get reused.
8836
8837         * src/pic/device.c
8838         * src/pic/gen.c
8839         * src/pic/glue.c
8840         * src/pic/pcode.c
8841         * src/pic/pcode.h
8842         * src/pic/ralloc.c
8843         * src/pic/ralloc.h
8844         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8845         genPlus() & genMinus() when the result is the same as left or right
8846
8847 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8848
8849         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8850
8851 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8852
8853         Made bitfield a distinct type from bit so that bitfields
8854         convert as per ANSI C and bits retain their traditional
8855         boolean style behaviour. Implemented bitfield support in
8856         the z80 port.
8857
8858         * src/SDCCsymt.h,
8859         * src/SDCCsymt.c,
8860         * src/SDCCast.c,
8861         * src/cdbFile.c,
8862         * src/mcs51/gen.c,
8863         * src/ds390/gen.c: bit v bitfield split
8864         * src/z80/gen.c: New support for bitfields
8865         * support/regression/tests/bitfields.c: reenabled z80,
8866         added more tests
8867
8868 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8869
8870         Rules 246.x, 247.x relate to bitfields, the others speed up
8871         access to xdata mapped I/O devices.
8872
8873         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8874
8875 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8876
8877         Cleaned up genPackBits and genUnpackBits and added two helper
8878         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8879         for literal assignments in genPackBits (thanks to Frieder for
8880         reminding me).
8881
8882         * src/mcs51/gen.c
8883         * src/ds390/gen.c
8884
8885 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8886
8887         Fixed bug #748310 (pointer to function type mishandled when the
8888         function name is omitted). Also fixed a SIGSEGV when a function
8889         attribute (reentrant, etc) is used on a non-function or on a
8890         function but misplaced before the parameter list.
8891
8892         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8893         bug #748310
8894         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8895         * support/Util/SDCCerr.h,
8896         * support/Util/SDCCerr.c: Added func attr misuse error msg
8897
8898 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8899
8900         Fixed bug #787649 by anonymous
8901         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8902         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8903
8904 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8905
8906         Fixed numerous bitfield problems.
8907
8908         * src/SDCC.y: More bitfield related error checking
8909         * src/SDCCsymt.h,
8910         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8911         * support/Util/SDCCerr.h,
8912         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8913         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8914         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8915         * support/regression/tests/bitfields.c: tests added
8916
8917 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8918
8919         Made the constant following the "interrupt" keyword optional. If
8920         omitted, the function will not automatically be given an entry
8921         in the interrupt vector table (similar to #pragma NOIV, but
8922         less syntacticly kludgy). The interrupt number is also now
8923         range checked. Also fixed a bug in the high order bit example
8924         in the manual.
8925
8926         * src/SDCC.y
8927         * src/SDCCmem.c
8928         * src/SDCCglue.c
8929         * src/SDCCsymt.h
8930         * support/Util/SDCCerr.c
8931         * support/Util/SDCCerr.h
8932         * doc/sdccman.lyx
8933
8934 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8935
8936         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8937         * src/SDCCicode.c (operandOperation): rewritten some ops
8938         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8939         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8940         other type
8941         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8942         be re-activated by defining REDUCE_LITERALS)
8943         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8944         unsigned, but are signed by default
8945         * src/SDCCval.c (constVal): rearranged
8946         * src/SDCCval.c (valMod): preliminary fix
8947         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8948         * support/regression/literalop.c: added, work in progress
8949
8950 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8951
8952         Generate warnings for useless declarations like "char data;"
8953         that don't do what new users expect.
8954
8955         * src/SDCC.y
8956         * support/Util/SDCCerr.h
8957         * support/Util/SDCCerr.c
8958
8959 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8960
8961         * src/SDCCval.c (valMult): fix overflow detection of negative int
8962
8963 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8964
8965         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8966
8967         Changes to support big endian targets:
8968
8969         * src/ports.h
8970         * src/SDCCglue.c
8971         * src/avr/main.c
8972         * src/ds390/main.c
8973         * src/izt/i186.c
8974         * src/mcs51/main.c
8975         * src/pic/main.c
8976         * src/pic16/main.c
8977         * src/xa51/main.c
8978         * src/z80/main.c
8979
8980 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8981
8982         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8983         * device/lib/time.c: fixed warning "integer overflow in expression"
8984
8985 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8986
8987         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8988         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8989         constants are unsigned; added recognition of "u" flag for unsigned
8990         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8991         * src/SDCCval.c (valDiv, valMod): fixed signdness
8992         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8993         signedness of modulo, left and right shift
8994         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8995         * support/Util/SDCCerr.h: added warning W_INT_OVL
8996         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8997         * src/SDCCast.c (ast_print): improved output of constants
8998
8999 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9000
9001         Fixed some warnings when building with MSVC:
9002
9003         * as\mcs51\asdata.c
9004         * as\z80\asdata.c
9005         * as\mcs51\asm.h
9006         * as\z80\asm.h
9007         * link\z80\aslink.h
9008         * link\z80\lkdata.c
9009         * link\z80\lkeval.c
9010         * link\z80\lkgb.c
9011         * link\z80\lkihx.c
9012         * link\z80\lks19.c
9013         * link\z80\lksym.c
9014         * support\cpp2\cpplib.c
9015         * src\ds390\gen.c
9016         * src\mcs51\gen.c
9017
9018 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9019
9020         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9021
9022 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9023
9024         * support\librarian\clean.mk: Do not remove Makefile.
9025         * support\librarian\Makefile: added.
9026
9027 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9028
9029         Added librarian to MSVC build:
9030         * all.dsp
9031         * sdcc.dsw
9032         * support\librarian\librarian.dsp
9033
9034         'configure' not needed for librarian, removed:
9035         * support\librarian\configure
9036         * support\librarian\configure.in
9037         * support\librarian\config_in.h
9038         * support\librarian\Makefile.in
9039
9040         Hopefully these ones built the librarian and the rest of sdcc properly:
9041         * Makefile
9042         * Makefile.common.in
9043
9044         Messed up 'configure', so revert to previous version:
9045         * configure
9046         * configure.in
9047
9048 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9049
9050         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9051         there, while the mantissa of a double is "only" 53 bits wide.
9052
9053 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9054
9055         Adding sdcclib to the build.  MSVC project coming soon.
9056         Files added/changed:
9057
9058         * support\librarian\clean.mk
9059         * support\librarian\configure
9060         * support\librarian\configure.in
9061         * support\librarian\config_in.h
9062         * support\librarian\Makefile.bcc
9063         * support\librarian\Makefile.in
9064         * support\librarian\sdcclib.c
9065         * Makefile.bcc
9066         * Makefile
9067         * Makefile.common.in
9068         * configure
9069         * configure.in
9070
9071 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9072
9073         Linker now complaints if linked modules have conflicting options, for
9074         example, one compiled using --model-large and another one compiled with
9075         --model-small.  The following files were modified:
9076
9077         * as\mcs51\asdata.c
9078         * as\mcs51\aslink.h
9079         * as\mcs51\asm.h
9080         * as\mcs51\asmain.c
9081         * as\mcs51\asout.c
9082         * as\mcs51\i51pst.c
9083         * as\mcs51\lkdata.c
9084         * as\mcs51\lklibr.c
9085         * as\mcs51\lkmain.c
9086         * as\z80\asdata.c
9087         * as\z80\asm.h
9088         * as\z80\asmain.c
9089         * as\z80\asout.c
9090         * as\z80\z80pst.c
9091         * link\z80\aslink.h
9092         * link\z80\lkdata.c
9093         * link\z80\lklibr.c
9094         * link\z80\lkmain.c
9095         * src\SDCCglue.c
9096
9097 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9098
9099         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9100         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9101
9102 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9103
9104         * src/z80/mappings.i: fix _mul[us][int,long] entries
9105
9106 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9107
9108         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9109
9110 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9111
9112         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9113         * support/regression/tests/bitopcse.c: added
9114         fixed warning:
9115         * src/avr/gen.c:
9116         * src/pic/gen.c:
9117         * src/pic16/gen.c:
9118         * src/z80/gen.c:
9119         * src/xa51/gen.c:
9120
9121 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9122
9123         added support for new library format to z80, gbz80 linkers:
9124         *link/z80/aslink.h
9125         *link/z80/lklex.c
9126         *link/z80/lklib.c
9127         *link/z80/lklist.c
9128
9129 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9130
9131         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9132         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9133
9134 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9135
9136         added DUMMY_READ_VOLATILE:
9137         * src/SDCC.y:
9138         * src/avr/gen.c:
9139         * src/xa51/gen.c:
9140         * src/z80/gen.c:
9141         * src/pic/gen.c:
9142         * src/pic16/gen.c:
9143         * src/mcs51/gen.c:
9144         * src/ds390/gen.c:
9145         * src/SDCCcse.c (algebraicOpts): many improvements
9146         * src/SDCCcse.h: removed algebraicOpts()
9147         * src/SDCCicode.c (picDummyRead): added
9148
9149 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9150
9151         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9152         "Insufficient space in data memory".
9153
9154 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9155
9156         * src/mcs51/gen.c: fixed bug #771358
9157         * src/z80/gen.c: fixed bug #759087
9158
9159 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9160
9161         * src/pic16/glue.c: minor cleanup by Vangelis
9162
9163 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9164
9165         * device/include/regc515c.h: fixed #758477
9166         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9167         * device/lib/_gptrput.c: saved a few bytes
9168         * my tab spacing is 8, yours too?)
9169         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9170         * device/lib/serial.c: process RX bytes earlier than TX bytes
9171         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9172
9173 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9174
9175         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9176
9177 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9178
9179     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9180
9181 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9182
9183         * device/lib/Makefile.in: bad fix, reverted to 1.43
9184
9185 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9186
9187         * device/lib/Makefile.in: added missing z80 object files
9188
9189 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9190
9191         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9192         pic16 progress by Vangelis:
9193         * src/SDCCglobl.h:
9194         * src/SDCCmain.c:
9195         * src/pic/Makefile:
9196         * src/pic:
9197         * pic/Makefile:
9198         * pic16/device.c:
9199         * pic16/device.h:
9200         * pic16/gen.c:
9201         * pic16/gen.h:
9202         * pic16/genarith.c:
9203         * pic16/glue.c:
9204         * pic16/main.c:
9205         * pic16/pcode.c:
9206         * pic16/pcode.h:
9207         * pic16/pcodepeep.c:
9208         * pic16/peeph.def:
9209
9210 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9211
9212     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9213
9214 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9215
9216     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9217     added gbz80 build to MSVC project.
9218     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9219     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9220     from 8051 stuff and setup so it links using a .lnk file.
9221
9222 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9223
9224     * support/librarian/sdcclib.c: sdcc librarian.
9225     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9226     with sdcclib.
9227
9228 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9229
9230     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9231
9232 2003-07-02  Borut Razem <borut.razem AT siol.net>
9233
9234         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9235         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9236         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9237         src/xa51/main.c, src/z80/main.c:
9238         virtualization of glue() function: each port has it's own glue function,
9239         which is accessed by do_glue function pointer in PORT.general structure
9240
9241 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9242
9243         * DS800C400 fun, improved ROM interface and tinibios.
9244
9245 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9246
9247         * More support for DS80C400. Now includes beginning of interface to ROM.
9248
9249 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9250
9251         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9252
9253 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9254
9255         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9256
9257 2003-06-19  Borut Razem <borut.razem AT siol.net>
9258
9259         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9260
9261 2003-06-19  Borut Razem <borut.razem AT siol.net>
9262
9263         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9264         fixed Z80 port - crt0.o: cannot open.
9265
9266 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9267
9268         * support/Util/MySystem.c (merge_command): revert bad fix
9269
9270 2003-06-18  Borut Razem <borut.razem AT siol.net>
9271
9272         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9273
9274 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9275
9276         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9277         option --use-stdout sends errors to stdout instead of stderr.
9278
9279 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9280
9281         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9282
9283 2003-06-15  Borut Razem <borut.razem AT siol.net>
9284
9285         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9286         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9287         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9288         fixed width array of pointers replaced with sets;
9289         multiple include and lib paths ared transferred to preprocessor and linker
9290         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9291         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9292         fixed width array of pointers
9293         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9294         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9295         fixupPath(), getPathDifference()
9296         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9297         fixed width array of pointers
9298
9299 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9300
9301         * src/pic16/ralloc.c: fix warnings
9302         * src/pic16/pcode.c: fix warning
9303
9304 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9305
9306          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9307         know all the details, but essentially this set of changes enable
9308         the pic16 port to generate movff instructions and generate assembler
9309         directives,
9310         * src/SDCCmain.c:
9311         * src/pic16/gen.c:
9312         * src/pic16/glue.c:
9313         * src/pic16/pcode.c:
9314         * src/pic16/device.c:
9315         * src/pic16/main.c:
9316         * src/pic16/pcode.h:
9317         * src/pic16/pcoderegs.c:
9318         * src/pic16/ralloc.c:
9319         * src/pic16/ralloc.h:
9320
9321 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9322
9323         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9324         added option --vc, so sdcc errors and warnings are compatible with
9325         Microsoft Visual Studio.
9326
9327 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9328
9329         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9330           device/lib/libfloat.lib: added atof function.
9331
9332 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9333
9334         * doc/sdccman.lyx: updated to Lyx 1.3
9335         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9336         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9337         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9338
9339 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9340
9341         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9342
9343 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9344
9345         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9346           additions to the "related tools/documentation" section
9347
9348 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9349
9350         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9351
9352 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9353
9354         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9355         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9356
9357 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9358
9359         * doc/sdccman.lyx: fix double dash and other minor things
9360         * doc/Makefile: fix double dash
9361
9362 2003-05-28  Karl Bongers(patches from Martin Helmling)
9363         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9364           condition and ignore commands.
9365
9366 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9367
9368         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9369           is in parts still quite out of date, I did changes as far as I felt makes sense
9370           for a non-native english speaker.
9371           Please feel free to add to the manual or to correct my changes.
9372         * doc/Makefile: undid touching the date of intermediate tex files.
9373
9374 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9375
9376         * doc/sdccman.lyx: Manual has an index now
9377
9378 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9379
9380         Finalize muluint/mulsint and mululong/mulslong merging:
9381         * device/lib/_mulint.c
9382         * device/lib/_mullong.c
9383         * device/lib/gbz80/mul.s
9384         * device/lib/gbz80/stubs.s
9385         * device/lib/z80/mul.s
9386         * device/lib/z80/stubs.s
9387         * src/SDCCsymt.c (initCSupport)
9388
9389 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9390
9391         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9392         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9393           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9394           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9395           instead of /Zm500.
9396
9397 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9398
9399         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9400           the regression tests I'm not brave enough to enable 245.b, 245.c
9401         * doc/sdccman.lyx: added latex preamble for hyperref package.
9402           Using pdflatex this will give you a hyperlinked pdf file with
9403           bookmarks. (prepend '%' before /usepackage if this breaks something)
9404
9405 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9406
9407          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9408
9409 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9410
9411         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9412
9413 2003-05-21    <johan AT balder>
9414
9415         * src/SDCCglue.c (printIval): fixed bug #739934
9416
9417 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9418
9419         Applied patch from bug 737905 (renamed yylineo to mylineno):
9420         * src/altlex.c
9421         * src/SDCCast.c
9422         * src/SDCglobl.h
9423         * src/SDCC.lex
9424         * src/SDCCsymt.c
9425         * src/SDCCval.c
9426         * src/pic16/pcode.c: Cleaned warnings
9427         * src/pic16/pcodeflow.c: Cleaned warnings
9428         * src/pic16/pcoderegs.c: Cleaned warnings
9429
9430 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9431
9432         * src/pic16/pcode.c: Cleaned warnings
9433         * src/pic16/pcodepeep.c: Cleaned warnings
9434         * src/pic16/ralloc.c: Cleaned warnings
9435
9436 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9437
9438         * doc/sdccman.lyx: fixed bug 739745
9439         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9440
9441 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9442
9443         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9444         it can be defined with CFLAGS when running configure
9445         * src/SDCCmain.c: fixed compiling + linking with object files
9446
9447 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9448
9449         * configure.in: configure for pic16 port,
9450             added --disable-pic16-port
9451         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9452         * src/SDCCmain.c: linkOptions is changed to set *,
9453             added if/endif conditional macros to remove options help
9454             messages from optionsTable when a port is not configured, added
9455             support for the PIc16 port in the ports table, when executing
9456             the compiler with no port specified on command line, a default
9457             port is selected with the new macro DEFAULT_PORT which is
9458             defined in port.h, in setDefaultOptions() linkOptions is removed
9459             from initialization assignment, since now it is a set,
9460             parseCmdLine uses setParseWithComma for linkOptions, in
9461             linkEdit() linkOptions are accessed with new function indexSet()
9462             which returns the i'th item of a set variable. See SDCCset.c, in
9463             linkEdit() when calling buildCmdLine(), added linkOptions as
9464             last argument. Now users can pass arguments to gplink via the
9465             -Wl option, main() uses pic16glue() to glue up pic16 programs
9466         * src/SDCCpeeph.c: various changes to support pic16
9467         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9468             return the i'th item of the set
9469         * src/SDCCset.h: added function prototype for indexSet()
9470         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9471         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9472         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9473             added macro DEFAULT_PORT
9474         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9475         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9476             generated
9477         * src/pic16/glue.c: commented out some error producing lines
9478         * src/pic16/main.c: __config directives are commented out to stop
9479             gpasm complaining and test the linkage with gplink, _linkCmd and
9480             _asmCmd changed to be more gplink and gpasm friendly
9481         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9482             produced an error when parsed, peep rule 12 is added to utilize
9483             movff, but it is commented out since the pCode does not support
9484             yet a command with 2 address arguments
9485
9486 2003-05-18    <johan AT balder>
9487
9488         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9489         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9490 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9491
9492         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9493   Added feature to script commands from file.
9494
9495 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9496
9497         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9498         * src/SDCCutil.c: include ctype.h for win32
9499
9500 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9501
9502         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9503
9504 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9505
9506         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9507   Fixed so you can set breakpoints prior to run, run does not stop
9508   on entry now.  Add tbreak.  Other enhancements and fixes for use
9509   with ddd.
9510
9511 2003-05-12  Borut Razem <borut.razem AT siol.net>
9512
9513         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9514
9515 2003-05-11  Borut Razem <borut.razem AT siol.net>
9516
9517         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9518         the path of bin directory, so that PATH is the only env. variable, which has to be set
9519         in case of standard installation.
9520         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9521         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9522         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9523
9524 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9525
9526         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9527         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9528         temp files are in the port dir; clean the gen/test directory when
9529         generating new test.c
9530         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9531         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9532         * support/regression/tests/zeropad.c: added
9533
9534 2003-05-09    <johan AT balder>
9535
9536         * src/SDCCglue.c: fixed bug #597940
9537
9538 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9539
9540         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9541   cache sfr, optimize next,step, fix off by one sourceline,
9542   support ddd list function.
9543         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9544
9545 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9546
9547         * support/regression/HTMLgen.py: added compare_s2f()
9548         * support/regression/Makefile: redo 1.27
9549         * support/regression/generate-cases.py: redo 1.5
9550
9551 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9552
9553         * support/regression/tests/float.c: workaround 33 bit hex constant
9554         * support/regression/tests/simplefloat.c: fix division for host
9555
9556 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9557
9558         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9559         that tame's the PIC's over-aggressive optimizer.
9560
9561 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9562
9563          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9564          support for MSVC.
9565
9566 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9567
9568         Initial support for DS80C400. "Hello world" runs on TINIm400
9569         (with polled I/O).
9570
9571 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9572
9573          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9574          * Some notes on ddd usage added in debugger/README
9575          Martin Helmling adding more features and fixes for ddd GUI debugger.
9576          Code added for nexti, stepi, up, down, and other adjustments.
9577
9578 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9579
9580         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9581         * src/pic/peeph.def Added two rules to optimize carry manipulation
9582         * src/pic/* removed debug printfs
9583
9584 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9585
9586         * debugger/mcs51/cmd.c: added header newalloc.h
9587
9588 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9589
9590         * as/Makefile: new EXEEXT
9591         * as/z80/Makefile: remove trailing slash of BUILDIR
9592         * as/z80/clean.mk: new EXEEXT
9593         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9594         * support/cpp2/Makefile.in: new EXEEXT
9595         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9596
9597 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9598
9599         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9600         EXEEXT was introduced to fix all related problems with targets
9601         "clean", "install" and "uninstall"; a couple of further flaws
9602         especially with "clean" have been fixed too
9603         * as/mcs51/Makefile.in
9604         * as/mcs51/clean.mk
9605         * as/z80/Makefile
9606         * Makefile
9607         * clean.mk
9608         * debugger/mcs51/Makefile.in
9609         * debugger/mcs51/clean.mk
9610         * link/z80/Makefile
9611         * link/z80/Makefile.in
9612         * link/z80/clean.mk
9613         * link/Makefile
9614         * packihx/Makefile.in
9615         * packihx/clean.mk
9616         * sim/ucsim/Makefile
9617         * sim/ucsim/clean.mk
9618         * sim/ucsim/avr.src/Makefile.in
9619         * sim/ucsim/avr.src/clean.mk
9620         * sim/ucsim/s51.src/Makefile.in
9621         * sim/ucsim/s51.src/clean.mk
9622         * sim/ucsim/xa.src/Makefile.in
9623         * sim/ucsim/xa.src/clean.mk
9624         * sim/ucsim/z80.src/Makefile.in
9625         * sim/ucsim/z80.src/clean.mk
9626         * sim/ucsim/main_in.mk
9627         * sim/ucsim/packages_in.mk
9628         * sim/ucsim/gui.src/Makefile.in
9629         * sim/ucsim/gui.src/serio.src/Makefile.in
9630         * sim/ucsim/gui.src/serio.src/clean.mk
9631         * src/Makefile.in
9632         * src/clean.mk
9633         * support/cpp2/Makefile.in
9634         * support/cpp2/clean.mk
9635         * support/makebin/Makefile
9636         * support/makebin/clean.mk
9637         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9638         * doc/sdccman.lyx: --program-suffix no longer needed
9639
9640 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9641
9642          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9643          Martin Helmling added support for ddd GUI debugger.
9644          Code added to display assembly, set variables, and other commands
9645          to interface to ddd.
9646
9647 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9648
9649         * as/Makefile: fix target clean
9650         * as/clean.mk: fix target clean
9651         * as/z80/clean.mk: fix target clean
9652
9653 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9654
9655         * Makefile.common.in: added  AT EXEEXT AT
9656         * configure.in: removed all mingw32 stuff
9657         * configure: rebuilt from configure.in
9658         * doc/sdccman.lyx: updated section "installation"
9659         * support/scripts/sdcc_mingw32: adapted to configure
9660         * support/scripts/sdcc_cygwin_mingw32: added
9661
9662 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9663
9664         * src/pic Added object file support for the PIC port
9665         * src/pic Applied patch from Craig Franklin (this started the object file support)
9666         * src/regression Updated the PIC regression tests for object files
9667
9668 2003-04-20  Borut Razem <borut.razem AT siol.net>
9669
9670         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9671           lklex.c: In function `getfid':
9672           lklex.c:203: warning: array subscript has type `char'
9673         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9674           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9675         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9676           stack handling macros
9677
9678 2003-04-19  Borut Razem <borut.razem AT siol.net>
9679
9680         * "handling space characters in file path" task:
9681         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9682         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9683         * support/Util/MySystem.h: make it self-sufficient
9684         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9685           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9686           handling space characters in file path
9687         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9688           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9689         * support/Util/MySystem.c: handling space characters in executable's path
9690
9691 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9692
9693         * as/z80/Makefile: fix permanent rebuild of z80
9694         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9695         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9696
9697 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9698
9699         * src/SDCCopt.c: add special case optimization to replace modulo by
9700           a power of two with a bitwise AND.
9701
9702 2003-04-18    <johan AT balder>
9703
9704         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9705
9706 2003-04-17    <johan AT balder>
9707
9708         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9709         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9710
9711 2003-04-13  Borut Razem <borut.razem AT siol.net>
9712
9713         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9714         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9715           fixed mingw problem in adl_NORMALIZE_PATH
9716
9717 2003-04-12  Borut Razem <borut.razem AT siol.net>
9718
9719         * fixed "#pragma SAVE/RESTORE can not be nested":
9720         * src/SDCC.lex: reworked pragma handling functions
9721         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9722         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9723
9724 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9725
9726         * src/SDCCutil.c (pathEquivalent): defined but not used
9727         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9728         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9729         * configure: rebuilt from configure.in
9730         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9731         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9732         * device/include/Makefile.in: replace sdcc_datadir
9733         * device/lib/Makefile.in: replace sdcc_datadir
9734         * Makefile.common.in: add LDFLAGS from configure
9735         * packihx/Makefile.in: use LDFLAGS
9736         * src/Makefile.in: use LDFLAGS
9737         * support/cpp2/Makefile.in: add LDFLAGS from configure
9738         * support/makebin/Makefile: use LDFLAGS
9739         * .version: bumped version number to 2.3.5
9740
9741 2003-04-12  Borut Razem <borut.razem AT siol.net>
9742
9743         * completed "different paths" task:
9744         * src/SDCCmacro.c: fixed bug in handling quotes
9745         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9746         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9747
9748 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9749
9750         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9751
9752 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9753
9754         * ds390/gen.c ds390/peeph.def: fix bug 706781
9755
9756 2003-04-11  Borut Razem <borut.razem AT siol.net>
9757
9758         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9759
9760 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9761
9762         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9763         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9764          set - this bit used to not be set...).
9765         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9766           bad code in PIC Port
9767         * src/regression/and2.c added to test bug 609268
9768         * src/regression/Makefile added and2.c to regression test
9769
9770
9771 2003-04-08    <johan AT CP255758-A>
9772
9773         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9774         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9775         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9776
9777 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9778
9779         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9780         fix bug #487815
9781         * support/cpp2/Makefile.in: fix bug #487815
9782         * configure: rebuilt from configure.in
9783         * Makefile.common.in: docdir changed, new path suffixes
9784         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9785         * sdcc_vc_in.h: reflect changes from sdccconf.h
9786         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9787         * src/SDCCutil.h: remove BINDIR hack
9788         * doc/sdccman.lyx: update new path hierarchy
9789
9790 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9791
9792         * src/SDCCpeeph.c: added okToRemoveSLOC test
9793
9794 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9795
9796         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9797
9798 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9799
9800         * src/SDCCpeeph.c: added labelIsReturnOnly test
9801         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9802
9803 2003-04-05    <johan AT balder>
9804
9805         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9806         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9807         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9808         * src/SDCCast.c: fixed a warning
9809         * src/SDCCast.h: fixed a warning
9810         * src/SDCCicode.c (operandFromAst): fixed a warning
9811
9812 2003-04-04    <johan AT balder>
9813
9814         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9815         * src/SDCCast.c (decorateType): fixed bug #715076
9816         * src/SDCC.y: fixed bug #702907
9817
9818 2003-04-03    <johan AT balder>
9819
9820         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9821         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9822         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9823         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9824         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9825
9826 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9827
9828         * _decdptr.c: fix return values
9829         * _gptrget.c: fix return values
9830         * _gptrgetc.c: fix return values
9831         * _gptrput.c: fix return values
9832         * _mulint.c: fix return values
9833         * as/z80/Makefile: fix 'make -j' problem
9834
9835 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9836
9837         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9838         * configure.in: big cleanup, updated to autoconf 2.5x
9839         * configure: rebuilt from configure.in
9840         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9841         * sdcc_vc_in.h: reflect changes from sdccconf.h
9842         * doc/Makefile: fixed a flaw in "make install"
9843
9844 2003-04-02    <johan AT balder>
9845
9846         * src/ds390/gen.c (genCmp): no comments
9847         * src/mcs51/gen.c (genCmp): no comments
9848         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9849         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9850
9851 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9852
9853         * support/regression/generate-cases.py: place generated file in given sub directory
9854         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9855         * support/regression/Makefile: improvements for 'make -j';
9856         side effect: it's simpler and faster now
9857
9858 2003-03-31  Borut Razem <borut.razem AT siol.net>
9859
9860         * src/z80/main.c: link-{port} and as-{port} defined without path
9861         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9862
9863 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9864
9865         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9866
9867 2003-03-30  Borut Razem <borut.razem AT siol.net>
9868
9869         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9870           changed type of list parameter to set
9871         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9872         * src/port.h: changed type of do_assemble() parameter to set
9873         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9874           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9875           definition of "cppoutfilename" macro with NULL value in preProcess()
9876         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9877         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9878         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9879           replaced with set *binPathSet
9880         * shash_add() deallocates the item, if allready exsists, before adding the new one
9881         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9882
9883 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9884
9885         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9886           a nested for loop bug in the PIC port
9887         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9888           for loops
9889
9890 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9891
9892         * support/Util/dbuf.h: remove C++ stuff to make it portable
9893
9894 2003-03-28  Borut Razem <borut.razem AT siol.net>
9895
9896         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9897           literal strings in stringLiteral()
9898         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9899         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9900           to the project
9901
9902 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9903
9904         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9905
9906 2003-03-26    <johan AT balder>
9907
9908         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9909         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9910         * src/SDCCast.c (decorateType): fixed " -v < 3"
9911
9912 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9913
9914         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9915         Added Lenny Story's debug infrastructure changes:
9916         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9917         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9918         * src/cdbFile.c: added
9919         * src/SDCCdebug.c: added
9920         * src/SDCCdebug.h: added
9921         * src/SDCCast.c (createFunction)
9922         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9923         * src/SDCCmain.c (parseCmdLine, main)
9924         * src/SDCCmem.c (redoStackOffsets)
9925         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9926         * src/SDCCsymt.h
9927         * src/common.h
9928         * src/avr/gen.c (genAVRCode)
9929         * src/ds390/gen.c (gen390Code)
9930         * src/mcs51/gen.c (gen51Code)
9931         * src/pic/gen.c (genpic14Code)
9932         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9933         * src/xa51/gen.c (genXA51Code)
9934         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9935
9936 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9937
9938         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9939         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9940
9941 2003-03-22    <johan AT balder>
9942
9943         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9944
9945 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9946
9947         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9948         * doc/cdbfileformat.lyx: added, written by Lenny Story
9949         * doc/Makefile: added cdbfileformat.lyx
9950         * doc/clean.mk: added cdbfileformat.lyx
9951
9952 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9953
9954         * src/mcs51/peeph.def: fix bug #705773
9955
9956 2003-03-20    <johan AT balder>
9957
9958         An sfr/sbit can have an "at #" AND an initializer
9959         * src/SDCCsymt.c (checkSClass):
9960         * src/SDCCmem.c (allocGlobal):
9961         * src/SDCCmem.c (allocLocal):
9962         * src/SDCCast.c (createBlock):
9963
9964 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9965
9966         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9967
9968 2003-03-16    <johan AT balder>
9969
9970         Undid the hackup of const and volatile, the problem is much bigger
9971         * src/SDCC.y:1.65
9972         * src/SDCCast.c:1.171
9973         * src/SDCCglue.c:1.138
9974         * src/SDCCicode.c:1.146
9975         * src/SDCCsymt.c:1.150
9976         * src/SDCCval.c:1.65
9977
9978 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9979
9980         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9981         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9982
9983 2003-03-13    <johan AT balder>
9984
9985         Hackup const and volatile modifiers in type chains a bit:
9986         * src/SDCC.y:1.63
9987         * src/SDCCast.c:1.169
9988         * src/SDCCglue.c:1.136
9989         * src/SDCCicode.c:1.143
9990         * src/SDCCsymt.c1.146
9991         * src/SDCCsymt.h1.59
9992         * src/SDCCval.c:1.63
9993
9994 2003-03-12    <johan AT balder>
9995
9996         * src/SDCCBBlock.h: more LRH debugging junk
9997         * src/SDCCcflow.h: more LRH debugging junk
9998         * src/SDCCloop.c: more LRH debugging junk
9999         * src/SDCC.y (struct_declaration): fixed bug #697590
10000         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10001         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10002         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10003
10004 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10005         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10006         test function names must now match exactly).
10007         * src/SDCCcse.c: added special case in findCheaperOp to allow
10008         extending a short integer. Makes less awful code for bug 700121 test case.
10009
10010 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10011
10012         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10013         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10014
10015 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10016
10017         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10018         actually called (operandsNotEqual() was called for all
10019         operandsNotEqualX tests).
10020
10021 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10022
10023         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10024         with shorter literals. Fixes bug 700121.
10025
10026 2003-03-11    <johan AT balder>
10027
10028         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10029
10030 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10031
10032         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10033         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10034
10035 2003-03-10  Borut Razem <borut.razem AT siol.net>
10036
10037         * src/SDCCmain.c: pipe preprocessor's output
10038         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10039         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10040         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10041         which closes all pipes in pipeSet set
10042         * src/SDCCset.c: free deleted item in function deleteSetItem()
10043         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10044         moved from z80 to src subproject
10045         * .version: increased version number to 2.3.4
10046
10047 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10048
10049         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10050         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10051         * support/regression/ports/xa51/spec.mk: fix typo
10052
10053 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10054
10055         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10056
10057 2003-03-09  Borut Razem <borut.razem AT siol.net>
10058
10059         * src/SDCCmain.c: pipe preprocessor's output
10060         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10061         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10062         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10063         which closes all pipes in pipeSet set
10064         * src/SDCCset.c: free deleted item in function deleteSetItem()
10065         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10066         moved from z80 to src subproject
10067
10068 2003-03-09  Borut Razem <borut.razem AT siol.net>
10069
10070         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10071         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10072         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10073         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10074         * src/SDCCglobl.h: unification of WIN32 native definitions
10075
10076 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10077
10078         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10079
10080 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10081
10082         * src/configure.in:   check for endianess (even while cross-compiling)
10083         * src/configure:      check for endianess (even while cross-compiling)
10084         * src/configure_in.h: check for endianess (even while cross-compiling)
10085         * src/avr/gen.c:        remove old endianess stuff
10086         * src/mcs51/gen.c:      remove old endianess stuff
10087         * src/ds390/gen.c:      remove old endianess stuff
10088         * src/pic/gen.c:        remove old endianess stuff
10089         * src/pic/genarith.c:   remove old endianess stuff
10090         * src/pic/glue.c:       fix endianess check
10091         * src/pic16/gen.c:      remove old endianess stuff
10092         * src/pic16/genarith.c: remove old endianess stuff
10093         * src/pic16/glue.c:     fix endianess check
10094         * src/xa51/gen.c:       remove old endianess stuff
10095         * src/z80/gen.c:        fix endianess check
10096         * src/SDCCglue.c:       fix endianess check
10097         * src/ds390/peeph.def: fix bug 700036
10098
10099 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10100
10101         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10102         * src/configure: find appropriate data-types on host for SDCC's int and long
10103         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10104         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10105         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10106
10107 2003-03-07    <johan AT balder>
10108
10109         Just a big NOOP:
10110                 some minor cleanups before the big shot
10111                 OP_DEFS and OP_USES now use Kevin's protection
10112                 new option --nolabelopt
10113
10114         * src/SDCCBBlock.c:
10115         * src/SDCCast.c,:
10116         * src/SDCCcflow.c:
10117         * src/SDCCcse.c:
10118         * src/SDCCicode.c:
10119         * src/SDCCicode.h:
10120         * src/SDCClabel.c:
10121         * src/SDCCloop.c:
10122         * src/SDCCmain.c:
10123         * src/ds390/ralloc.c:
10124         * src/mcs51/ralloc.c:
10125         * src/pic/ralloc.c:
10126         * src/xa51/ralloc.c:
10127         * src/z80/ralloc.c:
10128
10129 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10130
10131         * src/pic/pcode.c (get_op): fix 64 bit warnings
10132         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10133         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10134         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10135         * support/regression/tests/malloc.c: fix 64 bit warnings
10136
10137 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10138
10139         * src/mcs51/gen.c (genMinus): fixed bug 696436
10140
10141 2003-03-02  Borut Razem <borut.razem AT siol.net>
10142
10143         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10144
10145 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10146
10147         * configure.in: test for mkstemp
10148         * sdccconf_in.h: add HAVE_MKSTEMP
10149
10150 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10151
10152         * device/include/ctype.h: removed warning while using --stack-auto
10153         * device/include/malloc.h: removed warning while using --stack-auto
10154         * device/include/string.h: removed warning while using --stack-auto
10155
10156 2003-02-23  Borut Razem <borut.razem AT siol.net>
10157
10158         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10159         because NDEBUG is defined (see man assert)
10160         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10161
10162 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10163
10164         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10165         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10166
10167 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10168
10169         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10170         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10171
10172 2003-02-18    <johan AT balder>
10173
10174         * as/mcs51/asmain.c (asmbl): module can start with a digit
10175         * as/z80/asmain.c (asmbl): module can start with a digit
10176
10177 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10178
10179         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10180         * src/asm.c: fix pipe() for Mingw32
10181
10182 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10183
10184         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10185         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10186         make -V work again; --c1mode reads now from stdin
10187         * doc/sdccman.lyx: added --c1mode
10188         * support/Util/SDCCerr.c: new messages for c1 mode
10189         * support/Util/SDCCerr.h: new messages for c1 mode
10190         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10191
10192 2003-02-15    <johan AT balder>
10193
10194         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10195
10196 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10197
10198         * doc/sdccman.lyx: Environment variables, -o and other minor things
10199
10200 2003-02-14    <johan AT balder>
10201
10202         * src/xa51/main.c: before anyone really tries to use it :)
10203
10204         * Install doc's in share/sdcc/doc
10205         * removed some obsolete files
10206         * Do a proper make distclean and uninstall
10207         M Makefile.common.in
10208         R sdccbuild.sh
10209         M as/Makefile
10210         M device/include/Makefile.in
10211         M device/lib/Makefile.in
10212         M doc/sdccman.lyx
10213         M link/Makefile
10214         M sim/ucsim/doc/Makefile.in
10215         M src/clean.mk
10216         R src/avr/peeph.rul
10217         R src/xa51/peeph.rul
10218         M support/cpp2/Makefile.in
10219         M support/makebin/Makefile
10220
10221
10222 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10223
10224         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10225
10226 2003-02-10  Borut Razem <borut.razem AT siol.net>
10227
10228         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10229         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10230         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10231         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10232         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10233         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10234         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10235         src/z80/Makefile.bcc: Borland Makefile cleanup
10236         * as/z80/Makefile.bcc: Added Borland Makefile
10237         * support/cpp2/borland.h: Removed
10238
10239 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10240
10241         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10242         * src/SDCC.lex: new pragma NOIV
10243         * src/SDCCglobl.h: new pragma NOIV
10244         * src/SDCCmem.c: new pragma NOIV
10245
10246 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10247
10248         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10249
10250 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10251
10252         * src/SDCCmain.c: signal handling is switched off by --debug
10253         * doc/Makefile: small fix for install; use clean.mk again
10254         * doc/clean.mk: clean *.pdf and *.html too
10255
10256 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10257
10258         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10259         * device/lib/printfl.c: fix a ds390 bug by making it portable
10260         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10261         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10262         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10263         * debugger/mcs51/cmd.c: converted multi-line string literals
10264         * sim/ucsim/globals.cc: converted multi-line string literals
10265         * src/SDCCmain.c: introduced signal handler to remove temp files
10266         * doc/Makefile: small tweaks, implement clean
10267         * doc: removed generated files
10268
10269 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10270
10271         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10272         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10273         Address Record is not correctly generated for DS390."
10274
10275 2003-02-02  Borut Razem <borut.razem AT siol.net>
10276
10277         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10278         * as/mcs51/asm.h: fixed compilation with Borland C
10279         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10280         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10281         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10282         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10283         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10284         src/z80/Makefile.bcc: delete $(LIB) only if exist
10285         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10286
10287 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10288
10289         * device/include/malloc.h: introduced NULL
10290         * device/include/string.h: introduced NULL
10291         * device/include/stdlib.h: introduced NULL
10292         * device/lib/_memcpy.c: removed NULL
10293         * device/lib/_strcat.c: removed NULL
10294         * device/lib/_strchr.c: removed NULL
10295         * device/lib/_strcmp.c: removed NULL
10296         * device/lib/_strcpy.c: removed NULL
10297         * device/lib/_strcspn.c: removed NULL
10298         * device/lib/_strlen.c: removed NULL
10299         * device/lib/_strncat.c: removed NULL
10300         * device/lib/_strncmp.c: removed NULL
10301         * device/lib/_strncpy.c: removed NULL
10302         * device/lib/_strpbrk.c: removed NULL
10303         * device/lib/_strrchr.c: removed NULL
10304         * device/lib/_strspn.c: removed NULL
10305         * device/lib/_strstr.c: removed NULL
10306         * device/lib/_strtok.c: removed NULL
10307         * device/lib/malloc.c: removed NULL, include own header
10308
10309 2003-02-02    <johan AT balder>
10310
10311         * 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
10312         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10313         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10314         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10315         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10316         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10317
10318 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10319
10320         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10321         area 'DATA'"
10322
10323 2003-02-01    <johan AT balder>
10324
10325         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10326
10327 2003-01-31    <johan AT CP255758-A>
10328
10329         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10330
10331 2003-01-30    <johan AT balder>
10332
10333         * src/SDCCBBlock.c: automatic bug detection
10334         * src/SDCCicode.c: automatic bug detection
10335
10336 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10337
10338         * src/SDCCglobl.h:   now --xram-size 0 works
10339         * src/SDCCmain.c:    now --xram-size 0 works
10340
10341 2003-01-29    <johan AT balder>
10342
10343         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10344
10345 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10346
10347         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10348         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10349         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10350         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10351         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10352         * src/SDCCmain.c:    Added options --xram-size and --code-size
10353
10354 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10355
10356         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10357         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10358
10359 2003-01-27    <johan AT balder>
10360
10361         * src/SDCC.y: fixed bug #613764
10362
10363 2003-01-26    <johan AT balder>
10364
10365         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10366         * src/SDCCsymt.h: fixed bug #673374
10367         * src/SDCCglue.c: fixed bug #661910
10368         * src/SDCCast.c: fixed bug #458099 and 673374
10369
10370 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10371
10372         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10373         * as/mcs51/strcmpi.h: added
10374         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10375         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10376         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10377         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10378         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10379         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10380         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10381         * as/mcs51/Makefile.aslink: new module strcmpi
10382         * as/mcs51/Makefile.asx8051: new module strcmpi
10383         * as/mcs51/Makefil.bcc: new module strcmpi
10384         * as/mcs51/Makefile.in: new module strcmpi
10385         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10386
10387 2003-01-26    <johan AT balder>
10388
10389         * src/SDCCglue.c: reverted back to 1.124
10390         * src/SDCCast.c: reverted back to 1.156
10391         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10392
10393 2003-01-25    <johan AT balder>
10394
10395         * src/SDCCglue.c: A better fix for bug #661910
10396         * src/SDCCast.c: A better fix for bug #661910
10397         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10398
10399 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10400
10401         * src/Makefile.in: remove spawn.o
10402         * src/SDCCmain.c: remove spawn.h
10403         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10404         * src/spawn.c: removed
10405         * src/spawn.h: removed
10406         * support/regression/ports/ds390/spec.mk: link with -r
10407
10408 2003-01-24    <johan AT CP255758-A>
10409
10410         * src/ds390/gen.c (aopOp): fixed bug #667458
10411         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10412         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10413         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10414
10415 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10416
10417         * src/mcs51/peeph.def: better assembler identation by Frieder
10418         * src/mcs51/gen.c: better assembler identation by Frieder
10419
10420 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10421
10422         * as/z80/string.h: removed for gcc 3.2
10423         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10424         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10425
10426 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10427
10428         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10429         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10430         * support/regression/Makefile: separate temp files for ports
10431         * support/regression/generate-cases.py: separate temp files for ports
10432         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10433         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10434
10435 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10436
10437         * moved tinitalk to device/examples/ds390
10438
10439 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10440
10441         * as/mcs51/lkmem.c: rflag is for DS390
10442         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10443         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10444                          (linkEdit): move mem- and map-files the same way as ihx-files
10445         * src/z80/main.c (_setDefaultOptions): removed --generic
10446         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10447         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10448         * src/pic/glue.c (picglue): --c1mode works again
10449         * src/pic16/glue.c (pic16glue): --c1mode works again
10450         * src/asm.c (printCLine): fix #660034
10451
10452 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10453
10454         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10455         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10456         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10457         * as/mcs51/lkmem (summary): better fix for sp problem
10458         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10459         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10460         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10461                                               remove --stack-after-data
10462
10463 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10464
10465         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10466         * src/SDCCutil.c (join): ugly bug: missing '\0'
10467         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10468
10469 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10470
10471         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10472         * src/port.h: typo
10473         * src/pic/main.c (_asmCmd): gpasm supports -o
10474         * src/z80/main.c: more general macros
10475         * device/lib/Makefile.in: remove intermediate files
10476
10477 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10478
10479         * .version: Bumped version number to 2.3.3
10480         * src/SDCCBBlock.c: new option -o
10481         * src/SDCCglobl.h: new option -o
10482         * src/SDCCglue.c: new option -o
10483         * src/SDCCmain.c: new option -o
10484         * src/asm.c: new option -o
10485         * src/ds390/main.c: new option -o
10486         * src/pic/glue.c: new option -o
10487         * src/pic/pcode.c: new option -o
10488         * src/pic/ralloc.c: new option -o
10489         * src/pic16/glue.c: new option -o
10490         * src/pic16/pcode.c: new option -o
10491         * src/pic16/ralloc.c: new option -o
10492         * src/z80/main.c: new option -o
10493         * device/lib/Makefile.in: use -o
10494         * support/regression/ports/ds390/spec.mk: use -o
10495         * support/regression/ports/gbz80/spec.mk: use -o
10496         * support/regression/ports/mcs51/spec.mk: use -o
10497         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10498         * support/regression/ports/z80/spec.mk: use -o
10499         * support/regression/ports/ucz80/spec.mk: use -o
10500         * support/regression/ports/xa51/spec.mk: use -o
10501         * support/regression/fwk/lib/timeout.c: fix usage string
10502
10503 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10504         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10505
10506 2003-01-07    <johan AT balder>
10507
10508         * src/SDCCast.c (decorateType): fixed bug #600035
10509
10510 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10511         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10512         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10513         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10514         * src/pic/pcode.c: outcommented unused variable to remove warnings
10515         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10516
10517 2003-01-06    <karl AT turbobit.com>
10518         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10519    regression tests.
10520
10521 2003-01-06    <johan AT balder>
10522
10523         * src/SDCCicode.c: fixed array add
10524
10525 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10526         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10527         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10528
10529 2003-01-04    <johan AT balder>
10530
10531         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10532
10533 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10534         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10535
10536 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10537         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10538         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10539
10540 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10541         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10542
10543 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10544         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10545
10546 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10547         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10548
10549 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10550
10551     * in \sdcc\as\mcs51\ changed these files in order to create an
10552     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10553     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10554     following files to include the previous two files: aslink.dsp,
10555     Makefile.aslink, Makefile.bcc, and Makefile.in.
10556
10557     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10558     .adb instead of .cdb
10559
10560 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10561
10562         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10563         value from option --iram-size.
10564
10565 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10566
10567         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10568         dram[] array.
10569
10570 2002-09-18    <wiml AT hhhh.org>
10571
10572         * SDCClrange.h: exposed setFromRange() and setToRange()
10573         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10574           packRegsForAccUse() (bug 542397)
10575         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10576           multiple times and emitting the fetch operations more than once
10577           added aopGetUsesAcc() function to allow binary operators to
10578           fetch their operands in the correct order; made genMinus() emit
10579           compact code for X = LITERAL - Y
10580
10581 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10582         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10583         sprintf() in line 1267.
10584
10585 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10586         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10587         like ports.
10588
10589 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10590         Changes to aslink (All the changes are marked with 'JCF'):
10591
10592         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10593         summary().
10594
10595         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10596         area BSEG.  Also moves, if possible, the DATA area down into the internal
10597         ram so more space is available.
10598
10599         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10600         sflag.
10601
10602         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10603         not bytes.  Function summary() which creates a memory usage summary
10604         file with extension .mem.  Reports of overlaping stack and small stack
10605         size.  If the space for the stack is less than 16 bytes aslink trows a
10606         warning.
10607
10608         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10609         the 8051.  Option 'y' for memory summary output file.
10610
10611         Changes to sdcc (All the changes are marked with 'JCF'):
10612
10613         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10614
10615         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10616         overlaying area for it (uses RegBankUsed[4]).
10617
10618         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10619         bank zero as used by default.  By default aslink locates the stack
10620         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10621         the creation of the .mem file.  Delegates the allocation of data area
10622         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10623         the begining of the stack area to aslink.
10624
10625         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10626         glue() in SDCCglue.c creates an area for it.
10627
10628 2002-09-03  Borut Razem <borut.razem AT siol.net>
10629         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10630         sdcc/src/pic/glue.c:
10631         introduced atexit() handler for teporay files removal in case of
10632         errors, assertions, ...
10633
10634 2002-08-29  Borut Razem <borut.razem AT siol.net>
10635         * sdcc/support/cpp2/auto-host_vc_in.h:
10636         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10637         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10638         Maybe there is a similar problem with BORLANDC? It should be checked!
10639
10640         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10641         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10642         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10643         was not executed, and the compiler (cl) launched a warning:
10644         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10645
10646 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10647         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10648
10649 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10650         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10651
10652         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10653           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10654           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10655           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10656           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10657           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10658           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10659         - added Release configuration in VS projects
10660         - review of compiler an linker options
10661         - VC .exe files are generated in bin_vc directory, not to interfere
10662           with binaries generated from other projects (cygwin, mingw, bcc ...)
10663
10664         * sdcc/src/yacc.dsp: added
10665
10666         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10667         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10668         and insert the version number definitions from .version
10669
10670         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10671
10672         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10673         added - genarate auto-host.h using auto-host_vc_in.h as template
10674
10675         * sdcc/sdcc_vc.h,
10676         removed from CVS, generated automatically
10677
10678 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10679         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10680
10681 2002-08-11  Borut Razem <borut.razem AT siol.net>
10682         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10683
10684 2002-08-10  Borut Razem <borut.razem AT siol.net>
10685         * src/SDCCmain.c (main):
10686         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10687         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10688         The consequence was that some temporary files were not removed.
10689
10690         * src/SDCCglue.c:
10691         unification of code in functions tempfilename() and tempfile():
10692         function tempnam() is defined in Visual Studio 6.0 and .NET
10693
10694         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10695
10696         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10697           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10698         - removed compiler command line option /WX: Treats all warnings as errors
10699         - update a list of source files, included into the project
10700
10701         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10702           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10703         changed project type to Generic Project so that can be correcly converted to VS.NET project
10704
10705         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10706
10707         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10708
10709         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10710
10711         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10712         added return 0 statements after assert() to make compiler happy
10713
10714         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10715         added newline in the def file to keep MSC compiler satisfied
10716
10717         * sdcc/src/z80/gen.c:
10718         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10719           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10720         - solved MSC error in function aopDump()
10721
10722         * sdcc_vc.h: define PREFIX as "\\sdcc"
10723
10724 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10725         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10726
10727 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10728         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10729         - Rewrote the register banking algorithm.
10730         - Added pCode live-range analysis to registers (for now, only non-used and
10731         singly-used registers optimized away)
10732
10733         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10734
10735         * 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.
10736
10737 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10738         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10739
10740 2002-04-22  Michael Hope  <michaelh AT vroom>
10741
10742         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10743
10744         * configure.in (DD_COPT): Added include support required for gbdk.
10745
10746         * .version: Bumped version number just to increase it.
10747
10748         * src/SDCCmain.c: Added -nostdinc to the default options.
10749
10750 2002-04-15  Michael Hope  <michaelh AT vroom>
10751
10752         * device/lib/z80/printf.c (sprintf): Added.
10753
10754         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10755
10756         * src/z80/peeph.def: Added transpose redundent load rule.
10757
10758         * src/z80/main.c: Added force callee saves for jaune.
10759
10760         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10761
10762         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10763
10764 2002-03-28  Johan Knol  <johan AT balder>
10765
10766         * src/SDCCval.c: fixed bug #532436
10767
10768 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10769         * /src/port.h:
10770         Added "char *Processor" field to the port structure.
10771
10772         * /src/SDCCmain.c:
10773         Added -p option. Allows port dependent processor to be specified.
10774
10775         * all ports:
10776         Initialized the new field char *Processor field to NULL in all ports
10777
10778         * /src/pic/*:
10779         Compiler generated registers for interrupt context saving
10780         were not getting allocated.
10781
10782 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10783
10784         * /src/SDCCast.c:
10785         Fixed left shift. Will promote the left side of a left shift
10786         if a) left shifting more than size of operand or b) when assigned
10787         to something size > size of left side
10788
10789 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10790         * src/pic/*
10791         tons of changes. Register allocation has been
10792         rewritten. Added customization for the various PICs. Flow
10793         analysis is restructured. ...
10794
10795         * src/pic/device.h:
10796         Added
10797
10798         * src/pic/device.c:
10799         Added. device.c is a PIC port hack to accomodate variations
10800         in PIC devices.
10801
10802 2002-03-13  Michael Hope  <michaelh AT vroom>
10803
10804         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10805
10806 2002-03-04  johanknol  <johanknol AT manik>
10807
10808         * /src/SDCCval.c: fixed
10809
10810         const unsigned char arr[][2] = { { 0, 1 } };
10811         t18.c:1: error: Initializer element is not constant
10812
10813 2002-03-04  bela  <bela AT manik>
10814
10815         * /device/include/mcs51reg.h:
10816         ds89c420 register definition update
10817
10818 2002-03-03    <johan AT FRIJA>
10819
10820         * support/Util/SDCCerr.c: did something, but don't no why anymore
10821
10822         * support/regression/tests/bug-524691.c: made it a little less shy
10823
10824         * src/SDCCast.c (decorateType): fixed bug #524697
10825
10826         * src/SDCCast.c: made some lineno improvements
10827
10828         * src/SDCCval.c (getNelements): changed warning to error
10829
10830         * src/SDCCglue.c (printIvalArray): changed warning to error
10831
10832         * src/SDCCicode.c: fixed a warning for mingw
10833
10834         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10835
10836         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10837
10838 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10839
10840         * src/ds390/peeph.def:
10841         Added some more peephole rules
10842
10843         * src/ds390/gen.c: Various fixes & enhancements
10844
10845         * src/SDCClrange.c, src/SDCClrange.h:
10846         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10847
10848         * src/ds390/ralloc.c:
10849         various fixes & enhancements (ds390) specific
10850
10851         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10852         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10853         from rallocs.
10854
10855         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10856
10857 2002-03-02    <johan AT FRIJA>
10858
10859         * src/SDCCast.c (decorateType): fixed bug #524708
10860
10861         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10862
10863         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10864
10865 2002-03-01  Michael Hope  <michaelh AT vroom>
10866
10867         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10868
10869         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10870
10871 2002-03-01    <johan AT FRIJA>
10872
10873         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10874
10875         * src/SDCCast.c (decorateType): fixed bug #524209
10876
10877         * src/SDCCval.c (valNot): fixed bug #524195
10878
10879 2002-02-26    <johan AT balder>
10880
10881         * src/xa51/gen.c: fixed a warning
10882
10883         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10884
10885         * src/SDCCast.c (decorateType): fixed bug #522534
10886
10887 2002-02-23    <johan AT balder>
10888
10889         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10890
10891 2002-02-22    <johan AT balder>
10892
10893         * src/SDCCast.c: fixed bug #514865
10894
10895         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10896
10897 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10898
10899         * sdcc/src/SDCCloop.c:
10900         Previous fix was not good. basic blocks that have "break" or "return" are
10901         not really partof a loop , but live ranges used in these blocks should
10902         be live thru the entire loop, so set partOfLoop but don't add them to
10903         loop region
10904
10905 2002-02-21    <johan AT FRIJA>
10906
10907         * src/SDCCcse.c: fixed bug #514308
10908
10909 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10910
10911         * src/SDCCloop.c:
10912         Fixed BUG #519583. If a conditional block ended in a return/break
10913         statement inside a loop, it was not being considered part of the loop.
10914
10915         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10916
10917 2002-02-10  Karl Bongers <karl AT turbobit.com>
10918
10919         * debugger/*:
10920         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10921         with lots of comments and notes.
10922
10923         * device/examples/test2.c:
10924         Fix bug, "red" variable not being initialized(compiler complained).
10925
10926         * device/examples/Makefile, examples/test3.c:
10927         Add Makefile in device/examples folder, compiles test3.c
10928         for use as a multiple module SDCDB test case.
10929
10930         * sim/ucsim/cmd.src/cmdset.cc:
10931         Took out debug printfs in ucsim "next" command.
10932
10933         * sim/ucsim/xa.src:
10934         Karl and Johan start ucsim XA support.  Most dissassembly working,
10935         about 75% emulation done(plenty of work remaining).
10936
10937         * sim/ucsim/z80.src:
10938         Add Z80 support to ucsim, add test-ucz80 regression test,
10939         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10940         Notice z80 compiler fails on examples/test3.c/crc code.
10941
10942 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10943
10944         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10945         Added support for --parms-in-bank1
10946
10947         * src/ds390/peeph.def:
10948         added a few more peephole optimzations
10949
10950         * src/ds390/main.c:
10951         1) added __builtin_inp & __builtin_outp used to read in data of given length
10952            from a memory mapped port
10953         2) added __builtin_memcmp
10954         3) added __builtin_swapw swap bytes of a short
10955
10956         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10957         1) handle multiple send & receives from register bank1
10958         2) ralloc can now allocate DPTR1 to some liveRanges
10959
10960         * src/SDCCsymt.c, src/SDCCsymt.h:
10961         changes to handle multiple sends & receives
10962
10963         * src/SDCCptropt.h:
10964         added some pointer arithmetic optimization
10965
10966         * src/SDCCptropt.c:
10967         added some pointer arithmetic optimizations but not stable yet so not
10968         called from anywhere (will get this working shortly)
10969
10970         * src/SDCCopt.c: fixed for multiple sends & receives
10971
10972         * src/SDCCmain.c:
10973         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10974         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10975            set preprocessor defines (depending on options)
10976
10977         * src/SDCCicode.c, src/SDCCicode.h:
10978         changes made to handle multiple sends & receives
10979
10980         * src/SDCCglobl.h:
10981         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10982
10983         * src/SDCCcse.c, src/SDCCcse.h:
10984         added function findbackward def (to be used in upcoming optimization)
10985
10986         * src/SDCCcflow.c, src/SDCCcflow.h:
10987         added function returnAtEnd - to determine if a basic block terminates with
10988         a RETURN iCode
10989
10990         * src/SDCCast.c, src/SDCCast.h:
10991         added option parms-in-bank1
10992
10993         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10994         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10995         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10996         adjusted for --parms-in-bank1 option
10997
10998         * device/include/string.h:
10999         donot redefine "reentrant" keyword
11000
11001         * device/include/ds80c390.h: Added some more SFRs
11002
11003 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11004
11005         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11006
11007 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11008
11009         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11010
11011 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11012
11013         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11014
11015 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11016
11017         * Added --xram-movc option
11018
11019 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11020
11021         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11022
11023 2002-01-11  Johan Knol
11024
11025         * Added math lib of Jesus Calvino-Fraga
11026
11027 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11028
11029         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11030         * support/regression/Makefile: new target test-mcs51-stack-auto
11031         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11032
11033 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11034
11035         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11036
11037 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11038
11039         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11040
11041 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11042
11043         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11044
11045         * src/SDCCglue.h: add definition for printIvalChar()
11046
11047 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11048
11049         * src/SDCCast.c: fix #498138 by Johan
11050
11051         * src/SDCCglue.c: fix #498138 by Johan
11052
11053 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11054
11055         * support/regression/Makefile: fix clean
11056
11057         * support/regression/ports/ds390/support.c: fix transmission of last character
11058
11059 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11060
11061         * /sdcc/src/ds390/gen.c:
11062         a) improved computing address of stack variable
11063         b) took out some #if 0 code
11064         c) improved parmBytes adjustment
11065         d) improved genPlusIncr & genMinusIncr
11066         e) genCmp could generate bad code (when left assigned to DPTR)
11067         f) Fixed bug in hasInc
11068
11069         * /sdcc/src/ds390/ralloc.c:
11070         a) packRegsForSupport could mess up live information (Fixed)
11071         b) packRegsDPTRuse could be incorrect for left & right shift
11072
11073         * /sdcc/src/mcs51/ralloc.c:
11074         packRegsForSupport could mess up the live information (Fixed)
11075
11076         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11077
11078         * /sdcc/src/SDCCast.c:
11079         can reverse a loop even if function call is present as long
11080         as the loop control variable is local & is not passed as parameter
11081
11082 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11083
11084         * /sdcc/ChangeLog: *** empty log message ***
11085
11086         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11087         More builtin function additions for TININative
11088
11089         * /sdcc/src/ds390/ralloc.c:
11090         Had broken the regression testsuite
11091
11092         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11093
11094         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11095         Added funcattr hasStackParms will be set for reentrant functions when there
11096         are paramteres on the stack, this helps in minimizing frame pointer generation
11097         typeFromStr can handle function pointers now
11098
11099         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11100         *** empty log message ***
11101
11102 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11103
11104         * /src/ds390/gen.c, /src/ds390/main.c:
11105         More builtin function additions for TININative
11106
11107         * /src/ds390/ralloc.c:
11108         Had broken the regression testsuite
11109
11110         * /src/SDCCast.c: Fixed a bug in dumptree
11111
11112         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11113         Added funcattr hasStackParms will be set for reentrant functions when there
11114         are paramteres on the stack, this helps in minimizing frame pointer generation
11115         typeFromStr can handle function pointers now
11116
11117         * /doc/builtins.txt, /doc/TININative.txt:
11118         *** empty log message ***
11119
11120
11121 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11122
11123         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11124         ALPHA version for -mTININative
11125
11126         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11127         updated to reflect changes in the port structure
11128
11129         * /src/port.h:
11130         added function do_assemble (similar to do_link) if non-null this function
11131         will be called to do assembly (-mTININative) requires a multi command
11132         assembly
11133         added function genAssemblerEnd will be called to generate assembler Epilogue
11134
11135         * /src/SDCCsymt.c:
11136         added _JavaNative to debug info printing
11137
11138         * /src/SDCCmain.c: added option --tini-libid
11139         added port->do_assemble function (-mTININative) has a multi command assemble
11140
11141         * /src/SDCCglue.c: Disabled "constExpr" check
11142         added port->genAssemblerEnd function
11143
11144         * /src/SDCCglobl.h: Added option --tini-libid value
11145
11146         * /src/SDCCast.h:
11147         tookout optimizeCompare from the header (has no external references)
11148
11149         * /src/SDCCast.c: made one more function "static"
11150
11151 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11152
11153         * src/z80/mappings.i: Added z80asm support.
11154
11155         * src/z80/main.c: Added z80asm support on --asm=z80asm
11156
11157         * src/z80/gen.c: Fixed asm portability issues.
11158
11159         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11160
11161         * src/SDCCglue.c (printExterns): Added global/extern split.
11162
11163 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11164
11165         * support/regression/Makefile: added test for mcs51 model large
11166
11167         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11168
11169         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11170
11171 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11172
11173         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11174
11175 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11176
11177         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11178
11179         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11180
11181 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11182
11183         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11184
11185         * support/regression/tests/simplefloat.c: Port to mcs51.
11186
11187 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11188         * support/regression/tests/bug-485362.c: Added.
11189
11190         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11191
11192         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11193
11194         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11195
11196         * src/z80/gen.c (aopDump): Added a dump function.
11197
11198 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11199         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11200
11201         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11202
11203         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11204
11205         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11206
11207         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11208
11209         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11210
11211         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11212
11213         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11214
11215         * support/regression/ports/ds390/support.c: Use tinibios.
11216
11217         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11218
11219 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11220
11221         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11222         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11223
11224         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11225
11226         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11227
11228 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11229
11230         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11231
11232         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11233         (packRegsForIYUse): Created and optimised.
11234
11235 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11236
11237         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11238 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11239
11240         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11241
11242         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11243
11244         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11245
11246 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11247
11248         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11249
11250         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11251
11252 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11253
11254         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11255
11256         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11257
11258         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11259
11260 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11261
11262         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11263         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11264         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11265
11266         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11267
11268         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11269         (genNotFloat): Added.
11270         (genUminusFloat): Added.
11271
11272         * device/lib/z80/Makefile: Added floating pt stubs.
11273
11274         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11275
11276         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11277
11278         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11279
11280 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11281
11282         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11283
11284         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11285
11286         * sdcc/support/regression/Makefile: Add port ds390.
11287
11288         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11289
11290         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11291
11292         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11293
11294         * sdcc/support/regression/ports/ds390/support.c: Added.
11295
11296         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11297
11298         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11299
11300         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11301
11302 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11303
11304         * device/include/malloc.h: Added z80 and gbz80 support.
11305
11306         * device/lib/gbz80/heap.s: Added.
11307
11308         * device/lib/z80/heap.s: Added.
11309
11310         * device/lib/malloc.c: Added z80 and gbz80 support.
11311
11312         * support/regression/tests/malloc.c (testMalloc): Added.
11313
11314         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11315
11316         * support/regression/tests/bug-478094.c: Added.
11317
11318         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11319
11320 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11321
11322         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11323
11324         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11325
11326         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11327
11328         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11329
11330         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11331
11332 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11333
11334         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11335
11336 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11337
11338         * support/regression/tests/bug-477927.c: Added.
11339
11340         * src/z80/peeph.def: Added minor rules.
11341
11342         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11343
11344         * src/z80/peeph.def: Added jump optimisation modification.
11345
11346 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11347
11348         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11349
11350 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11351
11352         * support/regression/tests/funptrs.c: Added.
11353
11354 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11355
11356         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11357
11358 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11359
11360         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11361
11362         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11363
11364         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11365         (movLeft2ResultLong): Created.
11366
11367         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11368         (joinPushes): Added.  Joins two char pushes into a word push.
11369
11370 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11371
11372         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11373
11374         * support/makebin/Makefile (install): Added creation of dest dir.
11375
11376 2001-10-24 Karl Bongers <karl AT turbobit.com>
11377
11378         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11379
11380 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11381
11382         * src/z80/ralloc.c: Turned off faulty pack for one use.
11383
11384         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11385
11386         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11387
11388 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11389
11390         * support/regression/Makefile: Improved clean
11391
11392         * support/regression/ports/gbz80/spec.mk: Added clean
11393
11394         * support/regression/ports/host/spec.mk: Added clean
11395
11396         * support/regression/ports/z80/spec.mk: Added clean
11397
11398         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11399
11400         * support/regression/ports/mcs51/timeout.c: little improvements
11401
11402 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11403
11404         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11405
11406         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11407
11408         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11409
11410 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11411
11412         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11413
11414         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11415
11416 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11417         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11418
11419         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11420
11421         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11422
11423         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11424
11425         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11426
11427         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11428
11429         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11430
11431         * support/regression/tests/longor.c: Added.
11432
11433 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11434
11435         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11436
11437         * as/mcs51/aslink.h: define PATH_MAX
11438
11439         * as/mcs51/asm.h: define PATH_MAX
11440
11441         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11442
11443         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11444
11445         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11446
11447         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11448
11449         * src/SDCCglobl.h: define PATH_MAX
11450
11451         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11452
11453         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11454
11455 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11456
11457         * src/z80/gen.c (gencjneshort): Fixed
11458
11459         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11460
11461 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11462
11463         * support/regression/tests/bug-469671.c: Added.
11464
11465         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11466
11467 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11468
11469         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11470
11471         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11472
11473 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11474
11475         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11476
11477         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11478
11479         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11480
11481         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11482
11483         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11484
11485         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11486
11487         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11488
11489 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11490
11491         * 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.
11492
11493         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11494
11495         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11496
11497 2001-10-07    <johan AT FRIJA>
11498
11499         * device/lib/gets.c (gets): fixed the return value.
11500
11501 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11502         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11503
11504         * 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.
11505
11506         * 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.
11507
11508         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11509
11510         * src/pic/gen.c: Removed Safe_strdup.
11511
11512         * configure.in: Added option to enable libgc support.
11513
11514         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11515         (bitVectUnion): Optimised.
11516         (bitVectIntersect): Optimised.
11517         (bitVectBitsInCommon): Optimised.
11518         (bitVectCplAnd): Optimised.
11519
11520         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11521
11522 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11523
11524         * src/SDCCmain.c: distinguish between assembler debug and plain options
11525
11526         * src/avr/main.c:   remove standard assembler options
11527
11528         * src/ds390/main.c: remove standard assembler options
11529
11530         * src/mcs51/main.c: remove standard assembler options
11531
11532         * src/port.h: removed "PENDING" comment
11533
11534 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11535
11536         * src/device/lib/_mulint.c  : new, with assember functions
11537
11538         * src/device/lib/_mullong.c : new, with assember functions
11539
11540         * src/device/lib/_divuint.c : with assember functions
11541
11542         * src/device/lib/_divsint.c : with assember functions
11543
11544         * src/device/lib/_divulong.c: with assember functions
11545
11546         * src/device/lib/_divslong.c: with assember functions
11547
11548         * src/device/lib/_moduint.c : with assember functions
11549
11550         * src/device/lib/_modsint.c : with assember functions
11551
11552         * src/device/lib/_modulong.c: with assember functions
11553
11554         * src/device/lib/_modslong.c: with assember functions
11555
11556         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11557
11558         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11559
11560         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11561                                       replaced _mululong.c and _mulslong.c by _mullong.c
11562
11563 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11564
11565         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11566
11567 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11568
11569         * src/SDCCglue.c: test, if win32api is available for MINGW
11570
11571 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11572
11573         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11574         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11575         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11576         * support/regression/ports/host/spec.mk: removed GENERIC
11577         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11578         * support/regression/ports/z80/spec.mk: removed GENERIC
11579
11580 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11581
11582         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11583
11584         * support/regression/tests/bug-467035.c: Created.
11585
11586 2001-10-01    <johan AT FRIJA>
11587
11588         * src/SDCC.y: fixed bug #466586 part 1
11589
11590 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11591
11592         * SDCCicode.c: z80 has no generic pointers
11593         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11594
11595 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11596
11597         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11598
11599 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11600
11601         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11602
11603         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11604
11605 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11606
11607         * configure.in: Fixed up so that ucsim is only configured once.
11608
11609         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11610
11611         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11612         (getPathDifference): As above.
11613
11614         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11615
11616         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11617
11618 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11619         * .version: Updated to 2.3.1
11620
11621         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11622         Added copyright header.
11623
11624         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11625         (assemble): Added support for macro based assembler commands.
11626         (linkEdit): Added support for macro based linker commands.
11627         (preProcess): Changed the pre-processor to use macros.
11628         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11629         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11630
11631         * device/lib/z80/crt0.s: Added module name for debugging.
11632
11633 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11634
11635         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11636
11637         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11638
11639         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11640
11641         * src/Makefile.in: Added SDCCmacro and SDCCutil
11642
11643 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11644
11645         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11646
11647 2001-09-16    <johan AT FRIJA>
11648
11649         * 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.
11650
11651 2001-09-15    <johan AT FRIJA>
11652
11653         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11654         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11655
11656 2001-09-11    <johan AT FRIJA>
11657
11658         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11659
11660 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11661
11662         * support/regression/tests/bug-460444.c: Added test case.
11663
11664         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11665         (genCast): Added justification for all of the asserts.
11666
11667 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11668
11669         * support/regression/support.c: _xdata replaced by xdata
11670
11671         * support/regression/spec.mk: removed _generic
11672
11673 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11674
11675         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11676
11677         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11678         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11679
11680         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11681
11682         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11683
11684         * support/regression/tests/bug-460010.c: Added test case.
11685
11686         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11687
11688 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11689
11690         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11691
11692         * support/regression/testfwk.c: removed workaround for bug #436344
11693
11694         * support/regression/tests/bp.c: use less memory with mcs51
11695
11696         * support/regression/tests/bug-441448.c: use less memory
11697
11698         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11699
11700         * support/regression/collate-results.py: typo
11701
11702 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11703
11704         * support/regression/tests/fetchoverlap.c: Added new test case.
11705
11706         * support/regression/tests/bp.c: Added new test case.
11707
11708         * support/regression/tests/bug-448984.c: Added new test case.
11709
11710         * support/regression/tests/pow2shifts.c: Added new test case.
11711
11712         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11713         (genlshTwo): Fixed right shift for count > 8.
11714
11715         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11716
11717 2001-09-08    <johan AT FRIJA>
11718
11719         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11720
11721 2001-09-07    <johan AT FRIJA>
11722
11723         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11724
11725         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11726
11727 2001-09-06    <johan AT FRIJA>
11728
11729         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11730         * bernhard noted me at this: "() equals to (void)" (1.38)
11731
11732 2001-09-05    <johan AT FRIJA>
11733
11734         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11735
11736 2001-09-04    <johan AT FRIJA>
11737
11738         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11739
11740
11741 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11742
11743         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11744
11745 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11746
11747         * link/z80/aslink.h: Fixed path for PATH_MAX
11748
11749 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11750
11751         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11752
11753         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11754
11755         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11756
11757         * 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.
11758
11759 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11760
11761         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11762         (genCmp): Fixed up genCmp for the GB with longs.
11763
11764         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11765
11766         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11767
11768         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11769
11770         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11771
11772 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11773
11774         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11775
11776 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11777
11778         * 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.
11779
11780         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11781
11782 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11783
11784         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11785
11786         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11787
11788 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11789
11790   * sim/ucsim/configure:    little improvement of Cygwin-detection
11791   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11792   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11793   * support/regression/tests/bug-221100.c: small changes for mcs51
11794   * support/regression/tests/bug-221168.c: small changes for mcs51
11795   * support/regression/tests/bug-227710.c: small changes for mcs51
11796   * support/regression/tests/staticinit.c: small changes for mcs51
11797   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11798   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11799   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11800
11801 $Revision$