* src/SDCCglue.c (initPointer), fixed bug 1496419
[fw/sdcc] / ChangeLog
1 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/SDCCglue.c (initPointer), fixed bug 1496419
4         * support/regression/tests/bug1496419.c: new, added
5
6 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
7
8         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
9         IP0H to IPH0.
10
11 2006-06-19 Raphael Neider <rneider AT web.de>
12
13         * src/pic/glue.h,src/pic16/glue.h: added prototypes
14         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
15           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
16           (pic14printExterns,pic14printPublics,pic16printPublics,
17           pic16_printExterns): use new functions to emit symbols
18           (picglue,pic16glue): emit publics before emitting externs
19         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
20           locally defined functions to avoid bug #1443651
21         * support/regression/tests/bug-716242.c: removed pic16 workaround
22         * support/regression/ports/pic16/spec.mk: ignore errors during build
23
24 2006-06-19 Raphael Neider <rneider AT web.de>
25
26         * src/pic/glue.h: added pic14aopLiteral prototype
27         * src/pic/glue.c (pic14aopLiteral): return unsigned int
28         * src/pic/gen.c: removed stdint.h dependency
29           (aopGet): use Safe_strdup()
30           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
31           (genDataPointerSet): use pic14aopLiteral()
32         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
33           for pic16; thanks to Bernhard and Maarten
34
35 2006-06-18 Borut Razem <borut.razem AT siol.net>
36
37         * support/regression/tests/structflexarray.c: flexible array members
38           not supported by gcc < 3
39         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
40           GUI tool by default
41         * src/pic/gen.c: don't include [p]strdin.h on solaris
42         * support/Util/pstdint.h: addad svn attributes
43         * support/regression/tests/constantRange.c,
44           support/regression/tests/rotate.c: include inttypes.h instead
45           stdint.h on solaris, addad svn attributes
46
47 2006-06-18 Raphael Neider <rneider AT web.de>
48
49         * src/SDCCsymt.c (initCSupport): change return type of divschar to
50           int for PIC16
51         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
52           (pic16_genMinusBits): simplified sign-extension
53           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
54             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
55             adjusted to correctly handle mixed-signed operands, disabled
56             now unused multiplciation routines
57         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
58           (assignResultValue): added argument denoting the size of the result
59             as returned by the function (fixes upcasts in assigning from
60             function calls: char foo(); int i = foo();)
61           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
62             function result to assignResultValue
63           (genMult): disabled inlined multiplication code
64           (genDiv): augmented to also handle the modulus operator, fixed to
65             handle mixed-signed operands correctly
66           (genMod): simply call genDiv, disabled unused code
67           (genAssign): fixed missing (sign-)extension on result
68         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
69             valid char operands, allow signed operands for native code, added
70             division and modulo operator handling
71         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
72
73         As a consequence, onebyte.c (if split into two files) and muldiv.c
74         pass regression tests.
75
76 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
77
78         * doc/Makefile.in: two runs of makeindex seem needed to get
79         correct page references in the index of sdccman.pdf
80         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
81
82 2006-06-17 Borut Razem <borut.razem AT siol.net>
83
84         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
85
86 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
87
88         * doc/sdccman.lyx: updated, added (porting source code, debugging),
89         mentioned ec2drv and paulmon
90
91 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
92
93         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
94           consecutive abs areas
95           (find_empty_space, allocate_space): added map to handle codemap or
96            xdatamap,
97           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
98            absolute idata and xdata
99         * as/mcs51/lkmem.c (summary2): updated legend
100
101 2006-06-16 Raphael Neider <rneider AT web.de>
102
103         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
104
105 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
106
107         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
108           1208515
109         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
110
111 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
112
113         * src/port.h (struct PORT): added field gp_tags, to hold the tag
114         value of generic pointers,
115         * src/avr/main.c,
116           src/ds390/main.c,
117           src/hc08/main.c,
118           src/izt/i186.c,
119           src/izt/tlcs900h.c,
120           src/mcs51/main.c,
121           src/pic/main.c,
122           src/pic16/main.c,
123           src/xa51/main.c,
124           src/z80/main.c: PORT structure, added elements for gp_tags field,
125         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
126         fields in the PORT structure of each port,
127         * src/SDCCast.c (decorateType): allow processing of generic pointers
128         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
129         S_FIXED symbols
130
131 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
132
133         * link/z80/lkgb.c,
134         * link/z80/lkgg.c,
135         * src/pic16/gen.c,
136         * src/pic16/main.c,
137         * src/pic16/pcode.c,
138         * src/pic/main.c,
139         * src/pic/pcoderegs.c,
140         * src/SDCCicode.c,
141         * src/SDCCmain.c,
142         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
143           bug 1504689 on minGW
144
145 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
146
147         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
148
149 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
150
151         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
152
153 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
154
155         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
156           for optimization
157
158 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
159
160         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
161         to a char variable. Fixed bug #1504211
162         * device/include/pic16/adc.h,
163         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
164         and fixed bug #1364390
165
166 2006-06-10 Borut Razem <borut.razem AT siol.net>
167
168         * CVSROOT: removed the CVS left-over
169
170 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
171
172         * as/hc08/asmain.c (asexit),
173         * as/hc08/lkmain.c (lkexit),
174         * as/mcs51/asmain.c (asexit),
175         * as/mcs51/lkmain.c (lkexit),
176         * src/SDCCglue.c (DEFSETFUNC),
177         * src/SDCCmain.c (linkEdit, assemble),
178         * support/librarian/sdcclib.c (AddRel),
179           replaced unlink() by standard C remove()
180         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
181         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
182           gatherImplicitVariables): new, added to fix bug 608752,
183           (createFunction): added gatherImplicitVariables()
184         * src/SDCCast.h: added createRMW prototype
185         * src/SDCCsymt.h (struct symbol): added infertype
186         * support/regression/tests/bug608752.c: new, added
187
188 2006-06-10 Raphael Neider <rneider AT web.de>
189
190         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
191           multibyte dummy reads (fixes #1503234)
192
193 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
194
195         * device/include/mcs51/compiler.h: new, added header file to enable
196           creating common sfr definition header files for different compilers
197
198 2006-06-05 Raphael Neider <rneider AT web.de>
199
200         * src/pic16/{pcode.h,genarith.c}:
201           introduced pCodeOp combining any two pCodeOps (previously only
202           two register operands could be combined), removed pcop2 from
203           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
204         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
205         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
206           rewritten to use new PO_TWO_OPS
207         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
208         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
209           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
210           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
211           (pic16_get_op): embraced return arg to allow #define return(x),
212             added new case for combined opcodes
213           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
214           (pic16_pCode2str,pic16_getRegFrompCodeOp,
215            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
216
217 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
218
219         * src/SDCCval.c (checkConstantRange): added
220         * src/SDCCval.h: added checkConstantRange
221         * support/Util/SDCCerr.c,
222         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
223         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
224         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
225         * src/SDCCast.c (decorateType): added checkConstantRange,
226         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
227         can be emitted with the correct always true/false warning,
228         added optimization for double '!';
229         result of decorateType() must be assigned back to the tree, because
230         decorateType() can change the tree
231         * src/SDCCicode.c (geniCodeLogic),
232         (geniCodeAssign): replaced new checkConstantRange, added warnings,
233         (checkConstantRange): removed, it was only a fragment which never
234         emitted a warning
235         * src/SDCCsymt.c (computeType): fixed promotion for
236         "-1 < (unsigned bit) b"
237         * src/pic/ralloc.c (packRegsForAssign),
238         * src/pic16/ralloc.c (packRegsForAssign),
239         * src/hc08/ralloc.c (packRegsForAssign),
240         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
241         from mcs51
242         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
243         * support/regression/tests/constantRange.c: added
244         * support/valdiag/tests/constantRange.c: added
245         * support/valdiag/valdiag.py: added -DPORT_HOST=1
246
247 2006-06-02 Borut Razem <borut.razem AT siol.net>
248
249         * support/regression/ports/pic16/support.c: increase stack size
250           to 255 bytes
251         * support/regression/Makefile.in: sort tests by name so that the
252           resutlts can be compared on different machines / platforms
253
254 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
255
256         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
257         * src/ds390/gen.c (emitLabel): new, added,
258           (genDjnz): fixed stack overflow bug,
259           (throughout): cosmetic changes to sync with mcs51/gen.c,
260           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
261         * src/mcs51/gen.c (genEndFunction): small optimization,
262           (throughout): cosmetic changes to sync with ds390/gen.c
263
264 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
265
266         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
267           (_print_format): fixed printing pointers
268         * src/mcs51/gen.c (emitLabel, movb): new, added,
269           (genAssign): small optimization,
270           (genDjnz): fixed stack overflow bug,
271           (throughout): replaced sprintf with SNPRINTF,
272           replaced mcs51_regWithIdx with REG_WITH_INDEX,
273           replaced emitcode("mov", "b,...") with MOVB(...),
274           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
275           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
276         * src/mcs51/peeph.def: added rules 140 and 264
277         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
278           so they may get optimized into registers
279
280 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
281
282         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
283           immediately when encountered,
284           (printUsage): always use stderr even on windows
285
286 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
287
288         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
289         (processParms): fixed bug #1247551
290         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
291         parseCmdLine, main): print '--version' to stdout,
292         print 'help' to stdout if --help is given,
293         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
294         arguments are given; fixed --help
295
296 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
297
298         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
299         * support/regression/tests/bug-1493710.c: added
300
301 2006-05-27 Borut Razem <borut.razem AT siol.net>
302
303         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
304           static instead auto
305         * support/regression/ports/pic16/support.c: increase stack size
306           from default 64 bytes to 128 bytes
307         * support/regression/tests/staticinit.c,
308           support/regression/tests/float.c: regression tests fully enabled
309           for pic16 port by putting the initialized data arrays into the code
310           section
311         * support/regression/ports/pic16/spec.mk: don't link default libraries.
312           This was changed by mistake in the previous version.
313
314 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
315
316         * src/pic16/gen.c (genFunction, genEndFunction): some
317         beautifications, fixed bug with falsely restoring FSR2 in large
318         stack model, thanks to Beau E. Cox for reporting the bug
319
320 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
321
322         * debugger/mcs51/break.c,
323         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
324           use %p to print pointers, made address variables unsigned
325         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
326         * debugger/mcs51/symtab.c (parseSymbol): must return something
327         * src/mcs51/gen.c (aopForSym): small optimization,
328            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
329           (freeAsmop): added missing break,
330           (aopPut): removed parameter bvolatile, determine it inside the function,
331           (saveRegisters, unsaveRegisters): small optimization,
332           (genIpush): removed pointless check,
333           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
334           replaced sprintf with SNPRINTF,
335           replaced strcpy with strncpyz,
336           updated aopPut calls,
337           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
338         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
339
340 2006-05-24 Borut Razem <borut.razem AT siol.net>
341
342         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
343           modification of test for the pic16 port, put the array to the code
344           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
345
346 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
347
348         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
349         * support/Util/pstdint.h: added
350
351 2006-05-22 Borut Razem <borut.razem AT siol.net>
352
353         * src/regression/Makefile: removed bool2.c test, added -q linker option
354         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
355           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
356           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
357           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
358           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
359           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
360           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
361           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
362           define SUPPORT_BIT_TYPES 0, removed unused bit variables
363
364 2006-05-22 Raphael Neider <rneider AT web.de>
365
366         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
367           bug #1492360 (problematic due to generic pointers, see code)
368
369 2006-05-22 Borut Razem <borut.razem AT siol.net>
370
371         * support/regression/ports/pic16/specs.mk: removed stack size linker
372           directive
373         * support/regression/tests/array.c,
374           support/regression/tests/bitopcse.c,
375           support/regression/tests/bug-908454.c,
376           support/regression/tests/malloc.c: modified for pic16 regression test
377         * support/regression/tests/bitfields.c:
378           pic16 - excluded bitfileds of size > 8
379         * support/regression/tests/bp.c: pic16 - reduced data size
380         * support/regression/tests/bug-221100.c: pic16 - reduced data size
381         * support/regression/tests/bug-460010.c:
382           pic16 - used the absolute address the fits in memory
383         * support/regression/tests/bug-716242.c:
384           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
385         * support/regression/tests/float.c:
386           pic16 - excluded - data size too big
387         * support/regression/tests/onebyte.c:
388           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
389         * support/regression/tests/shifts.c:
390           pic16 - function names probably have to differ in first X characters
391           (gpasm limitation?)
392         * support/regression/tests/staticinit.c:
393           pic16 - excluded some tests due error: no target memory available for
394           section ".idata"
395
396 2006-05-22 Borut Razem <borut.razem AT siol.net>
397
398         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
399           second try. Thanks Stas Sergeev once more.
400
401 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
402
403         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
404           (genLeftShift, genRightShift): fixed bug 1491627
405         * src/hc08/peeph.def (rules 7, 8.x): added
406         * support/regression/tests/shifts.c (ShiftLeftByParam,
407           ShiftRightByParam, testShiftByParam): added to test variable shifting
408
409 2006-05-20 Raphael Neider <rneider AT web.de>
410
411         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
412         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
413           (allocReg): add only new registers to dynAllocRegs,
414           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
415             #1489055, #1445850, and probably #1483693
416
417 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
418
419         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
420         bug in for-loop that didn't emit the last of CONFIG and ID registers
421
422 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
423
424         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
425           with offset
426         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
427           1489016, 1434401 and 1490124
428         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
429           1489016, 1434401 and 1490124
430
431 2006-05-17 Borut Razem <borut.razem AT siol.net>
432
433         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
434           thanks Stas Sergeev
435
436 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
437
438         * device/include/mcs51/P89c51RD2.h,
439         * device/include/mcs51/P89LPC901.h,
440         * device/include/mcs51/P89LPC922.h,
441         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
442
443 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
444
445         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
446         to fix missing stack pragma in compiled binary object file,
447
448 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
449
450         * support/packihx/configure.in,
451         * support/packihx/configure: removed warning, autoconf >= 2.5x can
452         determine sizeof basic types even while cross compiling
453
454 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
455
456         * src/avr/gen.c (aopop),
457         * src/ds390/gen.c (aopOp),
458         * src/hc08/gen.c (aopOp),
459         * src/mcs51/gen.c (aopop),
460         * src/pic16/gen.c (pic16_aopOp),
461         * src/pic/gen.c (aopOp),
462         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
463         if size of operand is smaller than spill location
464
465 2006-05-12 Borut Razem <borut.razem AT siol.net>
466
467         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
468           have to have CR/LF line endings even if they are checked out on *nix
469           or on WIN32 in cygwin binmode
470
471 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
472
473         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
474         * device/include/ds80c390.h: added sfr16 definitions
475         * src/ds390/gen.c,
476         * src/ds390/gen.h,
477         * src/ds390/main.c,
478         * src/ds390/ralloc.c,
479         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
480           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
481           bit returning functions
482         * support/regression/tests/sfr16.c: enabled test on ds390
483
484 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
485
486         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
487         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
488
489 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
490
491         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
492         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
493           (cl_address_space constructor): removed expensive initialization,
494           (cl_address_space::get_cell): extended for late initialization,
495           (cl_address_space::*): use late initialization,
496           (cl_address_decoder::activate): removed expensive initialization,
497           This reduced regression test running time by 25%
498
499 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
500
501         * packihx/,
502         * configure.in,
503         * configure,
504         * sdcc.dsw,
505         * Makefile.bcc,
506         * Makefile.in,
507         * support/packihx/Makefile.in,
508         * support/packihx/clean.mk,
509         * support/packihx/Makefile.bcc,
510         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
511
512 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
513
514         * src/SDCCval.c (valNot): fix for regression test failure
515           of not.c on big endian hosts
516
517 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
518
519         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
520
521 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
522
523         * device/lib/mcs51/Makefile.in: changed string comparison operator
524           to = for POSIX compliance; == is bash extension
525
526 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
527
528         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
529           kosmonaut_pirx
530
531 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
532
533         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
534         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
535         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
536         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
537         bug report #1478657,
538
539 2006-05-05 Borut Razem <borut.razem AT siol.net>
540
541         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
542           making the html
543
544 2006-05-02 Borut Razem <borut.razem AT siol.net>
545
546         * doc/Makefile.in: removed *.ind dependency since there is no rule to
547           create *.ind, which made make to fail if invoked with -j 2
548
549 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
550
551         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
552           Hubert Sack for patch 1479782
553
554 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
555
556         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
557
558 2006-05-01 Raphael Neider <rneider AT web.de>
559
560         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
561           (create_pic): store only prefix-free device name,
562           (init_pic): check for device names with "16" prefix,
563           (list_valid_pics),
564         * src/pic/device.h (struct PIC_device),
565         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
566             stored device name,
567         * device/include/pic/pic12f{635,675,629,683}.h,
568         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
569         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
570         * device/include/pic/pic16f505.h,
571         * device/lib/pic/libdev/pic16f505.c: removed
572         * device/include/pic/pic14devices.txt: added support for pic12f
573             devices, removed unsupported non 16-bit devices
574             [above changes provided by patch from Zik Saleeba]
575         * src/pic/*, src/pic16/*, device/include/pic16/*,
576           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
577
578 2006-05-01 Borut Razem <borut.razem AT siol.net>
579
580         * configure.in, configure, doc/Makefile.in:
581           sync with nightly build makefile - latex, dvipdf and dvips
582           not needed any more
583
584 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
585
586         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
587         in the library source
588
589 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
590
591         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
592
593 2006-04-28 Raphael Neider <rneider AT web.de>
594
595         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
596         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
597           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
598         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
599
600 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
601
602         * device/lib/pic/libdev/Makefile.in,
603         * device/lib/hc08/Makefile.in,
604         * device/lib/gbz80/Makefile.in,
605         * device/lib/z80/Makefile.in,
606         * device/lib/ds390/Makefile.in,
607         * device/lib/ds400/Makefile.in: added srcdir to include search path,
608         thanks to Borut for the bug report
609         * configure.in,
610         * configure: always create doc/Makefile independent from --enable-doc
611         * Makefile.in: always install from directory doc independent from
612         --enable-doc
613         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
614         removed
615         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
616         * doc/Makefile.in: install *.txt if present
617         * device/include/Makefile.in (install): added installation of pic/*.inc
618         and pic/*.txt files again, they were erroneously removed
619
620 2006-04-28 Raphael Neider <rneider AT web.de>
621
622         * src/pic/{gen.c,main.h,pcode.c},
623         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
624             concerning signedness with casts
625
626 2006-04-28 Raphael Neider <rneider AT web.de>
627
628         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
629             definition of an interrupt handler,
630         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
631             interrupt handler stuff from picglue() to separate routine,
632           (picglue): enabled definition of intr handlers in files w/o main()
633
634 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
635
636         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
637           compilation with MSVC 2005 Express Edition (VC8)
638
639 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
640
641         * device/lib/Makefile: fixed build of gbz80 lib
642
643 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
644
645         * support/regression/tests/bug-460010.c,
646         * support/regression/tests/bug-524691.c,
647         * support/regression/tests/bug-716242.c: removed conditional defines
648           that are already in testfwk.h
649
650 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
651
652         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
653           (AccAXRsh1): added, shift right by 1,
654           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
655            AccAXLrl1
656         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
657
658 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
659
660         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
661         remove cast to same type
662         * src/SDCCast.c (decorateType): fix for RFE 1475742,
663         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
664         * as/z80/Makefile,
665         * link/z80/Makefile: removed, they have moved to
666         Makefile.in files
667         * configure,
668         * configure.in: replaced duplicate message about ucsim by missing sdcpp
669         * install-sh: fix bug #1204398 by setting umask 0022
670         * device/lib/Makefile: separate build of z80 and gbz80 lib
671
672 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
673
674         Enabled VPATH feature: changed nearly all Makefiles (149 files).
675         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
676
677         One basic decision: e.g. src/clean.mk includes further files. In order
678         to make this work there are two solutions:
679         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
680           run configure on them. This way they can use
681           'include $(srcdir)/port-clean.mk'
682         - always include clean.mk by the Makefile at the same level. To avoid
683           that `make clean` tries to include and build Makefile.dep the
684           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
685           implemented, because now even `make uninstall` doesn't create
686           Makefile.in. clean.mk could be eliminated by pasting it in
687           Makefile.in.
688
689         * debugger/mcs51/Makefile.in: build own objects from library sources
690         (SLIB, SDCC) in current directory
691
692         * configure, configure.in: renamed --disable-device-lib-build in
693         --disable-device-lib; added --enable-doc, the required tools are
694         searched by configure; added result message; the toolchain for the
695         belonging ports are now only built, if the port is enabled.
696
697         * support/regression/*: all output is written in directory gen, because
698         the fwk and ports directories don't livet in the build tree using vpath
699
700         * doc/sdccman.lyx: renamed --disable-device-lib-build to
701         --disable-device-lib, added --enable-doc, added section VPATH
702
703         * sim/ucsim/configure.in,
704         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
705         z80 are enabled by default
706
707 2006-04-24 Raphael Neider <rneider AT web.de>
708
709         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
710             to config word, "pic14_"-prefixed some extern functions
711           (pic14_emitConfigWord): emit __config directive(s) if assignment to
712             config word has been found
713         * src/pic/device.h: added prototypes
714         * src/pic/pcode.c: added "pic14_"-prefix where needed
715         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
716             fixup
717         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
718             words,
719           (pic14emitRegularMap): ignore config words,
720           (pic14createInterruptVect): moved generating __config directives away
721           (picglue): have __config directives emitted
722
723 2006-04-24 Borut Razem <borut.razem AT siol.net>
724
725         * doc/Makefile: sync with nightly build makefile
726
727 2006-04-24 Raphael Neider <rneider AT web.de>
728
729         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
730             registers that have not been assigned proper liveranges,
731             fixes #1469504 and #1474602,
732           (pCodeRegOptimizeRegUsage): fixed typo in comment
733
734 2006-04-24 Borut Razem <borut.razem AT siol.net>
735
736         * device/examples/main8051.c: deleted - it was removed from CVS
737           24.mar.2000 and after that modified 18.feb.2001, so it reappered
738           after the transition to Subversion
739         * src/SDCCalloc.h: deleted - it was removed  from CVS
740           3.feb.2001 and after that modified 18.feb.2001, so it reappered
741           after the transition to Subversion
742         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
743           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
744           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
745           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
746
747 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
748
749         * as/asx8051.dsp: added mcs51/strcmpi.h
750         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
751         * as/hc08/aslink.h: updated lnksect prototype
752         * as/hc08/asm.h,
753         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
754         * as/hc08/asmain.c,
755         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
756           (newdot): handle A_ABS
757         * as/hc08/asout.c,
758         * as/mcs51/asout.c (outarea): output address
759         * as/hc08/lkaomf51.c,
760         * as/mcs51/lkaomf51.c: disabled unused array UsageType
761         * as/hc08/m08pst.c,
762         * as/mcs51/i51pst.c,
763         * as/z80/z80pst.c: "ABS" is not A_OVR
764         * as/hc08/lkarea.c (newarea): read a_addr,
765           (lnkarea): added codemap array, sort absolute areas to the front,
766            combine all GSINITx/GSFINAL,
767           (find_empty_space, allocate_space): new functions,
768           (lnksect): return next address, handle absolute sections
769         * as/mcs51/lkarea.c (newarea): read a_addr,
770           lnksect2 prototype changed,
771           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
772           (find_empty_space, allocate_space): new, factored out of lnksect2,
773           (lnksect2): return next address, handle absolute sections
774         * as/hc08/lkhead.c,
775         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
776         * as/hc08/lklibr.c (addfile, fndsym),
777         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
778           index out of range and detect both '\' and '/'
779         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
780         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
781           regression tests (ds390 cannot return bool yet)
782         * doc/sdccman.lyx: changed version number, document changed --no-peep,
783           document critical interrupts on z80, document changed SDCC define
784         * src/asm.c (_asxxxx_mapping): fixed .org directive,
785           (_a390_mapping): added .org directive
786         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
787           (genMultOneByte): fixed warnings
788         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
789           ones
790         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
791         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
792           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
793         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
794         * src/pic16/main.c: removed newReg prototype
795         * src/pic16/pcode.c,
796         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
797           warnings
798         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
799           ones
800         * src/pic16/ralloc.c
801         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
802           to fix warnings
803         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
804           from short to PIC_OPTYPE
805         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
806         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
807           optype from short to PIC_OPTYPE
808         * src/port.h: made int_size unsigned to fix warnings
809         * src/SDCC.y: fixed warning on MSVC
810         * src/SDCCicode.c (getArraySizePtr): return unsigned int
811         * src/SDCCopt.c (convertToFcall): fixed warnings
812         * src/SDCCsymt.h: removed double prototype for genSymName
813         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
814           offset int to fix warnings
815
816 2006-04-22 Borut Razem <borut.razem AT siol.net>
817
818         * doc/sdccman.lyx, */Makefile, */Makefile.in:
819           references to CVS replaced with Subversion
820
821 2006-04-21 Borut Razem <borut.razem AT siol.net>
822
823         * doc/sdccman.lyx, */Makefile, */Makefile.in:
824           references to CVS replaced with Subversion
825
826 2006-04-19 Borut Razem <borut.razem AT siol.net>
827
828         * src/version.awk: adapted for svn
829         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
830           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
831           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
832           /binutils-avr/etc/*.vi, *.jin: removed all properties
833           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
834
835 2006-04-19 Borut Razem <borut.razem AT siol.net>
836
837         * CVS to Subversion migration completed
838
839 2006-04-18 Borut Razem <borut.razem AT siol.net>
840
841         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
842           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
843
844 2006-04-17 Borut Razem <borut.razem AT siol.net>
845
846         * device/include/Makefile.in: added pic/*.inc to the installation
847
848 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
849
850         * support/regression/collate-results.py: fixed output in case of
851         a valdiag error
852         * support/regression/generate-cases.py: fixed splitting of pathnames
853         with dots
854         * as/hc08/lklibr.c (addfile),
855         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
856
857 2006-04-11 Raphael Neider <rneider AT web.de>
858
859         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
860         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
861         * src/pic16/pcode.c (assignValnums): fixed #1460578
862
863 2006-04-11 Raphael Neider <rneider AT web.de>
864
865         * device/lib/pic/libdev/*.c,
866         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
867           fixes #1468739, enables compilation in --std-c99 mode
868         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
869
870 2006-04-11 Raphael Neider <rneider AT web.de>
871
872         * src/pic/device.c (find_device): removed debug output
873           (list_valid_pics): enabled verbose listing of supported devices
874         * device/include/stdbool.h: define bool as char for pic14/16 as well
875
876 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
877
878         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
879
880 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
881
882         * .version: bumped version to 2.5.6
883         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
884
885 2006-04-06 Raphael Neider <rneider AT web.de>
886
887         * .version: bumped version to 2.5.6 (pic14 ABI changed)
888         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
889         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
890           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
891             pic14_constructAbsMap
892           (pic14printPublics): declare absolute global symbols as global
893           (pic14createInterruptVect),
894         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
895           (newReg): assume new registers unused, use correct name in
896             hashtable (reg->name instead of name), more debugLog output
897         * src/pic/device.h (PIC_device): added fields for verbose output
898         * src/pic/device.c: moved device definition to pic14devices.txt,
899             added routines for runtime parsing of pic14devices.txt,
900             added support for second config word
901         * src/pic/main.c (_process_pragma): removed #pragma maxram,
902           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
903           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
904           (_pic14_parseOptions): moved pCodeInitRegisters here
905           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
906         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
907           (pCodeInitRegisters): rewrapped comments, perpared new approach to
908             handling the pseudo stack
909         * device/lib/Makefile.in: ignore failures in objects-pic16,
910         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
911         * device/lib/pic/NEWS: document new dependency on picXXX.lib
912         * device/lib/pic/Makefile.subdir,
913         * device/lib/pic16/Makefile.subdir: improved clean rules
914         * device/lib/pic/libdev/: NEW, pic14 device libraries
915         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
916         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
917         * device/include/Makefile.in: create subdir and install pic14 headers
918         * device/include/pic/p16f_common.inc: removed unused declarations
919         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
920             PICs from inc2h.pl v1.6,
921             replaced BIT_AT macros with struct declarations
922         * device/include/pic/pic14devices.txt: definition of supported devices,
923             all above improvements contributed by Zik Saleeba, thanks
924         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
925         * support/scripts/sdcc.nsi: also install pic14 device libraries and
926             headers
927
928 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
929
930         * device/include/mcs51/c8051f410.h: added interrupt numbers,
931         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
932           thanks to Charles Olds
933
934 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
935
936         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
937
938 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
939
940         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
941         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
942         * support/regression/bug1464657.c: added, new test
943
944 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
945
946         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
947           version number
948
949 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
950
951         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
952           --no-peep and --peep-file <file> are used don't use default rules but
953           do use the <file>
954
955 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
956
957         * src/mcs51/gen.c (genCall): fixed bug 1457608
958
959 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
960
961         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
962         changes seem to cause (trigger?) problems with the build system.
963
964 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
965
966         * src/SDCCpeeph.c (operandsLiteral): new, added,
967           (callFuncByName): inserted operandsLiteral
968         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
969
970 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
971
972         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
973         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
974
975 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
976
977         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
978           implemented patch 1120823 Thanks to Willy De la Court (normal
979           interrupts need an interrupt number now if they are made critical),
980           and enabled nesting of critical functions though not for gbz80
981           (genCritical, genEndCritical): added functions
982           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
983         * src/z80/mappings.i: added "ei" to all mappings
984
985 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
986
987         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
988         submitted by the Debian SDCC maintainer Aurelien Jarno:
989         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
990         archive with gcc 4.1 on mips and wrote the patch"
991
992 2006-03-16 Raphael Neider <rneider AT web.de>
993
994         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
995           the left operand is shorter than the result (c* = lit-c* + int),
996           fixes bug #1450796
997         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
998           OP_SYMBOL
999
1000 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1001
1002         * src/.version: increased version number to 2.5.5
1003         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1004         linking is done manually in pic16 port's _linkEdit,
1005         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1006         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1007         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1008         allocate asmop as AOP_ACC,
1009         (aopForRemat): added parameter 'bool result' in function declaration,
1010         (pic16_aopGet): return AOP_ACC when accessing WREG,
1011         (pic16_popGetTempReg): minor modification,
1012         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1013         'pic16_allocWithIdx',
1014         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1015         calling function in absolute addresses,
1016         (genAssign): take into account AOP_ACC asmop,
1017         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1018         * src/pic16/pcoderegs.c: some debug functions and lines added,
1019         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1020         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1021         register too,
1022         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1023         call to allocReg, not by manually allocating a new one,
1024         (pic16_assignRegisters): now before going through the register
1025         allocating functions mark all registers as free. This eliminates some
1026         side effects resulting from peephole parser done earlier in the backbone
1027
1028 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1029
1030         * src/SDCCicode.c (geniCodeLogic),
1031         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1032
1033 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1034
1035         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1036           (genSend): bugfix, do not allocate and free twice,
1037           (shiftRLong): handle partially overlapping aops
1038         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1039
1040 2006-03-08 Borut Razem <borut.razem AT siol.net>
1041
1042         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1043           for pic16
1044
1045 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1046
1047         * support/regression/tests/bug1409955.c: new, added
1048         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1049         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1050           (aopForSym, aopOp): increment asmop.allocated if reused,
1051           (freeAsmop): decrement asmop.allocated and check for zero instead of
1052           using asmop.freed,
1053           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1054           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1055            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1056            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1057            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1058            genSignedRightShift, genRightShift, genDataPointerGet,
1059            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1060            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1061             in reverse order from allocation,
1062           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1063             added swappedLR to keep track
1064         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1065           pdata & code for GCC, z80, gbz80 & hc08
1066         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1067
1068 2006-03-08 Raphael Neider <rneider AT web.de>
1069
1070         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1071
1072 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1073
1074         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1075         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1076         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1077
1078 2006-03-06 Borut Razem <borut.razem AT siol.net>
1079
1080         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1081           made the linker quiet
1082
1083 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1084
1085         * src/pic16/gen.c (genPcall): fixed bug #1443644
1086         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1087         which dumps before the function entry point a data byte which represents
1088         the number of the local variables used by the specified function, added
1089         'xinst' for initial support for Extended Instruction Support,
1090         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1091         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1092         port->fun_prefix anymore (may change later),
1093         (genFunction, genEndFunction): do not store/restore local registers for
1094         _main (this should take care the --main-return command line option in
1095         the future),
1096         (genOr): removed some legacy pic-port instructions,
1097         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1098         performing operations with SFR's causes data to be written more than
1099         once to each SFR. Perhaps SFRs should be handled in special cases...
1100         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1101         pcode.h
1102         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1103         into account for stack starting position,
1104         (struct OPTIONS pic16_optionsTable): added command line argument
1105         --extended or -y for Extended Instruction Support,
1106         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1107         (deassignLRs): *** perhaps the most important change, old 'for' code
1108         (commented out for reference), didn't account for some registers which
1109         were left marked 'not free' after a pointer operation. The change
1110         reduces register usage a lot in some cases
1111
1112 2006-03-04 Borut Razem <borut.razem AT siol.net>
1113
1114         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1115           _clean
1116         * support/regression/tests/bug-524697.c: decreased array size for
1117           mcs51 to fit into the internal RAM
1118         * support/regression/Makefile.in: a little bit more verbose
1119
1120 2006-03-03 Borut Razem <borut.razem AT siol.net>
1121
1122         * support/regression/fwk/lib/testfwk.c,
1123           support/regression/fwk/include/testfwk.h: introduced function
1124           _prints(), nonrecursive _printn(), call _initEmu() from main()
1125         * support/regression/ports/gbz80/support.asm,
1126           support/regression/ports/ucz80/support.asm,
1127           support/regression/ports/z80/support.asm,
1128           support/regression/ports/ds390/support.c,
1129           support/regression/ports/hc08/support.c,
1130           support/regression/ports/host/support.c,
1131           support/regression/ports/mcs51/support.c,
1132           support/regression/ports/xa51/support.c: added empty _initEmu()
1133           function
1134         * support/regression/ports/pic16/gpsim.cmd,
1135           support/regression/ports/pic16/spec.mk,
1136           support/regression/ports/pic16/support.c,
1137           support/regression/Makefile.in: added pic16 regression test
1138
1139 2006-03-01 Raphael Neider <rneider AT web.de>
1140
1141         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1142           genConstPointerGet): use safe way of generating MOVFF to cover
1143             literals as well as registers, fixes bug #1440527
1144         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1145             dereference
1146           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1147             more correctly, fixes bug #1232186
1148           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1149         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1150             gplink guess the correct processor in more cases, applied patch
1151             from Till Riedel attached to and fixing bug #1436552
1152
1153 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1154
1155         * support/regression/tests/array.c: added, contains check for #1434401
1156         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1157
1158 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1159
1160         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1161         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1162         * device/include/mcs51/c8051f326.h,
1163         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1164         * device/include/mcs51/c8051f000.h,
1165         * device/include/mcs51/c8051f018.h,
1166         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1167           PCON_IDLE,PCON_STOP and added sfr16 definitions
1168
1169 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1170
1171         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1172           genGetWord): fixed bug 1409955
1173
1174 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1175
1176         * device/include/hc08/mc68hc908gp32.h,
1177         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1178
1179 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1180
1181         * src/SDCCast.c (constExprValue): return NULL if not a value
1182         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1183         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1184         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1185
1186 2006-02-13 Borut Razem <borut.razem AT siol.net>
1187
1188         * src/regression/ptrarg.c: added, fails due to bug #1430967
1189         * src/regression/Makefile: ptrarg.c added, ...
1190
1191 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1192
1193         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1194         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1195
1196 2006-02-11 Borut Razem <borut.razem AT siol.net>
1197
1198         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1199           print "Processor: xxx" message to stdout only if --verbose
1200
1201 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1202
1203         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1204         * support/regression/tests/bug1426356.c: added
1205         * support/regression/tests/bitfields.c: removed 2 tests
1206
1207 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1208
1209         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1210         * device/include/mcs51/c8051f330.h,
1211         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1212           PCON_IDLE,PCON_STOP and added sfr16 definitions
1213         * device/lib/_divsint.c,
1214         * device/lib/_divuint.c,
1215         * device/lib/_divulong.c,
1216         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1217           register bank bug for small stackauto
1218
1219 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1220
1221         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1222
1223 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1224
1225         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1226         * all.dsp: corrected several bin paths
1227         * device/include/mcs51/c8051f120.h,
1228         * device/include/mcs51/c8051f300.h,
1229         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1230           to PCON_IDLE,PCON_STOP
1231         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1232         * device/lib/printf_large.c (output_float): fixed bug 1388703
1233         * support/regression/tests/bug1057979.c: added test for bug 1388703
1234
1235 2006-02-08 Raphael Neider <rneider AT web.de>
1236
1237         * src/pic/pcode.c (pciTRIS): fixed typo,
1238           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1239           (LinkFlow): fixed handling of flows that end in a call,
1240           (ReuseReg): perform safety check earlier
1241         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1242             to work with flows at the beginning of a pBlock,
1243             fixes #1426557 (Symbol not previously defined),
1244           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1245             usage information
1246           (RemoveUnusedRegisters): update register usage info
1247         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1248             created, reuse existing ones instead
1249         * src/pic/gen.c (genPcall): fixed #1424719
1250
1251 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1252
1253         * link/z80/lkmain.c,
1254         * link/z80/lklex.c,
1255         * link/z80/lkdata.c,
1256         * link/z80/aslink.h: fixed build on current cygwin:
1257         replaced getline() by lk_getline()
1258
1259 2006-02-01 Borut Razem <borut.razem AT siol.net>
1260
1261         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1262           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1263           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1264           src/regression/bool1.c, src/regression/bool2.c,
1265           src/regression/bool3.c, src/regression/call1.c,
1266           src/regression/compare.c, src/regression/compare10.c,
1267           src/regression/compare2.c, src/regression/compare3.c,
1268           src/regression/compare4.c, src/regression/compare5.c,
1269           src/regression/compare6.c, src/regression/compare7.c,
1270           src/regression/compare8.c, src/regression/compare9.c,
1271           src/regression/configword.c, src/regression/for.c,
1272           src/regression/inline.c, src/regression/mult1.c,
1273           src/regression/nestfor.c, src/regression/or1.c,
1274           src/regression/pointer1.c, src/regression/ptrfunc.c,
1275           src/regression/rotate1.c, src/regression/rotate2.c,
1276           src/regression/rotate3.c, src/regression/rotate4.c,
1277           src/regression/rotate5.c, src/regression/rotate6.c,
1278           src/regression/rotate7.c, src/regression/string1.c,
1279           src/regression/struct1.c, src/regression/sub.c,
1280           src/regression/sub2.c, src/regression/switch1.c,
1281           src/regression/while.c, src/regression/xor.c,
1282           src/regression/create_stc, src/regression/simulate,
1283           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1284           regression tests
1285         * src/regression/gpsim_assert.h: added
1286
1287 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1288
1289         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1290         ((void (code *) (void)) 0) ();
1291         * as/hc08/aslex.c,
1292         * as/hc08/aslink.h,
1293         * as/hc08/asm.h,
1294         * as/hc08/asmain.c,
1295         * as/hc08/lkdata.c,
1296         * as/hc08/lklex.c,
1297         * as/hc08/lkmain.c,
1298         * as/mcs51/aslex.c,
1299         * as/mcs51/aslink.h,
1300         * as/mcs51/asm.h,
1301         * as/mcs51/asmain.c,
1302         * as/mcs51/lkdata.c,
1303         * as/mcs51/lklex.c,
1304         * as/mcs51/lkmain.c,
1305         * as/z80/aslex.c,
1306         * as/z80/asm.h,
1307         * as/z80/asmain.c: fixed build on current cygwin:
1308         replaced getline() by as_getline()
1309
1310 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1311
1312         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1313         declarator in the symbol chain
1314         * src/SDCCsymt.h,
1315         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1316         parameter list for function pointers
1317         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1318         * support/regression/tests/bug-716242.c: added
1319
1320 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1321
1322         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1323         offset if possible
1324         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1325
1326 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1327
1328         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1329         inifinitely recurseable, added static
1330         * support/regression/tests/bug-1408066.c: added
1331
1332 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1333
1334         * src/SDCCicode.h,
1335         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1336         renamed, added possibility to create "postLoopLbl"-labels
1337         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1338         newiTempLoopHeaderLabel
1339         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1340         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1341         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1342         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1343         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1344         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1345         (basicInduction): fixed bug #136564, made static,
1346         (loopInduction): changed parameter of basicInduction, made static,
1347         (addPostLoopBlock): added
1348         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1349         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1350         findLoopEndSeq
1351         * support/regression/tests/bug-136564.c: added
1352         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1353         --std-sdcc99 to LIBSDCCFLAGS
1354
1355 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1356
1357         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1358         while loop
1359         * support/regression/tests/bug-1406131.c: added
1360
1361 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1362
1363         * src/SDCCast.c (decorateType): fix promotion of unary minus
1364         * src/SDCCsymt.c (computeType): beautified
1365         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1366         (valUnaryPM, valComplement): fix sign and promotion,
1367         (valNot): ANSI: result type is int (SDCC: unsigned char)
1368         * support/regression/tests/uminus.c: speedup by removing superflous
1369         test case 'int'
1370         * support/regression/tests/onebyte.c: added promotion and signedness
1371         tests for unary minus
1372         * support/regressions/tests/bug-477927.c: disable warning about
1373         uninitialized variables
1374         * support/regression/tests/not.c: added
1375
1376 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1377
1378         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1379         * src/mcs51/gen.c (gen51Code): show final register usage after
1380         fillGaps in asm with --i-code-in-asm
1381         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1382         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1383         incUsed, rliveClear, adjustIChain): made static,
1384         (setFromRange): excluded because it's unused,
1385         (findPrevUseSym, markWholeLoop): added,
1386         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1387         through all branches of predecessors enables sdcc to emit the warning
1388         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1389         (rlivePoint): made static, added parameter emitWarnings which is only
1390         true during the first run out of two,
1391         (findRecursiveSucc, findRecursivePred): removed,
1392         (computeLiveRanges): made static, added parameter emitWarnings,
1393         (dumpIcRlive): added for debugging only
1394         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1395         removed prototype of setFromRange()
1396         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1397         in call of computeLiveRanges()
1398         * support/regression/tests/bug-895992.c: added
1399         * support/regression/tests/bug-971834.c: added
1400         * support/valdiag/tests/bug-895992.c: added
1401         * support/valdiag/tests/bug-971834.c: added
1402
1403 2005-12-18 Raphael Neider <rneider AT web.de>
1404
1405         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1406           (genUnpackBits): improved code for direct operands,
1407           (genPackBits): improved code for literal assignment to bitfields
1408             and for direct destination operands (no FSR indirection),
1409             prevented redundant AND, fixes #1362800,
1410           (AccLsh): added parameter to disable masking of the result
1411         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1412           skip instructions with side-effects (like incfsz),
1413           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1414         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1415         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1416           fixes #1375263
1417
1418 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1419
1420         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1421         volatile variables as spill location
1422
1423 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1424
1425         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1426         replacing literals
1427         * support/regression/tests/bug-1376320.c: added
1428
1429 2005-12-08 Raphael Neider <rneider AT web.de>
1430
1431         * src/pic/device.c: renamed is_shared to pic14_is_shared
1432         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1433         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1434           (is_valid_identifier): added for above workaround
1435
1436 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1437
1438         * device/lib/Makefile.in: fixed to enable port-specific-objects
1439         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1440           char, thanks Hubert Sack
1441         * doc/sdccman.lyx: documented --xstack-loc,
1442           elaborated a bit more on interrupts and pitfalls,
1443           removed "setjmp/longjmp unsupported",
1444           documented some unsupported C99 features
1445         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1446         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1447           if, thanks Hubert Sack
1448         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1449         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1450           make make_library
1451         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1452           regression tests can report resource usage (rfe 700441)
1453         * support/regression/collate-results.py: report resource usage
1454         * support/regression/ports/ds390/spec.mk,
1455         * support/regression/ports/hc08/spec.mk,
1456         * support/regression/ports/mcs51/spec.mk,
1457         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1458         * support/regression/ports/ds390/uCsim.cmd,
1459         * support/regression/ports/hc08/uCsim.cmd,
1460         * support/regression/ports/mcs51/uCsim.cmd,
1461         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1462         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1463           library, use the default one
1464         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1465           building the library
1466
1467 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1468
1469         * config.dsp: added dependency on .version and configure_vc.awk
1470         * device/include/setjmp.h: updated for --stack-auto and --xstack
1471         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1472         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1473         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1474         * device/lib/libsdcc.lib: added _setjmp
1475         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1476           (decorateType): fixed bug 1372851,
1477           (optimizeGetHbit): fixed warning
1478         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1479           array initialisation
1480         * support/regression/tests/bug1057979.c: added test for bug 1358192
1481         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1482
1483 2005-12-03 Borut Razem <borut.razem AT siol.net>
1484
1485         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1486           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1487
1488 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1489
1490         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1491         createIval): implement symbol independant "flexible array member",
1492         (createIvalCharPtr): implemented flexible array initialisation with a
1493         string
1494         * src/SDCCsymt.c (copyStruct): removed,
1495         (getSize): fixed misleading comment,
1496         (getAllocSize): removed, the additional allocation size is now in
1497         sym->flexArrayLength,
1498         (checkStructFlexArray): new, syntax checks for flexible array members,
1499         (compStructSize): added syntax checks for "flexible array members"
1500         (copyStruct): removed,
1501         (copyLinkChain): removed inefficient fix for bug 770487
1502         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1503         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1504         symbol->flexArrayLength
1505         * src/SDCCerr.c,
1506         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1507         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1508         * support/regression/tests/structflexarray.c: added
1509         * support/valdiag/tests/structflexiblearray.c: added
1510
1511 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1512
1513         * src/SDCCast.c (decorateType): fixed bug 1368489
1514         * support/Util/SDCCerr.c,
1515         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1516
1517 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1518
1519         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1520           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1521
1522 2005-11-27 Borut Razem <borut.razem AT siol.net>
1523
1524         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1525           support/cpp2/mkdeps.h: added command line option
1526           -obj-ext=<extension> to SDCPP to define object file externion, used
1527           for generation of make dependencies (-M)
1528         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1529
1530 2005-11-26 Borut Razem <borut.razem AT siol.net>
1531
1532         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1533           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1534           added pic and pic16 libraries
1535
1536 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1537
1538         * device/include/float.h: Corrected typo in prototype of __fsgt
1539
1540 2005-11-25 Borut Razem <borut.razem AT siol.net>
1541
1542         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1543           added creation of model-mcs51-stack-auto libraries
1544
1545 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1546
1547         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1548         and fields-list too
1549         * src/SDCCast.c (createIvalArray): removed obsolete comment
1550
1551 2005-11-24 Borut Razem <borut.razem AT siol.net>
1552
1553         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1554           added missing device/lib/mcs51/crt*.asm sources
1555
1556 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1557
1558         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1559
1560 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1561
1562         * device/lib/_fs2schar.c,
1563         * device/lib/_fs2sint.c,
1564         * device/lib/_fs2slong.c: optimized inline asm
1565
1566 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1567
1568         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1569           Better handling of floats between -1.0 and 0.0.
1570
1571 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1572
1573         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1574           (the missing "if"s prohibited removal of redundant labels)
1575
1576 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1577
1578         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1579           Properly convert floats between -1.0 and 0.0 to long, int, and char
1580           types (max integer value of negative floats tends to zero).
1581         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1582           Removed changes made so to work properly with floats between
1583           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1584           and _fs2char.c
1585
1586 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1587
1588         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1589         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1590         (genCast) cosmetic change
1591         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1592         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1593         from mcs51
1594         * support/regression/tests/bitfields (testSignedBitfields): added
1595
1596 2005-11-18 Borut Razem <borut.razem AT siol.net>
1597
1598         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1599         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1600           introduced SILENT option to make building of pic16 libraries less
1601
1602 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1603
1604         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1605           Now they work properly with floats between -1.0 and 0.0
1606         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1607
1608 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1609
1610         * src/SDCCicode.c (printOperand): added missing else
1611
1612 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1613
1614         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1615         reformatted for better readability
1616         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1617         signed bitfields
1618
1619 2005-11-17 Borut Razem <borut.razem AT siol.net>
1620
1621         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1622           introduced SILENT option to make building of pic16 libraries less
1623           verbose - used for nightly snapshot build
1624         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1625           available on Win32 platforms.
1626         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1627           medium, large, pic and pic16
1628
1629 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1630
1631         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1632           printf("%f"...) sets fraction to zero.
1633
1634 2005-11-16 Raphael Neider <rneider AT web.de>
1635
1636         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1637           fixes #1357221
1638         * src/pic/gen.c (genIfx): implemented for CARRY bit
1639         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1640           to generic pointers, fixes #1357332,
1641           (pic16_movLit2f): NEW,
1642           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1643
1644 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1645
1646         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1647
1648 2005-11-11 Raphael Neider <rneider AT web.de>
1649
1650         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1651         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1652           compute pointer's type from operand,
1653           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1654           improved single bit reads, fixes bug #1353379
1655
1656 2005-11-09 Borut Razem <borut.razem AT siol.net>
1657
1658         * support/scripts/sdcc.nsi: added lib/pic to the package
1659
1660 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1661
1662         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1663
1664 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1665
1666         * support/regression/tests/bug1348008.c: added
1667         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1668         * support/regression/tests/bug1337835.c: updated comment
1669
1670 2005-11-06 Borut Razem <borut.razem AT siol.net>
1671
1672         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1673           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1674           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1675           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1676           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1677           dynamic construction of cl_error_class and derivates - 2.nd try
1678
1679 2005-11-05 Borut Razem <borut.razem AT siol.net>
1680
1681         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1682           bug, which caused Bus Errors on sparc solaris
1683
1684 2005-11-04 Borut Razem <borut.razem AT siol.net>
1685
1686         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1687           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1688           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1689           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1690           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1691           and derivates to resolve the initialization problem on OSX
1692
1693 2005-11-02 Borut Razem <borut.razem AT siol.net>
1694
1695         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1696           corrected typo - #include <winsock2.h>
1697
1698 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1699
1700         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1701           (_asxxxx_mapping): added org directive for future enhancements
1702
1703 2005-11-01 Borut Razem <borut.razem AT siol.net>
1704
1705         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1706           enabled sockets on WIN32
1707         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1708
1709 2005-10-31 Borut Razem <borut.razem AT siol.net>
1710
1711         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1712           WIN32 backslash path delimiters should be escaped when used in C strings
1713         * support/regression/tests/bitfields.c: exclude failing assertions for
1714           __CYGWIN32__ and __MINGW32__ hosts
1715
1716 2005-10-30 Borut Razem <borut.razem AT siol.net>
1717
1718         * src/SDCCutil.c: corrected double comparison typo
1719
1720 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1721
1722         * device/lib/medium/Makefile: added for new memory model medium
1723         * device/include/asm/mcs51/features.h: updated for medium/pdata
1724         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1725           added Multiply & Accumulate sbit's and MAC0_PAGE define
1726         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1727         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1728         * device/lib/_mullong.c: update for medium model
1729         * device/lib/incl.mk: added medium model
1730         * doc/sdccman.lyx: documented medium model
1731         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1732         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1733         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1734         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1735           (allocParms): set SCLS and OCLS to pdata for medium model
1736         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1737           for pdata,
1738           (powof2): return <0 if not power of 2
1739         * src/avr/gen.c (genBitWise): use updated powof2
1740         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1741           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1742           (shiftLLeftOrResult): use B if necessary
1743         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1744         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1745         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1746         * support/regression/Makefile.in: added test-mcs51-medium
1747         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1748
1749 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1750
1751         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1752         specifier unsigned
1753         * device/lib/time.c (mktime): fixed bug 1334315
1754
1755 2005-10-28 Raphael Neider <rneider AT web.de>
1756
1757         * device/include/pic/p16f_common.inc: added common declarations
1758         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1759
1760 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1761
1762         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1763           (aopPutUsesAcc): added to predict accumulator use,
1764           (assignResultValue): save acc if necessary,
1765           (genMinusDec): store result if indirectly addressed,
1766           (genDivOneByte):  save acc if necessary,
1767           (movLeft2Result): bugfix if left already in acc,
1768           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1769             attention to accumulator use (esp. pdata),
1770           (genReceive): receive pdata correctly
1771         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1772         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1773
1774 2005-10-27 Raphael Neider <rneider AT web.de>
1775
1776         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1777
1778 2005-10-27 Raphael Neider <rneider AT web.de>
1779
1780         * .version: changed version to 2.5.4
1781         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1782         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1783           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1784             arithmetics support routines
1785         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1786         * device/lib/Makefile.in: also create installdir for pic
1787
1788         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1789           pic14 port as well
1790         * src/pic/device.c (dump_sfr): rewritten to delegate register
1791           placement to the linker (use `extern sym' rather than sym EQU addr),
1792           (validAddress): fixed to check last specified address
1793         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1794           (popGetLit): truncate literal value to 8 bit,
1795           (popGet): moved assert to more appropriate place
1796           (popGetExternal): create pCode operand from and mark the according
1797             symbol as being `extern'
1798           (popGetAddr): added sanity check on immediate's offset, provide
1799             GPOINTER tag on demand
1800           (aopPut): fixed for immediates,
1801           (mov2w_op): move operand's address or contents to WREG (depending on
1802             operand type), safer variant of mov2w,
1803           (movwf,call_libraryfunc): NEW, handy abbreviations,
1804           (get_argument_pcop,get_return_val_pcop,pass_argument,
1805           get_returnvalue): interface for accessing function parameters and
1806             return values,
1807           (assignResultValuei,genRet): use new parameter/return value interface
1808           (pic14_getDataSize): back to old version handling generic pointers,
1809           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1810             provided implementation and/or fixed old one,
1811           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1812             calls, removed legacy 8051 reference code
1813           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1814           (loadSignToC): NEW, move the operands sign bit to CARRY,
1815           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1816             genRightShiftSigned, accepts negative shift counts,
1817           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1818           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1819             generic pointers, __data pointers and __code pointers,
1820           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1821             and signed bitfields, limit bitfields to 8 bit,
1822           (genDataPointerGet): fixed number of bytes read,
1823           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1824           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1825             pointers to constant data are no longer assumed to point to __code
1826             space, removed invalid pointer types,
1827           (bitpatternFromVal): retrieve the PICs representation of an integer
1828             or float literal,
1829           (genDataPointerSet): fixed assigning to po_immediate operands,
1830           (genGenPointerSet): implemented as library call,
1831           (genIfx): fixed incorrect condition,
1832           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1833             provide GPOINTER tag according to destination's storage class,
1834           (genCast): added code to handle casting to generic pointers, added
1835             sign-/zero extension of the result
1836           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1837         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1838         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1839           extend the result
1840         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1841           address/register resides in the shared banks
1842           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1843             put all variables into separate sections (have the linker arrange
1844             them)
1845           (picglue): put init code and interrupt handlers in separate sections
1846         * src/pic/main.c: added port specific options table, modified to PORT
1847           structure to make GPOINTERs 3 byte, added pic14_options
1848           (_pic14_do_link): private linking routine (update paths to libraries,
1849             add libsdcc.lib by default)
1850         * src/pic/main.h: declare pic14_options
1851         * src/pic/pcode.c: fixed instructions i/o relations,
1852           (RegCond): reverted to correct version,
1853           (newpCodeOpLit): truncate literals to 8 bit,
1854           (genericPrint): added debug output,
1855           (getRegFromInstruction): fixed for various operand types, simplified
1856           (BuildFlow): fixed broken handling of isntructions with labels
1857           (LinkFlow): start at last instruction in flow (skip trailing comments),
1858             pass the flow on to the next instruction after CALL
1859           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1860           (insertPCodeInstruction): fixed inserting after a skip instruction,
1861           (DoBankSelect): fixed for labeled instructions
1862           (OptimizepBlock): honor --nopeep switch
1863           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1864         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1865         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1866           (pCodeOptime2pCodes): allow disabling this optimization via
1867             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1868             but is still buggy), started implementation of a dataflow based
1869             pCode optimization (CSE + dead code elimination)
1870           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1871         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1872           names are independant of the stack location and therefore portable across
1873           devices
1874
1875 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1876
1877         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1878           (selectSpil): fixed bug 1337835 by not spilling bit variables
1879         * support/regression/tests/bug1337835.c: added test for this bug
1880         * src/mcs51/peeph.def: restart after rule 3.c,
1881           addded rules 263.x to optimize loading constants
1882
1883 2005-10-26 Raphael Neider <rneider AT web.de>
1884
1885         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1886         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1887           (genAssign): emit warning when casting literals to generic pointer
1888             type, also applies when taking the address of a fixed variable,
1889           (genCast): improved casting to generic pointers
1890         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1891           extern variables, added verbose error message
1892         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1893
1894 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1895
1896         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1897         carry must be complemented too
1898         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1899         could be emitted by genMinus
1900         * src/SDCCval.c (constVal): fixed bug 1305065
1901
1902 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1903
1904         * src/SDCCast.c (addCast): added promotion for bit variables
1905         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1906         promotion casts + optimisation
1907         (optimizeGetWord): fix warning 'i' might be used uninitialized
1908         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1909         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1910
1911 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1912
1913         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1914         all chars are promoted to int; promotion should be handled in SDCCast.c
1915
1916 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1917
1918         * device/lib/_strcmp.c: Fixed bug 1326457
1919
1920 2005-10-11 Raphael Neider <rneider AT web.de>
1921
1922         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1923         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1924
1925 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1926
1927         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1928         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1929
1930 2005-10-04 Raphael Neider <rneider AT web.de>
1931
1932         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1933           device/lib/pic16/pics.all: added pic18f1320
1934         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1935
1936 2005-09-30 Raphael Neider <rneider AT web.de>
1937
1938         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1939         * src/pic16/devices.inc: NEW, provides device descriptions
1940         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1941
1942 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1943
1944         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1945           GETHBIT
1946
1947 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1948
1949         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1950           documented Any Order Bit, Higher Order Byte and Higher Order Word
1951         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1952         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1953           (optimizeGetAbit): new, to get any bit, not only the high bit,
1954           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1955           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1956           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1957           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1958             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1959             GETABIT, GETBYTE, GETWORD: decorate them,
1960           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1961           (ast_print): added GETABIT, GETBYTE, GETWORD
1962         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1963         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1964           (geniCodeBinary): new generic binary icode,
1965           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1966         * src/port.h: updated comment for PORT.hasExtBitOp
1967         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1968           (genGetByte): new, to get a single byte,
1969           (genGetWord): new, to get a word from a long,
1970           (gen51Code): added GETABIT, GETBYTE, GETWORD
1971         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1972
1973 2005-09-23 Raphael Neider <rneider AT web.de>
1974
1975         * configure.in, configure: have device/lib/pic configured
1976         * device/lib/Makefile.in: added model-pic14
1977         * device/lib/clean.mk: added pic/ to clean rule
1978         * device/lib/pic: added rudimentary pic14 library providing support
1979           functions for multiplication/division/generic pointer access
1980         * src/SDCCopt.c (convilong): mark support functions as extern
1981           for pic14 port as well
1982         * src/pic/gen.c (genMult): added assertions,
1983           (genpic14Code): emit warning on unhandled iCodes
1984         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1985         * src/pic/pcode.c (pCodeOpCopy),
1986         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1987           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1988           SFR_REGISTER}), made safe for future extensions
1989         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1990           instructions even if preceeded by SKIP instructions (also remove
1991           them); removed unused code
1992         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1993           prevents leaving parts of the structure uninitialized after copying
1994
1995 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1996
1997         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1998           ago by me
1999         * support/regression/tests/addsub.c: added test for the bug
2000
2001 2005-09-21 Raphael Neider <rneider AT web.de>
2002
2003         * device/include/pic16/pic18f1220.h,
2004           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2005         * device/lib/pic16/Makefile.rules: added missing opening paren
2006         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2007           are provided in genutils.c,
2008           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2009           operand/result sizes,
2010           (genCmp): assert on NULL pointers first, then check deref'ed values
2011         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2012           result size
2013
2014 2005-09-18 Raphael Neider <rneider AT web.de>
2015
2016         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2017           as these are now unused,
2018           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2019         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2020           local, avoids uninitialized pointer dereference on r->name
2021         * src/pic16/ralloc.c (newReg): fixed indentation
2022
2023 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2024
2025         * src/SDCCval.c (constVal): fixed bug 730366
2026         * support/Util/SDCCerr.c,
2027         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2028
2029 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2030
2031         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2032
2033 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2034
2035         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2036
2037 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2038
2039         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2040           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2041         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2042           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2043         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2044         * packihx/packihx.c (hexDigit): made c unsigned char
2045         * as/mcs51/lklibr.c (fndsym),
2046         * link/z80/lkgb.c (gb),
2047         * link/z80/lklibr.c (fndsym),
2048         * link/z80/lkrloc.c (relr),
2049         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2050         * src/SDCC.lex (checkCurrFile, process_pragma),
2051         * src/SDCCglue.c (spacesToUnderscores),
2052         * src/SDCCmain.c (setParseWithComma, processFile),
2053         * src/asm.c (tvsprintf, printCLine),
2054         * src/avr/gen.c (emitcode, aopPut),
2055         * src/ds390/gen.c (emitcode),
2056         * src/hc08/gen.c (emitcode, emitinline),
2057         * src/mcs51/gen.c (emitcode, genInline),
2058         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2059           tokenizeLineNode),
2060         * src/pic/ralloc.c (debugLog),
2061         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2062           tokenizeLineNode),
2063         * src/pic16/ralloc.c (debugLog),
2064         * src/z80/main.c (_process_pragma):
2065            made all ctype.h function calls safe
2066         * src/SDCCopt.c: include math.h for fabs
2067         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2068           and used them throughout the code to make ctype.h function calls safe
2069         * src/ds390/main.c (asmLineNodeFromLineNode),
2070         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2071         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2072            unsigned char*
2073         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2074           (newpCodeAsmDir): made ctype.h function calls safe
2075         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2076           pic16_emitcode):  made lbp unsigned char*
2077         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2078           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2079         * src/xa51/gen.c (emitcode),
2080         * src/z80/gen.c (_emit2): made lbp unsigned char*
2081         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2082            char*
2083
2084 2005-09-05 Raphael Neider <rneider AT web.de>
2085
2086         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2087           access bank splitpoint
2088
2089 2005-09-05 Raphael Neider <rneider AT web.de>
2090
2091         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2092
2093 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2094
2095         * .version: changed to version 2.5.3
2096         * doc/sdccman.lyx: changed version to 2.5.3,
2097           documented --codeseg and --constseg and pragma codeseg and constseg,
2098           documented bit parameters (reentrant) and bit returning
2099         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2100            currFunc->recvSize, but is this ok for all ports?
2101           (ast2iCode): result of ~ on unsigned char must be cast to int for
2102            bool to work
2103         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2104           function pointers in bit space
2105         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2106           (processFuncArgs): call port.reg_parm() with reentrancy info
2107         * src/port.h,
2108         * src/avr/main.c,
2109         * src/ds390/main.c,
2110         * src/hc08/main.c,
2111         * src/pic/main.c,
2112         * src/pic16/main.c,
2113         * src/xa51/main.c,
2114         * src/z80/main.c: port.reg_parm prototype extended with
2115           "bool reentrant" parameter
2116         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2117           options.stackAuto for allocating bit register parameters
2118         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2119           (genSend): set BitBankUsed if it is,
2120           (selectRegBank): factored out of genCall for use in genPcall,
2121           (genCall): removed redundant dtype assignmen, use selectRegBank,
2122           (genPcall): handle returning in Carry properly, save in F0 if needed,
2123           (genReceive): handle bit register parameters
2124         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2125           (mcs51_assignRegisters): enable bit registers for all reentrant
2126            functions and don't set BitBankUsed unconditionally
2127         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2128         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2129         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2130
2131 2005-08-27 Borut Razem <borut.razem AT siol.net>
2132
2133         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2134         ppc-osx (Darwin) does not support -u option. It seems that it is
2135         supported only on Linux - GNU cp
2136
2137 2005-08-25 Borut Razem <borut.razem AT siol.net>
2138
2139         * sim/ucsim/gui.src/serio.src/Makefile.in,
2140           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2141           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2142           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2143           install and strip, since the strip at /usr/ccs/bin should be used
2144           on solaris
2145
2146 2005-08-24 Borut Razem <borut.razem AT siol.net>
2147
2148         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2149
2150 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2151
2152         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2153         ffffffffu
2154
2155 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2156
2157         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2158         * as/mcs51/lkmain.c (link_main): fixed warning
2159         * device/include/stdbool.h: ds390 has no advanced bit support yet
2160         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2161         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2162         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2163           and updated their macros
2164         * src/SDCCval.c (constVal): updated comment for renamed b_long
2165
2166 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2167
2168         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2169         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2170           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2171           (oprio): set priority for '['
2172         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2173            and adb_24_bit
2174         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2175         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2176         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2177         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2178           added overlayable BIT_BANK area
2179         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2180           (summary2): explain 'T' in legenda
2181         * as/mcs51/lkrloc.c: replaced old K&R style,
2182           (relr): added R_BIT processing,
2183           (errmsg): added "Bit-addressable relocation error",
2184           (adb_bit): added for converting from byte- to bit-addressable space,
2185           (adb_24_bit): added for converting from byte- to bit-addressable space
2186         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2187            used in reentrant functions now even as return value
2188         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2189         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2190           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2191         * src/SDCCglobl.h: added indicator BitBankUsed
2192         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2193            the bit registers b0-b7
2194         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2195           (geniCodeCast): fixed bug 1263853,
2196           (geniCodeLogicAndOr): put result in bool or char,
2197           (geniCodeReceive): added parameter func for accessing the return type,
2198           (geniCodeFunctionBody): pass func to geniCodeReceive
2199         * src/SDCCmain.c: added indicator BitBankUsed
2200         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2201         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2202           (checkSClass): don't put automatic bool/bit on stack,
2203           (checkFunction): removed check on function cannot return bit
2204         * src/SDCCsymt.h: added newBoolLink prototype
2205         * src/mcs51/gen.c (rb1regs): added bit registers,
2206           (movc): created for assigning to carry,
2207           (pushReg, popReg): created for pushing registers,
2208           (sameRegs): check both AOP_REG and AOP_CRY types,
2209           (aopOp): handle bit registers,
2210           (aopPut): optimization no self-assign,
2211           (saveRegisters): push reg->base (bits) only once for bit registers,
2212            and use pushReg,
2213           (unsaveRegisters): pop reg->base only once and use popReg,
2214           (assignResultValue): added parameter func and return in carry for bits,
2215           (genIpush): optimization no reload in A if not changed,
2216           (genSend): bit parameters in reentrant functions are passed in bit
2217            registers by first assigning to bits in B, then save registers and
2218            copy B to bits,
2219           (genCall): handle returning in Carry properly, save it in F0 if needed,
2220           (genPcall): updated assignResultValue call, this is not safe yet for bit
2221            returning function !!!
2222           (genFunction): don't generate equ's for bit registers and use pushReg,
2223           (genEndFunction): take care of bit returning functions and use popReg,
2224           (genRet): return bit in Carry,
2225           (genIfx): optimize bit registers and other directly addressable bits,
2226           (genReceive): updated assignResultValue call
2227         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2228           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2229            registers when using stack-auto
2230         * src/mcs51/ralloc.c (_G): added allBitregs,
2231           (regs8051): added the bit registers,
2232           (createStackSpil): use macro IS_BIT,
2233           (getRegBit): added to allocate a bit register, else spill,
2234           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2235           (updateRegUsage): factored out to ease stepping while debugging,
2236           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2237            also allocate bit registers,
2238           (fillGaps): handle bit registers,
2239           (findAllBitregs): added to create bit vector with all bit registers,
2240           (mcs51_allBitregs): returns this bit vector,
2241           (mcs51_assignRegisters): when using stack-auto use bit registers for
2242            passing parameters and creating local variables
2243         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2244
2245 2005-08-22 Borut Razem <borut.razem AT siol.net>
2246
2247         * device/lib/Makefile.in: replaced find option -or with -o
2248           to make it run on solaris
2249
2250 2005-08-22 Raphael Neider <rneider AT web.de>
2251
2252         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2253           fixes #1265442 (crash on Solaris)
2254
2255 2005-08-20 Borut Razem <borut.razem AT siol.net>
2256
2257         * configure, configure.in: added tests for libsocket and libnsl libraries,
2258           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2259           from support/regression/Makefile.in
2260         * support/regression/Makefile.in: added
2261         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2262         * sim/ucsim/libtool: regenerated on sparc-solaris
2263         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2264           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2265           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2266           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2267           sparc-solaris, which doesn't use GNU ld linker
2268         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2269         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2270
2271 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2272
2273         * src/mcs51/peeph.def: updated comments
2274
2275 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2276
2277         * device/lib/_gptrget.c,
2278         * device/lib/_gptrput.c: slightly shorter
2279         * doc/sdccman.lyx: incremented version
2280         * src/mcs51/peeph.def: moved peephole comments to the line of first
2281           change to better keep line correlation, reanimated 186.e
2282         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2283
2284 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2285
2286         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2287           David Saxton with quotes around file name.
2288
2289 2005-08-15 Borut Razem <borut.razem AT siol.net>
2290
2291         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2292           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2293           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2294           make tests run on x86_64 platform
2295
2296 2005-08-13 Raphael Neider <rneider AT web.de>
2297
2298         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2299           as it might be executed DURING a build (parallel make is wonderful)
2300
2301 2005-08-13 Raphael Neider <rneider AT web.de>
2302
2303         * device/lib/Makefile.in (port-specific-objects-pic16):
2304           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2305         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2306           dependency
2307         * device/lib/pic16/Makefile.rules: build subdirs before creating
2308           the library, removed builddir rule, create $(builddir) early in
2309           recurse rule, use empty recurse rule for leaf directories
2310         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2311           mkdir errors (race condition), removed duplicate suffix "hex"
2312           from clean rules
2313         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2314         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2315           prevents mkdir -p from aborting on Alpha
2316
2317 2005-08-12 Raphael Neider <rneider AT web.de>
2318
2319         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2320           db-statements in order to allow for arrays of pointers in code
2321           sections to be placed without interspersed 0-padding, fixes
2322           bug #1256215
2323         * (emitStatistics): fixed division by zero for pic18f1220
2324         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2325           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2326         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2327         * (pic16_pCodeConstString): keep track of already emitted string
2328           literals to prevent "duplicate definitions of symbol _str_NR"
2329         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2330           debug message
2331         * device/lib/Makefile.in: ignore failing PIC16 library builds
2332         * device/lib/pic16/Makefile: do not build if gputils are missing
2333         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2334
2335 2005-08-10 Raphael Neider <rneider AT web.de>
2336
2337         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2338           my last commit)
2339
2340 2005-08-10 Raphael Neider <rneider AT web.de>
2341
2342         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2343           Rokas' patch to add the new fixed point type "__fixed16x16"
2344         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2345           functions for __fixed16x16 arithmetics
2346         * device/lib/pic16: reimplemented the build system to support
2347           a separate build directory, better handling of libio (create
2348           the library in a separate subdir for each architecture) and
2349           easier configuration (centralized in Makefile.common)
2350
2351 2005-08-07 Raphael Neider <rneider AT web.de>
2352
2353         * src/pic16/gen.c (genrshTwo): fixed sign extension
2354         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2355         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2356           added T0CONbits
2357         * device/include/pic16/pic18f4220.h: NEW, header for
2358           pic18f4220 and pic18f4320
2359         * device/include/pic16/pic18fregs.h: added new devices,
2360           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2361         * device/include/pic16/signal.h: resolved name clashes
2362           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2363           to also allow testing for interrupt enable bits, added
2364           comments on how to use the macros
2365         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2366         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2367           register definitions for the devices
2368         * device/lib/pic16/pics.all: added new devices
2369         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2370           allocated memory
2371         * device/lib/pic16/libc/stdlib/memfree: do not count
2372           the block header as free memory
2373         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2374           simplified and added missing end-of-blocklist-marker
2375           (reported by Peter Onion, fixes #1252814)
2376         * (_mergeHeapBlock): fixed loop condition
2377         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2378           len==0, restructured code
2379         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2380           up a bit, reduced bitfield accesses, prevent endless loops
2381           in case of heap corruption
2382         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2383           "unreferenced arguments/must return a value" warnings
2384         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2385           replaced BAUDREG with SPBRG
2386         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2387           device/lib/pic16/debug/gstack/gstack.c: replaced
2388           _naked, _asm, _endasm with __naked, __asm, __endasm
2389
2390 2005-08-05 Raphael Neider <rneider AT web.de>
2391
2392         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2393           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2394
2395 2005-08-05 Borut Razem <borut.razem AT siol.net>
2396
2397         * device/lib/Makefile.in: added missing ';'
2398         * configure: removed ^M characters
2399
2400 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2401
2402         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2403           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2404           License
2405
2406 2005-08-04 Borut Razem <borut.razem AT siol.net>
2407
2408         * configure.in: pic16 libraries build 2nd try - enable running
2409           configure in device/lib/pic16
2410         * configure: regenerated from configure.in
2411         * device/lib/Makefile.in: create $(PORT)/bin directory
2412
2413 2005-08-03 Raphael Neider <rneider AT web.de>
2414
2415         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2416           to get/set values via pointers
2417         * (genUnpackBits,genPackBits): changed detection of
2418           ptr->bitfield vs. sym.bitfield, fixed access via generic
2419           pointers, removed dead (wrong) code for multibyte bitfields
2420         * (genNearPointerGet, genGenPointerGet): removed useless code,
2421           fixed bitfield detection, fixes #1250594
2422         * (genNearPointerSet): removed useless code
2423         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2424           and introduced macro pic16_emitpcode that conditionally emits
2425           the origin of the following pCode (useful for debugging SDCC)
2426         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2427         * (createDefmap): fixed handling of LFSR for --optimize-df
2428
2429 2005-08-02 Borut Razem <borut.razem AT siol.net>
2430
2431         * device/lib/Makefile.in: pic16 libraries build enabled since
2432           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2433
2434 2005-08-02 Raphael Neider <rneider AT web.de>
2435
2436         * src/pic16/gen.c (genPackBits): removed deprecated warning
2437         * (genGenPointerSet): fixed bitfield detection
2438
2439 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2440
2441         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2442
2443 2005-07-31 Raphael Neider <rneider AT web.de>
2444
2445         * device/lib/pic16/libdev/pic18f458.c,
2446           device/include/pic16/pic18f458.h: added missing T0CONbits
2447
2448 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2449
2450         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2451
2452 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2453
2454         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2455
2456 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2457
2458         * device/include/mcs51/at89c51ed2.h: added.
2459
2460 2005-07-23 Raphael Neider <rneider AT web.de>
2461
2462         * src/pic/gen.h: added emitpcode macro for debugging
2463         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2464           and replace by macro adding debug information on demand
2465         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2466         * (gencjne): tried to fix; replaced with correct (slower) code
2467         * (gen{Unp,P}ackBits): fixed single bit access
2468         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2469         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2470           previous instruction
2471         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2472           register has to be handled with care (forbidding movement
2473           of assignments/uses, removing assignments completely, ...)
2474         * (pCodeOptime2pCodes): make use of regIsSpecial
2475         * added lots of debugging output (commented out)
2476         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2477           from being reused as result UNLESS it is known to work
2478
2479 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2480
2481         * support/Util/dbuf.h: include <stddef.h> for size_t
2482         * .version: changed to version 2.5.2
2483
2484 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2485
2486         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2487
2488 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2489
2490         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2491           (genModOneByte): removed needless psha/pula
2492
2493 2005-07-22 Raphael Neider <rneider AT web.de>
2494
2495         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2496           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2497         * src/pic/gen.c (resolveIfx): do not "invent" labels
2498         * (genSkipc): changed to positive logic
2499         * (genSkipCond): removed as no longer needed
2500         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2501           backport from PIC16
2502         * (genLeftShift): check operands are in different registers
2503         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2504           INCF does not update CARRY...
2505         * src/pic/main.c: fixed _linkCmd
2506         * src/pic/pcode.c (unlinkpCode): added inactive code
2507         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2508           alive (do not assign result and operand overlapping registers)
2509
2510 2005-07-22 Raphael Neider <rneider AT web.de>
2511
2512         * src/pic/device.c (dump_sfr): replaced register declaration with
2513           call to emitSymbolToFile() to avoid duplicate symbols
2514         * (assignRelocatableRegisters): do not declare external symbols
2515         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2516           right (take size of type, not etype)
2517         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2518         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2519         * (packRegsForAccUse): disabled assignment of WREG as
2520           the result reg to prevent occurence of just fixed #1235003,
2521           fixes #1242954
2522         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2523           symbols (avoids duplicate symbols in .asm file)
2524         * (pic14emitRegularMap): use emitSymbolToFile()
2525         * src/pic/gen.c (aopOp): fixed spillLocation handling
2526         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2527         * (genDataPointerSet): removed unneccessary variables/output
2528
2529 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2530
2531         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2532         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2533
2534 2005-07-21 Raphael Neider <rneider AT web.de>
2535
2536         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2537           architecture cannot handle them efficiently, fixes bug #1235003
2538         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2539           check for empty sets before using them (fixes bug #1232190)
2540
2541 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2542
2543         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2544           (lnksect2): generate warnings for memory overlap
2545         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2546           constseg to set the name of these segments so you can instruct the linker
2547           to place them in banks
2548         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2549         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2550           added code_seg and const_seg to options
2551         * src/SDCCglue.c (emitMaps): use options.const_seg,
2552           (createInterruptVect): put interrupt vectors in segment HOME,
2553           (glue): put HOME before static segment and put the main glue in HOME,
2554           (glue): use options.code_seg
2555         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2556         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2557           these segments so you can instruct the linker to place them in banks
2558           (linkEdit): use code_loc for HOME segment which should be the first
2559           segment in code memory now
2560         * src/SDCCmem.c: fixed more stuff like bug 1238386
2561         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2562           (changePointer): don't change function pointers to code pointers for
2563           banked functions,
2564           (compareType): added exceptional check for banked function pointers
2565         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2566         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2567           after static in code memory
2568         * src/mcs51/gen.c: added aopLiteralLong prototype,
2569           (aopForSym): use getSize for functions,
2570           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2571           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2572           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2573           the segment,
2574           (genPcall): use call for literal function pointers and generate banked
2575           calls over the one trampoline so there's only one place for the user to
2576           modify according to his/hers hardware,
2577           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2578           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2579         * src/mcs51/main.c: added keyword banked,
2580           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2581         * support/Util/SDCCerr.c,
2582         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2583           needed for passing the bank and address to the trampoline
2584         * device/lib/mcs51/crtbank.asm: added for bankswitching
2585         * device/lib/mcs51/Makefile: added crtbank
2586
2587 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2588
2589         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2590           for fields at offset 0 of a struct or union as reported
2591           on 2005-07-07 in the developer mailing list.
2592
2593 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2594
2595         * src/SDCCmem.c: fixed bug 1238386
2596
2597 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2598
2599         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2600           (patch #1144962), added peephole 300, enabled 259.x
2601         * doc/sdccman.lyx: removed screenshot and provided link instead
2602
2603 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2604
2605         * doc/sdccman.lyx: added section about debugging with ddd
2606         * doc/figures/ddd_example.eps: screenshot of debugging session
2607
2608 2005-07-04 Raphael Neider <rneider AT web.de>
2609
2610         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2611           like CODE pointers, fixes #1115683
2612         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2613           call, fixes bugs #1232211, #1228110,
2614           fixed wrong casts to pCodeFlow from pCodeInstructions
2615
2616 2005-07-04 Raphael Neider <rneider AT web.de>
2617
2618         * src/pic/gen.c (popGet): changed assert to allow for
2619           bit operands
2620         * (popGetAddr): changed signature to provide
2621           an additional index, patched all call sites
2622         * (genCmpEq): handle literal-like operands correctly
2623         * (genAddrOf): added sanity checks on __code/__data pointers
2624         * (genAssign): added handling of symbols from __code section
2625         * (gencjne): do not generate code for comparisons whose result
2626           is neither stored nor used, fixes bug #1171114
2627         * (AccLsh, AccRsh): operate on operand instead of WREG
2628         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2629           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2630           by known count
2631         * rewrote complete shift-by-literal logic, commented unused
2632           functions out
2633         * (genConstPointerGet): get multiple bytes (if result size > 1),
2634           fixed handling of non-immediate addresses
2635         * (genPointerGet): handle CODE pointers like CONST pointers
2636         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2637         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2638           operand is to be treated as a literal or not
2639         * (mov2w,genPcall,genCmpEq),
2640           src/pic/genarith.c: use aop_isLitLike() to decide between
2641           literal/register contents
2642         * (addSign): added missing offset
2643         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2644           only emit comment in debug-mode,
2645           use {aop,op}_isLitLike throughout the file
2646         * src/pic/glue.c: fix initializers for pointers (work in progress)
2647         * src/pic/pcode.c (get_op): honor index on _const symbols
2648         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2649         * (dumppBlock): added pCode size estimation
2650         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2651           check for IS_SYMOP before OP_SYMBOL'ing
2652         * fixed indentation, compacted switch-statements
2653         * (allocReg): find free register and allocate it instead of
2654           allocating new registers all the time
2655         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2656           registers as its operands (necessary only for multibyte GETs)
2657
2658 2005-07-01 Raphael Neider <rneider AT web.de>
2659
2660         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2661           debugging .asm-output macros FENTRY + FEXIT
2662         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2663           way... I wonder...
2664         * (emitpComment): NEW, printf to pCode
2665         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2666           offset handling
2667         * (popGetAddr): NEW, variant of popGet to access an immediates
2668           high(er) bytes instead of the n'th byte of memory they reference,
2669           replaced popGet with popGetAddr where neccessary
2670         * (genDataPointerGet): reactivated and fixed implementation
2671         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2672           accesses
2673         * (genDataPointerSet): fixed multibyte assignments
2674         * (genpic14Code): fixed --i-code-in-asm handling
2675         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2676         * (genPlus): fixed index-out-of-bounds error
2677         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2678         * src/pic/ralloc.c: added debugging output macro FENTRY2
2679         * (spillThis): fixed indentation, enbraced for-body for clarity
2680         * (rematStr): commented out as now unused
2681         * (regTypeNum): commented out special spill case (overwrites
2682           arbitrary values)
2683         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2684
2685 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2686
2687         * doc/sdccman.lyx: documented sfr16/sfr32,
2688           added example for using storage class with function pointers
2689         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2690
2691 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2692
2693         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2694         * device/lib/_itoa.c,
2695         * device/lib/_ltoa.c: optimized codesize
2696         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2697           but don't know how to suppress the double warning.
2698         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2699         * support/Util/SDCCerr.c,
2700         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2701
2702 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2703
2704         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2705           fixed old K&R prototypes
2706         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2707         * device/lib/_gptrget.c,
2708         * device/lib/_gptrgetc.c,
2709         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2710           also new versions for small generic pointers and banked generic pointers
2711         * src/port.h: added const_name
2712         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2713         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2714         * src/SDCCcse.c (findPrevIc): check all associative operators
2715         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2716         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2717         * src/SDCCmem.c: updated comments,
2718           set far-space to 0 for pdata, results in optimized code
2719         * src/SDCCmem.h: added macro CONST_NAME
2720         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2721           moving the info into the highest bits, see also gptrget/gptrput
2722         * src/src.dsp: added sdcc.ico to project files
2723         * src/avr/gen.c (genCast): fixed bug 0x%d
2724         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2725         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2726           relation between ptr_type and DCL_TYPE,
2727           (genCast): fixed bug 0x%d
2728         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2729           (CODE)" for const_name
2730         * src/hc08/gen.c (genCast): fixed bug 0x%d
2731         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2732           (hc08_port): added "CONST (CODE)" for const_name
2733         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2734           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2735           between ptr_type and DCL_TYPE,
2736           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2737           operand* and took AOP() inside function so sfr-ness can be checked,
2738           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2739           new prototype,
2740           (genFunction, genEndFunction): optimized stack setup,
2741           (genMinus): optimized for literals with ending zeroes (in bytes),
2742           (genCast): fixed bug 0x%d
2743         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2744           (mcs51_port): added "CONST (CODE)" for const_name
2745         * src/mcs51/peeph.def: made rule 226 more generic
2746         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2747         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2748         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2749         * src/z80/main.c (z80_port): added NULL for const_name,
2750           (gbz80_port): added NULL for const_name
2751         * support/regression/tests/bug663539.c,
2752         * support/regression/tests/sfr16.c: new tests
2753
2754 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2755
2756         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2757
2758 2005-06-24 Raphael Neider <rneider AT web.de>
2759
2760         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2761           corrected typos...
2762         * device/include/pic16/signal.h: added USBIF
2763           and SIG_USB
2764
2765 2005-06-24 Raphael Neider <rneider AT web.de>
2766
2767         * device/lib/pic16/libdev/pic18f2455.c,
2768           device/include/pic16/pic18f2455.h: NEW
2769         * device/include/pic16/pic18fregs.h,
2770           device/lib/pic16/pics.all,
2771           src/pic16/device.c: added 18f2455
2772         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2773           device/include/pic16/{pic18f[68][567].h,usart.h}:
2774           replaced MULTIPLE_USARTS define with more relaible
2775           compatibility sfrs (for USART access)
2776
2777 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2778
2779         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2780           and the output asm file line is printed on two lines.
2781
2782 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2783
2784         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2785           BGT, BLE, BHI, and BLS instructions
2786         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2787           genCmpEq): removed
2788         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2789           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2790           fixes bug #1216342
2791         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2792
2793 2005-06-15 Raphael Neider <rneider AT web.de>
2794
2795         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2796         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2797         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2798           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2799           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2800
2801 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2802
2803         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2804           Marcel Telka in bug #1215704
2805
2806 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2807
2808         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2809           located in shared memory bank.
2810
2811 2005-05-31 Raphael Neider <rneider AT web.de>
2812
2813         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2814           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2815           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2816
2817 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2818
2819         * device/lib/_strncpy.c: fixed the fix
2820
2821 2005-05-26 Raphael Neider <rneider AT web.de>
2822
2823         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2824           initializers with \0, bug #1208187
2825         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2826           intializers with \0, bug #1208187
2827
2828 2005-05-26 Raphael Neider <rneider AT web.de>
2829
2830         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2831           initializers with \0, bug #1208187
2832         * src/pic16/main.c (_process_pragma): added sanity checks
2833           for stack position and size, emit warnings when appropriate
2834
2835 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2836
2837         * device/lib/_strncpy.c: fixed not filling with \0
2838
2839 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2840
2841         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2842           createFunction),
2843         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2844           compound_statement),
2845         * src/SDCCsymt.h,
2846         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2847
2848 2005-05-24 Raphael Neider <rneider AT web.de>
2849
2850         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2851
2852 2005-05-24 Raphael Neider <rneider AT web.de>
2853
2854         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2855           TRISE definitions, closes bug #1162453
2856
2857 2005-05-22 Raphael Neider <rneider AT web.de>
2858
2859         * src/pic16/main.c (_process_pragma): check for missing
2860           arguments to pragmas code and udata
2861         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2862           consistency fixes to match other headers (thanks to Jim Paris)
2863         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2864
2865 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2866
2867         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2868
2869 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2870
2871         * support/regression/tests/bug1198642.c: new test
2872         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2873         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2874         * support/scripts/resource.h,
2875         * support/scripts/resource.rc,
2876         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2877         * support/scripts/sdcc.ico: added 32x32 icon
2878
2879 2005-05-18 Raphael Neider <rneider AT web.de>
2880
2881         * device/lib/pic16/libdev/pic18f*.c,
2882         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2883           keywords to "__sfr" and "__at (X)"
2884         * device/include/pic16/pic18fregs.h: added pic18f4520
2885         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2886           #1203088 (MPLAB compatibility)
2887
2888 2005-05-17 Raphael Neider <rneider AT web.de>
2889
2890         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2891         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2892         * device/lib/pic16/pics.all: added new devices
2893         * src/pic16/device.c: added support for pic18f4520
2894
2895 2005-05-16 Raphael Neider <rneider AT web.de>
2896         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2897         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2898         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2899           convenience function for bit access
2900
2901 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2902
2903         * device/lib/printf_large.c: fixed bug 1193299
2904         * support/regression/tests/bug1057979.c: added test %3.3s
2905
2906 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2907
2908         * device/include/mcs51/8051.h,
2909         * device/include/mcs51/8052.h: made parseable with lint
2910         * device/include/mcs51/lint.h: added include file for (sp)lint
2911         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2912         * doc/cdbfileformat.lyx,
2913         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2914
2915 2005-05-14 Raphael Neider <rneider AT web.de>
2916
2917         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2918         * device/lib/pic16/libc/stdlib/itoa.c (new)
2919         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2920         * device/lib/pic16/libio/Makefile: exclude subdir according to
2921           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2922         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2923         * src/pic16/gen.c (genFunction): prevent annoying warning
2924         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2925           nameclashes on BeOS
2926         * support/cpp2/cppmain.c (cpp_output_string): new
2927         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2928           fixes bug 1116802
2929
2930 2005-05-13 Borut Razem <borut.razem AT siol.net>
2931
2932         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2933
2934 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2935
2936         * .version: changed to version 2.5.1; back to bleeding edge development
2937
2938 2005-05-11 Borut Razem <borut.razem AT siol.net>
2939
2940         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2941           generate PDF version 1.3 documents
2942
2943 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2944
2945         * .version: changed to version 2.5.0
2946
2947 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2948
2949         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2950
2951 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2952
2953         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2954         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2955         well as many smaller updates.
2956         * .version: changed to version 2.5.0-pre1
2957
2958 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2959
2960         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2961
2962 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2963
2964         * support/regression/tests/bug1185672.c: added
2965         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2966           bug 1185672
2967         * src/mcs51/gen.c (genCall): added comments, made it look safer
2968         * src/mcs51/gen.c (genEndFunction): simplified
2969
2970 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2971
2972         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2973
2974 2005-04-14 Borut Razem <borut.razem AT siol.net>
2975
2976         * fixed bug 1045046 - SIGSEGV with really simple code?:
2977           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2978           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2979
2980 2005-04-14 Borut Razem <borut.razem AT siol.net>
2981
2982         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2983           src/pic16/device.h: temporarily disabled experimental #inline pragma
2984           for 2.5.0 release
2985
2986 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2987
2988         * device/include/z80/stdio.h,
2989         * device/include/z80/string.h: removed these highly incomplete files so
2990           SDCC can use the default ones in device/include/
2991
2992 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2993
2994         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2995         gcc warning.
2996         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2997         fix sdcpp warnings.
2998
2999 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3000
3001         * device/include/malloc.h: removed redundant __reentrant prototypes
3002         * device/lib/_mullong.c: added working xstack variant in asm (C version
3003           doesn't pass regression tests)
3004         * device/lib/bpx.c: used __data and made bpx char for mcs51
3005         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3006           (createFunction): fixed bug with xstackPtr
3007         * src/SDCCcse.c: corrected comments
3008         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3009           (killDeadCode, eBBlockFromiCode): removed unused code
3010         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3011           corrected comments
3012         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3013           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3014           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3015           (genModOneByte): fixed warning in MSVC
3016         * src/mcs51/main.c (): added comments
3017         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3018
3019 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3020
3021         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3022
3023 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3024
3025         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3026
3027 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3028
3029         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3030         characters arrays of larger size than the declared one.
3031
3032 2005-04-10 Borut Razem <borut.razem AT siol.net>
3033
3034         * src/pic/gen.c (genInline),
3035           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3036           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3037           (findNextInstruction), (findPrevInstruction),
3038           (findInstructionUsingLabel),
3039           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3040         * src/pic/pcode.c (findLabel): added missing '\n'
3041         * src/src.dsp: added SDCCdwarf2.c to the project
3042
3043 2005-04-09 Borut Razem <borut.razem AT siol.net>
3044
3045         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3046
3047 2005-04-08 Raphael Neider <rneider AT web.de>
3048
3049         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3050           into the chain after a given one) and mergeDefmapSymbols (combine
3051           defmap entries for each symbol per pcode)
3052         * (createDefmap): have defmap entries merged in the end
3053         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3054           a symbol before replacing one access type's symbol, merge symbols in
3055           the end (replacement symbol might already have an entry)
3056         * (assignValnums): keep reference to written WREG intact
3057
3058 2005-04-08 Raphael Neider <rneider AT web.de>
3059
3060         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3061           Alpha)
3062
3063 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3064
3065         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3066         bytes
3067
3068 2005-04-07 Raphael Neider <rneider AT web.de>
3069
3070         * device/include/pic16/usart.h: added compatibility defines for
3071           devices with more than one USART
3072         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3073
3074 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3075
3076         * device/lib/Makefile.in: updated for port specific include
3077
3078 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3079
3080         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3081
3082 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3083
3084         * device/include/8051.h,
3085         * device/include/8052.h,
3086         * device/include/at89S8252.h,
3087         * device/include/at89c55.h,
3088         * device/include/at89x051.h,
3089         * device/include/at89x51.h,
3090         * device/include/at89x52.h,
3091         * device/include/mcs51reg.h,
3092         * device/include/reg51.h,
3093         * device/include/reg764.h,
3094         * device/include/regc515c.h,
3095         * device/include/sab80515.h: (re)moved these 12 files
3096         * device/include/mcs51/8051.h,
3097         * device/include/mcs51/8052.h,
3098         * device/include/mcs51/at89S8252.h,
3099         * device/include/mcs51/at89c55.h,
3100         * device/include/mcs51/at89x051.h,
3101         * device/include/mcs51/at89x51.h,
3102         * device/include/mcs51/at89x52.h,
3103         * device/include/mcs51/mcs51reg.h,
3104         * device/include/mcs51/reg51.h,
3105         * device/include/mcs51/reg764.h,
3106         * device/include/mcs51/regc515c.h,
3107         * device/include/mcs51/sab80515.h: and added them here
3108
3109 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3110
3111         * device/include/stdarg.h: changed SDCC specific keywords to double
3112           underlined form.
3113         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3114           mcs51 and ds390.
3115         * device/include/hc08/mc68hc908gp32.h,
3116         * device/include/hc08/mc68hc908jb8.h,
3117         * device/include/hc08/mc68hc908jkjl.h,
3118         * device/include/hc08/mc68hc908qy.h: fixed comments
3119         * device/include/mcs51/README: updated
3120         * device/include/mcs51/c8051f120.h: added PINRSF
3121         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3122         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3123           amidst code. Also inline is not supported.
3124
3125 2005-04-06 Raphael Neider <rneider AT web.de>
3126
3127         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3128         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3129           callers stack/frame pointers
3130
3131 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3132
3133         * device/include/pic16/usart.h: added, missing in previous commit,
3134         * device/include/pic16/adc.h: fixed typo,
3135         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3136         commit,
3137         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3138         <p18fxxx.inc>
3139         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3140         uninitialized because a bug appears with gplink
3141         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3142         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3143         complains for unrecognised option
3144
3145 2005-04-05 Raphael Neider <rneider AT web.de>
3146
3147         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3148           structs as well (using memcpy)
3149         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3150           on ISRs (GOTO has no label)
3151         * src/pic16/device.h: added OF_OPTIMIZE_DF
3152         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3153           new data flow analysis/optimization
3154         * src/pic16/pcode.c: added (prototypes for and implementation of)
3155           dataflow analysis functions, fixed pCodeInstructions' inCond and
3156           outCond values, made RCALL a branch instruction
3157         * (pic16_unlinkpCode): keep C line if possible
3158         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3159           C line moved if possible
3160         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3161         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3162           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3163         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3164           new flow)
3165         * (pic16_getJumptabpCode): NEW, needed in...
3166         * (LinkFlow): fixed handling of jumptables, calls and conditional
3167           branches
3168         * (pic16_InsertCommentAfter): NEW
3169         * (pic16_pCodeReplace): made verbose and flow preserving
3170         * (AnalyzeFlow): added call to data flow analysis
3171         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3172         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3173         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3174
3175 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3176
3177         * src/SDCCast.c (decorateType): fixed bug #1105626
3178
3179 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3180
3181         * device/include/asm/pic16/features.h,
3182         * pic18f*.h headers,
3183         * device/include/pic16/adc.h,
3184         * device/include/pic16/delay.h,
3185         * device/include/pic16/i2c.h,
3186         * device/include/pic16/malloc.h,
3187         * device/include/pic16/stdio.h,
3188         * device/include/pic16/stdlib.h,
3189         * device/include/pic16/string.h,
3190         * device/lib/pic16/libc/stdio/printf_tiny.c,
3191         * device/lib/pic16/libc/stdio/printf_small.c,
3192         * device/lib/pic16/libc/stdio/strmgpsim.c,
3193         * device/lib/pic16/libc/stdio/strmmssp.c,
3194         * device/lib/pic16/libc/stdio/strmusart.c,
3195         * device/lib/pic16/libc/stdio/vfprintf.c,
3196         * device/lib/pic16/libc/stdlib/ltoa.c,
3197         * device/lib/pic16/libc/stdlib/putchar.c,
3198         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3199         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3200         * device/lib/pic16/libc/stdlib/memchrram.c,
3201         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3202         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3203         * device/lib/pic16/libio/adc/adcbusy.c,
3204         * device/lib/pic16/libio/adc/adcread.c,
3205         * device/lib/pic16/libio/adc/adcsetch.c,
3206         * device/lib/pic16/libio/usart/ubaud.c,
3207         * device/lib/pic16/libio/usart/ubusy.c,
3208         * device/lib/pic16/libio/usart/udrdy.c,
3209         * device/lib/pic16/libio/usart/uopen.c,
3210         * device/lib/pic16/libio/usart/uputc.c,
3211         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3212         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3213         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3214         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3215         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3216         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3217         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3218         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3219         specific keywords to double underlined form,
3220         * device/lib/pic16/libc/Makefile.rules,
3221         * device/lib/pic16/libsdcc/Makefile.rules,
3222         * device/lib/pic16/libm/Makefile,
3223         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3224         to compile with C standard set in Makefile.common
3225         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3226         rand.c and crc.c in compilation process,
3227         * device/lib/pic16/libsdcc/int/divuint.c,
3228         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3229         `c' from signed to unsigned,
3230         * device/lib/pic16/startup/crt0.c,
3231         * device/lib/pic16/startup/crt0i.c,
3232         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3233         keywords to double underlined form, bug fixes in _do_cinit function
3234         which prevented the correct initialization of the .idata segment,
3235         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3236         core to enter a infinite loop
3237         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3238
3239 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3240
3241         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3242
3243 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3244
3245         * device/include/Makefile.in: add support for hc08 subdirectory
3246         * device/include/hc08/: new subdirectory
3247         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3248         Lucas Loizaga, thanks!
3249         * device/include/hc08/mc68hc908qy.h,
3250         * device/include/hc08/mc68hc908gp32.h,
3251         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3252         their own directory. Changed internal macro names to use the compiler
3253         reserved namespace. Changed SDCC specific keywords to double
3254         underlined form.
3255         * device/include/math.h,
3256         * device/include/malloc.h,
3257         * device/include/stdarg.h,
3258         * device/include/stdbool.h
3259         * device/include/string.h,
3260         * device/include/tinibios.h,
3261         * device/include/ds400rom.h,
3262         * device/include/8051.h,
3263         * device/include/8052.h,
3264         * device/include/80c51xa.h,
3265         * device/include/at89c55.h,
3266         * device/include/at89S8252.h,
3267         * device/include/at89x51.h,
3268         * device/include/at89x52.h,
3269         * device/include/ds80c390.h,
3270         * device/include/reg764.h,
3271         * device/include/regc515c.h,
3272         * device/include/sab80515.h,
3273         * device/include/mcs51/c8051f000.h,
3274         * device/include/mcs51/c8051f018.h,
3275         * device/include/mcs51/c8051f020.h,
3276         * device/include/mcs51/c8051f040.h,
3277         * device/include/mcs51/c8051f060.h,
3278         * device/include/mcs51/c8051f120.h,
3279         * device/include/mcs51/c8051f300.h,
3280         * device/include/mcs51/c8051f310.h,
3281         * device/include/mcs51/c8051f320.h,
3282         * device/include/mcs51/c8051f330.h,
3283         * device/include/mcs51/c8051f350.h,
3284         * device/include/z180.h: Changed SDCC specific keywords to double
3285         underlined form.
3286
3287 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3288
3289         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3290         18F4455,
3291         * (pic16_assignConfigWordValue): disable testing of configuration
3292         register value with config mask,
3293         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3294         function with port->fun_prefix,
3295         * (genFunction): when generating a naked interrupt function never
3296         create an absolute segment placed in interrupt vector address, place
3297         the actual interrupt function at IVA instead, when an interrupt
3298         function is generated with unspecified interrupt then do not create
3299         the absolute section,
3300         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3301         code for generating a call to generic pointer get/put function with
3302         a call to function pic16_callGenericPointer(),
3303         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3304         the call to the generic pointer get/put functions with prefixing the
3305         function name with port->fun_prefix,
3306         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3307         * src/pic16/main.c (_process_pragma): prefix function with
3308         port->fun_prefix,
3309         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3310         calling assembler, old 18Fxxxx macro is deprecated,
3311         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3312         PC_ASMDIR in while condition,
3313         * (findInstruction): add PC_ASMDIR in while condition,
3314         * (buildCallTree): prefix main with port->fun_prefix,
3315         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3316         identifier for variable with banked access in instructions BTFSS,
3317         BTFSC, BCF, BSF, BTG
3318         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3319         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3320         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3321         perform optimization when enviroment variable NO_REG_OPT is set,
3322         * (insideLRBlock): NEW, return 1 if register is inside an
3323         INF_LOCALREGS block,
3324         * (RemoveRegFromLRBlock): remove a register that is completely
3325         eliminated by register optimization, but it is still left in local
3326         register store/restore in/from stack block,
3327         * (Remove2pcodes): after removing register, check to see if it
3328         should be removed from local register store/restore in/from stack
3329         block,
3330         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3331         DUMMY_READ_VOLATILE,
3332
3333         * device/include/pic16/adc.h: minor prototype modifications and
3334         update,
3335         * device/include/pic16/malloc.h: added GPL notice various
3336         modifications,
3337         * device/include/pic16/stdint.h: NEW, standard header for ints
3338         * device/include/pic16/delay.h: NEW, header for delay functions,
3339         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3340         delay1mtcy,
3341         * device/include/pic16/signal.h: NEW, header providing helper macros
3342         for implementing signal handlers,
3343         * device/include/pic16/stdio.h: added prototypes for functions,
3344         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3345         prototypes for stdin and stdout, added macro PUTCHAR to
3346         automatically implement putchar function prototype,
3347         * device/include/pic16/usart.h: modified and updated USART library,
3348         * device/lib/pic16/libio/adc/,
3349         * device/lib/pic16/libio/i2c: some modifications to improve library
3350         performance,
3351         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3352         family of functions,
3353         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3354         family of functions and other sources,
3355         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3356         of the PIC18Fxx[28] devices,
3357         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3358         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3359         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3360         _do_cinit function, because the previous failed when local variables
3361         where not placed in the same memory bank,
3362         * device/lib/pic16/libsdcc/char/: various modifications to improve
3363         library performance,
3364         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3365         information on the new functions of the c library and more...
3366
3367 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3368
3369         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3370
3371 2005-03-26 Raphael Neider <rneider AT web.de>
3372
3373         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3374           if condition == CARRY)
3375         * (genCmp): adapted to new genSkipc semantics
3376         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3377           on rIfx (genCmp was broken)
3378
3379 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3380
3381         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3382         * src/z80/main.c (_keywords[]),
3383         * src/SDCCglobal.h (struct options),
3384         * src/SDCC.y,
3385         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3386         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3387         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3388         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3389         always available in leading double underscore form. The C99 support is
3390         mostly missing, but it's a start.
3391         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3392         reserved identifier "__data".
3393
3394 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3395
3396         * src/mcs51/peeph.def: fixed bug 1170013
3397
3398 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3399
3400         * device/include/mcs51reg.h: fixed bug 842007
3401
3402 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3403
3404         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3405         last time.
3406
3407 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3408
3409         * src/port.h (struct PORT),
3410         * src/avr/ralloc.c (avr_assignRegisters),
3411         * src/avr/main.c,
3412         * src/ds390/ralloc.c (ds390_assignRegisters),
3413         * src/ds390/main.c,
3414         * src/hc08/ralloc.c (hc08_assignRegisters),
3415         * src/hc08/main.c,
3416         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3417         * src/mcs51/main.c,
3418         * src/pic/ralloc.c (pic14_assignRegisters),
3419         * src/pic/main.c,
3420         * src/pic16/ralloc.c (pic16_assignRegisters),
3421         * src/pic16/main.c,
3422         * src/xa51/ralloc.c (xa51_assignRegisters),
3423         * src/xa51/main.c,
3424         * src/z80/ralloc.c (z80_assignRegisters),
3425         * src/z80/ralloc.h,
3426         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3427         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3428         * src/SDCCcse.h,
3429         * src/SDCCdflow.c (computeDataFlow),
3430         * src/SDCCdflow.h,
3431         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3432         * src/SDCCloop.h,
3433         * src/SDCCcflow.c (*),
3434         * src/SDCCcflow.h,
3435         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3436         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3437         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3438         immedDom() returning wrong block; probably fixes bug #1160833)
3439
3440 2005-03-20 Borut Razem <borut.razem AT siol.net>
3441
3442         * support/scripts/inc2h.pl: WIN32 port
3443
3444 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3445
3446         * device/lib/makefile.in: added abs.c and labs.c
3447
3448 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3449
3450         * device/include/stdint.h: added
3451         * device/lib/abs.c: added
3452         * device/lib/labs.c: added
3453         * device/include/stdlib.h: added abs() and labs() prototypes
3454         * device/lib/libsdcc.lib: added abs and labs
3455         * device/include/float.h,
3456         * device/lib/_fsmul.c,
3457         * device/lib/printf_fast.c,
3458         * device/lib/printf_tiny.c: updated comments
3459
3460 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3461
3462         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3463         bug #1164313
3464
3465 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3466
3467         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3468         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3469
3470 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3471
3472         * device/lib/printf_large.c: removed inline assembly for portability and
3473           readability. Use printf_fast if speed or size are more important.
3474         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3475         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3476
3477 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3478
3479         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3480         prevent compiler warning
3481
3482 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3483
3484         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3485         moved to level 0 and declared as static. Also they are explicit
3486         placed in access bank. This was necessery because some times they
3487         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3488         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3489         optimizations. Currently only compare to unsigned char is implemented,
3490         * src/pic16/gen.c: added fReturnIdx array,
3491         * (struct resolvedIfx) is moved to gen.h and made public,
3492         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3493         * (aopForSym): added an optimization to directly store in stack of
3494         the operand of a SEND iCode,
3495         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3496         but as registers instead (AOP_REG) using the fReturnIdx array,
3497         * (pic16_freeAsmop): remove the freed register from the
3498         _G.sregsAlloc field,
3499         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3500         a compare of 'WREG',
3501         * (pic16_popGetTempRegCond): changed function prototype, now
3502         function takes also a bitVector argument v which holds the current
3503         set of registers that are allocated for stack access by aopForSym,
3504         registers allocated in aopForSym for accessing stack symbols are not
3505         any more part of the functions usedRegs field,
3506         * (genCall): some times aopOp is called for a stack variable to be
3507         send, aopForSym might perform the push, if this is true make sure
3508         that genCall doesn't push the variable twice by testing _G.resDirect,
3509         * (genFunction): changed testing for unspecified interrupt number
3510         from 256 to INTNO_UNSPEC,
3511         * modified selection scheme of frame pointer generation. Previously
3512         if function did use local registers a frame pointer was generated,
3513         now a frame pointer is generated only if function has arguments
3514         (that need PLUSW2 register access), or has stack arguments, or the
3515         compiler is not instructed to omit the frame pointer,
3516         * (genEndFunction): before restoring local registers that were saved
3517         in the function preamble, also restore the registers that *might*
3518         have been allocated for stack access,
3519         * (genRet): removed some old comments,
3520         * (genCmp, the active (RN's) version): added a call to the
3521         pic16_genCmp_special function to perform the compare with a more
3522         robust and optimized way,
3523         * (genInline): a feature has been added in inline code generation,
3524         which allows a wildcard variable substitution when writing inline
3525         assembly. Code is incomplete and experimental therefore undocumented,
3526         * (genCast): changed order of aopOp for result and right to allow
3527         aopForSym to directly load the result if possible,
3528         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3529         perform an optimized compare on some selected special occasions,
3530         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3531         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3532         generate an IVT any more,
3533         * src/pic16/main.c (pic16_optionsTable): added command line option
3534         --optimize-cmp,
3535         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3536         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3537         macros,
3538         * src/pic16/NOTES: Raphael Neider added in list of active developers
3539         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3540         jumptable_end to prevent bug #,
3541         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3542         inCond and outCond fields,
3543         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3544         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3545         turn off register spilling,
3546         * (packRegsForOneUse): synced with other ports' versions although it
3547         is not used currently,
3548         * (pic16_packRegisters): added an optimization while reading
3549         structure bitfields, some registers may be saved (malloc code is
3550         decreased by 80 bytes)
3551
3552 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3553
3554         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3555         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3556         this can be optimized more?
3557
3558 2005-03-10 Raphael Neider <rneider AT web.de>
3559
3560         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3561           genNearPointerGet): (hopefully) fixed access to bitfields via
3562           pointers (p->bitN = x; and x = p->bitN; failed)
3563
3564 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3565
3566         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3567
3568 2005-03-09 Raphael Neider <rneider AT web.de>
3569
3570         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3571
3572 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3573
3574         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3575         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3576           (regTypeNum): set REG_BIT type if necessary
3577         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3578         * support/regression/tests/critical.c: check bug 1144613
3579
3580 2005-03-02 Raphael Neider <rneider AT web.de>
3581
3582         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3583
3584 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3585
3586         * src/avr/ralloc.c (serialRegAssign),
3587         * src/ds390/ralloc.c (serialRegAssign),
3588         * src/hc08/ralloc.c (serialRegAssign),
3589         * src/mcs51/ralloc.c (serialRegAssign),
3590         * src/pic/ralloc.c (serialRegAssign),
3591         * src/pic16/ralloc.c (serialRegAssign),
3592         * src/xa51/ralloc.c (serialRegAssign),
3593         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3594
3595 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3596
3597         * src/SDCCast.c (decorateType): fixed bug 1124787
3598
3599 2005-02-20 Hubert Sack <sack AT digiplan.de>
3600         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3601
3602         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3603         patch #1121755
3604
3605 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3606
3607         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3608         to keep the correct label reference count when adding/removing references
3609         to labels. A peephole file using this is appended to patch #1144962.
3610
3611 2005-02-14 Raphael Neider <rneider AT web.de>
3612
3613         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3614         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3615         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3616           retrievals of result operand's value on assignment
3617
3618 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3619
3620         * device/include/pic16/string.h: modified prototype for memccpy()
3621         to memccpy(void *, void *, char, size_t)
3622         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3623         check whether to omit frame pointer or not,
3624         * (genInline): convert all occurences of "\n" to LF in inline
3625         assembler blocks, this helps formatting the inline text,
3626         * (pic16_loadFSR0): modified prototype,
3627         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3628         removed some 8051 legacy code,
3629         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3630         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3631         before allocating temporary registers in functions,
3632
3633 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3634
3635         * support/regression/tests/bitvars.c: corrected the "fix"
3636
3637 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3638
3639         * support/regression/tests/bitvars.c,
3640         * support/regression/tests/bitwise.c,
3641         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3642
3643 2005-02-10 Raphael Neider <rneider AT web.de>
3644
3645         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3646           different size for Alpha
3647         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3648
3649 2005-02-09 Raphael Neider <rneider AT web.de>
3650
3651         * src/SDCC.lex(doPragma) : save and restore warning options as well
3652           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3653         * have #pragma less_pedantic set the errorlevel to WARNING
3654           (fixes #1117001)
3655         * (cloneOptimize) : fixed wrong malloc's size
3656         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3657           facilitate correct handling of #pragma (save|restore)
3658
3659 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3660
3661         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3662
3663 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3664
3665         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3666
3667 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3668
3669         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3670
3671 2005-02-02 Raphael Neider <rneider AT web.de>
3672
3673         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3674         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3675         * (pic16_storeForReturn): fixed to allow returning function pointers
3676         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3677         * device/include/pic16/{stddef.h,stdbool.h}: added
3678
3679 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3680
3681         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3682
3683 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3684
3685         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3686         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3687          appeared to be required
3688
3689 2005-01-31 Borut Razem <borut.razem AT siol.net>
3690
3691         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3692           include/mcs51 and include/z80 directories to the package
3693
3694 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3695
3696         * src/hc08/gen.c (genFunction): fixed bug #1112752
3697
3698 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3699
3700         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3701
3702 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3703
3704         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3705
3706 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3707
3708         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3709
3710 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3711
3712         * device/include/c8051fxxx.h: removed these 6 files
3713         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3714
3715 2005-01-26 Raphael Neider <rneider AT web.de>
3716
3717         * src/pic16/gen.c (genAssign): fixed assignment from longs
3718           in codespace (were cut to three bytes)
3719         * (genDummyRead): implemented (except for CODESPACE...),
3720           fixed bug #1108575
3721         * src/pic16/glue.c (emitStatistics): beautified
3722         * device/lib/pic16/libm/Makefile: added include path
3723
3724 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3725
3726         * src/z80/gen.c (aopPut): fixed bug #1103902
3727
3728 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3729
3730         * device/lib/expf.c: fixed bug #1095792
3731
3732 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3733
3734         * device/lib/pic16/libm: added Math library sources
3735
3736 2005-01-24 Raphael Neider <rneider AT web.de>
3737
3738         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3739           to enable upcast to pCodeOpReg2 (there is no type tag to
3740           differenciate the two and pic16_popGet2p cast into PCOR2)
3741         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3742           (sizeof(sectNames) changed to sizeof(sectName))
3743           Both patches fix segfaults under MinGW.
3744
3745 2005-01-23 Raphael Neider <rneider AT web.de>
3746
3747         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3748           Safe_[mc]?alloc()'ed variables
3749         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3750           of (byte sized) temporaries (assign them to WREG for now)
3751         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3752           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3753           this might fix SIGSEGVs on MinGW...
3754         * src/SDCCopt.c (killDeadCode): restored original behaviour
3755           (volatile operands might get thrown away though)
3756
3757 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3758
3759         * src/pic16/gen.c: fixed bug #1106975,
3760         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3761         pointer update, INTCON is saved, global interrupts are disabled and
3762         restored after updateing TOS.
3763         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3764         * added function attribute 'shadowregs' to take advantage of shadow
3765         registers,
3766         * added function attribute 'wparam' as an alternative to the wparam
3767         pragma,
3768         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3769         user declares a non-ISR function as 'shadowregs',
3770         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3771
3772 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3773
3774         * .version: bumped version number to 2.4.8
3775         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3776         pic16 port,
3777         * device/lib/pic16/libio/i2c/: I2C module support library,
3778         * device/include/pic16/i2c.h: I2C support library header,
3779         * device/lib/pic16/libc/stdio/: standard IO support sources,
3780         * (printf_small.c): printf_small() source, supports float print,
3781         * (printf_tiny.c): printf_tiny() source, does not support floats,
3782         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3783         enable global optimizations for entire library source, other
3784         Makefiles in the source tree are also modified to reflect this,
3785         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3786         function,
3787         * doc/sdccman.lyx: updated to reflect new changes,
3788         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3789         sym->onStack if-case,
3790         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3791         sbit, idata, _idata, xdata, _xdata,
3792         * added pragma library, to link an external library, (see doc),
3793         * removed command line options, --pomit-config-words, --pomit-ivt,
3794         --pleave-reset-vector,
3795         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3796         when calling assembler to reflect memory model used, also define
3797         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3798         reflect stack model used,
3799         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3800         on stack return NULL,
3801
3802 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3803
3804         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3805           of the operands is volatile. Fixes #1020220
3806
3807 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3808
3809         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3810         * (OptimizeRegUsage): make sure that there is really no other flow where
3811           the first pCode is used
3812
3813 2005-01-22 Raphael Neider <rneider AT web.de>
3814
3815         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3816           to fix #1106967 (pCode->seq are not set up correctly)
3817
3818 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3819
3820         * src/SDCCglue.c (glue): make sure code area is declared before the
3821         static initialization area.
3822
3823 2005-01-21 Raphael Neider <rneider AT web.de>
3824
3825         * device/lib/Makefile.in: fixed test for pic16 install dir
3826         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3827           optimizations
3828         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3829           added --optimize-goto compiler switch and pragma wparam documentation
3830         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3831         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3832           and PRODH closing bug #1071770 (peephole optimizer)
3833
3834 2005-01-19 Raphael Neider <rneider AT web.de>
3835
3836         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3837           cmdLine buffers (used when calling sdcpp...) are large enough
3838           (MAX_PATH=256 truncates arguments leading to system halts when
3839           used in MinGW...)
3840         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3841         * (genUminus): rewritten to for efficiency
3842         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3843           used uninitialized in some cases)
3844         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3845           copy the third byte from the int -- now assumes 0x80 (data memory)
3846         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3847           operands (genAddLit expects the iCode's operands to swapped as
3848           well), fixed leftover bytes (crashed for short left operands)
3849         * (pic16_genMinusDec): performance improvements, removed false
3850           PIC14 emitSKPNCs
3851         * (pic16_genMinus): fixed to cope with differently sized operands
3852         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3853           for --obanksel > 1
3854         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3855         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3856           new banksel optimization
3857         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3858           analysis for temporary registers (segfaults...)
3859         * src/pic16/peeph.def: added rule
3860
3861 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3862
3863         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3864         which converts a float number to its ASCII representation
3865         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3866         functions to convert the fractional and integer part of a float to ASCII,
3867         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3868         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3869         ram
3870         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3871         _STATMEM macros,
3872         * device/include/pic16/adc.h: added GPL info,
3873         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3874         a pCodeOp as tested operand,
3875         * (genNearPointerGet): optimized bit testing, does not use
3876         intermediate register for bit value, test directly instead with
3877         BTFSS, BTFSC, works only for single bits,
3878         * (genpic16Code): dump the name of the iCode in the asm,
3879         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3880         renamed to pic16_decodeOp,
3881         * (serialRegAssign): do not allocate a temporary register for iCode
3882         sequences that test a single bit for 1/0
3883
3884 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3885
3886         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3887         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3888         access stack and frame pointers. They are initially assigned to
3889         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3890         accessing SFRs. Updated all occurences of modification of stack or
3891         frame pointer in gen.c and pcode.c,
3892         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3893         assigning of a literal value to pointers,
3894         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3895         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3896         selected
3897
3898 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3899
3900         * doc/sdccman.lyx: update documentation about stack pragma, added
3901         some info for stack memory models
3902
3903 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3904
3905         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3906
3907 2005-01-08 Raphael Neider <rneider AT web.de>
3908
3909         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3910           udata sections to fix bug #1097823
3911
3912 2005-01-05 Raphael Neider <rneider AT web.de>
3913
3914         * src/pic16/gen.c (genGenericShift): added handling of differently
3915           sized left operand and result
3916
3917 2005-01-04 Raphael Neider <rneider AT web.de>
3918
3919         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3920         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3921           to hold the condition bit)
3922         * added new version of genCmp (old code available via #define)
3923         * added new version of genShiftLeft/genShiftRight in a generic
3924           way, now supports shifting by negative values
3925         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3926           shiftCount (expected by genGenericShift)
3927         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3928         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3929           dump
3930         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3931           is an invalid literal too...)
3932
3933 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3934
3935         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3936         from Raphael Neider,
3937         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3938         for 8-bit literals. This fixes some literal operands which are sign
3939         extended to 16-bits ints when instruction needs only 8-bits.
3940
3941 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3942
3943         * device/lib/logf.c: added mcs51 assembly version
3944         * device/lib/expf.c: added mcs51 assembly version
3945         * device/lib/_logexpf.c: new shared asm code for expf and logf
3946         * device/include/math.h: add defines for assembly math library
3947         * device/lib/Makefile.in: build new _logexpf.c
3948         * device/lib/libfloat.lib: use new _logexpf.c
3949
3950 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3951
3952         * src/pic/device.c
3953         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3954           device types which have less than 0x7f registers.
3955
3956 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3957
3958         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3959
3960 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3961
3962         * device/lib/printf_fast.c: only build on supported arch.
3963         * device/lib/printf_tiny.c: only build on supported arch.
3964         * device/lib/printf_fast_f.c: only build if asm float lib
3965         * device/lib/_fsget1arg.c: only build if asm float lib
3966         * device/lib/_fsget2args.c: only build if asm float lib
3967         * device/lib/_fsnormalize.c: only build if asm float lib
3968         * device/lib/_fsreturnval.c: only build if asm float lib
3969         * device/lib/_fsrshift.c: only build if asm float lib
3970         * device/lib/_fsswapargs.c: only build if asm float lib
3971         * device/include/stdio.h: don't provide print_fast,
3972           print_fast_f, print_tiny prototypes if --xstack used
3973
3974 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3975
3976         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3977         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3978           to the SOURCES
3979
3980 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3981
3982         * device/lib/printf_fast_f.c: same as printf_fast, but
3983           with floating point enabled
3984         * device/lib/printf_fast.c: minor tweaks
3985         * device/include/stdio.h: add printf_fast_f
3986
3987 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3988
3989         * src/SDCCmain.c: make --float-reent default for mcs51
3990         * device/lib/_fsadd.c: added mcs51 assembly version
3991         * device/lib/_fssub.c: added mcs51 assembly version
3992         * device/lib/_fsmul.c: added mcs51 assembly version
3993         * device/lib/_fsdiv.c: added mcs51 assembly version
3994         * device/lib/_fseq.c: added mcs51 assembly version
3995         * device/lib/_fsneq.c: added mcs51 assembly version
3996         * device/lib/_fsgt.c: added mcs51 assembly version
3997         * device/lib/_fslt.c: added mcs51 assembly version
3998         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3999         * device/lib/Makefile.in: add _fscmp to build
4000         * device/lib/libfloat.lib: add _fscmp to build
4001
4002 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4003
4004         * device/lib/_fs2slong.c: added mcs51 assembly version
4005         * device/lib/_fs2sint.c: added mcs51 assembly version
4006         * device/lib/_fs2schar.c: added mcs51 assembly version
4007         * device/lib/_fs2ulong.c: added mcs51 assembly version
4008         * device/lib/_fs2uint.c: added mcs51 assembly version
4009         * device/lib/_fs2uchar.c: added mcs51 assembly version
4010         * device/lib/_slong2fs.c: added mcs51 assembly version
4011         * device/lib/_sint2fs.c: added mcs51 assembly version
4012         * device/lib/_schar2fs.c: added mcs51 assembly version
4013         * device/lib/_ulong2fs.c: added mcs51 assembly version
4014         * device/lib/_uint2fs.c: added mcs51 assembly version
4015         * device/lib/_uchar2fs.c: added mcs51 assembly version
4016         * device/include/float.h: added #define to select asm vs c
4017
4018 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4019
4020         * device/lib/printf_fast.c: improvements to float output
4021         * device/include/float.h: add defines for assembly float library
4022         * device/lib/_fsget1arg.c: receive 1 float arg
4023         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4024         * device/lib/_fsnormalize.c: normalize a float
4025         * device/lib/_fsreturnval.c: return float, various helper routines
4026         * device/lib/_fsrshift.c: right shift a float's mantissa
4027         * device/lib/_fsswapargs.c: swap 2 floats
4028         * device/lib/Makefile.in: build these 6 new files for mcs51
4029         * device/lib/libfloat.lib: add these 6 files to the library
4030
4031 2004-12-26 Borut Razem <borut.razem AT siol.net>
4032
4033         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4034           built by gcc 3.4.2
4035
4036 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4037
4038         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4039           and fully reentrant and register bank neutral.
4040         * device/lib/printf_fast.c: added float (not enabled by default),
4041           added compact/slower integer (also not enabled by default),
4042           improved size/speed of fast integer code, other minor changes
4043         * device/include/stdio.h, device/lib/Makefile.in,
4044           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4045
4046 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4047
4048         * src/pic16/pcode.c: declaring variables other than at the start of a
4049           block is not supported in C by VC6.
4050
4051 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4052
4053         * applied a previous patch from Raphael Neider that wasn't included
4054         in the previous commits, which fixes infinite loops within jumptable
4055         improvements,
4056         * made some fixes that previous patches introduced
4057
4058 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4059
4060         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4061         that fixes an issue with AOP_PCODE asmop's offset,
4062         * (pic16_popCopyReg): update instance field too,
4063         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4064         function of pic port,
4065         * (genCmp, genAnd, genAssign),
4066         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4067
4068 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4069
4070         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4071         variables initial values to idata section,
4072         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4073         variables in some functions. This utilizes parmBytes field of iCode
4074         structure to hold the offset of the variable in stack. (might be
4075         able to use the stack field too?)
4076         * applied patch from Raphael Neider # ### , # ###
4077         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4078         variable initial values in idata section,
4079         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4080         for static variables with initial value
4081         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4082         applied fix in while loop from Raphael Neider.
4083
4084 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4085
4086         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4087         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4088         * src/ds390/ralloc.c (serialRegAssign): spill bits
4089         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4090         * support/Util/SDCCerr.c,
4091         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4092         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4093         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4094
4095 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4096
4097         * device/include/sdcc-lib.h: inserted LGPL, added includes
4098           asm/ds390/features.h and asm/mcs51/features.h
4099         * device/include/asm/default/features.h,
4100         * device/include/asm/gbz80/features.h,
4101         * device/include/asm/z80/features.h: added empty _AUTOMEM
4102           and _STATMEM
4103         * device/include/asm/ds390/features.h,
4104         * device/include/asm/mcs51/features.h: added files with defines for
4105           _AUTOMEM and _STATMEM indicating automatic and static storage class
4106         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4107         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4108         * src/SDCCicode.c (geniCodeCast),
4109         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4110         * src/SDCCloop.c (loopInduction): removed unused variable lr
4111         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4112           to convertToFcall to include char modulo (RFE 1065037), added check
4113           if left operand is unsigned and use abs of literal value
4114         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4115           as it doesn't work after conversion from peephole.def to peephole.rul
4116         * src/mcs51/gen.c (toBoolean): added check for size,
4117           (genModOneByte): optimized code for signed char modulo a literal
4118           power of 2 (thanks to Hubert Sack),
4119           (genRRC): removed unnecessary "clr c",
4120           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4121         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4122           jump optimization,
4123           swapped rules 256.c and 256.d,
4124           extended 256.d by using new multiple checks (thanks Erik),
4125           added rules 256.e and 256.f,
4126           updated rule 261.a and 261.b to new generated code
4127         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4128
4129 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4130
4131         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4132           induction related bugs, including first part of bug #1074377
4133
4134 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4135
4136         * applied patch from bug-report #1076292,
4137         * applied patches for genAnd and Goto-optimizations for Raphael
4138         Neider,
4139         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4140         dump a less iCode information,
4141         * src/pic16/device.h (pic16_options_t): added field debgen,
4142         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4143         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4144         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4145         puclic,
4146         * (various functions): added macros FENTRY and FENTRY2 to functions,
4147         to emit function prologue,
4148         * (various functions): fixed indentation,
4149         * (genNearPointerGet): fixed loading of FSR0,
4150         * (genPackBits): applied patch from Raphael Neider to fix updating
4151         of FSR0 and touching only the modified bits,
4152         * src/pic16/genarith.c (various functions): added macros FENTRY to
4153         emit function prologue in comments,
4154         * src/pic16/pcode.h: added functions debugf2, debugf3,
4155         * src/pic16/ralloc.c: partial fix for packForPush caused
4156         segmentation fault,
4157
4158 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4159
4160         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4161           <stsp AT users.sourceforge.net> with reversed byte order
4162         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4163
4164 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4165
4166         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4167           bug #1074377
4168         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4169         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4170
4171 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4172
4173         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4174
4175 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4176
4177         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4178           conditions,
4179           (setFromConditionArgs): friendly operand parser for peephole rules,
4180           (operandBaseName, operandsNotRelated): new peephole condition
4181           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4182           architecture specific register naming into account, handles n-way
4183           comparisons, and supports quoted literals
4184         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4185
4186 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4187
4188         * src/mcs51/peeph.def: fixed bug #1076940
4189
4190 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4191
4192         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4193
4194 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4195
4196         Adding support for replacing ljmps with sjmps in jumptables
4197         generated for switch statements. For now you need to set the
4198         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4199         Now 4 algorithms for mcs51 jumptable generation are used:
4200         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4201         addresses loaded pc-relative for up to 112 cases and stack-pushing
4202         target addresses loaded with offset from dptr for up to 256 cases.
4203
4204         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4205         * src/mcs51/main.c: adapted constants for switch table generation
4206         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4207
4208 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4209
4210         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4211         * support/regression/tests/bug1057979.c: added test for bug 1073386
4212
4213 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4214
4215         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4216         compilers
4217
4218 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4219
4220         * src/pic16/device.h,
4221         * src/pic16/genarith.c,
4222         * src/pic16/glue.c,
4223         * src/pic16/main.c,
4224         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4225
4226 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4227
4228         Large cummulative patch for pic16 port.
4229         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4230         to call when a stack overflow occurs,
4231         * (malloc.h): added CVS Id tag,
4232         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4233         variable,
4234         * added libc directory. The current version of LibC contains string
4235         functions, ctype functions and macros and some functions of the
4236         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4237         be extensively tested in the future. Standard disclaimer here.
4238         Library is not automatically build yet. But one can build it by
4239         invoking 'make' inside the libc directory.
4240         * added ADC library under libio. Preliminary version yet.
4241
4242         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4243         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4244         aopForRemat() now and not by pic16_aopOp(),
4245         * (pic16_popGetTempReg): removed warning messgae when allocating
4246         temporary registers, its a buggy feature and will be removed,
4247         * (pic16_popGet): set register instance field in AOP_CRY,
4248         * (pic16_outBitC): fixed for results in size greater than 1,
4249         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4250         * (pic16_storeForReturn): optimized return of 0,
4251         * (genCmp): experimental code for new genCmp which uses PIC18's
4252         special compare&skip instructions. Initial tests fail some times
4253         with variables grater than 1 byte in size, so new code is disabled,
4254         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4255         a single bit,
4256         * (genCast): began a fix to optimize the casting of a bit to another
4257         bit, now assigning a bitfield to another bitfield will fail, sorry,
4258         * src/pic16/main.c: disabled the use of lr-support feature,
4259         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4260         * added some function prototypes, added function _debugf prototype,
4261         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4262         bits with offset (case PO_GPR_BIT),
4263         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4264         command line,
4265         * (isBankInstruction): modified to return 0 for no banking instruction,
4266         and 1 for banking instruction,
4267         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4268         caused stop processing pCodes after a inline assembly block,
4269         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4270         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4271         registers when it shouldn't,
4272         * src/pic16/ralloc.c (allocReg): add preliminary support for
4273         supporting a limited set of temporary registers,
4274
4275 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4276
4277         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4278           genDataPointerSet): ensure assignments always copy in MSB to LSB
4279           order,
4280           (loadRegFromAop): recognize CLRH optimization,
4281           (genFunction): optimize RECEIVE iCodes in reentrant functions
4282
4283 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4284
4285         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4286           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4287           selected.
4288         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4289         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4290           contiguous with data
4291
4292 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4293
4294         * device/lib/_gptrget.c (_gptrget),
4295         * device/lib/_gptrgetc.c (_gptrgetc),
4296         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4297           instead of sjmp to ret
4298         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4299           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4300
4301 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4302
4303         * .version: bumped version to 2.4.7
4304         * device/lib/_gptrget.c (_gptrget): is now _naked
4305         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4306         * device/lib/_gptrput.c (_gptrput): is now _naked
4307         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4308           (createFunction): fixed xstack
4309         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4310         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4311           or bit either,
4312           (geniCodeCritical): store original interrupt state in an iTemp bit
4313           var unless stack-auto
4314         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4315         * src/SDCCmain.c (setIncludePath): added include/target to search path
4316         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4317         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4318           prototype,
4319           (processFuncArgs): put bit vars in bit area
4320         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4321           unsaveRBank): fixed xstack,
4322           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4323           (genFunction, genEndFunction): fixed xstack,
4324           (genAssign): optimization don't walk backwards through mem
4325         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4326         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4327         * support/regression/Makefile: also make library (for stack-auto) when
4328           making "all" and added "test-mcs51-xstack-auto"
4329         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4330         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4331         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4332         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4333         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4334           make-library by MAKE_LIBRARY
4335         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4336           regression tests for xstack
4337         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4338         * support/regression/tests/critical.c: test for critical on mcs51
4339
4340 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4341
4342         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4343           built version of sdcc instead of installed version
4344
4345 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4346
4347         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4348         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4349           vprintf.c now
4350         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4351         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4352           WARNING: remove device/lib/build/z80/printf.o by hand when
4353           updating from previous build!
4354         * device/lib/z80/printf.c: updated comment
4355         * support/regression/tests/bug1057979.c: test all ports now
4356         * support/regression/tests/bug1065458.c: file added
4357
4358 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4359
4360         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4361           *_start and *_end symbols for static functions
4362
4363 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4364
4365         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4366           and search crt0.o in all library paths,
4367           (setIncludePath): proper handling of --nostdinc,
4368           (setLibPath): proper handling of --nostdlib
4369         * support/regression/Makefile,
4370         * support/regression/ports/ds390/spec.mk,
4371         * support/regression/ports/gbz80/spec.mk,
4372         * support/regression/ports/hc08/spec.mk,
4373         * support/regression/ports/mcs51/spec.mk,
4374         * support/regression/ports/mcs51-large/spec.mk,
4375         * support/regression/ports/mcs51-stack-auto/spec.mk,
4376         * support/regression/ports/z80/spec.mk: use include and lib files from
4377           built version of sdcc instead of installed version
4378         * doc/sdccman.lyx: fixed typo in --nostdinc
4379
4380 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4381
4382         * src/pic/pcode.c,
4383         * src/pic/device.c,
4384         * src/pic/ralloc.c,
4385         * src/pic/gen.c : added support to generate code for struct bit fields.
4386
4387 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4388
4389         * as/xa51/xa_version.h,
4390         * device/include/errno.h,
4391         * device/include/regc515c.h,
4392         * device/lib/_itoa.c,
4393         * device/lib/_ltoa.c,
4394         * device/lib/ser_ir_cts_rts.c,
4395         * sim/ucsim/xa.src/glob.cc,
4396         * sim/ucsim/xa.src/inst_gen.cc,
4397         * sim/ucsim/xa.src/xa_bit.cc,
4398         * sim/ucsim/xa.src/xa_sfr.cc,
4399         * sim/ucsim/z80.src/inst_dd.cc,
4400         * sim/ucsim/z80.src/inst_fdcb.cc,
4401         * support/scripts/keil2sdcc.pl,
4402         * src/pic16/pic16.dsp,
4403         * src/pic16/pic16a.dsp: corrected cvs line endings
4404         * device/lib/printf_large.c: fixed bug 1057979
4405         * src/pic16/gen.c: fixed non-C standard code
4406         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4407         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4408         * support/regression/ports/mcs51/support.c: reload T1 asap
4409         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4410           pdata use and clear idata startup behaviour
4411         * support/regression/tests/bug1057979.c: added
4412
4413 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4414
4415         * device/examples/ds390/ow390/ad26.h,
4416         * device/examples/ds390/ow390/cnt1d.h,
4417         * device/examples/ds390/ow390/crcutil.c,
4418         * device/examples/ds390/ow390/ownet.h,
4419         * device/examples/ds390/ow390/owsesu.c,
4420         * device/examples/ds390/ow390/swt12.h,
4421         * device/examples/ds390/ow390/swtoper.c,
4422         * device/examples/ds390/ow390/temp10.h,
4423         * device/examples/ds390/ow390/thermodl.c,
4424         * device/examples/ds390/tinitalk/tinitalk.dsp,
4425         * device/examples/ds390/tinitalk/tinitalk.dsw,
4426         * device/examples/mcs51/clock/hw.h,
4427         * device/examples/mcs51/simple2/go.bat,
4428         * device/examples/serialcomm/windows/serial.h,
4429         * device/examples/xa51/dummy.c,
4430         * device/examples/xa51/hello.c,
4431         * device/include/80c51xa.h,
4432         * device/include/at89x051.h: corrected cvs line endings
4433
4434 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4435
4436         * src/pic16/main.c (options): added command line --gstack, to trace
4437         stack over/under flows,
4438         * added pragma 'wparam' to allow passing first byte of function
4439         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4440         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4441         call to __gstack_test function and sets up the symbol as extern,
4442         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4443         * popaop): added call to pic16_testStackOverflow,
4444         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4445         wparamList list,
4446         * (genCall, genPcall): now all parameters are passed via stack
4447         except in functions that are pass to wparam pragma in which WREG is
4448         used too,
4449         * (genPcall): REENTRANT flag is checked to see if variable prototype
4450         contains reentrant keyword, don't call a non-reentrant function, via
4451         a reentrant function pointer or vice versa, functions are never
4452         passed via WREG,
4453         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4454         D.Winkler,
4455         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4456         SIGSEGV when accessing a NULL register stucture,
4457         * (pic16_printGPointerType): modified to handle UPPER modifier for
4458         function initializers, changed prototype of function to simpler one,
4459         * (pic16_printIvalFuncPtr): check to see if function is already
4460         added in externs list,
4461         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4462         optimized a move from W to SFR with a move to the same register
4463         later after a CALL,
4464         * device/lib/pic16/debug: NEW directory, contains debug features
4465         which are enabled when linking with libdebug.lib, currently command
4466         line option --gstack enables stack pointer tracing for over/under
4467         flow, corresponding sources are in debug/gstack
4468
4469 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4470
4471         * doc/sdccman.lyx: updated SDCC version,
4472         * (PIC16 port): update list of command line options,
4473         * src/pic16/device.h (structure pic16_options_t): added field gstack
4474         to enable stack overflow tracing on push/pops,
4475         * src/pic16/device.c (statistics structure): added statistics
4476         structure,
4477         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4478         pic16_dump_int_registers): increase statistics counters for each
4479         * variable which is encountered
4480         * (pic16_dump_usection): emit each .udata variable to its own udata
4481         section,
4482         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4483         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4484         parameters via stack, otherwise use old scheme,
4485         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4486         assembler output file,
4487         * src/pic16/main.c: added command line options --gstack to enable
4488         push/pop tracing for stack overflow,
4489         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4490         instructions): added size of each instruction,
4491         * (pic16_countInstruction): estimate size of instructions in
4492         the_pFile list, inline assembly blocks are not counted,
4493         * (pic16_FixRegisterBanking): trace previous register usage, when
4494         banksel optimizations is greater than 0, don't emit a redudant
4495         banksel directive,
4496
4497 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4498
4499         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4500         * src/pic16/ralloc.c : applied same fix for pic16.
4501         * src/pic/gen.c : tidied it up a little.
4502
4503 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4504
4505         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4506         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4507
4508 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4509
4510         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4511
4512 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4513
4514         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4515         non-reentrant function __modsint in the interrupt function (thus
4516         corrupting math operations during serial I/O)
4517         * device/lib/ser_ir.c: as above, changed buffersize
4518         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4519         256.c,d for zeroing
4520         * doc/Makefile: added option -t for rsync
4521
4522 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4523
4524         * src/SDCCast.h (struct ast),
4525         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4526
4527 2004-10-20 Borut Razem <borut.razem AT siol.net>
4528
4529         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4530         package
4531
4532 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4533
4534         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4535         makefile targets,
4536         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4537         support functions to replace long sequences of MOVFF's from access
4538         bank registers to stack and vice versa,
4539         * src/pic16/device.h: added new field opt_flags, where optimization
4540         flags can be set to enable certain features,
4541         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4542         * pBlock, (genFunction, genEndFunction): surroung loop for
4543         saving/loading used registers in stack with PC_INFO pCodes,
4544         INF_LREGS. Code in between can then be optimized by pCode optimizer
4545         to support function calls,
4546         * (genDataPointerSet): fixed bug which loaded float fields in
4547         structures with corrupt data,
4548         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4549         in a standard way debug info on stderr. Feature used for developing
4550         and debugging only,
4551         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4552         obsolete chunks of code,
4553         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4554         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4555         * pic16/src/pcode.c (pic16_newpCodeInfo,
4556         * (pic16_newpCodeOpLocalRegs),
4557         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4558         feature,
4559         * (pic16_pCodeConstString): printing of the initial value of a
4560         symbol as a comment is inhibited since parsing was already done by
4561         copyStr and output is corrupt,
4562         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4563
4564 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4565
4566         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4567
4568 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4569
4570         * as/mcs51/lkarea.c: removed old K&R style,
4571           (lnksect): changed check on boundary error,
4572           (lnksect2): changed check on boundary error,
4573           (lnksect2): extend XSTK to end of page if size = 1
4574         * as/mcs51/lkmain.c: removed old K&R style,
4575           (Areas51): create l_IRAM symbol
4576         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4577         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4578           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4579         * device/lib/_mullong.c: added version to be compiled with xstack
4580         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4581         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4582         * device/lib/mcs51/crtxstack.asm: fixed comment
4583         * src/SDCCglue.c: maxInterrupts defaults to 0,
4584           (emitMaps): added pdata,
4585           (createInterruptVect): (re)moved default,
4586           (glue): added pdata,
4587           (glue): moved __start__xstack to XSTK with default size 1
4588         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4589           and options.float_rent when options.stackAuto is set,
4590           (linkEdit): only write XDATA_NAME if provided on command line
4591         * src/SDCCmem.h,
4592         * src/SDCCmem.c: added pdata
4593         * src/port.h: added pdata_name to PORT
4594         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4595           (saveRegisters, unsaveRegisters): removed usage of B,
4596           (genMinus): fixed accumulator clash,
4597           (genJumpTab): added comment, this needs another look
4598         * src/mcs51/gen.c: added check for "B in use" paranoia,
4599           added pushB() and popB()
4600         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4601           chance
4602         * src/avr/main.c,
4603         * src/ds390/main.c,
4604         * src/hc08/main.c,
4605         * src/mcs51/main.c,
4606         * src/pic/main.c,
4607         * src/pic16/main.c,
4608         * src/xa51/main.c,
4609         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4610           added PSEG (PAG,XDATA) or NULL to port specifier
4611         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4612         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4613           (_mcs51_genInitStartup): removed __start__xstack equ,
4614           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4615         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4616         * src/z80/gen.c (_rleAppend): fixed warnings
4617         * support/regression/tests/zeropad.c: added pdata test
4618         * .version: bumped to 2.4.6
4619
4620 2004-10-17 Borut Razem <borut.razem AT siol.net>
4621
4622         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4623         as a part of nightly build
4624
4625 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4626
4627         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4628         WREG holds the first byte function parameters,
4629         * (aopForSym): take special case for symbols which are in FARSPACE
4630         but in CODESPACE too,
4631         * (assignResultValue): modified to take into account _G.useWreg,
4632         * (genCall): don't use wreg for parameter passing when function is
4633         declared as reentrant, too, added optimization INCF to stack
4634         pointer when stack parameter count is 1,
4635         * (genFunction, genEndFunction): refurnished and fixed to not using
4636         wreg for passing parameters when function has varargs or is
4637         reentrant, fixed bug with symbol name compare for generating
4638         functions in absolute address,
4639         * (pic16_storeForReturn): refurnished,
4640         * (genCmp): began writing a new version of the function, not ready
4641         yet, therefore it is disabled,
4642         * (genAssign): do not read code memory when assigning a function to
4643         a pointer function,
4644         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4645         array of characters, not pointer,
4646         * (pic16initialComments): in debug mode emit an .ident directive for
4647         the assembler,
4648         * (_process_pragma): emit a new warning type (internal to pic16)
4649         when setting stack to default length, emit a similar warning when
4650         placing a function at absolute address and address is not word aligned
4651         * (_pic16_parseOptions): added 'return TRUE' statement,
4652         * (_pic16_linkEdit): if compiling a source, then add the source's
4653         file object, first in the list of objects to link,
4654
4655 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4656
4657         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4658         * src/pic/main.c : removed VC warning.
4659         * src/pic/gen.c : changed comment.
4660
4661 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4662
4663         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4664         reference to a deprecated symbol _GPTRREG was causing failure to
4665         link. Thanks G. M. Gallant for the info.
4666
4667 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4668
4669         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4670         comments for Bugs item #954788.
4671
4672 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4673
4674         * src/pic16/device.c (pic16_dump_gsection,
4675         * pic16_groupRegistersInSection): handle symbols declared to be in
4676         access bank differently,
4677         * src/pic16/gen.c (struct _G): added field resDirect,
4678         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4679         send values read from stack directly to result and don't allocate
4680         temporary values,
4681         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4682         same registers,
4683         * (pic16_sameRegsOfs): NEW,
4684         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4685         free because they were not allocated from temporary pool,
4686         * pic16_popRegFromString): workaround to fix a problem with
4687         allocating variables twice or never,
4688         * (genGenPointerGet): using PRODL instead of FSR0H,
4689         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4690         instead of FSR0H,
4691         * (genAssign): take advantage of the _G.resDirect flag,
4692         * (genCast): around line 11844, use mov2f instead of directly
4693         MOVFF'ing between operands to account for literal values,
4694         * src/pic16/genutils.c: some new debug functions for gpsim have been
4695         added,
4696         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4697         float with integer part only,
4698         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4699         place variables in access bank
4700         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4701         updated sources to reflect recent changes in gen.c
4702
4703 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4704
4705         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4706         sources that searched for headers in installation path, now the
4707         device/include/pic16 is used,
4708         * src/pic16/glue.c (pic16glue),
4709         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4710         .line directives if not in debug mode, this suppresses assembler's
4711         warnings for ignored directives
4712
4713 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4714
4715         * src/port.h: made reset_regparms prototype void parameter explicit.
4716         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4717         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4718         * doc/sdccman.lyx: documented warning disabling and how to use
4719           printf_large to make it print floats.
4720         * device/include/stdbool.h: NEW
4721         * device/lib/_atof.c,
4722         * device/lib/_divuint.c,
4723         * device/lib/_divulong.c,
4724         * device/lib/expf.c,
4725         * device/lib/printf_large.c,
4726         * device/lib/sincosf.c,
4727         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4728         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4729           a completely reentrant lib.
4730
4731 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4732
4733         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4734         * device/include/pic16/stdio.h: fixed bug with colon
4735
4736 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4737
4738         * device/include/pic16/stdio.h,
4739         * device/include/pic16/stdlib.h,
4740         * device/include/pic16/math.h: NEW
4741         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4742         declared as _naked to reduce overhead
4743         * device/lib/Makefile.in (target port-specific-objects-pic16):
4744         changed * to *.* so to ignore the CVS directory,
4745         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4746         stacked variables back in stack,
4747         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4748         corruption
4749
4750 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4751
4752         * .version: bumped version number to 2.4.5
4753         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4754         * support/Util/SDCCerr.c (messages structure): added entry for
4755         W_POSSBUG2
4756
4757         Large cumulative patch for pic16 port and libraries.
4758         * device/include/pic16/sdcc-lib.h,
4759         * device/include/pic16/stdarg.h,
4760         * device/include/asm/pic16/features.h,
4761         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4762         * device/include/pic16/float.h: changes reentrant keyword with
4763         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4764         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4765         updated target build-libraries to include objects from gptr,
4766         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4767         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4768         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4769         all function headings,
4770         * src/SDCCmain.c: added global parameter userIncDirsSet,
4771         * (parseCmdLine): when option -I is encountered add directory to
4772         userIncDirsSet too,
4773         * src/version.awk: added space between control and long,
4774         * src/pic16/NOTES: added some notes for the port,
4775         * src/pic16/gen.c: added prototype for mov2fp function,
4776         * (fReturnpic16[]): properly named return value registers,
4777         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4778         * (aopForSym): added code to handle symbols with onStack flag set,
4779         symbols onStack are allocated PTRSIZE bytes,
4780         * (aopFreeAsmop): handles special case where asmops are stack objects,
4781         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4782         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4783         added argument lock to trace flaws in allocating temporary registers
4784         when developing port,
4785         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4786         * (pic16_popRegFromString): reenabled allocating a direct register
4787         from string,
4788         * (assignResultValue): various beautifications,
4789         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4790         referenced function argument,
4791         * (genIpush): reenabled to allow stacked arguments, handles only
4792         ic->parmPush iCodes,
4793         * (genCall, genPcall): major changes to allow for variable argument
4794         functions, fixed a bug with falsely restoring stack pointer after
4795         returning from call,
4796         * (genFunction): pending code for critical function,
4797         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4798         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4799         * (genNearPointerGet): fixed bug with indirect reading, was always
4800         reading from INDF0
4801         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4802         pointers,
4803         * (genAddrOf): rewrote code to take address of a stacked function parameter
4804         * (genCast): fixed casting to generic pointer type,
4805         * src/pic16/gen.h: added AOP_STA,
4806         * (struct asmop): added field stk,
4807         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4808         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4809         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4810         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4811         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4812         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4813         generic pointers,
4814         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4815         and library paths,
4816         * (pic16_port structure): generic pointer size is set to 3,
4817         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4818         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4819         compiler warning,
4820         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4821         operand is an iTemp,
4822
4823 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4824
4825         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4826         * debugger/mcs51/simi.c: addapt new syntax of s51
4827
4828 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4829
4830         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4831         * src/pic16/pcode.c: commented out some calls to free() in order to
4832         fix bug #989576,
4833
4834 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4835
4836         * src/SDCCicode.h,
4837         * src/SDCCicode.c (isiCodeInFunctionCall),
4838         * src/avr/ralloc.c (selectSpil),
4839         * src/pic/ralloc.c (selectSpil),
4840         * src/pic16/ralloc.c (selectSpil),
4841         * src/ds390/ralloc.c (selectSpil),
4842         * src/hc08/ralloc.c (selectSpil),
4843         * src/xa51/ralloc.c (selectSpil),
4844         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4845         stack in the middle of a function call sequence (fixes bug #1020268)
4846         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4847         costs associated with the minimum switch case.
4848
4849 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4850
4851         * src/SDCC.lex: fixed bug #1030549
4852
4853 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4854
4855         * src/SDCCcse.h (struct cseDef),
4856         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4857         over a function call if the CSE is derived from a symbol whose
4858         address has been taken (fixes bug #1029883)
4859         * support/regression/tests/bug-1029883: a new regression test for
4860         this bug
4861
4862 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4863
4864         * src/hc08/gen.c (emitinline): fixed bug #1029778
4865         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4866         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4867         and starts toward RFE #905167)
4868
4869 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4870
4871         * src/pic16/gen.c (mov2f): New function to move an operand to
4872         another without considering if it is a literal or a register,
4873         * (pic16_sameRegs): don't check if they are both AOP_REG,
4874         * (AccRsh): removed andmask=0 lines,
4875         * (genLeftShift): duplicated to be improved in future versions,
4876         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4877         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4878         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4879         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4880         * (insertBankSwitch): fixed inserting banksel directives algorithm
4881         for instructions that follow a skip instruction, this fixes a report
4882         for broken subtraction code generation,
4883         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4884         iCode is a left op, just in case result and right share the same
4885         registers
4886
4887 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4888
4889         * src/hc08/main.c,
4890         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4891         preservation of HX
4892         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4893         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4894         on 2004-09-12; it was buggy
4895
4896 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4897
4898         * src/SDCCsymt.h: removed RESULT_CHECK
4899         * src/SDCCast.c,
4900         * src/SDCCglue.c,
4901         * src/SDCCval.c,
4902         * src/pic/glue.c,
4903         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4904
4905 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4906
4907         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4908         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4909         configuration values no more rejected by compiler, they are assigned
4910         to configuration registers with a warning message instead,
4911         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4912         the for-loop so last conf register is emitted too,
4913         * (_pic16_initPaths): link library libsdcc.lib by default,
4914         * (_hasNativeMulFor): modified test for multiplication according to
4915         Raphael Neider's remarks. Integer multiplication is also done with
4916         support functions,
4917         * device/include/pic16/pic18fregs.h: corrected type error in while
4918         testing and including 18f6720 header file
4919
4920 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4921
4922         * src/pic16/device.h (pic16_options): removed field use_crt,
4923         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4924         until an optimization to handle single bits is added,
4925         * (pic16_loadFSR0): moved before genUnpackBits,
4926         * (genAnd): some white lines removed,
4927         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4928         leave_reset flags in pic16_options when using crt modules,
4929
4930 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4931
4932         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4933           for bugs 898889 & 979599. Also used some safer print instructions.
4934
4935 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4936
4937         * src/pic16/device.h (pic16_options_t): added field use_crt,
4938         crt_name, no_crt,
4939         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4940         catch a probable future bug,
4941         * src/pic16/gen.c: aopIdx function commented out,
4942         * (genAssign): commented out old code which used aopIdx,
4943         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4944         code, added if conditionals to take into account the --use-crt
4945         command line options,
4946         * src/pic16/main.c (pic16_optionsTable): added new command line
4947         options, --use-crt= and --no-crt,
4948         * (_pic16_linkEdit): now the proper crt object is added in the
4949         linker command line except than when --no-crt is specified,
4950         * src/pic16/pcode.c,
4951         * src/pic16/pcode.h: added some structures and functions for a new
4952         optimization scheme to compansate for instruction overhead between
4953         same iCodes, this scheme is currently under development and is not
4954         working in any way,
4955         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4956         to && operator,
4957         * device/lib/pic16/startup/crt0i.c,
4958         * device/lib/pic16/startup/crt0iz.c: added global char variable
4959         __uflags to force the generation of an idata section
4960
4961 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4962
4963         * doc/Makefile,
4964         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4965         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4966
4967 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4968
4969         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4970         Frieder) and clarified the default code optimization mode
4971
4972 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4973
4974         * src/SDCC.lex (doPragma, process_pragma),
4975         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4976         "opt_code_size", and "opt_code_balanced"
4977         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4978         regrouped options by category, added support for category headers
4979         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4980         and "--opt-code-size"
4981         * doc/sdccman.lyx: documented these new options and pragmas
4982         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4983         preference into account
4984
4985 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4986
4987         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4988           geniCodePreDec): Fixed bug 904237 by generating a warning
4989         * src/SDCCerr.h,
4990         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4991
4992 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4993
4994         * src/pic/device.c : When no max ram set validate full memory range.
4995         * src/pic/pcode.c,
4996         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4997
4998 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4999
5000         * device/lib/_gptrget.c,
5001         * device/lib/_gptrput.c: updated comment
5002         * device/lib/calloc.c,
5003         * device/lib/free.c,
5004         * device/lib/malloc.c,
5005         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5006         * src/SDCCcse.c (cseBBlock),
5007         * src/SDCCicode.c (printOperand, geniCodeArray),
5008         * src/SDCCicode.h (struct operand): fixed bug 868103
5009         * support/regression/tests/bug-868103.c: added
5010         * src/SDCCast.c (searchLitOp),
5011         * src/SDCCcse.h (struct cseDef),
5012         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5013         * src/SDCCicode.h (struct operand),
5014         * src/SDCCsymt.h (struct sym_link),
5015         * src/avr/gen.c (hasInc),
5016         * src/ds390/gen.c (hasInc),
5017         * src/hc08/gen.c (genPlusIncr, hasInc),
5018         * src/mcs51/gen.c (hasInc),
5019         * src/pic16/glue.c (pic16_printIvalChar),
5020         * src/pic16/ralloc.c (regWithIdx),
5021         * src/xa51/gen.c (hasInc) : removed warnings
5022         * src/SDCCast.c (createBlock): added comment ???
5023         * src/hc08/ralloc.c: updated comments
5024
5025 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5026
5027         * doc/sdccman.lyx: updated section on switch statements, added
5028         section about semaphore locking
5029         * doc/Makefile: added option -info for latex2html
5030         * device/lib/_gptrget.c,
5031         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5032
5033 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5034
5035         * src/pic/device.h,
5036         * src/pic/device.c,
5037         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5038          maxram is less than 0x100.
5039
5040 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5041
5042         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5043
5044 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5045
5046         * src/port.h,
5047         * src/mcs51/main.c,
5048         * src/ds390/main.c,
5049         * src/z80/main.c,
5050         * src/hc08/main.c,
5051         * src/pic/main.c,
5052         * src/pic16/main.c,
5053         * src/avr/main.c,
5054         * src/xa51/main.c
5055         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5056         a jump table is the best form for a switch statement, including
5057         automatic insertion of missing cases to make the case range
5058         continuous. Developed in collaboration with Frieder Ferlemann.
5059
5060 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5061
5062         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5063         accumulator result if it needs sign extension
5064
5065 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5066
5067         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5068
5069 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5070
5071         * device/lib/gbz80/printf.c,
5072         * device/lib/z80/printf.c: removed define for NULL
5073
5074 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5075
5076         * as/xa51/xa_link.c,
5077         * device/examples/ds390/ow390/ad26.c,
5078         * device/examples/ds390/ow390/cnt1d.c,
5079         * device/examples/ds390/ow390/counter.c,
5080         * device/examples/ds390/ow390/ds2480.h,
5081         * device/examples/ds390/ow390/ds2480ut.c,
5082         * device/examples/ds390/ow390/findtype.c,
5083         * device/examples/ds390/ow390/gethumd.c,
5084         * device/examples/ds390/ow390/owllu.c,
5085         * device/examples/ds390/ow390/ownetu.c,
5086         * device/examples/ds390/ow390/swt12.c,
5087         * device/examples/ds390/ow390/swtloop.c,
5088         * device/examples/ds390/ow390/temp.c,
5089         * device/examples/ds390/ow390/temp10.c,
5090         * device/examples/ds390/ow390/thermo21.c,
5091         * device/examples/ds390/ow390/tinilnk.c,
5092         * device/examples/ds390/ow390/tstfind.c,
5093         * device/examples/serialcomm/windows/serial.cpp,
5094         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5095         * device/include/reg51.h: fixed line endings for cvs
5096
5097 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5098
5099         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5100         packRegsForAccUse, packRegisters): new accumulator register
5101         packing algorithm
5102         * support/regression/ports/hc08/support.c (_putchar): suppress
5103         warning of unused variable
5104         * src/SDCCicode.c: added SWAP entry to codeTable
5105
5106 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5107
5108         * device/lib/sprintf.c: forgot to add this file before previous commit
5109
5110 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5111
5112         * src/pic16/gen.c (genPackBits): added operand right in function
5113         parameters, load result directly if p_type is POINTER (that is
5114         called by genNearPointerSet)
5115         * (genUnPackBits): added operand left in function parameters,
5116         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5117         FSR0 if accessing bitfields,
5118
5119 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5120
5121         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5122           _print_format; updated printf, sprintf, vsprintf
5123         * device/include/asm/default/features.h: corrected comment/define
5124         * device/lib/Makefile.in: added sprintf.c
5125         * device/lib/libsdcc.lib: added sprintf module
5126         * device/lib/printf_large.c,
5127         * device/lib/vprintf.c,
5128         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5129           into these 3 files
5130         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5131         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5132         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5133           hc08 test
5134         * support/regression/tests/zeropad.c: define idata as data for hc08
5135
5136 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5137
5138         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5139         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5140         labels are referenced at least once (even if a reference is not found)
5141         * src/hc08/gen.c (emitcode): set isComment flag for comments
5142         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5143         loads), rules 6a..6b (optimize jumps to return)
5144
5145 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5146
5147         * device/lib/acosf.c (acosf),
5148         * device/lib/asinf.c (asinf),
5149         * device/lib/atanf.c (atanf),
5150         * device/lib/ceilf.c (ceilf),
5151         * device/lib/cosf.c (cosf),
5152         * device/lib/coshf.c (coshf),
5153         * device/lib/cotf.c (cotf),
5154         * device/lib/fabsf.c (fabsf),
5155         * device/lib/floorf.c (floorf),
5156         * device/lib/log10f.c (log10f),
5157         * device/lib/logf.c (logf),
5158         * device/lib/sinf.c (sinf),
5159         * device/lib/sinhf.c (sinhf),
5160         * device/lib/sqrtf.c (sqrtf),
5161         * device/lib/tanf.c (tanf),
5162         * device/lib/tanhf.c (tanhf),
5163         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5164         replaced all instances of "reentrant" in the library functions
5165         defined in math.h with this macro.
5166         * support/regression/tests/float_trans.c: reenabled test for hc08
5167
5168 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5169
5170         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5171         erroneously deleted
5172
5173 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5174
5175         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5176         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5177         multi-byte volatile operands are used
5178         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5179         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5180         initialization to area GSINIT0 so that it would always precede
5181         any static initializers in GSINIT
5182         * support/regression/tests/zeropad.c: fixed idata define for hc08
5183         * support/regression/tests/bug-927659.c,
5184         * support/regression/tests/float_trans.c: disabled tests for hc08
5185         pending missing library routines
5186         * .version: increased version number to 2.4.4 - hc08 port now passes
5187         regression tests
5188
5189
5190 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5191
5192         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5193         * Makefile.common.in,
5194         * as/Makefile,
5195         * as/hc08/Makefile.in,
5196         * as/mcs51/Makefile.in,
5197         * as/z80/Makefile.in,
5198         * debugger/mcs51/Makefile.in,
5199         * device/include/Makefile.in,
5200         * device/lib/Makefile.in,
5201         * doc/Makefile,
5202         * link/Makefile,
5203         * link/z80/Makefile.in,
5204         * packihx/Makefile.in,
5205         * sim/ucsim/main_in.mk,
5206         * sim/ucsim/avr.src/Makefile.in,
5207         * sim/ucsim/doc/Makefile.in,
5208         * sim/ucsim/gui.src/serio.src/Makefile.in,
5209         * sim/ucsim/hc08.src/Makefile.in,
5210         * sim/ucsim/s51.src/Makefile.in,
5211         * sim/ucsim/xa.src/Makefile.in,
5212         * sim/ucsim/z80.src/Makefile.in,
5213         * src/Makefile.in,
5214         * support/cpp2/Makefile.in,
5215         * support/librarian/Makefile,
5216         * support/makebin/Makefile: added DESTDIR to the install path proposed
5217         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5218         * doc/sdccman.lyx: added DESTDIR documentation
5219
5220 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5221
5222         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5223         instruction for interrupt handlers, use fast returns when returning
5224         from high priority interrupts
5225
5226 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5227
5228         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5229         code generation
5230         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5231         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5232         bugs, ported much of Bernhard's code from mcs51
5233         * src/mcs51/gen.c (genSend),
5234         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5235         than one when calling a reentrant function
5236         * device/lib/_mullong.c: defined an alternate struct layout for big
5237         endian ports (hc08)
5238
5239 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5240
5241         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5242         test
5243
5244 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5245
5246         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5247         are sane and complete before asking the port its prefered parameter
5248         passing method (fixes bug #1017633)
5249         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5250         and _ret3
5251
5252 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5253
5254         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5255         problem in bitfields >= 8 bits.
5256
5257 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5258
5259         * src/SDCCsymt.c: undid changes that were not meant to be committed
5260
5261 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5262
5263         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5264
5265 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5266
5267         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5268           copied and wrong bit got inverted
5269
5270 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5271
5272         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5273         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5274         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5275         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5276         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5277         assignments to bitfields at known addresses
5278         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5279         reads from bitfields at known addresses
5280         * src/hc08/ralloc.c (packRegisters),
5281         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5282         genhc08Code): optimize pointer get values used as conditionals
5283         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5284         and branch
5285
5286 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5287
5288         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5289         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5290         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5291         as conditionals
5292
5293 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5294
5295         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5296
5297 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5298
5299         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5300         related problems
5301
5302 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5303
5304         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5305
5306 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5307
5308         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5309         mcs51 port
5310
5311 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5312
5313         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5314
5315 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5316
5317         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5318         cases use more compact code.
5319
5320 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5321
5322         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5323
5324 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5325
5326         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5327
5328 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5329
5330         * src/SDCCsymt.h,
5331         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5332         parameter of changePointer() from symbol* to sym_link*
5333         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5334         * src/SDCCsymt.c (compareType): void* type is castable to other
5335         pointers, but not necesarily an exact match.
5336         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5337         is no longer blindly treated as an exact match.
5338         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5339
5340 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5341
5342         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5343
5344 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5345
5346         * src/pic/gen.c,
5347         * src/pic/pcode.c,
5348         * src/pic/ralloc.h,
5349         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5350
5351 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5352
5353         * src/pic/device.c,
5354         * src/pic/device.h,
5355         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5356
5357 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5358
5359         * src/mcs51/gen.c (emitcode): fixed bug #992819
5360
5361 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5362
5363         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5364           there's no need to make it worse
5365
5366 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5367
5368         * src/mcs51/ralloc.c (deassignLR),
5369         * src/ds390/ralloc.c (deassignLR),
5370         * src/hc08/ralloc.c (deassignLR),
5371         * src/z80/ralloc.c (deassignLR),
5372         * src/pic/ralloc.c (deassignLR),
5373         * src/pic16/ralloc.c (deassignLR),
5374         * src/avr/ralloc.c (deassignLR),
5375         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5376         rlivePoint): fixed another part of bug #971834
5377
5378 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5379
5380         * src/z80/main.c: enabled "critical" keyword
5381         * src/z80/mappings.i,
5382         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5383         functions (fixes bug #979646)
5384         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5385
5386 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5387
5388         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5389           such as c:\mydir.
5390
5391 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5392
5393         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5394           doesn't disable too much optimizations
5395
5396 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5397
5398         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5399
5400 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5401
5402         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5403
5404 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5405
5406         * src/pic/gen.c tidied up tabs
5407         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5408         * src/pic/main.c tidied up tabs
5409         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5410         * src/pic/pcoderegs.c tidied up tabs
5411         * src/pic/ralloc.c tidied up tabs
5412
5413 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5414
5415         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5416         to S_FIXED for pic16 port and when symbol is not in level 0,
5417         allocate for S_REGISTER storage class and pic16 port, too,
5418         * src/pic16/device.h: prototype for checkSym,
5419         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5420         * (pic16_assignConfigWordValue): test the value and the mask to
5421         validate that the value is suitable for the configuration word,
5422         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5423         collect extern declared symbols, don't emit symbol twice, check
5424         first if symbol is in publics set first,
5425         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5426         * added command line '--fstack' which enables an experimental
5427         feature for stack access, too buggy to be used yet...
5428         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5429         * (pic16_allocDirReg): when register has storage class S_REGISTER
5430         allocate in pic16_dynAccessRegs,
5431         * device/include/pic16/pic18f????.h: modified configuration word
5432         naming convention, words started as CONFIG0H but should be CONFIG1H
5433
5434 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5435
5436         * device/include/mcs51reg.h: fixed bug 970993
5437
5438 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5439
5440         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5441         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5442         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5443         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5444         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5445         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5446           error/warning numbers,
5447           added function setWarningDisabled()
5448         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5449         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5450           _memcmp.c _memmove.c calloc.c realloc.c free.c
5451         * support/regression/tests/malloc.c: added tests for new functionality
5452         * support/regression/tests/zeropad.c: added tests for truncated initializers
5453           and initialized char arrays starting with '\x0'
5454         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5455
5456 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5457
5458         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5459
5460 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5461
5462         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5463         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5464         peephole 177.e. Thanks to anonymous
5465
5466 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5467
5468         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5469         function isn't used in the source but referenced as a
5470         variable initializer then declare it as extern in .asm file
5471
5472 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5473
5474         * .version: increased version number to 2.4.3
5475
5476         Adding version extension according to ChangeLog CVS revision
5477         * src/Makefile.in (target all): added dependency 'version.h'
5478         * (rule version.h): added rule to create version.h from ChangeLog,
5479         * (rule dep): added dependency version.h,
5480         * src/version.awk: AWK script to create version.h
5481         * src/SDCCdwarf2.c (dwWriteModule),
5482         * src/SDCCglue.c (initialComments),
5483         * src/SDCCmain.c (printVersionInfo): modified to write after
5484         version string the version extension number,
5485         * src/SDCCutil.c: included "version.h"
5486         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5487         number,
5488         * src/SDCCutil.h: added prototype for getBuildNumber
5489
5490         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5491         includeDirsSet, too,
5492         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5493         const char [] is found in function prototype...
5494
5495         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5496         moving to WREG with source is already in WREG,
5497         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5498         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5499         * (aopForSym): stack'ed symbols are partially supported, added
5500         if-clause to support symbols in FARSPACE,
5501         * (sameRegs): added test for AOP_ACC to see if registers are same,
5502         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5503         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5504         * (pic16_popRegFromString): will not allocate a new register if it
5505         doesn't find one by name, bug may have introduced...
5506         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5507         * (genIpush): revived to use pic16 port's stack,
5508         * (genAddrOf): added incomplete case for stack'ed operand,
5509         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5510         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5511         can handle multibyte operands,
5512         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5513         * (pic16initialComments): added message for MPLAB compatibility
5514         mode enabled,
5515         * src/pic16/main.h: prototype for pic16_mplab_comp,
5516         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5517         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5518         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5519         because of increased complexity of procedure,
5520         * (_process_pragma): stack pragma changed to format 'stack pos len',
5521         emit symbol '_stack_end' to conform with gplink,
5522         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5523         to search for register,
5524         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5525         PO_GPR_REGISTER,
5526         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5527         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5528         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5529         case for PO_GPR_REGISTER,
5530         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5531         dies, the new era is ahead !...
5532         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5533         pic16_dynInternalRegs,
5534         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5535         * (pic16_allocDirReg): minor optimizations and bug fixes,
5536         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5537
5538         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5539         load stack and frame pointer with address of 'stack_end' symbol
5540
5541 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5542
5543         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5544         without source code but only variable initializers
5545
5546 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5547
5548         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5549         external are not declared as extern to reduce overhead while linking
5550
5551 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5552
5553         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5554
5555 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5556
5557         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5558           Yee Keat for the patch
5559         * src/SDCCast.c (decorateType): fixed bug #979599
5560         * src/ds390/gen.h: removed local fReturnSizeDS390
5561         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5562         * src/ds390/gen.c (genAnd, genOr, genXor),
5563         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5564
5565 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5566
5567         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5568         add relFilesSet to $3, manipulate $2 to handle linking of object
5569         files without source files in command line,
5570         * device/include/pic16 (all headers): added ID location macros,
5571         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5572         entries for ID location bytes,
5573         * (pic16_assignIdByteValue): NEW,
5574         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5575         added field dumpcalltree to pic16_options_t,
5576         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5577         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5578         emitting rFalseIfx label after check_carry label,
5579         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5580         pic16_emitDIRegs), NEW
5581         * (pic16glue): dump .calltree file when option --calltree found,
5582         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5583         * (_pic16_genAssemblerPreamble): emit ID locations after
5584         configuration registers,
5585         * (pic16_linkCmd): modifications of the link command,
5586         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5587         * (pic16_pCodeInitRegisters): don't init stack registers,
5588         * (pic16_findPrevInstruction): fixed bug,
5589         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5590         bug with immediate registers,
5591         * (buildCallTree): traces stack push and pop,
5592         * (pct2): dump also stack usage for each function,
5593         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5594         * (pic16_allocDirReg): various modifications,
5595         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5596         fixed to 1,
5597
5598 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5599
5600         * src/pic16/pcode.c: removed buggy double colon
5601
5602 2004-07-01 Borut Razem <borut.razem AT siol.net>
5603
5604         * support/scripts/sdcc.nsi: added include/pic16 to setup
5605
5606 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5607
5608         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5609         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5610         target 'clean',
5611         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5612         specific command line arguments. Also added sample lkr script
5613         for placing a variable at a specific memory bank.
5614         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5615         at a specific memory bank,
5616         * (pic16_dump_isection): fixed bug which caused string literals to
5617         be omitted when dumping idata section,
5618         * (pic16_groupRegistersInSection): added code to handle registers
5619         in specific memory banks,
5620         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5621         public, all references are renamed too,
5622         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5623         AOP_DPTR2,
5624         * (pic16_storeForReturn): added case to handle when dest is WREG,
5625         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5626         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5627         pic16_rel_udata, check to see if that register is marked as being
5628         a member of a specific memory bank,
5629         * (pic16_printIvalCharPtr): added code to add string literals either
5630         to code or the idata sections,
5631         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5632         also accept the 'udata' pragma,
5633         * src/pic16/main.h: new structure types sectName and sectSym
5634         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5635         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5636         * (pic16_findPrevInstruction): fixed, it returned nothing,
5637         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5638         instruction combinations,
5639         * (pic16_FixRegisterBanking): heavily reorganised,
5640         * (pic16_AnalyzeBanking): if generating banksel directives is
5641         disabled, then don't call FixRegisterBanking at all,
5642         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5643         completely removed,
5644         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5645
5646 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5647
5648         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5649         Phuah Yee Keat <yk.phuah AT nestac.com>
5650
5651 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5652
5653         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5654         correctly the IVT even if it is relocated to some other location
5655
5656 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5657
5658         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5659         * device/include/pic16/pic18f2220.h: NEW,
5660         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5661         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5662         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5663         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5664         nodefaultlibs, ivt_loc is the location of the interrupt vector
5665         table, and nodefaultlibs signs that default libraries should not be
5666         linked in link stage,
5667         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5668         according to --ivt-loc argument,
5669         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5670         when pragma stack is found,
5671
5672 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5673
5674         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5675         256 (range check), 257 (do while), 258.a-f (bit banging
5676         f.e. on 3-wire SPI bus)
5677
5678 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5679
5680         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5681         variables used exclusively within a loop
5682
5683 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5684
5685         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5686
5687 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5688
5689         * src/SDCClrange.c (computeClash): fixed bug #971834
5690
5691 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5692
5693         * src/mcs51/gen.c (genCmp): fixed bug #975903
5694         * src/hc08/gen.c (operandsEqu),
5695         * src/ds390/gen.c (operandsEqu),
5696         * src/z80/gen.c (operandsEqu),
5697         * src/pic/gen.c (operandsEqu),
5698         * src/pic16/gen.c (operandsEqu),
5699         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5700         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5701
5702 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5703
5704         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5705
5706 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5707
5708         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5709         default case in switch statement,
5710         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5711         to eliminate problem with initialisation of pointers, but problem
5712         still exists,
5713         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5714         * (emitStaticSegment): removed various lines emitting debug info,
5715         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5716         added processor registers for utilizing EEPROM,
5717         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5718         configurable and set 8
5719
5720 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5721
5722         * .version: increased version number to 2.4.2,
5723
5724         Cumulative patch for pic16 port
5725         * src/pic16/device.c: changed scheme to dump initial values for
5726         variables in idata segment, all print_idata* functions were removed,
5727         now the pic16_printIval* will be called,
5728         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5729         * _pic16_printPointerType, pic16_printPointerType,
5730         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5731         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5732         NEW, similar to the respective functions in SDCCglue.c,
5733         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5734         way, emitting hex bytes,
5735         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5736
5737 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5738
5739         * src/avr/ralloc.c (serialRegAssign),
5740         * src/xa51/ralloc.c (serialRegAssign),
5741         * src/pic/ralloc.c (serialRegAssign),
5742         * src/pic16/ralloc.c (serialRegAssign),
5743         * src/hc08/ralloc.c (serialRegAssign),
5744         * src/z80/ralloc.c (serialRegAssign),
5745         * src/ds390/ralloc.c (serialRegAssign),
5746         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5747
5748 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5749
5750         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5751         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5752
5753 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5754
5755         Cumulative patch for pic16 port:
5756         * src/pic16/device.h (typedef PIC16_device) modified fields for
5757         defining microcontrollers,
5758         * src/pic16/device.c: added new info for all devices in Pics16 array,
5759         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5760         to be optimised out by the pCode optimiser,
5761         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5762         specially, bug reported by G.M. Gallant,
5763         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5764         as force'd so that cannot be optimised out by pCode optimiser,
5765         * src/pic16/pcode.c,
5766         * src/pic16/pcodepeeph.c,
5767         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5768         they are disabled by default, but can be enabled explicit with
5769         command argument --denable-peeps, for testing,
5770         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5771         --pomit-ivt in COMPILE_FLAGS
5772
5773 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5774
5775         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5776           compilation on MSVC
5777
5778 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5779
5780         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5781
5782 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5783
5784         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5785         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5786
5787 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5788
5789         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5790         would only assign 0x300001 register.
5791
5792 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5793
5794         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5795         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5796
5797 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5798
5799         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5800         for ds80c400
5801         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5802         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5803         added peephole 254 (left shift), 255 (jump table)
5804
5805 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5806
5807         * device/lib/Makefile.in: removed comment line with model-pic16,
5808         * (target port-specific-objects-pic16): the libraries and objects
5809         are copied to the build directory form the device/lib/pic16/bin
5810         directory
5811
5812         Cumulative patch concerning pic16 port:
5813         * library directory has been re-organized,
5814         * added support for PIC18F1220,
5815         * added headers and library sources for chips 18f1220,18f6520,
5816         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5817
5818         * configuration registers setting has changed, now each supported
5819         device has a complete description of the registers it uses,
5820         * all initialisations are moved to idata sections, these section
5821         can be absolute or relocatable,
5822         * fixed initialisation of codespace variables,
5823         * fixed warning about PCLATU and gpsim,
5824         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5825         * (genAssign): use table reads when assigning from variables in codespace,
5826         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5827         char/int variables placed in codespace,
5828         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5829         registers set in .asm file, no need for --pomit-config-words anymore,
5830         * (pic16glue): some 8051 legacy segments are commented out
5831         (to be removed completely),
5832         * added support for alternative assembler and linker with --asm=
5833         and --link= command line arguments,
5834         * peepholes are disabled automatically in the port, no need to
5835         specify on command line,
5836         * port supports natively char/int/long multiplication, but converts
5837         all divisions to support functions,
5838         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5839         to the file set in variable $2,
5840         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5841         strings in ASCII format and not in hex,
5842         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5843         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5844         allocate proper register if iCodes aren't temporary,
5845
5846 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5847
5848         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5849
5850 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5851
5852         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5853         is commented out
5854
5855 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5856
5857         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5858         computed address is reused
5859         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5860         multi-byte bitfields
5861
5862 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5863
5864         * src/z80/gen.c: (genArrayInit): must check for pointers too
5865
5866 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5867
5868         * support/regression/tests/zeropad.c: never meant to commit the
5869           nestedstruct test: removed, added check for GCC version
5870
5871 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5872
5873         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5874         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5875         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5876           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5877           bugs 928906 and 954082 half-empty initializers
5878         * src/SDCCsymt.h,
5879         * src/SDCCsymt.c (getAllocSize): added for above fix
5880         * src/z80/gen.c (genArrayInit): fixed bug 741044
5881         * support/regression/tests/zeropad.c: added tests
5882
5883 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5884
5885         * src/pic16/device.c (pic16_dump_section): corrected bug which
5886         caused some symbols of the libraries to be misplaced
5887
5888 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5889
5890         * src/pic16/glue.c,
5891         * src/pic16/ralloc.h,
5892         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5893         to fix conflict with pic port
5894
5895 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5896
5897         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5898         externs configuration variables,
5899         * src/pic16/ralloc.h,
5900         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5901         prototype in header, commented out some debug messages
5902
5903 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5904
5905         * src/pic16/glue.c,
5906         * src/pic16/main.c,
5907         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5908         for gpasm COFF object generation. Thanks to D. Hawkins for
5909         his patch info
5910
5911 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5912
5913         * src/ds390/main.c,
5914         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5915         Brock for spotting this)
5916         * src/ds390/gen.c (genEndFunction),
5917         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5918         interrupt handler and critical. Disable push/pop optimizations when
5919         peephole optimizations disabled.
5920
5921 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5922
5923         Updated pic16 library sources and headers.
5924         * device/lib/pic16/pic18f*/ ,
5925         * device/include/pic16/*.h: modified to handle structured SFR
5926         definitions
5927
5928 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5929
5930         * src/port.h (PORT structure): added hook initPaths, now each
5931         port can declare its own default search paths,
5932         which can been seen with the --print-search-dirs option,
5933         see pic16 port for example,
5934         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5935         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5936         * (doPrintSearchDirs): NEW, replaces in a central manner the
5937         printing of search dirs which was split in set*Paths functions,
5938         * (main): added call to port->initPaths and doPrintSearchDirs,
5939         * src/avr/main.c,
5940         * src/ds390/main.c,
5941         * src/hc08/main.c,
5942         * src/izt/i186.c,
5943         * src/izt/tlcs900h.c,
5944         * src/mcs51/main.c,
5945         * src/pic/main.c,
5946         * src/pic16/main.c: modified port structures to reflect addition of
5947         initPaths hook,
5948
5949         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5950         * (pic16_dump_section): for registers in same address reserve memory once,
5951         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5952         to no_banksel,
5953         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5954         result is greater in size than right or left,
5955         * (pic16_genUMult8X8_8): there are some cases where the result can
5956         be 16 bits size, so handle these,
5957         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5958         * (pic16_outBitC): modified to emit pcodes,
5959         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5960         or not,
5961         * (genDivOneByte): implemented algorithm to divide 8-bits,
5962         * (genCmp): uncommented goto, but issues still exist,
5963         * (genAnd): fixed a bug with variables >8bits,
5964         * (genPackBits): optimization added that uses BCF/BSF to change a
5965         single bit,
5966         * (genAssign): fixed bug when assigning floating point literals,
5967         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5968         __sdcc_gsinit_startup label,
5969         * src/pic16/main.c (_pic16_init): removed search directory
5970         initialisations,
5971         * (_pic16_initPaths): NEW, used to initialise search directories,
5972         * (_hasNativeMulFor): support functions for all except char/int
5973         multiplication, and char division,
5974         * (PIC16_port struct): modified entry for native mul support,
5975         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5976         no_banksel option,
5977         * (buildCallTree): call to register_usage is ifdef'ed out,
5978
5979 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5980
5981         * device/include/string.h: applied Stas Sergeev's patch to make this
5982         header file compatible with the preprocessor -Wundef option
5983         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5984         failure (fixes bug #941458)
5985
5986 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5987
5988         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5989         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5990         that the variable, not the function, should be static
5991         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5992         to be consistent with non-literal case
5993
5994 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * src/SDCCast.c (isConformingBody): fixed bug #949967
5997         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5998         convilong): fixed bug #952086
5999
6000 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6001
6002         * src/SDCCmem.c (allocVariables): fixed bug #955321
6003
6004 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6005
6006         * src/hc08/main.c (_hc08_genAssemblerEnd),
6007         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6008         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6009         completely eliminated the use of a temporary file
6010         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6011         when more than one file linked
6012         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6013
6014 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6015
6016         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6017         which fixes bug #543481
6018         * support/regression/tests/bug-751703.c: fixed comments left from a
6019         cut and paste error
6020         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6021         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6022         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6023         scopes
6024         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6025         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6026         are now changed to underscores in moduleName
6027
6028 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6029
6030         * as/mcs51/lkmem.c: better fix for bug #954173
6031
6032 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6033         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6034
6035         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6036         * device/include/c8051f000.h,
6037         * device/include/c8051f120.h,
6038         * device/include/c8051f300.h,
6039         * device/include/c8051f310.h,
6040         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6041         PWM16) and detab'ed
6042
6043 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6044
6045         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6046         and mailing lists, doc'ed --no-peep-comments, removed reference
6047         to knoppix (newest version has no LyX/LaTeX), other minor changes
6048         * src/SDCCglue.c (glue): save 2 bytes stack space with
6049         option --main-return. The ljmp could probably be avoided too
6050
6051 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6052
6053         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6054
6055 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6056
6057         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6058         * src/SDCCopt.c (isLocalWithoutDef),
6059         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6060         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6061         (credit to Maarten Brock for patch #949363, on which this is based)
6062         * support/regression/tests/bug-751703.c: some test cases of extern used
6063         within inner scopes.
6064
6065 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6066
6067         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6068         SPEC_STRUCT
6069         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6070         struct definitions
6071         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6072         dwWriteLabel): fix to create valid debugger symbols even when
6073         the module name has non-alphanumeric symbols in it
6074         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6075         when a variable's allocation has been optimized away
6076
6077
6078 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6079
6080         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6081         * src/hc08/main.c,
6082         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6083         * src/mcs51/main.c,
6084         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6085         * src/ds390/main.c,
6086         * src/z80/gen.c (z80_emitDebuggerSymbol),
6087         * src/z80/main.c,
6088         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6089         * src/pic/main.c,
6090         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6091         * src/pic16/main.c,
6092         * src/avr/gen.c (avr_emitDebuggerSymbol),
6093         * src/avr/main.c,
6094         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6095         * src/xa51/main.c,
6096         * src/SDCCdebug.c (emitDebuggerSymbol),
6097         * src/SDCCdebug.h,
6098         * src/port.h: added a debugger struct to the port struct. Added a
6099         callback for defining debugger symbols
6100
6101         * src/SDCCast.c (createLabel),
6102         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6103         with isitmp = 1
6104         * src/SDCCicode.h,
6105         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6106         iCode back to the ast for the function
6107
6108         * src/hc08/ralloc.c (hc08_assignRegisters),
6109         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6110         unneeded fields from the regs struct.
6111         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6112         pushReg() & pullReg() functions instead of emitcode()
6113
6114         * src/hc08/gen.c (genLabel, genhc08Code),
6115         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6116
6117         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6118         debugger hooks
6119
6120         * src/hc08/gen.c (genEndFunction, genhc08Code),
6121         * src/hc08/gen.h,
6122         * src/mcs51/gen.c (genEndFunction, gen51Code),
6123         * src/mcs51/gen.h,
6124         * src/ds390/gen.c (genEndFunction, gen390Code),
6125         * src/ds390/gen.h,
6126         * src/z80/gen.c (genEndFunction, genZ80Code),
6127         * src/z80/gen.h,
6128         * src/z80/z80.h,
6129         * src/pic/gen.c (genEndFunction, genpic14Code),
6130         * src/pic/gen.h,
6131         * src/pic16/gen.c (genEndFunction, genpic16Code),
6132         * src/pic16/gen.h,
6133         * src/avr/gen.c (genEndFunction, genAVRCode),
6134         * src/avr/gen.h,
6135         * src/xa51/gen.c (genEndFunction, genXA51Code),
6136         * src/xa51/gen.h,
6137         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6138         specific code to cdbFile.c and out of the backend code generators
6139
6140         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6141         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6142         starting address is now 0
6143
6144         * as/hc08/asm.h,
6145         * as/hc08/m08pst.c,
6146         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6147         assembler directive for DWARF support
6148         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6149
6150         * src/src.dsp,
6151         * src/Makefile.in,
6152         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6153
6154 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6155
6156         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6157         and inappropriate peephole optimization in jump tables
6158
6159 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6160
6161         * as/hc08/m08pst.c,
6162         * src/SDCCglue.c: sdccopt works for the hc08 port now
6163
6164 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6165
6166         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6167
6168 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6169
6170         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6171
6172 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6173
6174         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6175         rules
6176         * src/SDCCmain.c,
6177         * src/SDCCglobl.h,
6178         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6179         comments from the peephole optimizer replacement rules
6180         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6181         symbols
6182         * src/SDCCcse.c (updateSpillLocation),
6183         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6184         equivalents
6185         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6186         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6187         objects far pointers
6188
6189 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * src/SDCCsymt.h: a missing part of my last change
6192         * src/pic/ralloc.c (regTypeNum),
6193         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6194
6195 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6196
6197         * src/SDCCicode.h,
6198         * src/SDCCicode.c (aggrToPtrDclType),
6199         * src/SDCCptropt.h,
6200         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6201         ptrPseudoSymConvert),
6202         * src/pic/ralloc.c (regTypeNum),
6203         * src/pic16/ralloc.c (regTypeNum),
6204         * src/hc08/ralloc.c (regTypeNum),
6205         * src/ds390/ralloc.c (regTypeNum),
6206         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6207         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6208
6209 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6210
6211         * link/z80/lkmain.c (afile),
6212         * as/hc08/lkmain.c (afile),
6213         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6214         prevent a pointer problem when a filename has no directory and
6215         no extension specified.
6216
6217 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6218
6219         * link/z80/lkmain.c (afile): allow periods in directory names
6220         * link/z80/lkmain.c (afile),
6221         * as/mcs51/lkmain.c (afile),
6222         * as/hc08/lkmain.c (afile): allow linker script file to have an
6223         extension other than ".lnk"
6224         * link/z80/lklex.c (getfid),
6225         * link/z80/lkmain.c (parse),
6226         * as/mcs51/lklex.c (getfid),
6227         * as/mcs51/lkmain.c (parse),
6228         * as/hc08/lklex.c (getfid),
6229         * as/hc08/lkmain.c (parse): Support comments in the linker script
6230         file on lines by themselves and after filenames
6231
6232 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6233
6234         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6235
6236 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6237
6238         * src/z80/peeph-z80.def: removed some peephole rules that don't
6239         work with multibyte arithmetic (fixed bug #937126)
6240         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6241         to registers and not global variables
6242         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6243         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6244         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6245         checking for assignments not internally generated (fixed bug #931895)
6246         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6247         structure member (fixed bug #930072)
6248
6249 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6250
6251         * src/SDCCmain.c (linkEdit),
6252         * src/hc08/main.c (_hc08_parseOptions),
6253         * as/hc08/Makefile.in,
6254         * as/hc08/aslink.h,
6255         * as/hc08/asm.h,
6256         * as/hc08/m08pst.c,
6257         * as/hc08/lkrloc.c (relr, rele),
6258         * as/hc08/lkarea.c (lnkarea)
6259         * as/hc08/lkmain.c (afile, parse),
6260         * as/hc08/lkelf.c: support for ELF output
6261         * as/hc08/lks19.c (s19),
6262         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6263
6264 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6265
6266         * as/mcs51/lkihx.c: Fixed bug #899105.
6267
6268 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6269
6270         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6271         .dsp files from Unix to DOS.
6272
6273 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6274
6275         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6276         function pointers; we have been compliant for several months now.
6277         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6278         change that was accidently commented out
6279         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6280         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6281         bug #922319
6282
6283 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6284
6285         * src/hc08/gen.c: output of all of the internal debugging information
6286         is now controlled by the D() macro; it is disabled by default
6287
6288 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6289
6290         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6291         harder to keep the same registers during a CAST iCode
6292         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6293         long via int can be done in a single cast, if the signedness is
6294         correct.
6295         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6296         putchar() in tinibios.c in ds390's library
6297
6298 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6299
6300         * src/SDCCast.c (decorateType): fixed bug #898889,
6301         cast result of a literal complement too
6302         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6303         fixed check for bitfields
6304
6305 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6306
6307         * src/SDCCicode.c (geniCodeLogic): made it static,
6308         (geniCodeLogicAndOr): added in order to fix bug #905492,
6309         (ast2iCode): fixed bug #905492
6310         * support/regression/tests/bug-905492.c: added
6311         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6312         (processParms): fixed bug #927659: don't copy parms, this will clear
6313         decorated flag
6314         * support/regression/tests/bug-927659.c: added
6315
6316 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6317
6318         * src/SDCCast.c (addCast): don't cast float to char
6319         * device/lib/libsdcc.lib: added _memmove
6320
6321 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6322
6323         * device/lib/large/Makefile: fixed parallel execution by
6324         replacing `make` by `$(MAKE)`
6325
6326 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6327
6328         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6329         offsets (fixes bug #923936)
6330
6331 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6332
6333         * device/lib/small/Makefile: fixed parallel execution by
6334         replacing `make` by `$(MAKE)`
6335
6336 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6337
6338         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6339
6340 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6341
6342         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6343         * src/regression/Makefile: Regression test was not running.
6344
6345 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6346
6347         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6348         complement if possible
6349         * src/SDCCval.c (valComplement),
6350         * src/SDCCicode.c (operandOperation): fixed complement of literal
6351         * support/regression/tests/onebyte.c (testComplement): added
6352
6353 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6354
6355         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6356         return an optimized tree; actually replace actParm with the new tree
6357         * src/SDCCast.h: added some parantheses to remove side effects
6358         * support/regression/tests/bug-920866.c
6359
6360 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6361         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6362         Bit operands were not being handled properly in the pic14 port.
6363         (now src/regression/add.c passes again).
6364
6365 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6366
6367         * src/SDCC.y (labeled_statement): case and default no longer require
6368         a following statement (RFE #893037)
6369
6370 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6371
6372         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6373         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6374         disabled (fixes bug #916294)
6375         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6376         "mov a,acc"; patch provided by Lenny Story
6377         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6378
6379 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6382         functions
6383         * src/ds390/gen.c (genFunction, genEndFunction),
6384         * src/ds390/ralloc.c (ds390_assignRegisters),
6385         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6386         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6387         pushed if there are parameters passed on the stack. Also, a cleaner
6388         way to decide if r0/r1 should be pushed/popped. (Together they fix
6389         bug #918693)
6390
6391 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6392
6393         * doc/sdccman.lyx,
6394         * device/lib/mcs51/crtpagesfr.asm,
6395         * device/lib/mcs51/crtxinit.asm,
6396         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6397         to avoid confusion with Si Lab's SFRPAGE register.
6398
6399 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6400
6401         * src/SDCCglue.c (emitMaps): allow public sfr variables
6402         * src/SDCCglue.c (initialComments): include compiler build date
6403         with compiler version and put the timestamp of the generated
6404         assembly file on a serperate line to be less confusing.
6405         * src/port.h: added genInitStartup hook
6406         * src/avr/main.c,
6407         * src/ds390/main.c,
6408         * src/hc08/main.c,
6409         * src/pic/main.c,
6410         * src/pic16/main.c,
6411         * src/xa51/main.c,
6412         * src/z80/main.c: genInitStartup initialize as NULL (default to
6413         historical behaviour)
6414         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6415         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6416         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6417         library instead of hard coding it into the compiler.
6418         * support/regression/ports/mcs51-stack-auto/spec.mk,
6419         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6420         * device/lib/mcs51/Makefile,
6421         * device/lib/small/Makefile,
6422         * device/lib/large/Makefile,
6423         * device/lib/mcs51/crtpagesfr.asm,
6424         * device/lib/mcs51/crtstart.asm,
6425         * device/lib/mcs51/crtxclear.asm,
6426         * device/lib/mcs51/crtxinit.asm,
6427         * device/lib/mcs51/crtclear.asm,
6428         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6429         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6430         and into user configurable files.
6431         * device/lib/clean.mk: clean mcs51 directory too
6432         * support/regression/tests/longlit.c: added static to T1 declaration
6433         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6434         accesses in the initialization code
6435
6436 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6437
6438         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6439         OSCTRIMVAL as noted in bug #916008
6440
6441 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6442
6443         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6444         in loops with multiple exits (reported as incorrect registers
6445         used by Martin Helmling in Sdcc-user list)
6446
6447 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6448
6449         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6450         made ds390 register extensions look less like error messages
6451
6452 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6453
6454         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6455         reported by Adam Wozniak in Sdcc-user list
6456
6457 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6458
6459         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6460         arithmetic optimizations, added debug output
6461
6462 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6463
6464         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6465         * sdcc.spec: updated and split sdcc into 3 rpms
6466         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6467         needed for literals of LEFT_OP and '+'
6468         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6469         introduced RESULT_TYPE_NOPROM
6470         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6471         left shift
6472         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6473         limited promotion to int only for '*'
6474         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6475
6476 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6477
6478         * src/pic16/gen.c (genSkip),
6479         (genc16bit2lit), (gencjneshort): commented out
6480         (is_LitOp): new helper function, checks operand type
6481         (genCmpEq): rewritten
6482
6483 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6484
6485         * support/regression/tests/bug-908454.c: added
6486
6487 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6488
6489         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6490         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6491         (geniCodeCast): cosmetic, don't preserve bit storage class
6492         (geniCodeLeftShift): added promotion
6493         (geniCodeLogic): fixed regression
6494         * src/SDCCsymt.c (computeTypeOr): accept bits too
6495         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6496
6497 2004-03-07  Borut Razem <borut.razem AT siol.net>
6498
6499         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6500
6501 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6502
6503         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6504         version of pic16_genPackRegisters which does not check if ic is a
6505         CAST operator,
6506         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6507         function cause string1.c regression test fails
6508
6509 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6510
6511         * sim/ucsim/configure.in,
6512         * sim/ucsim/configure,
6513         * sim/ucsim/doc/Makefile.in: use docdir
6514         * src/SDCC.y: fixed sbit atrributes
6515         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6516         * src/SDCCast.c (decorateType): |^& need special promotion handling
6517         * src/SDCCast.h,
6518         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6519         * src/SDCCsymt.h (computeType),
6520         * src/SDCCicode.c: computeType() needs op
6521         * src/SDCCsymt.c (checkTypeSanity),
6522         * doc/sddman.lyx: "plain" bitfields are unsigned
6523         * src/SDCCsymt.c (computeTypeOr): added
6524         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6525         |^& ops
6526         * src/SDCCval.c (val*): computeType() needs op
6527         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6528         * support/regression/tests/onebyte.c: added tests for |^&
6529
6530 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6531
6532         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6533         for writing icode into asm output.
6534
6535 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6536
6537         * src/pic16/device.c: added some debug lines enabled
6538         with macro DEBUG_CHECK,
6539         * src/pic16/genarith.c: more debug in genPlus,
6540         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6541         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6542         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6543         * (aopForSym): onStack symbols are re-placed in data memspace,
6544         and onStack flag is cleared,
6545         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6546         copy temporary pcodeop,
6547         * (genPcall): added warning for not updating PCLATU,
6548         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6549         always true for pic16 port,
6550         * (genMultOneWord): NEW, supports integer multiplication,
6551         * (genMult): modified to call genMultOneWord,
6552         * (ifxForOp): added warning when return NULL,
6553         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6554         flag is set before call to operandFromSymbol for implicit
6555         added structures,
6556         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6557         options.intlong_rent are set by default,
6558         * (_hasNativeMulFor): modified to allow port generation of integer
6559         multiplication,
6560         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6561         set regtype to REG_SFR for all registers, restricting seting the
6562         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6563
6564 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6565
6566         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6567         more than 500 times in the regression tests
6568
6569 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6570
6571         * support/Util/SDCCerr.h,
6572         * support/Util/SDCCerr.c,
6573         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6574         enumerator_list),
6575         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6576         for symbol conflicts.
6577         * support/valdiags/tests/enum.c,
6578         * support/valdiags/tests/tentdecl.c,
6579         * support/valdiags/tests/struct.c: expect possible error messages
6580         referring to original symbol definitions.
6581         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6582         * src/SDCCsymt.h,
6583         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6584
6585 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6586
6587         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6588
6589 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6590
6591         * src/pic16/ralloc.c (newReg): fixed bug #908929
6592
6593 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6594
6595         * src/ds390/gen.c: added missing #include "main.h"
6596
6597 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6598
6599         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6600         checking if symbol is already in set,
6601         * src/pic16/device.h: prototype for checkAddSym,
6602         * src/pic16/gen.c: (_G): added entry interruptvector,
6603         * (assignResultValue): removed some commented out lines,
6604         * (genFunction): check for ISR via sym->type, absolute section for
6605         interrupt code is created via a new pBlock, the goto instruction is
6606         placed now correctly at the interrupt vector position, changed all
6607         references from ivec to _G.interruptvector,
6608         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6609         is the interrupt is a high priority one, same for return from ISR,
6610         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6611         externs to calls of checkAddSym,
6612         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6613         pic16_pcode_verbose flag is set,
6614         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6615         * src/pic16/pcoderegs.c: message about how many registers are saved
6616         will only be emitted if pic16_pcode_verbose flag is set,
6617
6618 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6619
6620         * src/ds390/ralloc.h,
6621         * src/ds390/ralloc.c (ds390_regWithIdx),
6622         * src/ds390/gen.c (emitcode),
6623         * src/ds390/main.h,
6624         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6625         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6626         ds390operandCompare, getRegsRead, getRegsWritten,
6627         initializeAsmLineNode): customized instruction size calculation for
6628         ds390, started basis for some register optimizations
6629         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6630         corresponding assembly output
6631         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6632         missing push/pop of r0/r1. Optimized push/pops
6633
6634 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6635
6636         * src/mcs51/main.c (instructionSize): fixed ACALL size
6637         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6638
6639 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6640
6641         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6642         the sorting of rlist with NULL elements
6643         * (print_idataType, print_idata): NEW to create idata sections
6644         * src/pic16/device.h: idataSymSet new variable
6645         * src/pic16/gen.c (genFunction): fixed some bugs in string
6646         comparing, improved the absolute section creation for ISRs,
6647         added FSR0L/FSR0H in registers that are saved in an ISR,
6648         * (genInline): fixed the processing of inline snippets,
6649         now they undergo no process by the peephole optimizer
6650         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6651         are placed in idataSymSet,
6652         * (pic16emitStaticSeg): extern symbols are added in externs,
6653         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6654         switching when aboslute variables are placed in access bank memory
6655         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6656         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6657         commented out with #if,
6658         * (pic16_packRegisters): reintroduce the check for CAST because some
6659         symbols are not correctly handled,
6660         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6661         pCodeInstruction instead of pCode,
6662         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6663         pCodeAsmDir definition,
6664         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6665         directive, then the argument directive is emitted without the leading
6666         tab, hack for inline labels which must be in the first column,
6667         * (compareLabel,pic16_findNextInstruction),
6668         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6669         * (insertBankSwitch): modified for the new pCodeAsmDir,
6670
6671 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6672         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6673
6674         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6675         instance,
6676         * (pushSide): commented out with #if,
6677         * (assignResultValue): fixed some typos in saving
6678         registers,
6679         * (genPcall): FIXED and sync'ed with genCall,
6680         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6681         * (genNearPointerGet): fixed to handle some more cases,
6682         implementation scheme via table reads,
6683         * (genConstPointerGet): modified to access code memory correct,
6684         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6685         and improved to handle some cases
6686         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6687         instead of "RETLW" for init data
6688         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6689         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6690         variables are placed in access bank memory (<0x80 and >=0xf80),
6691         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6692         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6693         TBLWT_POSTDEC,TBLWT_PREINC
6694         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6695         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6696         directives
6697         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6698         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6699         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6700         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6701
6702 2004-02-29  Borut Razem <borut.razem AT siol.net>
6703
6704         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6705         support/Util/findme.h, support/Util/system.h: enhance binary relative
6706         search for lib and include by using findProgramPath()
6707
6708 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6709
6710         * src/SDCCpeeph.h,
6711         * src/SDCCpeeph.c (pcDistance),
6712         * src/port.h,
6713         * src/mcs51/ralloc.h,
6714         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6715         * src/mcs51/main.h,
6716         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6717         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6718         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6719         size calculation port specific, started basis for some register
6720         optimizations
6721         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6722         missing push/pop of r0/r1. Optimized push/pops
6723         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6724         * device/lib/_modsint.c (_modsint),
6725         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6726         and stack version so regression tests pass
6727
6728 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6729
6730         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6731         * src/SDCCast.c (decorateType): catch another small optimization
6732         with '?' operator
6733         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6734         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6735         modified to finally use computeType() all over SDCC,
6736         see Feature Request #877103
6737         * src/SDCCval.h: cosmetic
6738         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6739         valCompare(); regression tested in muldiv.c
6740         * support/regression/tests/muldiv.c (testMod): mod sign follows
6741         dividend only
6742
6743 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6744
6745         * src/SDCCast.c (decorateType): fixed bug #902362
6746         * doc/INSTALL.txt: fixed install instructions for win32
6747
6748 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6749
6750         * device/include/Makefile.in (install): fixed by replacing spaces
6751         by tabs
6752         * doc/README.txt,
6753         * doc/INSTALL.txt: updated for release
6754         * doc/sdccman.lyx: added warning for --xstack being buggy
6755
6756 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6757
6758         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6759         to eliminate build warnings.
6760         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6761
6762 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6763            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6764
6765         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6766         removed -penable-stack, added comment for stack pragma, added
6767         warning for not initializing the stack/frame registers, removed
6768         comment at interrupts section
6769
6770         Stack is made permanent, there is no ability to disable stack usage.
6771         * src/pic16/device.h,
6772         * src/pic16/device.c: removed all references to USE_STACK macro,
6773         * src/pic16/device.c (pic16_dump_section): when no elements in
6774         rlist, free rlist before return,
6775         * (pic16_dump_int_registers): NEW, internal registers are a new set
6776         of general purpose registers reused by each function,
6777         * (checkAddReg): returns 1 if registers is added to set,
6778         * (pic16_groupRegistersInSection): when a registers is of type
6779         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6780         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6781         SRCASECMP macro is moved here from device.c
6782         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6783         PO_PCLATU, PO_PRODL, PO_PRODH,
6784         * (pic16_pCodeOpType, genMinus,
6785         changed compares to "a" register, with AOP_ACC,
6786         * (pic16_genPlus): fixed some bugs and indented properly,
6787         * (pic16_addSign): changed size to size+offset in the MOVWF
6788         instruction,
6789         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6790         multiply 8-bit operand by literal, result is 8-bit,
6791         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6792         multiply 2 8-bit operand, result is 8-bit,
6793         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6794         genUMult8X*_16,
6795         * src/pic16/gen.c: changed accUse to contain WREG only,
6796         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6797         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6798         true, do not use immediate addressing any more unless sym is a
6799         pointer in codespace,
6800         * (aopForRemat): do not use immediate addressing when symbol not in
6801         codespace and when symbol's address is requested,
6802         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6803         accUse size (= 1),
6804         * (aopGet): added case for AOP_ACC and don't return "accumulator
6805         bug" but WREG instead,
6806         * (popGetTempReg): pushes contents of temporary register in stack,
6807         * (popReleaseTempReg): pops contents of temporary register from
6808         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6809         * (pic16_popGet): separated case AOP_ACC to return register WREG
6810         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6811         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6812         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6813         the use of immediate pointers to certain cases only.
6814
6815         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6816         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6817         * (assignResultValue, genCall, genRet): modified to use the new
6818         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6819         genPcall is still broken,
6820         * (genFunction): added code to create 'A' type pBlocks when
6821         interrupt functions are generated, code not extensively tested yet,
6822         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6823         * (genEndFunction): modified so ISRs pop stored registers from stack,
6824         * (genMultOneByte): cleanup,
6825         * (AccRsh): added flag andmask, to and result with appropriate mask,
6826         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6827         * (genDataPointerGet): fixed and reenabled its use,
6828         * (genNearDataPointerGet): bugs fixed,
6829         * (genDataPointerSet): bugs fixed,
6830         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6831         pic16_DumpSymbol, pic16_DumpOp,
6832         * src/pic16/genutils.h: function prototypes for the above functions,
6833         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6834         pointers,
6835         * (pic16emitRegularMap): many many many improvements, but needs a
6836         major cleanup,
6837         * src/pic16/main.c: enable_stack in pic16_options is removed,
6838         * (_pic16_parseOptions): removed command line options -penable-stack,
6839         * (_process_pragma): emit stack symbol only when stack pragma is
6840         processed,
6841         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6842         redirected to FSR0L/FSR0H pair,
6843         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6844         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6845         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6846         for immediates,
6847         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6848         * (dumpPicOptype): NEW,
6849         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6850         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6851         with movff instruction,
6852         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6853         added pic16_int_regs, some packRegsFor* functions are commented out,
6854         because produce errors,
6855         * src/pic16/NOTES: minor modifications
6856
6857 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6858
6859         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6860         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6861         --pack-iram.
6862         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6863         * as/mcs51/lkaomf51.c: fixed bug #895763
6864
6865 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6866
6867         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6868
6869 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6870
6871         * doc/sdccman.lyx: added details about the HC08 storage classes and
6872         interrupts, fixed the register usage info for z80 & gbz80
6873
6874 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6875
6876         * doc/sdccman.lyx: added more pic16 port documentation
6877         * device/include/pic16/: added header pic18fregs.h
6878
6879 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6880
6881         * doc/sdccman.lyx: added Vangelis' contribution
6882
6883 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6884
6885         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6886         extend to the next CALL or PCALL, not just to the next CALL.
6887
6888 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6889
6890         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6891
6892 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6893
6894         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6895         bug #895752 and a better fix for bug #716790
6896
6897 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6898
6899         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6900
6901 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6902
6903         * doc/sdccman.lyx: minor changes, minor changed
6904
6905 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6906
6907         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6908         which can't handle SDCC_NEWONEBYTEOPS,
6909         (geniCodeMultiply): removed conversion from mult to shift for pic14
6910         and pic16
6911
6912 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6913
6914         * src/hc08/gen.h,
6915         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6916         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6917         thus fixing bug #895406
6918
6919 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6920
6921         * device/lib/_modsint.c,
6922         * device/lib/_modslong.c: sign follows divisor only
6923         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6924         signs or signedness can be ignored
6925         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6926         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6927         added optimization for IFX,
6928         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6929         arguments;
6930         reenabled optimization for IFX, which was removed on 2004-01-11
6931         * src/SDCCast.h: added return type IFX
6932         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6933         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6934         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6935         SDCC_OLDONEBYTEOPS selects the old behaviour
6936         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6937         changed again and commented promotion rule
6938         * src/SDCCval.c (valDiv): promotion no longer necessary
6939         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6940         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6941         rewritten
6942         * support/regression/tests/onebyte.c: added
6943
6944 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6945
6946         * gen.c (genInline): reverted to old code for assemnling inline
6947         code because of bug reported James Chadd
6948
6949 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6950
6951         * ralloc.h: missing declarations from previous patch,
6952         seems that patch for ralloc.h was never applied, fixed
6953
6954 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6955            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6956
6957         * pcode.c,
6958         * pcode.h,
6959         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6960         indirect addressing. Marked FSR0 as deprecated
6961         * gen.c (pointerCode): commented out, not needed now
6962         (pic16_popGet2p): new MOVFF helper function
6963         (genGenPointerGet),
6964         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6965         (shiftRLong): removed duplicate debugging info
6966
6967 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6968
6969         * src/ds390/gen.c (genNearPointerGet),
6970         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6971         optimization with bits, but not bitfields.
6972         * src/ds390/ralloc.c (packRegisters),
6973         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6974
6975 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6976
6977         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6978
6979 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6980
6981         * src/SDCCsymt.h,
6982         * src/SDCCicode.c (operandFromSymbol),
6983         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6984         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6985         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6986         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6987         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6988         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6989         bug #892038
6990         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6991         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6992         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6993         * src/SDCCsymt.c (newSymbol),
6994         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6995         enumerator_list),
6996         * src/SDCCval.h,
6997         * src/SDCCval.c (newiList): fixed bug #885705
6998
6999 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7000
7001         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7002         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7003
7004 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7005
7006         * device/include/c8051f120.h,
7007         * device/include/c8051f300.h,
7008         * device/include/c8051f310.h: added/updated header files for Silicon
7009         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7010         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7011         in new section Submitting patches
7012
7013 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7014
7015         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7016         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7017         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7018         genGenPointerSet),
7019         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7020         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7021         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7022         genGenPointerSet),
7023         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7024         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7025         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7026         genGenPointerSet),
7027         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7028         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7029         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7030         genGenPointerSet): fixed bug #892400
7031         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7032         to eliminate build warnings.
7033         * src/SDCCast.c (processParms),
7034         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7035         fixed bug 751859
7036         * support/valdiag/valdiag.py: added GCC to the list of defines active
7037         when compiling with gcc
7038
7039 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7040
7041         * support/Util/SDCCerr.h,
7042         * support/Util/SDCCerr.c,
7043         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7044         with an incomplete type (fixed bug #883734)
7045         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7046
7047 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7048
7049         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7050
7051 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7052
7053         * src/SDCCast.c (decorateType),
7054         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7055         function pointer implementation
7056         * support/regression/tests/funptrs.c: added tests to verify both forms
7057         of function pointers work correctly. Added tests to verify parameters
7058         are passed in the correct order.
7059
7060 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7061
7062         * device.c (regCompare): registers are sorted by ascending
7063         address and increasing size,
7064         * main.c (_pic16_finaliseOptions): removed the declaration
7065         of compiler macro MCU. Now a macro of the format pic18fxxxx
7066         will be defined from the command line
7067
7068 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7069             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7070
7071         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7072         PCOP_RLCF was overwritten!
7073         * gen.c (genSkip): commented out calls to pic16_emitcode,
7074         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7075         * (genlshTwo),
7076         * (genRRC): added debugging info,
7077         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7078         overwritten while shifting,
7079         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7080         overwritten while shifting,
7081         * (AccLsh),
7082         * (AccRsh),
7083         * (shiftLLeftOrResult),
7084         * (shiftRLeftOrResult),
7085         * (shiftRLong),
7086         * (shiftLLong): Implemented with pic16_emitpcode
7087         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7088         * (genLeftShift): Fixed bug, operand for shift by variable always
7089         was "and"ed with 0x0f,
7090         * (genLeftShiftLiteral),
7091         * (genrshTwo),
7092         * (genRightShiftLiteral): added debugging info,
7093         * (genrshFour): added comment,
7094         * (genRightShift): determined signedness from operand "left"
7095         instead of "result"
7096
7097 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7098
7099         * src/SDCCicode.c (geniCodeParms),
7100         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7101         function pointers, fixed function pointer bugs #861242 and #861896
7102
7103 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7104
7105         * device/include/c8051f000.h,
7106         * device/include/c8051f120.h,
7107         * device/include/c8051f300.h: added header files for Silicon
7108         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7109
7110 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7111
7112         * src/SDCCast.c (processParams): added new type flow and restructured
7113         (gatherAutoInit): added new type flow
7114         (addCast): cosmetic changes
7115         (getLeftResultType): added new type flow for array indices, patch
7116         provided by Stas, see FR #877103
7117         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7118         array index patch by Stas
7119         * src/SDCCast.h: added prototype getResultTypeFromType()
7120         * src/SDCCval.h,
7121         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7122         * src/pic/glue.c (pic14emitStaticSeg),
7123         * src/pic16/glue.c (pic16emitStaticSeg),
7124         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7125         for initialization of symbols
7126         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7127         * support/Util/SDCCerr.h:
7128         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7129         * .version: bumped version number to 2.3.8
7130         * device/include/Makefile.in (install),
7131         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7132         avoid warnings
7133
7134 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7135
7136         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7137         Slade Rich fixed an optimization bug
7138         * src/pic/pcodepeep.c,
7139         * src/pic/pcoderegs.c
7140         * doc/Makefile (install): added test for directory
7141
7142 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7143
7144         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7145         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7146         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7147         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7148         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7149         * as/mcs51/asexpr.c (term),
7150         * as/hc08/asexpr.c (term): fixed bug #887146
7151
7152 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7153
7154         * src/z80/gen.c (genMult): handle single byte result product
7155         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7156         DUMMY_READ_VOLATILE (fixed bug #886367)
7157
7158 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7159
7160         * support/regression/tests/libmullong.c: fixed logic, on little endian
7161         hosts we ended without a mullong_wrapper()
7162
7163 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7164
7165         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7166         virus/worm forged address usage.
7167
7168 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7169
7170         Fixed promotion, it should be done on AST level:
7171         * src/SDCCast.c (addCast): added promotion to int
7172         (decorateType): updated call to upCast()
7173         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7174         usualUnaryConversions()
7175
7176 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7177
7178         * support/regression/tests/literalop.c (mulWrapper): Added a
7179         wrapper to remove integer overflow warnings.
7180
7181         * support/regression/tests/float_trans.c: Made work on host.
7182
7183         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7184         location of sz80.
7185
7186         * support/regression/generate-cases.py (main): Changed from inline
7187         to a main method.
7188
7189         * doc/Makefile (install): Changed to depth first to get rid of
7190         missing directory install warning.
7191
7192         * as/Makefile (install-doc): Made work on Mac.
7193
7194 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7195
7196         * src/SDCCast.c: added an additional type flow in decorateType() of
7197         opposite direction, see feature request #860006; it's enabled at runtime
7198         by setting the environment variable SDCC_NEWTYPEFLOW
7199         * src/SDCCast.h: changed prototype of decorateType()
7200         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7201         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7202         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7203         see feature request #877103
7204         * src/SDCCval.c: updated call of decorateType()
7205         (valBitwise): fixed bug #882876
7206         (valMinus): added promotion
7207         (valLogicAndOr): result is unsigned
7208         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7209         * src/SDCCsymt.c (computeType),
7210         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7211         must not cause an unsigned operation
7212         * src/pic/glue (pic14emitRegularMap),
7213         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7214
7215 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7216
7217         * src/pic/pcode.c (PCodeID): commented out left over debug code
7218
7219 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7220
7221         * support/valdiag/tests/overflow.c: added shift tests
7222         * src/pic/device.c,
7223         * src/pic/gen.c,
7224         * src/pic/gen.h,
7225         * src/pic/glue.c,
7226         * src/pic/main.c,
7227         * src/pic/pcode.c,
7228         * src/pic/pcode.h,
7229         * src/pic/pcodepeep.c,
7230         * src/pic/pcoderegs.c,
7231         * src/pic/ralloc.c,
7232         * src/pic/ralloc.h: applied patch from Slade Rich;
7233         added support for multiple code pages and multiple RAM banks on the
7234         PIC 14 port. The ASM files now no longer simply assume all the
7235         code / RAM are in the same page / bank. This means the linker can
7236         safely allocate code/RAM of separate ASM files to different pages/banks.
7237         * doc/sdccman.lyx: added Slade's tips
7238         * src/mcs51/peeph.def: fixed bug #880768
7239
7240 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7241
7242         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7243         * src/SDCCast.c (decorateType): fixed bug #880197
7244
7245 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7246
7247         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7248         getopt.h.
7249
7250         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7251         strtof is not part of C89 and isn't included with Mac OS X.
7252
7253 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7254
7255         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7256         shiftL2Left2Result): fixed bug #879326
7257         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7258         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7259         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7260         address fetch for clr instruction
7261         * device/lib/hc08/_mulint.c: created optimized assembly version
7262         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7263
7264 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7265
7266         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7267         proposed in FR #877103
7268
7269 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7270
7271         * src/SDCCval.c (cheapestVal): added missing checks
7272         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7273         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7274
7275 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7276
7277         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7278         equal operands
7279
7280 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7281
7282         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7283         loaded with the linker search paths (-L arguments) and the libraries
7284         to be linked with the current source (-l arguments). Changes
7285         currently will affect only the pic16 port.
7286         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7287         include path the port specific paths and port specific libraries,
7288         * gplink command now contains the $3 argument,
7289         * src/pic16/device.h,
7290         * src/pic16/device.c,: structure PIC_device is made public and
7291         renamed to PIC16_device, the same for variable Pics which is renamed
7292         to Pics16. Updated all references to them.
7293         * src/pic16/glue.c (pic16glue): corrected bug with code
7294         initialization which bypassed the variable initializations block.
7295
7296         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7297         COMPILE_FLAGS and added the --nostdinc option
7298
7299 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7300
7301         * device/include/mc68hc908jb8.h: Register defs for another member
7302         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7303
7304 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7305
7306         Documenting changes from previous commits.
7307         * configure.in (version 1.56),
7308         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7309         when generating output files to configure the pic16 library,
7310         but now I've commented it out, since gputils aren't installed in the
7311         SF compile farm, so library won't compile
7312
7313         * device/lib/Makefile.in (version 1.56): initially I've added in
7314         target 'all' the prerequestive 'model-pic16' so it compiled the
7315         pic16 library, but now I've commented it out for the same reasons
7316         above,
7317         * added targets 'model-pic16' and 'objects-pic16' to compile the
7318         library
7319         * added target 'port-specific-objects-pic16' to handle the
7320         generated libraries and copy them into the build/ directory
7321         * added target 'clean-intermediate-pic16' to clean intermediate
7322         files into pic16 directory
7323         * in target 'installdirs' added line to create directory pic16 in
7324         the installation path
7325
7326         * device/include/Makefile.in (version 1.11): in target 'install'
7327         added lines to copy all header files to installation path,
7328         * in target 'installdirs' added line create directory for pic16
7329         headers in the installation path
7330
7331 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7332
7333         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7334          a function call
7335
7336 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7337
7338         * configure,
7339         * device/lib/configure.in,
7340         * device/lib/configure: fixed for autoconf 2.57
7341
7342 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7343
7344         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7345         option so that it actually works. Made it specific to the z80, since
7346         the gbz80 doesn't have these kinds of I/O ports.
7347
7348 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7349
7350         * device/include/z180.h,
7351         * device/lib/_memcpy.c,
7352         * device/lib/_memmove.c,
7353         * device/lib/_mulint.c,
7354         * device/lib/ser_ir.c,
7355         * device/lib/ser_ir_cts_rts.c,
7356         * device/lib/_strcmp.c,
7357         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7358         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7359         portmode; added deprecation warning for bank= and protmode= forms.
7360         Also, guard against buffer overflow.
7361         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7362
7363 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7364
7365         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7366         changed interrupt vector table generation to only emit declared vectors.
7367         * device/include/Makefile.in: added missing backslash
7368         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7369
7370 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7371
7372         Mainly changes to support compilation of the device libraries
7373         * src/pic16/device.c: stack is allocated via symbol and not
7374         via literal number. The symbol is placed in the corresponding
7375         position of the data ram
7376         * (pic16_dump_section): relocatable and absolute uninitialized
7377         data are now emitted in sorted order to reduce section naming,
7378         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7379         weren't marked as being in the access bank,
7380
7381 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7382
7383         Added portion of GNU PIC Library under the directory
7384         device/include/pic16 and device/lib/pic16. These files
7385         contain the declarations of SFRs for the PIC18Fxx2 devices.
7386         The directory is initialized via configure from toplevel.
7387
7388 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7389
7390         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7391         the spilllocations to be compared correctly
7392
7393 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7394
7395         * src/SDCCast.c (decorateType): fixed bug introduced today
7396
7397 2004-01-12  Borut Razem <borut.razem AT siol.net>
7398
7399         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7400         doc/sdccman.lyx: upper case pragmas are deprecated
7401
7402 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7403
7404         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7405         in simpler and even better code
7406
7407 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * src/SDCCicode.c (operandOperation): fixed bug #874819
7410         * src/SDCCast.c (decorateType): fixed
7411         char foo (unsigned long ul) { return ul > 0; }
7412
7413 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7414
7415         * doc/sdccman.lyx: Moved and added some sections, small changes
7416         all over. Telling LaTeX to be less strict with word spacing
7417         to better keep the right margin. Changed some notes about
7418         maintainance of the ports in section 3.2.1 - is it OK like this?
7419
7420 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7421
7422         SDCC source changes:
7423         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7424         convilong): modified to inform the pic16 port that builtin functions
7425         are external
7426
7427         PIC16 PORT specific changes:
7428         * src/pic16/device.c pic16_dump_equates() added,
7429         processor registers declared internally by the port are emitted in
7430         the translation as equates,
7431         * src/pic16/gen.c: inline code is passed unprocessed to the
7432         translation,
7433         * (pic16_popGetLit2): fnuction modified to take second operand as
7434         pCodeOp pointer and not as literal,
7435         * (popRegFromIdx): prefixed with pic16_,
7436         * (pic16_popCombine2): modified to receive already allocated pCode
7437         operands,
7438         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7439         * (genFunction): initializes local stack frame and pushes on stack
7440         all the registers used by this function,
7441         * (genEndFunction): restores all registers from stack and restores
7442         stack frame,
7443         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7444         improvements,
7445         * (pic16glue): changed the program startup sequence,
7446         * added new dbName code 'A' for functions placed in absolute section
7447         * src/pic16/main.c: added function attribute _naked,
7448         * added pragma 'code' to place a fnuction at an absolute address,
7449         * added command line arguments --debug-ralloc and --pcode-verbose,
7450         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7451         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7452         * (pic16_newpCodeOpLit2): modified to take the second operand as
7453         pCodeOp pointer,
7454         * (pic16_printpBlock): modified to emit each function in a separate
7455         section,
7456         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7457         UPPER for immediate operands,
7458         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7459         instruction,
7460         * src/pic16/peeph.def: all peepholes with movff are commented out,
7461         because there is a problem in the pcode peep optimizer,
7462         * src/pic16/ralloc.c: the register allocator can now reuse local
7463         function symbols for another function. This saves register usage.
7464         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7465
7466         Added file src/pic16/NOTES with information about program writing on
7467         the current port version.
7468
7469 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7470
7471         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7472         and peephole 252 (array access)
7473
7474 2004-01-09  Borut Razem <borut.razem AT siol.net>
7475
7476         * src/SDCCmain.c : fixed #872250: -l command line defined library
7477           files are scanned before standard library files
7478
7479 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7480
7481         * src/SDCCast.c (decorateType): fixed bug #874046
7482
7483 2004-01-09  Borut Razem <borut.razem AT siol.net>
7484
7485         * support/scripts/sdcc.nsi: remove previous installation
7486
7487 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7488
7489         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7490         bytes for last interrupt vector (mcs51)
7491         * sdcc.spec: fixed typo
7492
7493 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7494
7495         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7496         gen51Code): more efficient parameter receive for --model-large
7497         ("bug" #845294)
7498
7499 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7500
7501         * src/ds390/main.c,
7502         * src/z80/main.c: added missed needLinkerScript flags (more than
7503         one port structure defined in these file)
7504         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7505         bug #795325
7506
7507 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7508
7509         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7510         * src/port.h: added flag needLinkerScript in port->linker
7511         structure to inform whether to create a .lnk file or not,
7512         * src/avr/main.c,
7513         * src/ds390/main.c,
7514         * src/hc08/main.c,
7515         * src/mcs51/main.c,
7516         * src/pic/main.c,
7517         * src/pic16/main.c,
7518         * src/xa51/main.c,
7519         * src/z80/main.c: changed appropriately to configure
7520         needLinkerScript flag
7521         * src/pic/gen.c,
7522         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7523         * src/pic/glue.c: added variable udata_section_name to
7524         override default uninitialized data segment definition for
7525         devices only with SHAREBANK memory (reported from Erik Epetrich)
7526         * (pic14emitOverlay): modified to emit a commented overlay segment
7527         directive when no overlay data exist
7528         * (picglue): modified to emit uninitialized data segment
7529         according to udata_section_name
7530         * src/pic/main.c (_pic14_parseOptions): added command line
7531         options --udata-section-name=[name] to override default
7532         udata definition name
7533         * modified _linkCmd and _asmCmd to include compiler passed
7534         arguments via -W option
7535         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7536         object file from '.rel' to '.o' in port->linker structure,
7537         changed size of fptr from 2 to 3 in port structure
7538
7539 2004-01-07  Borut Razem <borut.razem AT siol.net>
7540
7541         * support/scripts/sdcc.nsi: update PATH
7542         * support/scripts/sdcc.ico: craeted
7543
7544 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7545
7546         * device/include/Makefile.in: fix install
7547         * doc/Makefile: fix install
7548
7549 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7550
7551         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7552         in bug #860505
7553         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7554         how the function variable allocation summary is displayed; also
7555         include information about variables allocated to the overlay
7556         segment
7557
7558 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7559
7560         * as/mcs51/lkmain.c: Help about -Y option
7561         * as/mcs51/lkarea.c: Fixed gcc warnings
7562
7563 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7564
7565         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7566         fixed warning
7567         * support/valdiag/tests/overflow.c: added
7568         * src/SDCCast.c (decorateType),
7569         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7570         LEFT_OP (left shift)
7571
7572 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7573
7574         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7575         (default behaviour).
7576
7577 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7578
7579         A python script to validate compiler diagnostic messages. It can be
7580         used to verify that sdcc complains about bad c source code and
7581         gives a good location of the error.
7582         * support/valdiag/Makefile,
7583         * support/valdiag/valdiag.py,
7584         * support/valdiag/tests/*
7585
7586 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7587
7588         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7589         * src/SDCCsymt.c (newEnumType),
7590         * src/SDCCsymt.h
7591         * support/Util/SDCCerr.c,
7592         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7593         enum related bugs.
7594         * support/regression/tests/enum.c: added test for enum values that
7595         require at least 2 bytes of storage.
7596
7597 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7598
7599         * src/common.h: added ifndef/define/endif macros
7600         around the header file.
7601         Bug reported from Jesus Calvino-Fraga
7602
7603 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7604
7605         * sdcc.spec: updated
7606         * device/include/Makefile.in: don't install CVS directories
7607         * device/lib/Makefile.in: added removal of CVS directories after install
7608         * doc/Makefile: fixed install, added local_icons
7609         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7610         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7611         * src/ds390/gen.c (genRightShift): fixed bug #870788
7612         * src/SDCCast.c (decorateType): fixed bug #870781
7613
7614 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7615
7616         PIC16 port related changes:
7617         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7618         added variable stackPos,
7619
7620         * gen.c: genCall, assignResultValue: added support for
7621         pushing/retrieving function parameters to/from stack,
7622         genFunction,genEndFunction: setup stack frame for the
7623         generated function,
7624         genAddrOf: will be changed according to bug 863624
7625
7626         * added files genutils.c and genutils.h which contain gen*
7627         debugged and optimised functions extracted from gen.c
7628
7629         * glue.c: added variable 'externs' which holds extern symbols,
7630         pic16emitRegularMap: is modified to properly handle relocatable
7631          symbols under the new scheme,
7632         pic16createInterruptVect: is modified
7633         pic16printPublics: is modified to emit 'global' assembler directives,
7634         added pic16_printExterns to print extern symbols,
7635         pic16glue: initializes stack/frame pointer in the beginning of
7636         the assembly output. Temporary hack, will be corrected later,
7637         because gplink yet does not support stack and SDCC does not
7638         yet support a type of crt0.o object to create the final binary.
7639
7640         * Removed many lines that contain 8051 legacy code.
7641         * The code is finally placed under a 'code' directive.
7642         * Added port specific options.
7643
7644         * _process_pragma: simplified since now we do not need *special*
7645         include file to define SFR registers. But a separate header
7646         will be needed. This will be developed later.
7647         * _pic16_parseOptions: added, parses port specific options:
7648         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7649         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7650         --preplace-udata-with=
7651
7652         * _pic16_setDefaultOptions: modified to initialize section names,
7653         but hack is temporarly out of order since it needs improvement.
7654         * _pic16_genAssemblerPreamble: configuration words are emitted by
7655         their address instead of their name. This part is incomplete and
7656         supports only the 18Fxx2 devices. Other devices will emit an error
7657         during assembly since they do not contain the same set of config
7658         registers
7659         * _pic16_genIVT: is modified,
7660
7661         * pcode.c: added definitions for some hardware registers that are needed
7662         for stack support
7663         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7664         All PCI entries are updated. Now LFSR is supported.
7665         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7666         * added pic16_newpCodeOpLit2 to support instructions with
7667         two literal arguments
7668         * pic16_pCode2str: corrected code that emits assembler instructions
7669         with two literal operands and those that have an access bit modifier
7670         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7671         this fixes a bug which caused some labels to be lost, when an
7672         assembler directive was added, i.e. banksel,
7673         * pic16_FixRegisterBanking: improved logic that causes the insertion
7674         of bank switching,
7675         * InlineFunction: functions that are called once, are not any more
7676         inlined. This can be a port option in the future,
7677
7678         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7679
7680         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7681         hold the corresponding uninitialized symbols,
7682         * pic16_allocProcessorRegister: registers have explicit marked the
7683         accessBank field,
7684         * pic16_allocInternalRegister: registers are explicit marked as
7685         not used,
7686         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7687         processing list, so bit registers were lost,
7688         *
7689
7690         * ralloc.h: added field 'accessBank' and original symbol operand
7691         in register definition,
7692         * removed the field isMapped from register definition,
7693
7694         ** Several functions have been removed from various sources:
7695         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7696         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7697         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7698         pic16_assignRelocatableRegisters
7699
7700         ** others have been introduced:
7701         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7702         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7703
7704 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7705
7706         * support/scripts/inc2h.pl: changed definition of BIT_AT
7707         to emit 'sbit at' instead of 'bit at'. This was a request.
7708
7709         PIC16 port related preliminary changes:
7710         * gen.c: prefixed function popRegFromString with
7711         pic16_ and all references to it corrected
7712         * pcode.c: all pic16_pc_* hardware registers prefixed
7713         with underscore (_),
7714         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7715         * ralloc.c: newReg(): when register is REG_SFR then
7716         set address to rIdx,
7717         pic16_allocProcessorRegister(): marks register wasUsed=0
7718         pic16_writeUsedRegs(): added a call to assign processor
7719         registers via pic16_assignFixedRegisters
7720
7721 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7722
7723         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7724         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7725         variables in unused register banks.  Also the SSEG is placed
7726         wherever there is enough space for it, and IDATA can be anywhere
7727         in internal RAM.  For now compile using -Wl-Y[stack_size].
7728         The mem file is different for this option as well, since it
7729         makes no sense of talking about DSEG lenght.
7730
7731 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7732
7733         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7734         in certain cases, e.g. when ROM assignment, patch provided
7735         from Albert den Haan.
7736
7737 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7738
7739         Many signedness and type propagation fixes:
7740         * src/SDCCicode.c: made geniCodeCast() static
7741         replaced SPEC_ by IS_ (cosmetic)
7742         (operandOperation): fixed div and mod operation
7743         (usualBinaryConversions): added support for promotion of char
7744         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7745         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7746         (geniCodeAdd): an array index will stay unsigned, even if promoted
7747         from char to int
7748         (geniCodeArray): ditto
7749         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7750         * src/SDCCsymt.c (computeType): added more support for char;
7751         promotion of char is selectable by promoteCharToInt, fixed signedness
7752         for all cases
7753         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7754         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7755         * src/SDCCval (val*): replaced signedness calculation by
7756         computeType()
7757         rearranged if-branches (cosmetic)
7758         (valShift): added warning W_SHIFT_CHANGED
7759         (valCompare): fixed problem with different types
7760         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7761         * support/regression/tests/literalop.c: added many cases
7762         * support/regression/tests/ast_constant_folding.c: changed finally to
7763         'unsigned int'
7764         * .version: new year, new version: 2.3.7
7765         * src/SDCCmain.c (main): applied patch #866468
7766         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7767         provided by Scott Bronson
7768         * doc/sdccman.lyx: updated documentation for sdcdb
7769         updated and added chapter tips
7770
7771 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7772
7773         * src/SDCCsymt.h: missing from yesterday's commits
7774
7775 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7776
7777         * src/SDCC.y (struct_or_union_specifier),
7778         * support/Util/SDCCerr.c,
7779         * support/Util/SDCCerr.h: verify that struct & union tags are used
7780         as declared.
7781
7782 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7783
7784         * src/SDCCglobl.h: missing from yesterday's commits
7785
7786 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7787
7788         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7789         sft_attributes, struct_declaration, parameter_declaration,
7790         type_name, start_block, declaration_list),
7791         * src/SDCC.lex (check_type): support redefinition of typedef names
7792
7793 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7794
7795         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7796         aligned xdata arrays. Erik helped me with the if clause.
7797
7798 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7799
7800         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7801         warning
7802
7803 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7804
7805         * src/SDCCast.h,
7806         * src/SDCCast.c (newAst_),
7807         * src/SDCCicode.h,
7808         * src/SDCCicode.c (ast2iCode, newiCode),
7809         * src/SDCCglobl.h,
7810         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7811         expr, statement, expression_statement, selection_statement,
7812         iteration_statement, expr_opt, jump_statement): foundation for tracking
7813         sequence points
7814         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7815         point code too)
7816
7817 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7818
7819         * support/Util/SDCCerr.c,
7820         * src/SDCCast.h,
7821         * src/SDCCast.c (createCase, createDefault, decorateType),
7822         * src/SDCClabel.c (labelUnreach),
7823         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7824         to error messages.
7825         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7826         (with thanks to Stas Sergeev)
7827         * device/include/time.h,
7828         * device/lib/time.c (CheckTime): suppress unreachable code warning
7829
7830 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7831
7832         * src/SDCCast.c (createIvalCharPtr),
7833         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7834         bug #753752)
7835         * support/regression/tests/nullstring.c: tests for these two bugs
7836
7837 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7838
7839         * support/Util/SDCCerr.h,
7840         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7841         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7842         about storage class and 'at' used inside struct or union
7843         * src/SDCCBBlock.c (iCodeFromeBBlock),
7844         * src/SDCCcse.c (ifxOptimize),
7845         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7846         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7847         printIval, emitStaticSeg, emitOverlay),
7848         * src/SDCClabel.c (deleteIfx),
7849         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7850         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7851         gatherAutoInit, processParms),
7852         * support/Util/SDCCerr.h,
7853         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7854         reporting for post-parse errors.
7855
7856 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7857
7858         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7859         implicit casts via union; they don't work on big endian systems
7860         (possible fix for bug #861138)
7861
7862 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7863
7864         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7865         * src/mcs51/main.c: fixed the fix for bug #737001
7866
7867 2003-12-15  Borut Razem <borut.razem AT siol.net>
7868
7869         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7870
7871 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7872
7873         * support/makebin/makebin.c: put output in binary mode
7874
7875 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7876
7877         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7878         xdata and data memory on startup. Set the environment variable
7879         SDCC_NOGENRAMCLEAR to disable this.
7880         * src/mcs51/peephole.def,
7881         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7882         (allows non-interrupt and interrupt code to safely compete for a resource
7883         without the non-interrupt code having to disable interrupts)
7884
7885 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7886
7887         * src/SDCCicode.c (geniCodeAdd),
7888         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7889         with valFromType if type might be a pointer and host is big endian).
7890         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7891         types, not just integer types.
7892         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7893         multiply defined with mismatching "at" address.
7894
7895 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7896
7897         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7898         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7899         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7900         with embedded nulls (fixed bug #753752)
7901
7902 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7903
7904         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7905         Apparently this did not see much testing (endless loop)
7906
7907 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7908
7909         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7910
7911 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7912
7913         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7914         gracefully handle NULL memmap pointers
7915
7916 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7917
7918         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7919         instead of deleting the iCode when an operand is volatile
7920         * src/z80/gen.c (genDummyRead),
7921         * src/mcs51/gen.c (genDummyRead),
7922         * src/ds390/gen.c (genDummyRead),
7923         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7924         not just IC_RIGHT
7925         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7926         * src/SDCC.y: fixed bug #850420
7927
7928 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7929
7930         Applied z80 i/o port patch from Peter Townson and fixed some operators
7931         to better handle operands in A register.
7932         * device/include/z180.h
7933         * src/SDCC.y
7934         * src/SDCCglue.c
7935         * src/z80/gen.c
7936         * src/z80/gen.h
7937         * src/z80/main.c
7938         * src/z80/peeph-z80.def
7939         * src/z80/peeph.def
7940         * src/z80/z80.h
7941
7942 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7943
7944         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7945
7946 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7947
7948         * device/lib/hc08/_mullong.c: Removed extra #endif
7949
7950 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7951
7952         * sim/ucsim/hc08.src/inst.cc,
7953         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7954         carries from x to h
7955         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7956         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7957         * device/include/stdarg.h: fixed varargs for hc08
7958         * device/lib/Makefile.in,
7959         * device/lib/hc08/Makefile,
7960         * device/lib/hc08/_mulint.c,
7961         * device/lib/hc08/_mullong.c: fixed some endian problems
7962
7963 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7964
7965         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7966         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7967         * device/lib/_gptrget.c,
7968         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7969
7970 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7971
7972         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7973         * src/SDCCast.c (astErrors): fixed bug #846007
7974         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7975
7976 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7977
7978         * src/SDCCast.c (decorateType): disabled a transformation I added in
7979         revision 1.188 (access to fields of a structure at an absolute address);
7980         it breaks with bitfields, extern declarations, and gcse analysis.
7981         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7982         could be assigned through a pointer, so don't complain.
7983         * src/SDCCast.c (astErrors),
7984         * src/SDCCast.h,
7985         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7986
7987 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7988
7989         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7990         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7991         output of __config directives, since gpasm now supports them
7992         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7993         pre-processor macro, i.e. -DMCU=p18f452
7994         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7995         and modified to handle 'cast' icode similarly to '=' icode
7996         * src/pic16/device.h (typedef struct PIC_device): added field
7997         'extMIface' to indicate that chip has external memory interface
7998         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7999         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8000         18F8720
8001
8002 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8003
8004         * src/SDCC.y (pointer): fixed bug #846006
8005         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8006         * src/SDCCast.c (decorateType): fixed bug #846009
8007         * src/ds390/peeph.def,
8008         * src/ds390/gen.c (genAnd, genOr),
8009         * src/mcs51/peeph.def,
8010         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8011
8012 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8013
8014         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8015         * src/SDCCdflow.c
8016         * src/SDCCcse.c
8017         * src/SDCCcse.h
8018         * src/SDCCBBlock.h
8019         * src/SDCCBBlock.c
8020
8021 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8022
8023         fixed bug #845089
8024         * src/SDCCbitv.h,
8025         * src/SDCCbitv.c: added function to free a bitvector
8026         * src/SDCClrange.h,
8027         * src/SDCClrange.c: added function to recompute the liveranges
8028         * src/avr/ralloc.c,
8029         * src/ds390/ralloc.c,
8030         * src/hc08/ralloc.c,
8031         * src/mcs51/ralloc.c,
8032         * src/pic/ralloc.c,
8033         * src/pic16/ralloc.c,
8034         * src/xa51/ralloc.c,
8035         * src/z80/ralloc.c: recompute the liveranges after register packing
8036
8037 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8038
8039         * src/SDCCloop.c (newInduction): fixed bug #845630
8040
8041 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8042
8043         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8044         inadvertantly left behind from my 2003-11-12 change
8045
8046 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8047
8048         Updated headers I neglected to commit yesterday.
8049         * src/SDCClrange.h,
8050         * src/SDCCicode.h
8051
8052 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8053
8054         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8055         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8056         * src/SDCCopt.c (eBBlockFromiCode),
8057         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8058         the creation of the key hash table from the sequencing so it can be used
8059         earlier (for some GCSE bug fixes still pending)
8060
8061 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8062
8063         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8064         * support/regression/tests/addsub.c: testing genPlus shortcut
8065
8066 2003-11-15  Borut Razem <borut.razem AT siol.net>
8067
8068         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8069
8070 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8071
8072         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8073         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8074         ordering is immaterial.
8075         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8076
8077 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8078
8079         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8080         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8081         (SIGSEV) of bug #840381
8082         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8083         unlink new file before rename if new and old filenames are the same)
8084
8085 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8086
8087         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8088         uninitialized variables) for the mcs51. Set environment variable
8089         SDCC_GENRAMCLEAR to test.
8090         xdata initialization slightly shorter
8091
8092 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8093
8094         * src/SDCCsymt.h,
8095         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8096         #838241 & 780691 (basicly the same bug)
8097         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8098         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8099
8100 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8101
8102         * src/SDCCmain.c (linkEdit): "fix" #834252
8103
8104 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8105
8106         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8107         * src/SDCCast.h,
8108         * src/SDCC.y: fixed bug #819403
8109
8110 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8111
8112         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8113         the reentrant attribute.
8114         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8115         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8116         simulation
8117         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8118         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8119         erroneously reduced to a literal.
8120         * src/hc08/ralloc.c (packRegisters, rematStr),
8121         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8122         some cases
8123
8124 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8125
8126         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8127         * doc/sdccman.lyx: changed from 'article' to 'book'
8128         * doc/Makefile: readded test_suite_spec and cdbfileformat
8129
8130 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8131
8132         * device/include/stdlib.h: include malloc.h to comply with ANSI
8133         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8134
8135 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8136
8137         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8138         * doc/clean.mk: also remove *.out files
8139         * doc/sdccman.lyx: some additions, larger top/bottom margins
8140
8141 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8142
8143         * src/SDCC.y: fixed bug #837365
8144         * support/regression/tests/bitopcse.c
8145         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8146         a symbol (might be valop instead)
8147         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8148         * device/lib/clean.mk: added hc08 to the cleaning list
8149
8150 2003-11-04  Borut Razem <borut.razem AT siol.net>
8151
8152         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8153           made 2003-11-04
8154         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8155           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8156           malloc is declared in standard stdlib.h
8157
8158 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8159
8160         * device/lib/hc08/Makefile: need to clean .rel not .o files
8161         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8162
8163 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8164
8165         * src/port.h,
8166         * src/hc08/main.c,
8167         * src/mcs51/main.c,
8168         * src/ds390/main.c,
8169         * src/z80/main.c,
8170         * src/avr/main.c,
8171         * src/pic/main.c,
8172         * src/pic16/main.c,
8173         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8174         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8175         tests (which uses the port's oclsExpense function)
8176         * src/SDCC.y,
8177         * src/SDCCast.c,
8178         * src/SDCCicode.c,
8179         * src/hc08/gen.c,
8180         * src/ds390/gen.c,
8181         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8182
8183 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8184
8185         * src/SDCCcse.c (ifxOptimize),
8186         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8187         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8188         deleting the IFX iCode.
8189         * src/hc08/ralloc.c: reduced unneeded slocs
8190         * src/hc08/gen.c: fixed bug in asmopToBoolean
8191
8192 2003-11-04  Borut Razem <borut.razem AT siol.net>
8193
8194         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8195           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8196           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8197           transferred to configure
8198
8199 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8200
8201         Use headers defined in the C[++] standards:
8202         * sim/ucsim/gui.src/serio.src/fileio.cc
8203         * sim/ucsim/gui.src/serio.src/frontend.cc
8204         * sim/ucsim/gui.src/serio.src/main.cc
8205         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8206         * support/Util/NewAlloc.c
8207         * as/hc08/lklibr.c
8208         * as/mcs51/lklibr.c
8209         * as/z80/aslist.c
8210         * as/z80/assym.c
8211
8212 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8213
8214         * Added MSVC projects for hc08 assembler and linker:
8215         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8216         /as/hc08/link_hc08.dsp
8217
8218 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8219
8220         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8221
8222 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8223
8224         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8225
8226 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8227
8228         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8229
8230 2003-10-31  Borut Razem <borut.razem AT siol.net>
8231
8232         * support/cpp2/cpplib.h,
8233           support/cpp2/cpplib.c,
8234           support/cpp2/cpplex.c,
8235           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8236           to switch _asm block preprocessing on / off. Default is
8237           #pragma preproc_asm +
8238
8239 2003-10-31  Borut Razem <borut.razem AT siol.net>
8240
8241         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8242           when outputting comment blocks (when executed with -C option) and
8243           _asm (SDCPP specific) blocks
8244
8245 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8246
8247         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8248
8249 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8250
8251         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8252
8253 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8254
8255         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8256         * src/SDCCast.c (decorateType): fixed bug #832664
8257
8258 2003-10-31  Borut Razem <borut.razem AT siol.net>
8259
8260         * support\cpp2\cpplex.c: fixed for SDCPP:
8261           comments(when executed with -C option) and _asm blocks
8262           were included even if they where in skipped #if block.
8263           Applied solution from GCC cpp 3.3.2
8264
8265 2003-10-31  Borut Razem <borut.razem AT siol.net>
8266
8267         * src/SDCC.lex: sdcc now understands both formats:
8268           '# <line_number> <file_name>' and
8269           '#line <line_number> <file_name>'
8270         * support/cpp2/cppmain.c: sdcpp now generates the standard
8271           '# <line_number> <file_name>' instead of former
8272           '#line <line_number> <file_name>'
8273
8274 2003-10-30  Borut Razem <borut.razem AT siol.net>
8275
8276         * support/cpp2/cpphash.h,
8277         * support/cpp2/cpplib.h
8278         * support/cpp2/cpplex.c,
8279         * support/cpp2/cppmain.c,
8280         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8281
8282 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8283
8284         Fixed a number of problems revealed by bug #827883.
8285         * src/SDCCloop.c (loopInvariants): Spill location of the
8286         result operand should be recomputed if extracted from
8287         a loop. Also, don't extract assignments of an iTemp
8288         from a literal.
8289         * src/SDCCast.c (isConformingBody): loop reversal should
8290         not occur if the control variable is involved with a
8291         relational operator.
8292
8293 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8294
8295         * .version: bumped to 2.3.6 to reflect the big improvements
8296         made by Erik and Klaus. Thanks!
8297
8298 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8299
8300         Replaced the livrange code.
8301         * src/SDCClrange.c: added new LR code
8302         * src/SDCCloop.c,
8303         * src/SDCCBBlock.h: removed remainig parts from old LR code
8304         * src/ds390/ralloc.c,
8305         * src/ds390/gen.c: minor fixes to make it work with new code
8306
8307 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8308
8309         * as/hc08/asm.h,
8310         * as/hc08/lkrloc.c,
8311         * src/hc08/gen.c,
8312         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8313         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8314         (tweaked fix for bug #818696)
8315
8316 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8317
8318         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8319
8320 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8321
8322         * src/SDCCmain.c,
8323         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8324         * src/mcs51/gen.c (gencjneshort),
8325         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8326         more efficient (per Scott Bronson's suggestion)
8327
8328 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8329
8330         Extended the semantics of the critical keyword to include
8331         individual statements. See RFE #827755 and #799831
8332         * src/SDCC.y
8333         * src/SDCCicode.c
8334         * src/SDCCopt.c
8335         * src/SDCCast.c
8336         * support/Util/SDCCerr.c
8337         * support/Util/SDCCerr.h
8338         * src/mcs51/gen.c
8339         * src/ds390/gen.c
8340         * src/hc08/gen.c
8341
8342 2003-10-19  Borut Razem <borut.razem AT siol.net>
8343
8344         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8345
8346 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8347
8348         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8349         Fixed bug #818696
8350         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8351         and predecrement operand is displayed
8352
8353 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8354
8355         * src/SDCCval.c (valMinus): fixed bug #826041
8356
8357 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8358
8359         Some hc08 related updates that I missed earlier
8360         * sim/ucsim/stypes.h
8361         * support/regression/ports/hc08/spec.mk
8362
8363 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8364
8365         New target "hc08" for the Motorola 68hc08 family of micros
8366
8367         * configure
8368         * configure.in
8369         * Makefile
8370         * src/hc08/*
8371         * src/SDCCmain.c
8372         * src/port.h
8373         * sim/ucsim/hc08.src/*
8374         * sim/ucsim/configure.in
8375         * src/ucsim/configure
8376         * sim/ucsim/packages_in.mk
8377         * as/hc08/*
8378         * as/Makefile
8379         * device/include/mc68hc908qy.h
8380         * device/lib/hc08/*
8381         * device/lib/Makefile.in
8382         * support/regression/ports/hc08/*
8383         * support/regression/Makefile
8384
8385 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8386
8387         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8388         regression test
8389         * src/ds390/gen.c (genCast): fixed bug #821957
8390
8391 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8392
8393         * device/lib/logf.c: "fixed" overlay bug
8394         * support/regression/ports/host/spec.mk: added m library
8395         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8396         * support/regression/tests/float_trans: added (for Eric)
8397
8398 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8399
8400         * src/mcs51/gen.c (genCpl): fixed bug
8401         http://sf.net/mailarchive/message.php?msg_id=6263915
8402
8403 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8404
8405         * src/SDCCast.c (decorateType): added extended constant folding
8406         * src/SDCCsymt.c (computeType): cleanup
8407         * src/SDCCval.c (valShift): minor optimization
8408         * support/regression/tests/ast_constant_folding.c: added
8409
8410 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8411
8412         * src/SDCCmain.c: removed some unintended changes
8413
8414 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8415
8416         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8417         * src/z80/gen.c: fixed part of bug #817589
8418         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8419
8420 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8421
8422         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8423         * src/SDCCcflow.c
8424         * src/SDCCcse.c
8425         * src/SDCCdflow.c
8426         * src/SDCClabel.c
8427         * src/SDCClrange.c
8428         * src/SDCCmem.c
8429         * src/SDCCopt.c
8430         * src/SDCCpeeph.c
8431         * src/SDCCset.c
8432         * src/avr/ralloc.c
8433         * src/ds390/ralloc.c
8434         * src/izt/ralloc.c
8435         * src/mcs51/ralloc.c
8436         * src/pic/ralloc.c
8437         * src/pic16/ralloc.c
8438         * src/xa51/ralloc.c
8439         * src/z80/ralloc.c
8440         * src/z80/gen.c: removed unused label "release:"
8441
8442 2003-10-06  Borut Razem <borut.razem AT siol.net>
8443
8444         * src/SDCC.lex: removed definition of unused variables
8445           save_optimize and save_options
8446
8447 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8448
8449         * clean.mk: removed '=' in "-maxdepth=1"
8450         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8451         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8452
8453 2003-10-06  Borut Razem <borut.razem AT siol.net>
8454
8455         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8456           my_unput() replaced by unput()
8457
8458 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8459
8460         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8461         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8462         type-punned pointer will break strict-aliasing rules"
8463         Old LR behaviour is again default; Klaus' LR can be choosen by
8464         defining the environment variable LRKLAUS
8465         * src/SDCCBBlock.h
8466         * src/SDCCloop.c
8467         * src/SDCClrange.c
8468         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8469         * clean.mk: fixed removal of files in bin/CVS/
8470         * device/lib/clean.mk: fixed removal of directories small and large
8471         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8472         * src/SDCCicode.c,
8473         * src/SDCCval.c: removed superflous test for pedantic
8474
8475 2003-10-05  Borut Razem <borut.razem AT siol.net>
8476
8477         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8478           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8479           message "unmatched #pragma SAVE and #pragma RESTORE"
8480
8481 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8482
8483         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8484           assembly, critical functions, atomic, nojtbound)
8485
8486 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8487
8488         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8489         * src/SDCCBBlock.h
8490         * src/SDCCloop.c
8491         * src/SDCCloop.h
8492         * src/SDCClrange.c
8493
8494 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8495
8496         * src/z80/gen.h,
8497         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8498         * src/mcs51/gen.h
8499         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8500         * src/ds390/gen.h
8501         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8502         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8503         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8504
8505 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8506
8507         * src/z80/gen.c (genRet): fixed bug #524753
8508         * src/z80/gen.c (genCast): fixed internal error on cast from
8509         pointer to long
8510         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8511         fix for bug #477835 to the z80
8512         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8513         for tracking iCodes in the peephole optimizer for z80
8514
8515 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8516
8517         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8518         the other part of bug #814548
8519         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8520
8521 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8522
8523         * src/SDCCcse.c: fixed part of bug #814548
8524
8525 2003-09-28  Borut Razem <borut.razem AT siol.net>
8526
8527         * src/asm.c: rewrite of printILine() to use temporary file instead
8528           a pipe
8529         * src/xa51/main.c: commented out declaration of int rewinds
8530
8531 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8532
8533         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8534
8535 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8536
8537         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8538         * src/asm.c (printILine): Fixed bug #811015
8539
8540 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8541
8542         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8543         freeing.
8544
8545 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8546
8547         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8548         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8549         to correctly handle general case of AOP_PAIRPTR
8550         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8551
8552 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8553
8554         * src/mcs51/ralloc.c (fillGaps),
8555         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8556         register positioning bug)
8557
8558 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8559
8560         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8561
8562 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8563
8564         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8565         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8566         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8567         (ralloc doesn't intentionally do this now, but perhaps later)
8568         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8569         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8570         register positioning bugs (Fixed bug #762602 and #795325)
8571         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8572         (Fixed bug #808779)
8573         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8574         lines that --i-code-in-asm generates
8575
8576 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8577
8578         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8579         trying to fclose a FILE* that was already closed.
8580
8581 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8582
8583         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8584         of const struct should be treated as if const themselves)
8585
8586 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8587
8588         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8589
8590 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8591
8592         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8593         Unix (/n) and DOS (/r/n) line terminations.
8594
8595 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8596
8597         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8598         bug #613775
8599
8600 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8601
8602         * src/mcs51/gen.c (genFunction, genEndFunction),
8603         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8604         and restore of EA so that stack offsets to parameters are
8605         correct when using both critical and reentrant/stack-auto.
8606         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8607         size (can be triggered in error if sloc is shared between
8608         different sized objects)
8609         * device/include/float.h: fixed macros to explicitly use
8610         unsigned long where needed
8611
8612 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8613
8614         Feature req. 799831: added code to allow nesting of critical functions
8615         * src/mcs51/gen.c (genFunction, genEndFunction)
8616         * src/ds390/gen.c (genFunction, genEndFunction)
8617
8618 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8619
8620         * src/SDCCsymt.c (sclsFromPtr),
8621         * src/SDCCsymt.h,
8622         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8623         support for standard C idiom of memory mapped variables; for
8624         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8625         to xdata int at 0x1234 tempvar = 1.
8626         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8627         provided by Akiya ISHIDA
8628
8629 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8630
8631         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8632         * src/SDCCval.c (constVal): added reduction from int to char
8633         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8634         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8635         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8636         to ignore the sign
8637         * support/regression/tests/shifts.c: fixed
8638
8639 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8640
8641         * src/z80/gen.c (genXor): Fixed bug #805445
8642
8643 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8644
8645         Fixed bug #621531 (const & volatile confusion in the type chain).
8646         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8647         refer to the const or volatile state of the pointer itself.
8648
8649         * src/SDCCast.c
8650         * src/SDCCglue.c
8651         * src/SDCCicode.c
8652         * src/SDCCsymt.c
8653         * src/SDCCval.c
8654         * src/SDCC.y
8655         * src/SDCCsymt.h
8656         * src/pic/gen.c
8657         * src/pic/ralloc.c
8658         * src/pic16/gen.c
8659         * src/pic16/ralloc.c
8660         * support/regression/tests/const.c
8661
8662 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8663
8664         When checking for duplicated modules, use absolute paths
8665         instead of relative paths.  Files changed:
8666
8667         * as/mcs51/lklib.c
8668         * link/z80/lklib.c
8669
8670 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8671
8672         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8673
8674 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8675
8676         * device/include/string.h: added size_t typedef, changed
8677         prototypes to use size_t, eliminated separate reentrant and
8678         non-reentrant declarations, added _memmove declaration
8679         * device/lib/_memcpy.c: changed to use size_t instead of int,
8680         changed /4 to >>2 to avoid division library call
8681         * device/lib/_memcmp.c,
8682         * device/lib/_memset.c,
8683         * device/lib/_strncat.c,
8684         * device/lib/_strncpy.c,
8685         * device/lib/_strncmp.c: changed to use size_t instead of int
8686         * device/lib/_memmove.c: new file (fixed bug #772294)
8687         * device/lib/Makefile.in: added _memmove.c
8688         * device/lib/z80/asm_strings.s: fixed bug #772290
8689         * support/regression/tests/bitfields.c: attempt to fix host assertion
8690         failure on amd64-unknown-linux2.2
8691
8692 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8693
8694         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8695         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8696         * as/z80/asmain.c (main): fixed bug #801766
8697
8698 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8699
8700         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8701         compilers
8702
8703 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8704
8705         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8706         reported in bug #800609
8707
8708 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8709
8710         * Top header beautifications in src/pic16 directory:
8711           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8712           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8713           pcoderegs.h, ralloc.c, ralloc.h
8714         * main.c: added top header and GPL license notice
8715         * pcode.c: fixed the if-conditional warning
8716
8717 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8718
8719         * device/lib/_mullong.c: replaced int by short for gcc
8720
8721 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8722
8723         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8724         and JUMPTABLE iCodes properly now (worked by accident before)
8725         * src/mcs51/gen.c (leftRightUseAcc),
8726         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8727         iCode properly now. Use getSize instead of nRegs since a & b
8728         aren't part of the nRegs tally.
8729
8730 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8731
8732         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8733         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8734           before instructions that use the _STATUS register
8735
8736 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8737
8738         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8739         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8740         fetching of the pointer
8741         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8742         copied from genNearPointerSet()
8743         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8744         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8745         If they pop r0/r1 they must be called in the opposite order than aopOp().
8746         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8747         (resp. --stack-auto), prepared for --xstack
8748
8749 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8750
8751         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8752
8753 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8754
8755         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8756         these ports have their own __sdcc_external_start()
8757
8758 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8759
8760         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8761         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8762         type for bits was changed. It resulted in bit variables becoming
8763         global, which is not permitted in PIC 14 assembly output.
8764
8765 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8766
8767         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8768
8769 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8770
8771         Z80 and MCS51 linkers complaint if a public symbol is defined
8772         in more than one library module:
8773
8774         * as/mcs51/lklib.c
8775         * link/z80/lklib.c
8776         * as/mcs51/Makefile.in
8777
8778 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8779
8780         A few small changes that speed up the peephole optimizer.
8781
8782         * src/SDCCpeeph.c
8783
8784 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8785
8786         Try to make the peephole optimizer smarter by maintaining
8787         an association between the assembly source code and the
8788         iCodes that originated them. Put this information to use
8789         with a new peephole rule condition "notVolatile" so that
8790         the rules can be aggressive yet still safe.
8791
8792         * src/SDCCpeeph.c
8793         * src/SDCCpeeph.h
8794         * src/mcs51/gen.c
8795         * src/mcs51/peeph.def
8796
8797 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8798
8799         Fixed bug #741761
8800
8801         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8802         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8803         if the left or right operand symbols have the accuse flag set.
8804
8805 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8806
8807         Changed the type of the result of the ! (NOT) operator to char;
8808         previously it returned the same type as the source. This allows
8809         us to eliminate all the genFloatNot functions (all of its target
8810         implementations were very buggy) since !float can use the same
8811         code as !long now.
8812
8813         * src/SDCCicode.c (ast2iCode): ! returns char
8814         * src/mcs51/gen.c (genNot, genNotFloat),
8815         * src/ds390/gen.c (genNot, genNotFloat),
8816         * src/z80/gen.c (genNot, genNotFloat),
8817         * src/pic/gen.c (genNot, genNotFloat),
8818         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8819
8820 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8821
8822         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8823         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8824            during interrupts. Ensure WSAVE is located at a shared bank address.
8825         2. Fixed page selection in some places
8826         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8827            the registers name strings.
8828         4. Fixed "signed / unsigned compare" compiler warnings.
8829         5. The PIC port manages its own allocation of the general purpose
8830            registers, but makes no attempt to reuse them. As a result when
8831            compiling it soon runs out of general purpose registers. Some
8832            additional code was added to the files pcode.c and device.c to walk
8833            through the function call tree and rename the registers so that they
8834            get reused.
8835
8836         * src/pic/device.c
8837         * src/pic/gen.c
8838         * src/pic/glue.c
8839         * src/pic/pcode.c
8840         * src/pic/pcode.h
8841         * src/pic/ralloc.c
8842         * src/pic/ralloc.h
8843         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8844         genPlus() & genMinus() when the result is the same as left or right
8845
8846 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8847
8848         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8849
8850 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8851
8852         Made bitfield a distinct type from bit so that bitfields
8853         convert as per ANSI C and bits retain their traditional
8854         boolean style behaviour. Implemented bitfield support in
8855         the z80 port.
8856
8857         * src/SDCCsymt.h,
8858         * src/SDCCsymt.c,
8859         * src/SDCCast.c,
8860         * src/cdbFile.c,
8861         * src/mcs51/gen.c,
8862         * src/ds390/gen.c: bit v bitfield split
8863         * src/z80/gen.c: New support for bitfields
8864         * support/regression/tests/bitfields.c: reenabled z80,
8865         added more tests
8866
8867 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8868
8869         Rules 246.x, 247.x relate to bitfields, the others speed up
8870         access to xdata mapped I/O devices.
8871
8872         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8873
8874 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8875
8876         Cleaned up genPackBits and genUnpackBits and added two helper
8877         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8878         for literal assignments in genPackBits (thanks to Frieder for
8879         reminding me).
8880
8881         * src/mcs51/gen.c
8882         * src/ds390/gen.c
8883
8884 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8885
8886         Fixed bug #748310 (pointer to function type mishandled when the
8887         function name is omitted). Also fixed a SIGSEGV when a function
8888         attribute (reentrant, etc) is used on a non-function or on a
8889         function but misplaced before the parameter list.
8890
8891         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8892         bug #748310
8893         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8894         * support/Util/SDCCerr.h,
8895         * support/Util/SDCCerr.c: Added func attr misuse error msg
8896
8897 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8898
8899         Fixed bug #787649 by anonymous
8900         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8901         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8902
8903 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8904
8905         Fixed numerous bitfield problems.
8906
8907         * src/SDCC.y: More bitfield related error checking
8908         * src/SDCCsymt.h,
8909         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8910         * support/Util/SDCCerr.h,
8911         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8912         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8913         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8914         * support/regression/tests/bitfields.c: tests added
8915
8916 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8917
8918         Made the constant following the "interrupt" keyword optional. If
8919         omitted, the function will not automatically be given an entry
8920         in the interrupt vector table (similar to #pragma NOIV, but
8921         less syntacticly kludgy). The interrupt number is also now
8922         range checked. Also fixed a bug in the high order bit example
8923         in the manual.
8924
8925         * src/SDCC.y
8926         * src/SDCCmem.c
8927         * src/SDCCglue.c
8928         * src/SDCCsymt.h
8929         * support/Util/SDCCerr.c
8930         * support/Util/SDCCerr.h
8931         * doc/sdccman.lyx
8932
8933 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8934
8935         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8936         * src/SDCCicode.c (operandOperation): rewritten some ops
8937         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8938         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8939         other type
8940         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8941         be re-activated by defining REDUCE_LITERALS)
8942         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8943         unsigned, but are signed by default
8944         * src/SDCCval.c (constVal): rearranged
8945         * src/SDCCval.c (valMod): preliminary fix
8946         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8947         * support/regression/literalop.c: added, work in progress
8948
8949 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8950
8951         Generate warnings for useless declarations like "char data;"
8952         that don't do what new users expect.
8953
8954         * src/SDCC.y
8955         * support/Util/SDCCerr.h
8956         * support/Util/SDCCerr.c
8957
8958 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8959
8960         * src/SDCCval.c (valMult): fix overflow detection of negative int
8961
8962 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8963
8964         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8965
8966         Changes to support big endian targets:
8967
8968         * src/ports.h
8969         * src/SDCCglue.c
8970         * src/avr/main.c
8971         * src/ds390/main.c
8972         * src/izt/i186.c
8973         * src/mcs51/main.c
8974         * src/pic/main.c
8975         * src/pic16/main.c
8976         * src/xa51/main.c
8977         * src/z80/main.c
8978
8979 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8980
8981         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8982         * device/lib/time.c: fixed warning "integer overflow in expression"
8983
8984 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8985
8986         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8987         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8988         constants are unsigned; added recognition of "u" flag for unsigned
8989         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8990         * src/SDCCval.c (valDiv, valMod): fixed signdness
8991         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8992         signedness of modulo, left and right shift
8993         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8994         * support/Util/SDCCerr.h: added warning W_INT_OVL
8995         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8996         * src/SDCCast.c (ast_print): improved output of constants
8997
8998 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8999
9000         Fixed some warnings when building with MSVC:
9001
9002         * as\mcs51\asdata.c
9003         * as\z80\asdata.c
9004         * as\mcs51\asm.h
9005         * as\z80\asm.h
9006         * link\z80\aslink.h
9007         * link\z80\lkdata.c
9008         * link\z80\lkeval.c
9009         * link\z80\lkgb.c
9010         * link\z80\lkihx.c
9011         * link\z80\lks19.c
9012         * link\z80\lksym.c
9013         * support\cpp2\cpplib.c
9014         * src\ds390\gen.c
9015         * src\mcs51\gen.c
9016
9017 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9018
9019         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9020
9021 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9022
9023         * support\librarian\clean.mk: Do not remove Makefile.
9024         * support\librarian\Makefile: added.
9025
9026 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9027
9028         Added librarian to MSVC build:
9029         * all.dsp
9030         * sdcc.dsw
9031         * support\librarian\librarian.dsp
9032
9033         'configure' not needed for librarian, removed:
9034         * support\librarian\configure
9035         * support\librarian\configure.in
9036         * support\librarian\config_in.h
9037         * support\librarian\Makefile.in
9038
9039         Hopefully these ones built the librarian and the rest of sdcc properly:
9040         * Makefile
9041         * Makefile.common.in
9042
9043         Messed up 'configure', so revert to previous version:
9044         * configure
9045         * configure.in
9046
9047 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9048
9049         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9050         there, while the mantissa of a double is "only" 53 bits wide.
9051
9052 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9053
9054         Adding sdcclib to the build.  MSVC project coming soon.
9055         Files added/changed:
9056
9057         * support\librarian\clean.mk
9058         * support\librarian\configure
9059         * support\librarian\configure.in
9060         * support\librarian\config_in.h
9061         * support\librarian\Makefile.bcc
9062         * support\librarian\Makefile.in
9063         * support\librarian\sdcclib.c
9064         * Makefile.bcc
9065         * Makefile
9066         * Makefile.common.in
9067         * configure
9068         * configure.in
9069
9070 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9071
9072         Linker now complaints if linked modules have conflicting options, for
9073         example, one compiled using --model-large and another one compiled with
9074         --model-small.  The following files were modified:
9075
9076         * as\mcs51\asdata.c
9077         * as\mcs51\aslink.h
9078         * as\mcs51\asm.h
9079         * as\mcs51\asmain.c
9080         * as\mcs51\asout.c
9081         * as\mcs51\i51pst.c
9082         * as\mcs51\lkdata.c
9083         * as\mcs51\lklibr.c
9084         * as\mcs51\lkmain.c
9085         * as\z80\asdata.c
9086         * as\z80\asm.h
9087         * as\z80\asmain.c
9088         * as\z80\asout.c
9089         * as\z80\z80pst.c
9090         * link\z80\aslink.h
9091         * link\z80\lkdata.c
9092         * link\z80\lklibr.c
9093         * link\z80\lkmain.c
9094         * src\SDCCglue.c
9095
9096 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9097
9098         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9099         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9100
9101 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9102
9103         * src/z80/mappings.i: fix _mul[us][int,long] entries
9104
9105 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9106
9107         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9108
9109 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9110
9111         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9112         * support/regression/tests/bitopcse.c: added
9113         fixed warning:
9114         * src/avr/gen.c:
9115         * src/pic/gen.c:
9116         * src/pic16/gen.c:
9117         * src/z80/gen.c:
9118         * src/xa51/gen.c:
9119
9120 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9121
9122         added support for new library format to z80, gbz80 linkers:
9123         *link/z80/aslink.h
9124         *link/z80/lklex.c
9125         *link/z80/lklib.c
9126         *link/z80/lklist.c
9127
9128 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9129
9130         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9131         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9132
9133 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9134
9135         added DUMMY_READ_VOLATILE:
9136         * src/SDCC.y:
9137         * src/avr/gen.c:
9138         * src/xa51/gen.c:
9139         * src/z80/gen.c:
9140         * src/pic/gen.c:
9141         * src/pic16/gen.c:
9142         * src/mcs51/gen.c:
9143         * src/ds390/gen.c:
9144         * src/SDCCcse.c (algebraicOpts): many improvements
9145         * src/SDCCcse.h: removed algebraicOpts()
9146         * src/SDCCicode.c (picDummyRead): added
9147
9148 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9149
9150         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9151         "Insufficient space in data memory".
9152
9153 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9154
9155         * src/mcs51/gen.c: fixed bug #771358
9156         * src/z80/gen.c: fixed bug #759087
9157
9158 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9159
9160         * src/pic16/glue.c: minor cleanup by Vangelis
9161
9162 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9163
9164         * device/include/regc515c.h: fixed #758477
9165         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9166         * device/lib/_gptrput.c: saved a few bytes
9167         * my tab spacing is 8, yours too?)
9168         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9169         * device/lib/serial.c: process RX bytes earlier than TX bytes
9170         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9171
9172 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9173
9174         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9175
9176 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9177
9178     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9179
9180 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9181
9182         * device/lib/Makefile.in: bad fix, reverted to 1.43
9183
9184 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9185
9186         * device/lib/Makefile.in: added missing z80 object files
9187
9188 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9189
9190         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9191         pic16 progress by Vangelis:
9192         * src/SDCCglobl.h:
9193         * src/SDCCmain.c:
9194         * src/pic/Makefile:
9195         * src/pic:
9196         * pic/Makefile:
9197         * pic16/device.c:
9198         * pic16/device.h:
9199         * pic16/gen.c:
9200         * pic16/gen.h:
9201         * pic16/genarith.c:
9202         * pic16/glue.c:
9203         * pic16/main.c:
9204         * pic16/pcode.c:
9205         * pic16/pcode.h:
9206         * pic16/pcodepeep.c:
9207         * pic16/peeph.def:
9208
9209 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9210
9211     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9212
9213 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9214
9215     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9216     added gbz80 build to MSVC project.
9217     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9218     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9219     from 8051 stuff and setup so it links using a .lnk file.
9220
9221 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9222
9223     * support/librarian/sdcclib.c: sdcc librarian.
9224     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9225     with sdcclib.
9226
9227 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9228
9229     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9230
9231 2003-07-02  Borut Razem <borut.razem AT siol.net>
9232
9233         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9234         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9235         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9236         src/xa51/main.c, src/z80/main.c:
9237         virtualization of glue() function: each port has it's own glue function,
9238         which is accessed by do_glue function pointer in PORT.general structure
9239
9240 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9241
9242         * DS800C400 fun, improved ROM interface and tinibios.
9243
9244 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9245
9246         * More support for DS80C400. Now includes beginning of interface to ROM.
9247
9248 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9249
9250         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9251
9252 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9253
9254         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9255
9256 2003-06-19  Borut Razem <borut.razem AT siol.net>
9257
9258         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9259
9260 2003-06-19  Borut Razem <borut.razem AT siol.net>
9261
9262         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9263         fixed Z80 port - crt0.o: cannot open.
9264
9265 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9266
9267         * support/Util/MySystem.c (merge_command): revert bad fix
9268
9269 2003-06-18  Borut Razem <borut.razem AT siol.net>
9270
9271         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9272
9273 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9274
9275         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9276         option --use-stdout sends errors to stdout instead of stderr.
9277
9278 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9279
9280         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9281
9282 2003-06-15  Borut Razem <borut.razem AT siol.net>
9283
9284         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9285         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9286         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9287         fixed width array of pointers replaced with sets;
9288         multiple include and lib paths ared transferred to preprocessor and linker
9289         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9290         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9291         fixed width array of pointers
9292         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9293         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9294         fixupPath(), getPathDifference()
9295         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9296         fixed width array of pointers
9297
9298 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9299
9300         * src/pic16/ralloc.c: fix warnings
9301         * src/pic16/pcode.c: fix warning
9302
9303 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9304
9305          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9306         know all the details, but essentially this set of changes enable
9307         the pic16 port to generate movff instructions and generate assembler
9308         directives,
9309         * src/SDCCmain.c:
9310         * src/pic16/gen.c:
9311         * src/pic16/glue.c:
9312         * src/pic16/pcode.c:
9313         * src/pic16/device.c:
9314         * src/pic16/main.c:
9315         * src/pic16/pcode.h:
9316         * src/pic16/pcoderegs.c:
9317         * src/pic16/ralloc.c:
9318         * src/pic16/ralloc.h:
9319
9320 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9321
9322         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9323         added option --vc, so sdcc errors and warnings are compatible with
9324         Microsoft Visual Studio.
9325
9326 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9327
9328         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9329           device/lib/libfloat.lib: added atof function.
9330
9331 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9332
9333         * doc/sdccman.lyx: updated to Lyx 1.3
9334         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9335         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9336         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9337
9338 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9339
9340         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9341
9342 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9343
9344         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9345           additions to the "related tools/documentation" section
9346
9347 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9348
9349         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9350
9351 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9352
9353         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9354         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9355
9356 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9357
9358         * doc/sdccman.lyx: fix double dash and other minor things
9359         * doc/Makefile: fix double dash
9360
9361 2003-05-28  Karl Bongers(patches from Martin Helmling)
9362         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9363           condition and ignore commands.
9364
9365 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9366
9367         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9368           is in parts still quite out of date, I did changes as far as I felt makes sense
9369           for a non-native english speaker.
9370           Please feel free to add to the manual or to correct my changes.
9371         * doc/Makefile: undid touching the date of intermediate tex files.
9372
9373 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9374
9375         * doc/sdccman.lyx: Manual has an index now
9376
9377 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9378
9379         Finalize muluint/mulsint and mululong/mulslong merging:
9380         * device/lib/_mulint.c
9381         * device/lib/_mullong.c
9382         * device/lib/gbz80/mul.s
9383         * device/lib/gbz80/stubs.s
9384         * device/lib/z80/mul.s
9385         * device/lib/z80/stubs.s
9386         * src/SDCCsymt.c (initCSupport)
9387
9388 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9389
9390         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9391         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9392           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9393           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9394           instead of /Zm500.
9395
9396 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9397
9398         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9399           the regression tests I'm not brave enough to enable 245.b, 245.c
9400         * doc/sdccman.lyx: added latex preamble for hyperref package.
9401           Using pdflatex this will give you a hyperlinked pdf file with
9402           bookmarks. (prepend '%' before /usepackage if this breaks something)
9403
9404 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9405
9406          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9407
9408 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9409
9410         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9411
9412 2003-05-21    <johan AT balder>
9413
9414         * src/SDCCglue.c (printIval): fixed bug #739934
9415
9416 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9417
9418         Applied patch from bug 737905 (renamed yylineo to mylineno):
9419         * src/altlex.c
9420         * src/SDCCast.c
9421         * src/SDCglobl.h
9422         * src/SDCC.lex
9423         * src/SDCCsymt.c
9424         * src/SDCCval.c
9425         * src/pic16/pcode.c: Cleaned warnings
9426         * src/pic16/pcodeflow.c: Cleaned warnings
9427         * src/pic16/pcoderegs.c: Cleaned warnings
9428
9429 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9430
9431         * src/pic16/pcode.c: Cleaned warnings
9432         * src/pic16/pcodepeep.c: Cleaned warnings
9433         * src/pic16/ralloc.c: Cleaned warnings
9434
9435 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9436
9437         * doc/sdccman.lyx: fixed bug 739745
9438         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9439
9440 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9441
9442         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9443         it can be defined with CFLAGS when running configure
9444         * src/SDCCmain.c: fixed compiling + linking with object files
9445
9446 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9447
9448         * configure.in: configure for pic16 port,
9449             added --disable-pic16-port
9450         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9451         * src/SDCCmain.c: linkOptions is changed to set *,
9452             added if/endif conditional macros to remove options help
9453             messages from optionsTable when a port is not configured, added
9454             support for the PIc16 port in the ports table, when executing
9455             the compiler with no port specified on command line, a default
9456             port is selected with the new macro DEFAULT_PORT which is
9457             defined in port.h, in setDefaultOptions() linkOptions is removed
9458             from initialization assignment, since now it is a set,
9459             parseCmdLine uses setParseWithComma for linkOptions, in
9460             linkEdit() linkOptions are accessed with new function indexSet()
9461             which returns the i'th item of a set variable. See SDCCset.c, in
9462             linkEdit() when calling buildCmdLine(), added linkOptions as
9463             last argument. Now users can pass arguments to gplink via the
9464             -Wl option, main() uses pic16glue() to glue up pic16 programs
9465         * src/SDCCpeeph.c: various changes to support pic16
9466         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9467             return the i'th item of the set
9468         * src/SDCCset.h: added function prototype for indexSet()
9469         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9470         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9471         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9472             added macro DEFAULT_PORT
9473         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9474         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9475             generated
9476         * src/pic16/glue.c: commented out some error producing lines
9477         * src/pic16/main.c: __config directives are commented out to stop
9478             gpasm complaining and test the linkage with gplink, _linkCmd and
9479             _asmCmd changed to be more gplink and gpasm friendly
9480         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9481             produced an error when parsed, peep rule 12 is added to utilize
9482             movff, but it is commented out since the pCode does not support
9483             yet a command with 2 address arguments
9484
9485 2003-05-18    <johan AT balder>
9486
9487         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9488         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9489 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9490
9491         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9492   Added feature to script commands from file.
9493
9494 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9495
9496         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9497         * src/SDCCutil.c: include ctype.h for win32
9498
9499 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9500
9501         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9502
9503 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9504
9505         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9506   Fixed so you can set breakpoints prior to run, run does not stop
9507   on entry now.  Add tbreak.  Other enhancements and fixes for use
9508   with ddd.
9509
9510 2003-05-12  Borut Razem <borut.razem AT siol.net>
9511
9512         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9513
9514 2003-05-11  Borut Razem <borut.razem AT siol.net>
9515
9516         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9517         the path of bin directory, so that PATH is the only env. variable, which has to be set
9518         in case of standard installation.
9519         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9520         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9521         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9522
9523 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9524
9525         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9526         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9527         temp files are in the port dir; clean the gen/test directory when
9528         generating new test.c
9529         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9530         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9531         * support/regression/tests/zeropad.c: added
9532
9533 2003-05-09    <johan AT balder>
9534
9535         * src/SDCCglue.c: fixed bug #597940
9536
9537 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9538
9539         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9540   cache sfr, optimize next,step, fix off by one sourceline,
9541   support ddd list function.
9542         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9543
9544 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9545
9546         * support/regression/HTMLgen.py: added compare_s2f()
9547         * support/regression/Makefile: redo 1.27
9548         * support/regression/generate-cases.py: redo 1.5
9549
9550 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9551
9552         * support/regression/tests/float.c: workaround 33 bit hex constant
9553         * support/regression/tests/simplefloat.c: fix division for host
9554
9555 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9556
9557         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9558         that tame's the PIC's over-aggressive optimizer.
9559
9560 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9561
9562          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9563          support for MSVC.
9564
9565 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9566
9567         Initial support for DS80C400. "Hello world" runs on TINIm400
9568         (with polled I/O).
9569
9570 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9571
9572          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9573          * Some notes on ddd usage added in debugger/README
9574          Martin Helmling adding more features and fixes for ddd GUI debugger.
9575          Code added for nexti, stepi, up, down, and other adjustments.
9576
9577 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9578
9579         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9580         * src/pic/peeph.def Added two rules to optimize carry manipulation
9581         * src/pic/* removed debug printfs
9582
9583 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9584
9585         * debugger/mcs51/cmd.c: added header newalloc.h
9586
9587 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9588
9589         * as/Makefile: new EXEEXT
9590         * as/z80/Makefile: remove trailing slash of BUILDIR
9591         * as/z80/clean.mk: new EXEEXT
9592         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9593         * support/cpp2/Makefile.in: new EXEEXT
9594         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9595
9596 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9597
9598         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9599         EXEEXT was introduced to fix all related problems with targets
9600         "clean", "install" and "uninstall"; a couple of further flaws
9601         especially with "clean" have been fixed too
9602         * as/mcs51/Makefile.in
9603         * as/mcs51/clean.mk
9604         * as/z80/Makefile
9605         * Makefile
9606         * clean.mk
9607         * debugger/mcs51/Makefile.in
9608         * debugger/mcs51/clean.mk
9609         * link/z80/Makefile
9610         * link/z80/Makefile.in
9611         * link/z80/clean.mk
9612         * link/Makefile
9613         * packihx/Makefile.in
9614         * packihx/clean.mk
9615         * sim/ucsim/Makefile
9616         * sim/ucsim/clean.mk
9617         * sim/ucsim/avr.src/Makefile.in
9618         * sim/ucsim/avr.src/clean.mk
9619         * sim/ucsim/s51.src/Makefile.in
9620         * sim/ucsim/s51.src/clean.mk
9621         * sim/ucsim/xa.src/Makefile.in
9622         * sim/ucsim/xa.src/clean.mk
9623         * sim/ucsim/z80.src/Makefile.in
9624         * sim/ucsim/z80.src/clean.mk
9625         * sim/ucsim/main_in.mk
9626         * sim/ucsim/packages_in.mk
9627         * sim/ucsim/gui.src/Makefile.in
9628         * sim/ucsim/gui.src/serio.src/Makefile.in
9629         * sim/ucsim/gui.src/serio.src/clean.mk
9630         * src/Makefile.in
9631         * src/clean.mk
9632         * support/cpp2/Makefile.in
9633         * support/cpp2/clean.mk
9634         * support/makebin/Makefile
9635         * support/makebin/clean.mk
9636         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9637         * doc/sdccman.lyx: --program-suffix no longer needed
9638
9639 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9640
9641          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9642          Martin Helmling added support for ddd GUI debugger.
9643          Code added to display assembly, set variables, and other commands
9644          to interface to ddd.
9645
9646 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9647
9648         * as/Makefile: fix target clean
9649         * as/clean.mk: fix target clean
9650         * as/z80/clean.mk: fix target clean
9651
9652 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9653
9654         * Makefile.common.in: added  AT EXEEXT AT
9655         * configure.in: removed all mingw32 stuff
9656         * configure: rebuilt from configure.in
9657         * doc/sdccman.lyx: updated section "installation"
9658         * support/scripts/sdcc_mingw32: adapted to configure
9659         * support/scripts/sdcc_cygwin_mingw32: added
9660
9661 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9662
9663         * src/pic Added object file support for the PIC port
9664         * src/pic Applied patch from Craig Franklin (this started the object file support)
9665         * src/regression Updated the PIC regression tests for object files
9666
9667 2003-04-20  Borut Razem <borut.razem AT siol.net>
9668
9669         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9670           lklex.c: In function `getfid':
9671           lklex.c:203: warning: array subscript has type `char'
9672         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9673           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9674         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9675           stack handling macros
9676
9677 2003-04-19  Borut Razem <borut.razem AT siol.net>
9678
9679         * "handling space characters in file path" task:
9680         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9681         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9682         * support/Util/MySystem.h: make it self-sufficient
9683         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9684           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9685           handling space characters in file path
9686         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9687           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9688         * support/Util/MySystem.c: handling space characters in executable's path
9689
9690 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9691
9692         * as/z80/Makefile: fix permanent rebuild of z80
9693         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9694         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9695
9696 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9697
9698         * src/SDCCopt.c: add special case optimization to replace modulo by
9699           a power of two with a bitwise AND.
9700
9701 2003-04-18    <johan AT balder>
9702
9703         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9704
9705 2003-04-17    <johan AT balder>
9706
9707         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9708         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9709
9710 2003-04-13  Borut Razem <borut.razem AT siol.net>
9711
9712         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9713         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9714           fixed mingw problem in adl_NORMALIZE_PATH
9715
9716 2003-04-12  Borut Razem <borut.razem AT siol.net>
9717
9718         * fixed "#pragma SAVE/RESTORE can not be nested":
9719         * src/SDCC.lex: reworked pragma handling functions
9720         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9721         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9722
9723 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9724
9725         * src/SDCCutil.c (pathEquivalent): defined but not used
9726         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9727         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9728         * configure: rebuilt from configure.in
9729         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9730         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9731         * device/include/Makefile.in: replace sdcc_datadir
9732         * device/lib/Makefile.in: replace sdcc_datadir
9733         * Makefile.common.in: add LDFLAGS from configure
9734         * packihx/Makefile.in: use LDFLAGS
9735         * src/Makefile.in: use LDFLAGS
9736         * support/cpp2/Makefile.in: add LDFLAGS from configure
9737         * support/makebin/Makefile: use LDFLAGS
9738         * .version: bumped version number to 2.3.5
9739
9740 2003-04-12  Borut Razem <borut.razem AT siol.net>
9741
9742         * completed "different paths" task:
9743         * src/SDCCmacro.c: fixed bug in handling quotes
9744         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9745         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9746
9747 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9748
9749         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9750
9751 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9752
9753         * ds390/gen.c ds390/peeph.def: fix bug 706781
9754
9755 2003-04-11  Borut Razem <borut.razem AT siol.net>
9756
9757         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9758
9759 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9760
9761         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9762         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9763          set - this bit used to not be set...).
9764         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9765           bad code in PIC Port
9766         * src/regression/and2.c added to test bug 609268
9767         * src/regression/Makefile added and2.c to regression test
9768
9769
9770 2003-04-08    <johan AT CP255758-A>
9771
9772         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9773         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9774         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9775
9776 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9777
9778         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9779         fix bug #487815
9780         * support/cpp2/Makefile.in: fix bug #487815
9781         * configure: rebuilt from configure.in
9782         * Makefile.common.in: docdir changed, new path suffixes
9783         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9784         * sdcc_vc_in.h: reflect changes from sdccconf.h
9785         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9786         * src/SDCCutil.h: remove BINDIR hack
9787         * doc/sdccman.lyx: update new path hierarchy
9788
9789 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9790
9791         * src/SDCCpeeph.c: added okToRemoveSLOC test
9792
9793 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9794
9795         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9796
9797 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9798
9799         * src/SDCCpeeph.c: added labelIsReturnOnly test
9800         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9801
9802 2003-04-05    <johan AT balder>
9803
9804         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9805         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9806         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9807         * src/SDCCast.c: fixed a warning
9808         * src/SDCCast.h: fixed a warning
9809         * src/SDCCicode.c (operandFromAst): fixed a warning
9810
9811 2003-04-04    <johan AT balder>
9812
9813         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9814         * src/SDCCast.c (decorateType): fixed bug #715076
9815         * src/SDCC.y: fixed bug #702907
9816
9817 2003-04-03    <johan AT balder>
9818
9819         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9820         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9821         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9822         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9823         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9824
9825 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9826
9827         * _decdptr.c: fix return values
9828         * _gptrget.c: fix return values
9829         * _gptrgetc.c: fix return values
9830         * _gptrput.c: fix return values
9831         * _mulint.c: fix return values
9832         * as/z80/Makefile: fix 'make -j' problem
9833
9834 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9835
9836         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9837         * configure.in: big cleanup, updated to autoconf 2.5x
9838         * configure: rebuilt from configure.in
9839         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9840         * sdcc_vc_in.h: reflect changes from sdccconf.h
9841         * doc/Makefile: fixed a flaw in "make install"
9842
9843 2003-04-02    <johan AT balder>
9844
9845         * src/ds390/gen.c (genCmp): no comments
9846         * src/mcs51/gen.c (genCmp): no comments
9847         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9848         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9849
9850 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9851
9852         * support/regression/generate-cases.py: place generated file in given sub directory
9853         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9854         * support/regression/Makefile: improvements for 'make -j';
9855         side effect: it's simpler and faster now
9856
9857 2003-03-31  Borut Razem <borut.razem AT siol.net>
9858
9859         * src/z80/main.c: link-{port} and as-{port} defined without path
9860         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9861
9862 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9863
9864         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9865
9866 2003-03-30  Borut Razem <borut.razem AT siol.net>
9867
9868         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9869           changed type of list parameter to set
9870         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9871         * src/port.h: changed type of do_assemble() parameter to set
9872         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9873           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9874           definition of "cppoutfilename" macro with NULL value in preProcess()
9875         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9876         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9877         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9878           replaced with set *binPathSet
9879         * shash_add() deallocates the item, if allready exsists, before adding the new one
9880         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9881
9882 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9883
9884         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9885           a nested for loop bug in the PIC port
9886         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9887           for loops
9888
9889 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9890
9891         * support/Util/dbuf.h: remove C++ stuff to make it portable
9892
9893 2003-03-28  Borut Razem <borut.razem AT siol.net>
9894
9895         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9896           literal strings in stringLiteral()
9897         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9898         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9899           to the project
9900
9901 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9902
9903         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9904
9905 2003-03-26    <johan AT balder>
9906
9907         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9908         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9909         * src/SDCCast.c (decorateType): fixed " -v < 3"
9910
9911 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9912
9913         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9914         Added Lenny Story's debug infrastructure changes:
9915         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9916         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9917         * src/cdbFile.c: added
9918         * src/SDCCdebug.c: added
9919         * src/SDCCdebug.h: added
9920         * src/SDCCast.c (createFunction)
9921         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9922         * src/SDCCmain.c (parseCmdLine, main)
9923         * src/SDCCmem.c (redoStackOffsets)
9924         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9925         * src/SDCCsymt.h
9926         * src/common.h
9927         * src/avr/gen.c (genAVRCode)
9928         * src/ds390/gen.c (gen390Code)
9929         * src/mcs51/gen.c (gen51Code)
9930         * src/pic/gen.c (genpic14Code)
9931         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9932         * src/xa51/gen.c (genXA51Code)
9933         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9934
9935 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9936
9937         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9938         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9939
9940 2003-03-22    <johan AT balder>
9941
9942         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9943
9944 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9945
9946         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9947         * doc/cdbfileformat.lyx: added, written by Lenny Story
9948         * doc/Makefile: added cdbfileformat.lyx
9949         * doc/clean.mk: added cdbfileformat.lyx
9950
9951 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9952
9953         * src/mcs51/peeph.def: fix bug #705773
9954
9955 2003-03-20    <johan AT balder>
9956
9957         An sfr/sbit can have an "at #" AND an initializer
9958         * src/SDCCsymt.c (checkSClass):
9959         * src/SDCCmem.c (allocGlobal):
9960         * src/SDCCmem.c (allocLocal):
9961         * src/SDCCast.c (createBlock):
9962
9963 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9964
9965         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9966
9967 2003-03-16    <johan AT balder>
9968
9969         Undid the hackup of const and volatile, the problem is much bigger
9970         * src/SDCC.y:1.65
9971         * src/SDCCast.c:1.171
9972         * src/SDCCglue.c:1.138
9973         * src/SDCCicode.c:1.146
9974         * src/SDCCsymt.c:1.150
9975         * src/SDCCval.c:1.65
9976
9977 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9978
9979         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9980         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9981
9982 2003-03-13    <johan AT balder>
9983
9984         Hackup const and volatile modifiers in type chains a bit:
9985         * src/SDCC.y:1.63
9986         * src/SDCCast.c:1.169
9987         * src/SDCCglue.c:1.136
9988         * src/SDCCicode.c:1.143
9989         * src/SDCCsymt.c1.146
9990         * src/SDCCsymt.h1.59
9991         * src/SDCCval.c:1.63
9992
9993 2003-03-12    <johan AT balder>
9994
9995         * src/SDCCBBlock.h: more LRH debugging junk
9996         * src/SDCCcflow.h: more LRH debugging junk
9997         * src/SDCCloop.c: more LRH debugging junk
9998         * src/SDCC.y (struct_declaration): fixed bug #697590
9999         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10000         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10001         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10002
10003 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10004         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10005         test function names must now match exactly).
10006         * src/SDCCcse.c: added special case in findCheaperOp to allow
10007         extending a short integer. Makes less awful code for bug 700121 test case.
10008
10009 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10010
10011         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10012         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10013
10014 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10015
10016         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10017         actually called (operandsNotEqual() was called for all
10018         operandsNotEqualX tests).
10019
10020 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10021
10022         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10023         with shorter literals. Fixes bug 700121.
10024
10025 2003-03-11    <johan AT balder>
10026
10027         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10028
10029 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10030
10031         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10032         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10033
10034 2003-03-10  Borut Razem <borut.razem AT siol.net>
10035
10036         * src/SDCCmain.c: pipe preprocessor's output
10037         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10038         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10039         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10040         which closes all pipes in pipeSet set
10041         * src/SDCCset.c: free deleted item in function deleteSetItem()
10042         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10043         moved from z80 to src subproject
10044         * .version: increased version number to 2.3.4
10045
10046 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10047
10048         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10049         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10050         * support/regression/ports/xa51/spec.mk: fix typo
10051
10052 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10053
10054         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10055
10056 2003-03-09  Borut Razem <borut.razem AT siol.net>
10057
10058         * src/SDCCmain.c: pipe preprocessor's output
10059         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10060         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10061         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10062         which closes all pipes in pipeSet set
10063         * src/SDCCset.c: free deleted item in function deleteSetItem()
10064         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10065         moved from z80 to src subproject
10066
10067 2003-03-09  Borut Razem <borut.razem AT siol.net>
10068
10069         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10070         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10071         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10072         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10073         * src/SDCCglobl.h: unification of WIN32 native definitions
10074
10075 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10076
10077         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10078
10079 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10080
10081         * src/configure.in:   check for endianess (even while cross-compiling)
10082         * src/configure:      check for endianess (even while cross-compiling)
10083         * src/configure_in.h: check for endianess (even while cross-compiling)
10084         * src/avr/gen.c:        remove old endianess stuff
10085         * src/mcs51/gen.c:      remove old endianess stuff
10086         * src/ds390/gen.c:      remove old endianess stuff
10087         * src/pic/gen.c:        remove old endianess stuff
10088         * src/pic/genarith.c:   remove old endianess stuff
10089         * src/pic/glue.c:       fix endianess check
10090         * src/pic16/gen.c:      remove old endianess stuff
10091         * src/pic16/genarith.c: remove old endianess stuff
10092         * src/pic16/glue.c:     fix endianess check
10093         * src/xa51/gen.c:       remove old endianess stuff
10094         * src/z80/gen.c:        fix endianess check
10095         * src/SDCCglue.c:       fix endianess check
10096         * src/ds390/peeph.def: fix bug 700036
10097
10098 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10099
10100         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10101         * src/configure: find appropriate data-types on host for SDCC's int and long
10102         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10103         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10104         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10105
10106 2003-03-07    <johan AT balder>
10107
10108         Just a big NOOP:
10109                 some minor cleanups before the big shot
10110                 OP_DEFS and OP_USES now use Kevin's protection
10111                 new option --nolabelopt
10112
10113         * src/SDCCBBlock.c:
10114         * src/SDCCast.c,:
10115         * src/SDCCcflow.c:
10116         * src/SDCCcse.c:
10117         * src/SDCCicode.c:
10118         * src/SDCCicode.h:
10119         * src/SDCClabel.c:
10120         * src/SDCCloop.c:
10121         * src/SDCCmain.c:
10122         * src/ds390/ralloc.c:
10123         * src/mcs51/ralloc.c:
10124         * src/pic/ralloc.c:
10125         * src/xa51/ralloc.c:
10126         * src/z80/ralloc.c:
10127
10128 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10129
10130         * src/pic/pcode.c (get_op): fix 64 bit warnings
10131         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10132         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10133         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10134         * support/regression/tests/malloc.c: fix 64 bit warnings
10135
10136 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10137
10138         * src/mcs51/gen.c (genMinus): fixed bug 696436
10139
10140 2003-03-02  Borut Razem <borut.razem AT siol.net>
10141
10142         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10143
10144 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10145
10146         * configure.in: test for mkstemp
10147         * sdccconf_in.h: add HAVE_MKSTEMP
10148
10149 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10150
10151         * device/include/ctype.h: removed warning while using --stack-auto
10152         * device/include/malloc.h: removed warning while using --stack-auto
10153         * device/include/string.h: removed warning while using --stack-auto
10154
10155 2003-02-23  Borut Razem <borut.razem AT siol.net>
10156
10157         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10158         because NDEBUG is defined (see man assert)
10159         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10160
10161 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10162
10163         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10164         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10165
10166 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10167
10168         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10169         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10170
10171 2003-02-18    <johan AT balder>
10172
10173         * as/mcs51/asmain.c (asmbl): module can start with a digit
10174         * as/z80/asmain.c (asmbl): module can start with a digit
10175
10176 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10177
10178         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10179         * src/asm.c: fix pipe() for Mingw32
10180
10181 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10182
10183         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10184         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10185         make -V work again; --c1mode reads now from stdin
10186         * doc/sdccman.lyx: added --c1mode
10187         * support/Util/SDCCerr.c: new messages for c1 mode
10188         * support/Util/SDCCerr.h: new messages for c1 mode
10189         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10190
10191 2003-02-15    <johan AT balder>
10192
10193         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10194
10195 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10196
10197         * doc/sdccman.lyx: Environment variables, -o and other minor things
10198
10199 2003-02-14    <johan AT balder>
10200
10201         * src/xa51/main.c: before anyone really tries to use it :)
10202
10203         * Install doc's in share/sdcc/doc
10204         * removed some obsolete files
10205         * Do a proper make distclean and uninstall
10206         M Makefile.common.in
10207         R sdccbuild.sh
10208         M as/Makefile
10209         M device/include/Makefile.in
10210         M device/lib/Makefile.in
10211         M doc/sdccman.lyx
10212         M link/Makefile
10213         M sim/ucsim/doc/Makefile.in
10214         M src/clean.mk
10215         R src/avr/peeph.rul
10216         R src/xa51/peeph.rul
10217         M support/cpp2/Makefile.in
10218         M support/makebin/Makefile
10219
10220
10221 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10222
10223         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10224
10225 2003-02-10  Borut Razem <borut.razem AT siol.net>
10226
10227         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10228         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10229         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10230         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10231         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10232         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10233         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10234         src/z80/Makefile.bcc: Borland Makefile cleanup
10235         * as/z80/Makefile.bcc: Added Borland Makefile
10236         * support/cpp2/borland.h: Removed
10237
10238 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10239
10240         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10241         * src/SDCC.lex: new pragma NOIV
10242         * src/SDCCglobl.h: new pragma NOIV
10243         * src/SDCCmem.c: new pragma NOIV
10244
10245 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10246
10247         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10248
10249 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10250
10251         * src/SDCCmain.c: signal handling is switched off by --debug
10252         * doc/Makefile: small fix for install; use clean.mk again
10253         * doc/clean.mk: clean *.pdf and *.html too
10254
10255 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10256
10257         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10258         * device/lib/printfl.c: fix a ds390 bug by making it portable
10259         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10260         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10261         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10262         * debugger/mcs51/cmd.c: converted multi-line string literals
10263         * sim/ucsim/globals.cc: converted multi-line string literals
10264         * src/SDCCmain.c: introduced signal handler to remove temp files
10265         * doc/Makefile: small tweaks, implement clean
10266         * doc: removed generated files
10267
10268 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10269
10270         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10271         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10272         Address Record is not correctly generated for DS390."
10273
10274 2003-02-02  Borut Razem <borut.razem AT siol.net>
10275
10276         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10277         * as/mcs51/asm.h: fixed compilation with Borland C
10278         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10279         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10280         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10281         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10282         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10283         src/z80/Makefile.bcc: delete $(LIB) only if exist
10284         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10285
10286 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10287
10288         * device/include/malloc.h: introduced NULL
10289         * device/include/string.h: introduced NULL
10290         * device/include/stdlib.h: introduced NULL
10291         * device/lib/_memcpy.c: removed NULL
10292         * device/lib/_strcat.c: removed NULL
10293         * device/lib/_strchr.c: removed NULL
10294         * device/lib/_strcmp.c: removed NULL
10295         * device/lib/_strcpy.c: removed NULL
10296         * device/lib/_strcspn.c: removed NULL
10297         * device/lib/_strlen.c: removed NULL
10298         * device/lib/_strncat.c: removed NULL
10299         * device/lib/_strncmp.c: removed NULL
10300         * device/lib/_strncpy.c: removed NULL
10301         * device/lib/_strpbrk.c: removed NULL
10302         * device/lib/_strrchr.c: removed NULL
10303         * device/lib/_strspn.c: removed NULL
10304         * device/lib/_strstr.c: removed NULL
10305         * device/lib/_strtok.c: removed NULL
10306         * device/lib/malloc.c: removed NULL, include own header
10307
10308 2003-02-02    <johan AT balder>
10309
10310         * 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
10311         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10312         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10313         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10314         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10315         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10316
10317 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10318
10319         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10320         area 'DATA'"
10321
10322 2003-02-01    <johan AT balder>
10323
10324         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10325
10326 2003-01-31    <johan AT CP255758-A>
10327
10328         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10329
10330 2003-01-30    <johan AT balder>
10331
10332         * src/SDCCBBlock.c: automatic bug detection
10333         * src/SDCCicode.c: automatic bug detection
10334
10335 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10336
10337         * src/SDCCglobl.h:   now --xram-size 0 works
10338         * src/SDCCmain.c:    now --xram-size 0 works
10339
10340 2003-01-29    <johan AT balder>
10341
10342         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10343
10344 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10345
10346         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10347         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10348         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10349         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10350         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10351         * src/SDCCmain.c:    Added options --xram-size and --code-size
10352
10353 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10354
10355         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10356         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10357
10358 2003-01-27    <johan AT balder>
10359
10360         * src/SDCC.y: fixed bug #613764
10361
10362 2003-01-26    <johan AT balder>
10363
10364         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10365         * src/SDCCsymt.h: fixed bug #673374
10366         * src/SDCCglue.c: fixed bug #661910
10367         * src/SDCCast.c: fixed bug #458099 and 673374
10368
10369 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10370
10371         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10372         * as/mcs51/strcmpi.h: added
10373         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10374         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10375         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10376         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10377         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10378         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10379         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10380         * as/mcs51/Makefile.aslink: new module strcmpi
10381         * as/mcs51/Makefile.asx8051: new module strcmpi
10382         * as/mcs51/Makefil.bcc: new module strcmpi
10383         * as/mcs51/Makefile.in: new module strcmpi
10384         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10385
10386 2003-01-26    <johan AT balder>
10387
10388         * src/SDCCglue.c: reverted back to 1.124
10389         * src/SDCCast.c: reverted back to 1.156
10390         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10391
10392 2003-01-25    <johan AT balder>
10393
10394         * src/SDCCglue.c: A better fix for bug #661910
10395         * src/SDCCast.c: A better fix for bug #661910
10396         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10397
10398 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10399
10400         * src/Makefile.in: remove spawn.o
10401         * src/SDCCmain.c: remove spawn.h
10402         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10403         * src/spawn.c: removed
10404         * src/spawn.h: removed
10405         * support/regression/ports/ds390/spec.mk: link with -r
10406
10407 2003-01-24    <johan AT CP255758-A>
10408
10409         * src/ds390/gen.c (aopOp): fixed bug #667458
10410         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10411         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10412         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10413
10414 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10415
10416         * src/mcs51/peeph.def: better assembler identation by Frieder
10417         * src/mcs51/gen.c: better assembler identation by Frieder
10418
10419 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10420
10421         * as/z80/string.h: removed for gcc 3.2
10422         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10423         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10424
10425 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10426
10427         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10428         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10429         * support/regression/Makefile: separate temp files for ports
10430         * support/regression/generate-cases.py: separate temp files for ports
10431         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10432         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10433
10434 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10435
10436         * moved tinitalk to device/examples/ds390
10437
10438 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10439
10440         * as/mcs51/lkmem.c: rflag is for DS390
10441         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10442         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10443                          (linkEdit): move mem- and map-files the same way as ihx-files
10444         * src/z80/main.c (_setDefaultOptions): removed --generic
10445         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10446         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10447         * src/pic/glue.c (picglue): --c1mode works again
10448         * src/pic16/glue.c (pic16glue): --c1mode works again
10449         * src/asm.c (printCLine): fix #660034
10450
10451 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10452
10453         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10454         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10455         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10456         * as/mcs51/lkmem (summary): better fix for sp problem
10457         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10458         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10459         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10460                                               remove --stack-after-data
10461
10462 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10463
10464         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10465         * src/SDCCutil.c (join): ugly bug: missing '\0'
10466         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10467
10468 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10469
10470         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10471         * src/port.h: typo
10472         * src/pic/main.c (_asmCmd): gpasm supports -o
10473         * src/z80/main.c: more general macros
10474         * device/lib/Makefile.in: remove intermediate files
10475
10476 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10477
10478         * .version: Bumped version number to 2.3.3
10479         * src/SDCCBBlock.c: new option -o
10480         * src/SDCCglobl.h: new option -o
10481         * src/SDCCglue.c: new option -o
10482         * src/SDCCmain.c: new option -o
10483         * src/asm.c: new option -o
10484         * src/ds390/main.c: new option -o
10485         * src/pic/glue.c: new option -o
10486         * src/pic/pcode.c: new option -o
10487         * src/pic/ralloc.c: new option -o
10488         * src/pic16/glue.c: new option -o
10489         * src/pic16/pcode.c: new option -o
10490         * src/pic16/ralloc.c: new option -o
10491         * src/z80/main.c: new option -o
10492         * device/lib/Makefile.in: use -o
10493         * support/regression/ports/ds390/spec.mk: use -o
10494         * support/regression/ports/gbz80/spec.mk: use -o
10495         * support/regression/ports/mcs51/spec.mk: use -o
10496         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10497         * support/regression/ports/z80/spec.mk: use -o
10498         * support/regression/ports/ucz80/spec.mk: use -o
10499         * support/regression/ports/xa51/spec.mk: use -o
10500         * support/regression/fwk/lib/timeout.c: fix usage string
10501
10502 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10503         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10504
10505 2003-01-07    <johan AT balder>
10506
10507         * src/SDCCast.c (decorateType): fixed bug #600035
10508
10509 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10510         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10511         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10512         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10513         * src/pic/pcode.c: outcommented unused variable to remove warnings
10514         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10515
10516 2003-01-06    <karl AT turbobit.com>
10517         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10518    regression tests.
10519
10520 2003-01-06    <johan AT balder>
10521
10522         * src/SDCCicode.c: fixed array add
10523
10524 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10525         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10526         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10527
10528 2003-01-04    <johan AT balder>
10529
10530         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10531
10532 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10533         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10534
10535 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10536         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10537         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10538
10539 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10540         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10541
10542 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10543         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10544
10545 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10546         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10547
10548 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10549
10550     * in \sdcc\as\mcs51\ changed these files in order to create an
10551     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10552     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10553     following files to include the previous two files: aslink.dsp,
10554     Makefile.aslink, Makefile.bcc, and Makefile.in.
10555
10556     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10557     .adb instead of .cdb
10558
10559 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10560
10561         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10562         value from option --iram-size.
10563
10564 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10565
10566         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10567         dram[] array.
10568
10569 2002-09-18    <wiml AT hhhh.org>
10570
10571         * SDCClrange.h: exposed setFromRange() and setToRange()
10572         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10573           packRegsForAccUse() (bug 542397)
10574         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10575           multiple times and emitting the fetch operations more than once
10576           added aopGetUsesAcc() function to allow binary operators to
10577           fetch their operands in the correct order; made genMinus() emit
10578           compact code for X = LITERAL - Y
10579
10580 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10581         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10582         sprintf() in line 1267.
10583
10584 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10585         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10586         like ports.
10587
10588 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10589         Changes to aslink (All the changes are marked with 'JCF'):
10590
10591         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10592         summary().
10593
10594         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10595         area BSEG.  Also moves, if possible, the DATA area down into the internal
10596         ram so more space is available.
10597
10598         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10599         sflag.
10600
10601         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10602         not bytes.  Function summary() which creates a memory usage summary
10603         file with extension .mem.  Reports of overlaping stack and small stack
10604         size.  If the space for the stack is less than 16 bytes aslink trows a
10605         warning.
10606
10607         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10608         the 8051.  Option 'y' for memory summary output file.
10609
10610         Changes to sdcc (All the changes are marked with 'JCF'):
10611
10612         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10613
10614         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10615         overlaying area for it (uses RegBankUsed[4]).
10616
10617         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10618         bank zero as used by default.  By default aslink locates the stack
10619         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10620         the creation of the .mem file.  Delegates the allocation of data area
10621         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10622         the begining of the stack area to aslink.
10623
10624         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10625         glue() in SDCCglue.c creates an area for it.
10626
10627 2002-09-03  Borut Razem <borut.razem AT siol.net>
10628         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10629         sdcc/src/pic/glue.c:
10630         introduced atexit() handler for teporay files removal in case of
10631         errors, assertions, ...
10632
10633 2002-08-29  Borut Razem <borut.razem AT siol.net>
10634         * sdcc/support/cpp2/auto-host_vc_in.h:
10635         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10636         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10637         Maybe there is a similar problem with BORLANDC? It should be checked!
10638
10639         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10640         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10641         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10642         was not executed, and the compiler (cl) launched a warning:
10643         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10644
10645 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10646         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10647
10648 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10649         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10650
10651         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10652           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10653           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10654           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10655           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10656           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10657           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10658         - added Release configuration in VS projects
10659         - review of compiler an linker options
10660         - VC .exe files are generated in bin_vc directory, not to interfere
10661           with binaries generated from other projects (cygwin, mingw, bcc ...)
10662
10663         * sdcc/src/yacc.dsp: added
10664
10665         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10666         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10667         and insert the version number definitions from .version
10668
10669         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10670
10671         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10672         added - genarate auto-host.h using auto-host_vc_in.h as template
10673
10674         * sdcc/sdcc_vc.h,
10675         removed from CVS, generated automatically
10676
10677 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10678         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10679
10680 2002-08-11  Borut Razem <borut.razem AT siol.net>
10681         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10682
10683 2002-08-10  Borut Razem <borut.razem AT siol.net>
10684         * src/SDCCmain.c (main):
10685         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10686         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10687         The consequence was that some temporary files were not removed.
10688
10689         * src/SDCCglue.c:
10690         unification of code in functions tempfilename() and tempfile():
10691         function tempnam() is defined in Visual Studio 6.0 and .NET
10692
10693         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10694
10695         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10696           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10697         - removed compiler command line option /WX: Treats all warnings as errors
10698         - update a list of source files, included into the project
10699
10700         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10701           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10702         changed project type to Generic Project so that can be correcly converted to VS.NET project
10703
10704         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10705
10706         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10707
10708         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10709
10710         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10711         added return 0 statements after assert() to make compiler happy
10712
10713         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10714         added newline in the def file to keep MSC compiler satisfied
10715
10716         * sdcc/src/z80/gen.c:
10717         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10718           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10719         - solved MSC error in function aopDump()
10720
10721         * sdcc_vc.h: define PREFIX as "\\sdcc"
10722
10723 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10724         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10725
10726 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10727         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10728         - Rewrote the register banking algorithm.
10729         - Added pCode live-range analysis to registers (for now, only non-used and
10730         singly-used registers optimized away)
10731
10732         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10733
10734         * 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.
10735
10736 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10737         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10738
10739 2002-04-22  Michael Hope  <michaelh AT vroom>
10740
10741         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10742
10743         * configure.in (DD_COPT): Added include support required for gbdk.
10744
10745         * .version: Bumped version number just to increase it.
10746
10747         * src/SDCCmain.c: Added -nostdinc to the default options.
10748
10749 2002-04-15  Michael Hope  <michaelh AT vroom>
10750
10751         * device/lib/z80/printf.c (sprintf): Added.
10752
10753         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10754
10755         * src/z80/peeph.def: Added transpose redundent load rule.
10756
10757         * src/z80/main.c: Added force callee saves for jaune.
10758
10759         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10760
10761         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10762
10763 2002-03-28  Johan Knol  <johan AT balder>
10764
10765         * src/SDCCval.c: fixed bug #532436
10766
10767 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10768         * /src/port.h:
10769         Added "char *Processor" field to the port structure.
10770
10771         * /src/SDCCmain.c:
10772         Added -p option. Allows port dependent processor to be specified.
10773
10774         * all ports:
10775         Initialized the new field char *Processor field to NULL in all ports
10776
10777         * /src/pic/*:
10778         Compiler generated registers for interrupt context saving
10779         were not getting allocated.
10780
10781 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10782
10783         * /src/SDCCast.c:
10784         Fixed left shift. Will promote the left side of a left shift
10785         if a) left shifting more than size of operand or b) when assigned
10786         to something size > size of left side
10787
10788 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10789         * src/pic/*
10790         tons of changes. Register allocation has been
10791         rewritten. Added customization for the various PICs. Flow
10792         analysis is restructured. ...
10793
10794         * src/pic/device.h:
10795         Added
10796
10797         * src/pic/device.c:
10798         Added. device.c is a PIC port hack to accomodate variations
10799         in PIC devices.
10800
10801 2002-03-13  Michael Hope  <michaelh AT vroom>
10802
10803         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10804
10805 2002-03-04  johanknol  <johanknol AT manik>
10806
10807         * /src/SDCCval.c: fixed
10808
10809         const unsigned char arr[][2] = { { 0, 1 } };
10810         t18.c:1: error: Initializer element is not constant
10811
10812 2002-03-04  bela  <bela AT manik>
10813
10814         * /device/include/mcs51reg.h:
10815         ds89c420 register definition update
10816
10817 2002-03-03    <johan AT FRIJA>
10818
10819         * support/Util/SDCCerr.c: did something, but don't no why anymore
10820
10821         * support/regression/tests/bug-524691.c: made it a little less shy
10822
10823         * src/SDCCast.c (decorateType): fixed bug #524697
10824
10825         * src/SDCCast.c: made some lineno improvements
10826
10827         * src/SDCCval.c (getNelements): changed warning to error
10828
10829         * src/SDCCglue.c (printIvalArray): changed warning to error
10830
10831         * src/SDCCicode.c: fixed a warning for mingw
10832
10833         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10834
10835         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10836
10837 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10838
10839         * src/ds390/peeph.def:
10840         Added some more peephole rules
10841
10842         * src/ds390/gen.c: Various fixes & enhancements
10843
10844         * src/SDCClrange.c, src/SDCClrange.h:
10845         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10846
10847         * src/ds390/ralloc.c:
10848         various fixes & enhancements (ds390) specific
10849
10850         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10851         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10852         from rallocs.
10853
10854         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10855
10856 2002-03-02    <johan AT FRIJA>
10857
10858         * src/SDCCast.c (decorateType): fixed bug #524708
10859
10860         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10861
10862         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10863
10864 2002-03-01  Michael Hope  <michaelh AT vroom>
10865
10866         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10867
10868         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10869
10870 2002-03-01    <johan AT FRIJA>
10871
10872         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10873
10874         * src/SDCCast.c (decorateType): fixed bug #524209
10875
10876         * src/SDCCval.c (valNot): fixed bug #524195
10877
10878 2002-02-26    <johan AT balder>
10879
10880         * src/xa51/gen.c: fixed a warning
10881
10882         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10883
10884         * src/SDCCast.c (decorateType): fixed bug #522534
10885
10886 2002-02-23    <johan AT balder>
10887
10888         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10889
10890 2002-02-22    <johan AT balder>
10891
10892         * src/SDCCast.c: fixed bug #514865
10893
10894         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10895
10896 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10897
10898         * sdcc/src/SDCCloop.c:
10899         Previous fix was not good. basic blocks that have "break" or "return" are
10900         not really partof a loop , but live ranges used in these blocks should
10901         be live thru the entire loop, so set partOfLoop but don't add them to
10902         loop region
10903
10904 2002-02-21    <johan AT FRIJA>
10905
10906         * src/SDCCcse.c: fixed bug #514308
10907
10908 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10909
10910         * src/SDCCloop.c:
10911         Fixed BUG #519583. If a conditional block ended in a return/break
10912         statement inside a loop, it was not being considered part of the loop.
10913
10914         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10915
10916 2002-02-10  Karl Bongers <karl AT turbobit.com>
10917
10918         * debugger/*:
10919         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10920         with lots of comments and notes.
10921
10922         * device/examples/test2.c:
10923         Fix bug, "red" variable not being initialized(compiler complained).
10924
10925         * device/examples/Makefile, examples/test3.c:
10926         Add Makefile in device/examples folder, compiles test3.c
10927         for use as a multiple module SDCDB test case.
10928
10929         * sim/ucsim/cmd.src/cmdset.cc:
10930         Took out debug printfs in ucsim "next" command.
10931
10932         * sim/ucsim/xa.src:
10933         Karl and Johan start ucsim XA support.  Most dissassembly working,
10934         about 75% emulation done(plenty of work remaining).
10935
10936         * sim/ucsim/z80.src:
10937         Add Z80 support to ucsim, add test-ucz80 regression test,
10938         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10939         Notice z80 compiler fails on examples/test3.c/crc code.
10940
10941 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10942
10943         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10944         Added support for --parms-in-bank1
10945
10946         * src/ds390/peeph.def:
10947         added a few more peephole optimzations
10948
10949         * src/ds390/main.c:
10950         1) added __builtin_inp & __builtin_outp used to read in data of given length
10951            from a memory mapped port
10952         2) added __builtin_memcmp
10953         3) added __builtin_swapw swap bytes of a short
10954
10955         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10956         1) handle multiple send & receives from register bank1
10957         2) ralloc can now allocate DPTR1 to some liveRanges
10958
10959         * src/SDCCsymt.c, src/SDCCsymt.h:
10960         changes to handle multiple sends & receives
10961
10962         * src/SDCCptropt.h:
10963         added some pointer arithmetic optimization
10964
10965         * src/SDCCptropt.c:
10966         added some pointer arithmetic optimizations but not stable yet so not
10967         called from anywhere (will get this working shortly)
10968
10969         * src/SDCCopt.c: fixed for multiple sends & receives
10970
10971         * src/SDCCmain.c:
10972         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10973         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10974            set preprocessor defines (depending on options)
10975
10976         * src/SDCCicode.c, src/SDCCicode.h:
10977         changes made to handle multiple sends & receives
10978
10979         * src/SDCCglobl.h:
10980         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10981
10982         * src/SDCCcse.c, src/SDCCcse.h:
10983         added function findbackward def (to be used in upcoming optimization)
10984
10985         * src/SDCCcflow.c, src/SDCCcflow.h:
10986         added function returnAtEnd - to determine if a basic block terminates with
10987         a RETURN iCode
10988
10989         * src/SDCCast.c, src/SDCCast.h:
10990         added option parms-in-bank1
10991
10992         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10993         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10994         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10995         adjusted for --parms-in-bank1 option
10996
10997         * device/include/string.h:
10998         donot redefine "reentrant" keyword
10999
11000         * device/include/ds80c390.h: Added some more SFRs
11001
11002 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11003
11004         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11005
11006 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11007
11008         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11009
11010 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11011
11012         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11013
11014 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11015
11016         * Added --xram-movc option
11017
11018 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11019
11020         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11021
11022 2002-01-11  Johan Knol
11023
11024         * Added math lib of Jesus Calvino-Fraga
11025
11026 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11027
11028         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11029         * support/regression/Makefile: new target test-mcs51-stack-auto
11030         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11031
11032 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11033
11034         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11035
11036 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11037
11038         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11039
11040 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11041
11042         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11043
11044         * src/SDCCglue.h: add definition for printIvalChar()
11045
11046 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11047
11048         * src/SDCCast.c: fix #498138 by Johan
11049
11050         * src/SDCCglue.c: fix #498138 by Johan
11051
11052 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11053
11054         * support/regression/Makefile: fix clean
11055
11056         * support/regression/ports/ds390/support.c: fix transmission of last character
11057
11058 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11059
11060         * /sdcc/src/ds390/gen.c:
11061         a) improved computing address of stack variable
11062         b) took out some #if 0 code
11063         c) improved parmBytes adjustment
11064         d) improved genPlusIncr & genMinusIncr
11065         e) genCmp could generate bad code (when left assigned to DPTR)
11066         f) Fixed bug in hasInc
11067
11068         * /sdcc/src/ds390/ralloc.c:
11069         a) packRegsForSupport could mess up live information (Fixed)
11070         b) packRegsDPTRuse could be incorrect for left & right shift
11071
11072         * /sdcc/src/mcs51/ralloc.c:
11073         packRegsForSupport could mess up the live information (Fixed)
11074
11075         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11076
11077         * /sdcc/src/SDCCast.c:
11078         can reverse a loop even if function call is present as long
11079         as the loop control variable is local & is not passed as parameter
11080
11081 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11082
11083         * /sdcc/ChangeLog: *** empty log message ***
11084
11085         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11086         More builtin function additions for TININative
11087
11088         * /sdcc/src/ds390/ralloc.c:
11089         Had broken the regression testsuite
11090
11091         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11092
11093         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11094         Added funcattr hasStackParms will be set for reentrant functions when there
11095         are paramteres on the stack, this helps in minimizing frame pointer generation
11096         typeFromStr can handle function pointers now
11097
11098         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11099         *** empty log message ***
11100
11101 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11102
11103         * /src/ds390/gen.c, /src/ds390/main.c:
11104         More builtin function additions for TININative
11105
11106         * /src/ds390/ralloc.c:
11107         Had broken the regression testsuite
11108
11109         * /src/SDCCast.c: Fixed a bug in dumptree
11110
11111         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11112         Added funcattr hasStackParms will be set for reentrant functions when there
11113         are paramteres on the stack, this helps in minimizing frame pointer generation
11114         typeFromStr can handle function pointers now
11115
11116         * /doc/builtins.txt, /doc/TININative.txt:
11117         *** empty log message ***
11118
11119
11120 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11121
11122         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11123         ALPHA version for -mTININative
11124
11125         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11126         updated to reflect changes in the port structure
11127
11128         * /src/port.h:
11129         added function do_assemble (similar to do_link) if non-null this function
11130         will be called to do assembly (-mTININative) requires a multi command
11131         assembly
11132         added function genAssemblerEnd will be called to generate assembler Epilogue
11133
11134         * /src/SDCCsymt.c:
11135         added _JavaNative to debug info printing
11136
11137         * /src/SDCCmain.c: added option --tini-libid
11138         added port->do_assemble function (-mTININative) has a multi command assemble
11139
11140         * /src/SDCCglue.c: Disabled "constExpr" check
11141         added port->genAssemblerEnd function
11142
11143         * /src/SDCCglobl.h: Added option --tini-libid value
11144
11145         * /src/SDCCast.h:
11146         tookout optimizeCompare from the header (has no external references)
11147
11148         * /src/SDCCast.c: made one more function "static"
11149
11150 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11151
11152         * src/z80/mappings.i: Added z80asm support.
11153
11154         * src/z80/main.c: Added z80asm support on --asm=z80asm
11155
11156         * src/z80/gen.c: Fixed asm portability issues.
11157
11158         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11159
11160         * src/SDCCglue.c (printExterns): Added global/extern split.
11161
11162 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11163
11164         * support/regression/Makefile: added test for mcs51 model large
11165
11166         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11167
11168         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11169
11170 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11171
11172         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11173
11174 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11175
11176         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11177
11178         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11179
11180 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11181
11182         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11183
11184         * support/regression/tests/simplefloat.c: Port to mcs51.
11185
11186 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11187         * support/regression/tests/bug-485362.c: Added.
11188
11189         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11190
11191         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11192
11193         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11194
11195         * src/z80/gen.c (aopDump): Added a dump function.
11196
11197 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11198         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11199
11200         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11201
11202         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11203
11204         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11205
11206         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11207
11208         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11209
11210         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11211
11212         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11213
11214         * support/regression/ports/ds390/support.c: Use tinibios.
11215
11216         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11217
11218 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11219
11220         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11221         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11222
11223         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11224
11225         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11226
11227 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11228
11229         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11230
11231         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11232         (packRegsForIYUse): Created and optimised.
11233
11234 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11235
11236         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11237 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11238
11239         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11240
11241         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11242
11243         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11244
11245 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11246
11247         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11248
11249         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11250
11251 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11252
11253         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11254
11255         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11256
11257         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11258
11259 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11260
11261         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11262         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11263         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11264
11265         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11266
11267         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11268         (genNotFloat): Added.
11269         (genUminusFloat): Added.
11270
11271         * device/lib/z80/Makefile: Added floating pt stubs.
11272
11273         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11274
11275         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11276
11277         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11278
11279 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11280
11281         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11282
11283         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11284
11285         * sdcc/support/regression/Makefile: Add port ds390.
11286
11287         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11288
11289         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11290
11291         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11292
11293         * sdcc/support/regression/ports/ds390/support.c: Added.
11294
11295         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11296
11297         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11298
11299         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11300
11301 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11302
11303         * device/include/malloc.h: Added z80 and gbz80 support.
11304
11305         * device/lib/gbz80/heap.s: Added.
11306
11307         * device/lib/z80/heap.s: Added.
11308
11309         * device/lib/malloc.c: Added z80 and gbz80 support.
11310
11311         * support/regression/tests/malloc.c (testMalloc): Added.
11312
11313         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11314
11315         * support/regression/tests/bug-478094.c: Added.
11316
11317         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11318
11319 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11320
11321         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11322
11323         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11324
11325         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11326
11327         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11328
11329         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11330
11331 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11332
11333         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11334
11335 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11336
11337         * support/regression/tests/bug-477927.c: Added.
11338
11339         * src/z80/peeph.def: Added minor rules.
11340
11341         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11342
11343         * src/z80/peeph.def: Added jump optimisation modification.
11344
11345 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11346
11347         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11348
11349 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11350
11351         * support/regression/tests/funptrs.c: Added.
11352
11353 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11354
11355         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11356
11357 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11358
11359         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11360
11361         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11362
11363         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11364         (movLeft2ResultLong): Created.
11365
11366         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11367         (joinPushes): Added.  Joins two char pushes into a word push.
11368
11369 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11370
11371         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11372
11373         * support/makebin/Makefile (install): Added creation of dest dir.
11374
11375 2001-10-24 Karl Bongers <karl AT turbobit.com>
11376
11377         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11378
11379 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11380
11381         * src/z80/ralloc.c: Turned off faulty pack for one use.
11382
11383         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11384
11385         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11386
11387 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11388
11389         * support/regression/Makefile: Improved clean
11390
11391         * support/regression/ports/gbz80/spec.mk: Added clean
11392
11393         * support/regression/ports/host/spec.mk: Added clean
11394
11395         * support/regression/ports/z80/spec.mk: Added clean
11396
11397         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11398
11399         * support/regression/ports/mcs51/timeout.c: little improvements
11400
11401 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11402
11403         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11404
11405         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11406
11407         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11408
11409 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11410
11411         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11412
11413         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11414
11415 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11416         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11417
11418         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11419
11420         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11421
11422         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11423
11424         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11425
11426         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11427
11428         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11429
11430         * support/regression/tests/longor.c: Added.
11431
11432 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11433
11434         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11435
11436         * as/mcs51/aslink.h: define PATH_MAX
11437
11438         * as/mcs51/asm.h: define PATH_MAX
11439
11440         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11441
11442         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11443
11444         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11445
11446         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11447
11448         * src/SDCCglobl.h: define PATH_MAX
11449
11450         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11451
11452         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11453
11454 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11455
11456         * src/z80/gen.c (gencjneshort): Fixed
11457
11458         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11459
11460 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11461
11462         * support/regression/tests/bug-469671.c: Added.
11463
11464         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11465
11466 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11467
11468         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11469
11470         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11471
11472 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11473
11474         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11475
11476         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11477
11478         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11479
11480         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11481
11482         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11483
11484         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11485
11486         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11487
11488 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11489
11490         * 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.
11491
11492         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11493
11494         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11495
11496 2001-10-07    <johan AT FRIJA>
11497
11498         * device/lib/gets.c (gets): fixed the return value.
11499
11500 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11501         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11502
11503         * 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.
11504
11505         * 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.
11506
11507         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11508
11509         * src/pic/gen.c: Removed Safe_strdup.
11510
11511         * configure.in: Added option to enable libgc support.
11512
11513         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11514         (bitVectUnion): Optimised.
11515         (bitVectIntersect): Optimised.
11516         (bitVectBitsInCommon): Optimised.
11517         (bitVectCplAnd): Optimised.
11518
11519         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11520
11521 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11522
11523         * src/SDCCmain.c: distinguish between assembler debug and plain options
11524
11525         * src/avr/main.c:   remove standard assembler options
11526
11527         * src/ds390/main.c: remove standard assembler options
11528
11529         * src/mcs51/main.c: remove standard assembler options
11530
11531         * src/port.h: removed "PENDING" comment
11532
11533 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11534
11535         * src/device/lib/_mulint.c  : new, with assember functions
11536
11537         * src/device/lib/_mullong.c : new, with assember functions
11538
11539         * src/device/lib/_divuint.c : with assember functions
11540
11541         * src/device/lib/_divsint.c : with assember functions
11542
11543         * src/device/lib/_divulong.c: with assember functions
11544
11545         * src/device/lib/_divslong.c: with assember functions
11546
11547         * src/device/lib/_moduint.c : with assember functions
11548
11549         * src/device/lib/_modsint.c : with assember functions
11550
11551         * src/device/lib/_modulong.c: with assember functions
11552
11553         * src/device/lib/_modslong.c: with assember functions
11554
11555         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11556
11557         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11558
11559         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11560                                       replaced _mululong.c and _mulslong.c by _mullong.c
11561
11562 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11563
11564         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11565
11566 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11567
11568         * src/SDCCglue.c: test, if win32api is available for MINGW
11569
11570 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11571
11572         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11573         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11574         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11575         * support/regression/ports/host/spec.mk: removed GENERIC
11576         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11577         * support/regression/ports/z80/spec.mk: removed GENERIC
11578
11579 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11580
11581         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11582
11583         * support/regression/tests/bug-467035.c: Created.
11584
11585 2001-10-01    <johan AT FRIJA>
11586
11587         * src/SDCC.y: fixed bug #466586 part 1
11588
11589 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11590
11591         * SDCCicode.c: z80 has no generic pointers
11592         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11593
11594 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11595
11596         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11597
11598 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11599
11600         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11601
11602         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11603
11604 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11605
11606         * configure.in: Fixed up so that ucsim is only configured once.
11607
11608         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11609
11610         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11611         (getPathDifference): As above.
11612
11613         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11614
11615         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11616
11617 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11618         * .version: Updated to 2.3.1
11619
11620         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11621         Added copyright header.
11622
11623         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11624         (assemble): Added support for macro based assembler commands.
11625         (linkEdit): Added support for macro based linker commands.
11626         (preProcess): Changed the pre-processor to use macros.
11627         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11628         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11629
11630         * device/lib/z80/crt0.s: Added module name for debugging.
11631
11632 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11633
11634         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11635
11636         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11637
11638         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11639
11640         * src/Makefile.in: Added SDCCmacro and SDCCutil
11641
11642 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11643
11644         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11645
11646 2001-09-16    <johan AT FRIJA>
11647
11648         * 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.
11649
11650 2001-09-15    <johan AT FRIJA>
11651
11652         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11653         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11654
11655 2001-09-11    <johan AT FRIJA>
11656
11657         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11658
11659 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11660
11661         * support/regression/tests/bug-460444.c: Added test case.
11662
11663         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11664         (genCast): Added justification for all of the asserts.
11665
11666 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11667
11668         * support/regression/support.c: _xdata replaced by xdata
11669
11670         * support/regression/spec.mk: removed _generic
11671
11672 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11673
11674         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11675
11676         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11677         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11678
11679         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11680
11681         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11682
11683         * support/regression/tests/bug-460010.c: Added test case.
11684
11685         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11686
11687 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11688
11689         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11690
11691         * support/regression/testfwk.c: removed workaround for bug #436344
11692
11693         * support/regression/tests/bp.c: use less memory with mcs51
11694
11695         * support/regression/tests/bug-441448.c: use less memory
11696
11697         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11698
11699         * support/regression/collate-results.py: typo
11700
11701 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11702
11703         * support/regression/tests/fetchoverlap.c: Added new test case.
11704
11705         * support/regression/tests/bp.c: Added new test case.
11706
11707         * support/regression/tests/bug-448984.c: Added new test case.
11708
11709         * support/regression/tests/pow2shifts.c: Added new test case.
11710
11711         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11712         (genlshTwo): Fixed right shift for count > 8.
11713
11714         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11715
11716 2001-09-08    <johan AT FRIJA>
11717
11718         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11719
11720 2001-09-07    <johan AT FRIJA>
11721
11722         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11723
11724         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11725
11726 2001-09-06    <johan AT FRIJA>
11727
11728         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11729         * bernhard noted me at this: "() equals to (void)" (1.38)
11730
11731 2001-09-05    <johan AT FRIJA>
11732
11733         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11734
11735 2001-09-04    <johan AT FRIJA>
11736
11737         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11738
11739
11740 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11741
11742         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11743
11744 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11745
11746         * link/z80/aslink.h: Fixed path for PATH_MAX
11747
11748 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11749
11750         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11751
11752         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11753
11754         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11755
11756         * 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.
11757
11758 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11759
11760         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11761         (genCmp): Fixed up genCmp for the GB with longs.
11762
11763         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11764
11765         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11766
11767         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11768
11769         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11770
11771 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11772
11773         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11774
11775 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11776
11777         * 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.
11778
11779         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11780
11781 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11782
11783         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11784
11785         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11786
11787 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11788
11789   * sim/ucsim/configure:    little improvement of Cygwin-detection
11790   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11791   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11792   * support/regression/tests/bug-221100.c: small changes for mcs51
11793   * support/regression/tests/bug-221168.c: small changes for mcs51
11794   * support/regression/tests/bug-227710.c: small changes for mcs51
11795   * support/regression/tests/staticinit.c: small changes for mcs51
11796   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11797   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11798   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11799
11800 $Revision$