* src/pic/glue.h,src/pic16/glue.h: added prototypes
[fw/sdcc] / ChangeLog
1 2006-06-19 Raphael Neider <rneider AT web.de>
2
3         * src/pic/glue.h,src/pic16/glue.h: added prototypes
4         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
5           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
6           (pic14printExterns,pic14printPublics,pic16printPublics,
7           pic16_printExterns): use new functions to emit symbols
8           (picglue,pic16glue): emit publics before emitting externs
9         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
10           locally defined functions to avoid bug #1443651
11         * support/regression/tests/bug-716242.c: removed pic16 workaround
12         * support/regression/ports/pic16/spec.mk: ignore errors during build
13
14 2006-06-19 Raphael Neider <rneider AT web.de>
15
16         * src/pic/glue.h: added pic14aopLiteral prototype
17         * src/pic/glue.c (pic14aopLiteral): return unsigned int
18         * src/pic/gen.c: removed stdint.h dependency
19           (aopGet): use Safe_strdup()
20           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
21           (genDataPointerSet): use pic14aopLiteral()
22         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
23           for pic16; thanks to Bernhard and Maarten
24
25 2006-06-18 Borut Razem <borut.razem AT siol.net>
26
27         * support/regression/tests/structflexarray.c: flexible array members
28           not supported by gcc < 3
29         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
30           GUI tool by default
31         * src/pic/gen.c: don't include [p]strdin.h on solaris
32         * support/Util/pstdint.h: addad svn attributes
33         * support/regression/tests/constantRange.c,
34           support/regression/tests/rotate.c: include inttypes.h instead
35           stdint.h on solaris, addad svn attributes
36
37 2006-06-18 Raphael Neider <rneider AT web.de>
38
39         * src/SDCCsymt.c (initCSupport): change return type of divschar to
40           int for PIC16
41         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
42           (pic16_genMinusBits): simplified sign-extension
43           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
44             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
45             adjusted to correctly handle mixed-signed operands, disabled
46             now unused multiplciation routines
47         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
48           (assignResultValue): added argument denoting the size of the result
49             as returned by the function (fixes upcasts in assigning from
50             function calls: char foo(); int i = foo();)
51           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
52             function result to assignResultValue
53           (genMult): disabled inlined multiplication code
54           (genDiv): augmented to also handle the modulus operator, fixed to
55             handle mixed-signed operands correctly
56           (genMod): simply call genDiv, disabled unused code
57           (genAssign): fixed missing (sign-)extension on result
58         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
59             valid char operands, allow signed operands for native code, added
60             division and modulo operator handling
61         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
62         
63         As a consequence, onebyte.c (if split into two files) and muldiv.c
64         pass regression tests.
65
66 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
67
68         * doc/Makefile.in: two runs of makeindex seem needed to get
69         correct page references in the index of sdccman.pdf 
70         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
71
72 2006-06-17 Borut Razem <borut.razem AT siol.net>
73
74         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
75
76 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
77
78         * doc/sdccman.lyx: updated, added (porting source code, debugging),
79         mentioned ec2drv and paulmon
80
81 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
82
83         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
84           consecutive abs areas
85           (find_empty_space, allocate_space): added map to handle codemap or
86            xdatamap,
87           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
88            absolute idata and xdata
89         * as/mcs51/lkmem.c (summary2): updated legend
90
91 2006-06-16 Raphael Neider <rneider AT web.de>
92
93         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
94
95 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
96
97         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
98           1208515
99         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
100
101 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
102
103         * src/port.h (struct PORT): added field gp_tags, to hold the tag
104         value of generic pointers,
105         * src/avr/main.c,
106           src/ds390/main.c,
107           src/hc08/main.c,
108           src/izt/i186.c,
109           src/izt/tlcs900h.c,
110           src/mcs51/main.c,
111           src/pic/main.c,
112           src/pic16/main.c,
113           src/xa51/main.c,
114           src/z80/main.c: PORT structure, added elements for gp_tags field,
115         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
116         fields in the PORT structure of each port,
117         * src/SDCCast.c (decorateType): allow processing of generic pointers
118         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
119         S_FIXED symbols
120
121 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
122
123         * link/z80/lkgb.c,
124         * link/z80/lkgg.c,
125         * src/pic16/gen.c,
126         * src/pic16/main.c,
127         * src/pic16/pcode.c,
128         * src/pic/main.c,
129         * src/pic/pcoderegs.c,
130         * src/SDCCicode.c,
131         * src/SDCCmain.c,
132         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
133           bug 1504689 on minGW
134
135 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
136
137         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
138
139 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
140
141         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
142
143 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
144
145         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
146           for optimization
147
148 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
149
150         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
151         to a char variable. Fixed bug #1504211
152         * device/include/pic16/adc.h,
153         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
154         and fixed bug #1364390
155
156 2006-06-10 Borut Razem <borut.razem AT siol.net>
157
158         * CVSROOT: removed the CVS left-over
159
160 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
161
162         * as/hc08/asmain.c (asexit),
163         * as/hc08/lkmain.c (lkexit),
164         * as/mcs51/asmain.c (asexit),
165         * as/mcs51/lkmain.c (lkexit),
166         * src/SDCCglue.c (DEFSETFUNC),
167         * src/SDCCmain.c (linkEdit, assemble),
168         * support/librarian/sdcclib.c (AddRel),
169           replaced unlink() by standard C remove()
170         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
171         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
172           gatherImplicitVariables): new, added to fix bug 608752,
173           (createFunction): added gatherImplicitVariables()
174         * src/SDCCast.h: added createRMW prototype
175         * src/SDCCsymt.h (struct symbol): added infertype
176         * support/regression/tests/bug608752.c: new, added
177
178 2006-06-10 Raphael Neider <rneider AT web.de>
179
180         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
181           multibyte dummy reads (fixes #1503234)
182
183 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
184
185         * device/include/mcs51/compiler.h: new, added header file to enable
186           creating common sfr definition header files for different compilers
187
188 2006-06-05 Raphael Neider <rneider AT web.de>
189
190         * src/pic16/{pcode.h,genarith.c}:
191           introduced pCodeOp combining any two pCodeOps (previously only
192           two register operands could be combined), removed pcop2 from
193           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
194         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
195         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
196           rewritten to use new PO_TWO_OPS
197         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
198         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
199           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
200           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
201           (pic16_get_op): embraced return arg to allow #define return(x),
202             added new case for combined opcodes
203           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
204           (pic16_pCode2str,pic16_getRegFrompCodeOp,
205            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
206
207 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
208
209         * src/SDCCval.c (checkConstantRange): added
210         * src/SDCCval.h: added checkConstantRange
211         * support/Util/SDCCerr.c,
212         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
213         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
214         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
215         * src/SDCCast.c (decorateType): added checkConstantRange,
216         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
217         can be emitted with the correct always true/false warning,
218         added optimization for double '!';
219         result of decorateType() must be assigned back to the tree, because
220         decorateType() can change the tree
221         * src/SDCCicode.c (geniCodeLogic),
222         (geniCodeAssign): replaced new checkConstantRange, added warnings,
223         (checkConstantRange): removed, it was only a fragment which never
224         emitted a warning
225         * src/SDCCsymt.c (computeType): fixed promotion for
226         "-1 < (unsigned bit) b"
227         * src/pic/ralloc.c (packRegsForAssign),
228         * src/pic16/ralloc.c (packRegsForAssign),
229         * src/hc08/ralloc.c (packRegsForAssign),
230         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
231         from mcs51
232         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
233         * support/regression/tests/constantRange.c: added
234         * support/valdiag/tests/constantRange.c: added
235         * support/valdiag/valdiag.py: added -DPORT_HOST=1
236
237 2006-06-02 Borut Razem <borut.razem AT siol.net>
238
239         * support/regression/ports/pic16/support.c: increase stack size
240           to 255 bytes
241         * support/regression/Makefile.in: sort tests by name so that the
242           resutlts can be compared on different machines / platforms
243
244 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
245
246         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
247         * src/ds390/gen.c (emitLabel): new, added,
248           (genDjnz): fixed stack overflow bug,
249           (throughout): cosmetic changes to sync with mcs51/gen.c,
250           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
251         * src/mcs51/gen.c (genEndFunction): small optimization,
252           (throughout): cosmetic changes to sync with ds390/gen.c
253
254 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
255
256         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
257           (_print_format): fixed printing pointers
258         * src/mcs51/gen.c (emitLabel, movb): new, added,
259           (genAssign): small optimization,
260           (genDjnz): fixed stack overflow bug,
261           (throughout): replaced sprintf with SNPRINTF,
262           replaced mcs51_regWithIdx with REG_WITH_INDEX,
263           replaced emitcode("mov", "b,...") with MOVB(...),
264           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
265           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
266         * src/mcs51/peeph.def: added rules 140 and 264
267         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
268           so they may get optimized into registers
269
270 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
271
272         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
273           immediately when encountered,
274           (printUsage): always use stderr even on windows
275
276 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
277
278         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
279         (processParms): fixed bug #1247551
280         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
281         parseCmdLine, main): print '--version' to stdout,
282         print 'help' to stdout if --help is given,
283         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
284         arguments are given; fixed --help
285
286 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
287
288         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
289         * support/regression/tests/bug-1493710.c: added
290
291 2006-05-27 Borut Razem <borut.razem AT siol.net>
292
293         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
294           static instead auto
295         * support/regression/ports/pic16/support.c: increase stack size
296           from default 64 bytes to 128 bytes
297         * support/regression/tests/staticinit.c,
298           support/regression/tests/float.c: regression tests fully enabled
299           for pic16 port by putting the initialized data arrays into the code
300           section
301         * support/regression/ports/pic16/spec.mk: don't link default libraries.
302           This was changed by mistake in the previous version.
303
304 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
305
306         * src/pic16/gen.c (genFunction, genEndFunction): some
307         beautifications, fixed bug with falsely restoring FSR2 in large
308         stack model, thanks to Beau E. Cox for reporting the bug
309
310 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
311
312         * debugger/mcs51/break.c,
313         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
314           use %p to print pointers, made address variables unsigned
315         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
316         * debugger/mcs51/symtab.c (parseSymbol): must return something
317         * src/mcs51/gen.c (aopForSym): small optimization,
318            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
319           (freeAsmop): added missing break,
320           (aopPut): removed parameter bvolatile, determine it inside the function,
321           (saveRegisters, unsaveRegisters): small optimization,
322           (genIpush): removed pointless check,
323           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
324           replaced sprintf with SNPRINTF,
325           replaced strcpy with strncpyz,
326           updated aopPut calls,
327           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
328         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
329
330 2006-05-24 Borut Razem <borut.razem AT siol.net>
331
332         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
333           modification of test for the pic16 port, put the array to the code
334           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
335
336 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
337
338         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
339         * support/Util/pstdint.h: added
340
341 2006-05-22 Borut Razem <borut.razem AT siol.net>
342
343         * src/regression/Makefile: removed bool2.c test, added -q linker option
344         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
345           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
346           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
347           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
348           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
349           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
350           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
351           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
352           define SUPPORT_BIT_TYPES 0, removed unused bit variables
353
354 2006-05-22 Raphael Neider <rneider AT web.de>
355
356         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
357           bug #1492360 (problematic due to generic pointers, see code)
358
359 2006-05-22 Borut Razem <borut.razem AT siol.net>
360
361         * support/regression/ports/pic16/specs.mk: removed stack size linker
362           directive
363         * support/regression/tests/array.c,
364           support/regression/tests/bitopcse.c,
365           support/regression/tests/bug-908454.c,
366           support/regression/tests/malloc.c: modified for pic16 regression test
367         * support/regression/tests/bitfields.c:
368           pic16 - excluded bitfileds of size > 8
369         * support/regression/tests/bp.c: pic16 - reduced data size
370         * support/regression/tests/bug-221100.c: pic16 - reduced data size
371         * support/regression/tests/bug-460010.c:
372           pic16 - used the absolute address the fits in memory
373         * support/regression/tests/bug-716242.c:
374           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
375         * support/regression/tests/float.c:
376           pic16 - excluded - data size too big
377         * support/regression/tests/onebyte.c:
378           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
379         * support/regression/tests/shifts.c:
380           pic16 - function names probably have to differ in first X characters
381           (gpasm limitation?)
382         * support/regression/tests/staticinit.c:
383           pic16 - excluded some tests due error: no target memory available for
384           section ".idata"
385
386 2006-05-22 Borut Razem <borut.razem AT siol.net>
387
388         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
389           second try. Thanks Stas Sergeev once more.
390
391 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
392
393         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
394           (genLeftShift, genRightShift): fixed bug 1491627
395         * src/hc08/peeph.def (rules 7, 8.x): added
396         * support/regression/tests/shifts.c (ShiftLeftByParam,
397           ShiftRightByParam, testShiftByParam): added to test variable shifting
398
399 2006-05-20 Raphael Neider <rneider AT web.de>
400
401         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
402         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
403           (allocReg): add only new registers to dynAllocRegs,
404           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
405             #1489055, #1445850, and probably #1483693
406
407 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
408
409         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
410         bug in for-loop that didn't emit the last of CONFIG and ID registers
411
412 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
413
414         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
415           with offset
416         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
417           1489016, 1434401 and 1490124
418         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
419           1489016, 1434401 and 1490124
420
421 2006-05-17 Borut Razem <borut.razem AT siol.net>
422
423         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
424           thanks Stas Sergeev
425
426 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
427
428         * device/include/mcs51/P89c51RD2.h,
429         * device/include/mcs51/P89LPC901.h,
430         * device/include/mcs51/P89LPC922.h,
431         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
432
433 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
434
435         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
436         to fix missing stack pragma in compiled binary object file,
437
438 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
439
440         * support/packihx/configure.in,
441         * support/packihx/configure: removed warning, autoconf >= 2.5x can
442         determine sizeof basic types even while cross compiling
443
444 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
445
446         * src/avr/gen.c (aopop),
447         * src/ds390/gen.c (aopOp),
448         * src/hc08/gen.c (aopOp),
449         * src/mcs51/gen.c (aopop),
450         * src/pic16/gen.c (pic16_aopOp),
451         * src/pic/gen.c (aopOp),
452         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
453         if size of operand is smaller than spill location
454
455 2006-05-12 Borut Razem <borut.razem AT siol.net>
456
457         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
458           have to have CR/LF line endings even if they are checked out on *nix
459           or on WIN32 in cygwin binmode
460
461 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
462
463         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
464         * device/include/ds80c390.h: added sfr16 definitions
465         * src/ds390/gen.c,
466         * src/ds390/gen.h,
467         * src/ds390/main.c,
468         * src/ds390/ralloc.c,
469         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
470           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
471           bit returning functions
472         * support/regression/tests/sfr16.c: enabled test on ds390
473
474 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
475
476         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
477         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
478
479 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
480
481         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
482         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
483           (cl_address_space constructor): removed expensive initialization,
484           (cl_address_space::get_cell): extended for late initialization,
485           (cl_address_space::*): use late initialization,
486           (cl_address_decoder::activate): removed expensive initialization,
487           This reduced regression test running time by 25%
488
489 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
490
491         * packihx/,
492         * configure.in,
493         * configure,
494         * sdcc.dsw,
495         * Makefile.bcc,
496         * Makefile.in,
497         * support/packihx/Makefile.in,
498         * support/packihx/clean.mk,
499         * support/packihx/Makefile.bcc,
500         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
501
502 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
503
504         * src/SDCCval.c (valNot): fix for regression test failure
505           of not.c on big endian hosts
506
507 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
508
509         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
510
511 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
512
513         * device/lib/mcs51/Makefile.in: changed string comparison operator
514           to = for POSIX compliance; == is bash extension
515
516 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
517
518         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
519           kosmonaut_pirx
520
521 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
522
523         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
524         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
525         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
526         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
527         bug report #1478657,
528
529 2006-05-05 Borut Razem <borut.razem AT siol.net>
530
531         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
532           making the html
533
534 2006-05-02 Borut Razem <borut.razem AT siol.net>
535
536         * doc/Makefile.in: removed *.ind dependency since there is no rule to
537           create *.ind, which made make to fail if invoked with -j 2
538
539 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
540
541         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
542           Hubert Sack for patch 1479782
543
544 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
545
546         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
547
548 2006-05-01 Raphael Neider <rneider AT web.de>
549
550         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
551           (create_pic): store only prefix-free device name,
552           (init_pic): check for device names with "16" prefix,
553           (list_valid_pics),
554         * src/pic/device.h (struct PIC_device),
555         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
556             stored device name,
557         * device/include/pic/pic12f{635,675,629,683}.h,
558         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
559         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
560         * device/include/pic/pic16f505.h,
561         * device/lib/pic/libdev/pic16f505.c: removed
562         * device/include/pic/pic14devices.txt: added support for pic12f
563             devices, removed unsupported non 16-bit devices
564             [above changes provided by patch from Zik Saleeba]
565         * src/pic/*, src/pic16/*, device/include/pic16/*,
566           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
567
568 2006-05-01 Borut Razem <borut.razem AT siol.net>
569
570         * configure.in, configure, doc/Makefile.in:
571           sync with nightly build makefile - latex, dvipdf and dvips
572           not needed any more
573
574 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
575
576         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
577         in the library source
578
579 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
580
581         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
582
583 2006-04-28 Raphael Neider <rneider AT web.de>
584
585         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
586         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
587           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
588         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
589
590 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
591
592         * device/lib/pic/libdev/Makefile.in,
593         * device/lib/hc08/Makefile.in,
594         * device/lib/gbz80/Makefile.in,
595         * device/lib/z80/Makefile.in,
596         * device/lib/ds390/Makefile.in,
597         * device/lib/ds400/Makefile.in: added srcdir to include search path,
598         thanks to Borut for the bug report
599         * configure.in,
600         * configure: always create doc/Makefile independent from --enable-doc
601         * Makefile.in: always install from directory doc independent from
602         --enable-doc
603         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
604         removed
605         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
606         * doc/Makefile.in: install *.txt if present
607         * device/include/Makefile.in (install): added installation of pic/*.inc
608         and pic/*.txt files again, they were erroneously removed
609
610 2006-04-28 Raphael Neider <rneider AT web.de>
611
612         * src/pic/{gen.c,main.h,pcode.c},
613         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
614             concerning signedness with casts
615
616 2006-04-28 Raphael Neider <rneider AT web.de>
617
618         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
619             definition of an interrupt handler,
620         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
621             interrupt handler stuff from picglue() to separate routine,
622           (picglue): enabled definition of intr handlers in files w/o main()
623
624 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
625
626         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
627           compilation with MSVC 2005 Express Edition (VC8)
628
629 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
630
631         * device/lib/Makefile: fixed build of gbz80 lib
632
633 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
634
635         * support/regression/tests/bug-460010.c,
636         * support/regression/tests/bug-524691.c,
637         * support/regression/tests/bug-716242.c: removed conditional defines
638           that are already in testfwk.h
639
640 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
641
642         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
643           (AccAXRsh1): added, shift right by 1,
644           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
645            AccAXLrl1
646         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
647
648 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
649
650         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
651         remove cast to same type
652         * src/SDCCast.c (decorateType): fix for RFE 1475742,
653         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
654         * as/z80/Makefile,
655         * link/z80/Makefile: removed, they have moved to
656         Makefile.in files
657         * configure,
658         * configure.in: replaced duplicate message about ucsim by missing sdcpp
659         * install-sh: fix bug #1204398 by setting umask 0022
660         * device/lib/Makefile: separate build of z80 and gbz80 lib
661
662 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
663
664         Enabled VPATH feature: changed nearly all Makefiles (149 files).
665         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
666
667         One basic decision: e.g. src/clean.mk includes further files. In order
668         to make this work there are two solutions:
669         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
670           run configure on them. This way they can use
671           'include $(srcdir)/port-clean.mk'
672         - always include clean.mk by the Makefile at the same level. To avoid
673           that `make clean` tries to include and build Makefile.dep the
674           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
675           implemented, because now even `make uninstall` doesn't create
676           Makefile.in. clean.mk could be eliminated by pasting it in
677           Makefile.in.
678
679         * debugger/mcs51/Makefile.in: build own objects from library sources
680         (SLIB, SDCC) in current directory
681
682         * configure, configure.in: renamed --disable-device-lib-build in
683         --disable-device-lib; added --enable-doc, the required tools are
684         searched by configure; added result message; the toolchain for the
685         belonging ports are now only built, if the port is enabled.
686
687         * support/regression/*: all output is written in directory gen, because
688         the fwk and ports directories don't livet in the build tree using vpath
689
690         * doc/sdccman.lyx: renamed --disable-device-lib-build to
691         --disable-device-lib, added --enable-doc, added section VPATH
692
693         * sim/ucsim/configure.in,
694         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
695         z80 are enabled by default
696
697 2006-04-24 Raphael Neider <rneider AT web.de>
698
699         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
700             to config word, "pic14_"-prefixed some extern functions
701           (pic14_emitConfigWord): emit __config directive(s) if assignment to
702             config word has been found
703         * src/pic/device.h: added prototypes
704         * src/pic/pcode.c: added "pic14_"-prefix where needed
705         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
706             fixup
707         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
708             words,
709           (pic14emitRegularMap): ignore config words,
710           (pic14createInterruptVect): moved generating __config directives away
711           (picglue): have __config directives emitted
712
713 2006-04-24 Borut Razem <borut.razem AT siol.net>
714
715         * doc/Makefile: sync with nightly build makefile
716
717 2006-04-24 Raphael Neider <rneider AT web.de>
718
719         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
720             registers that have not been assigned proper liveranges,
721             fixes #1469504 and #1474602,
722           (pCodeRegOptimizeRegUsage): fixed typo in comment
723
724 2006-04-24 Borut Razem <borut.razem AT siol.net>
725
726         * device/examples/main8051.c: deleted - it was removed from CVS
727           24.mar.2000 and after that modified 18.feb.2001, so it reappered
728           after the transition to Subversion
729         * src/SDCCalloc.h: deleted - it was removed  from CVS
730           3.feb.2001 and after that modified 18.feb.2001, so it reappered
731           after the transition to Subversion
732         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
733           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
734           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
735           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
736
737 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
738
739         * as/asx8051.dsp: added mcs51/strcmpi.h
740         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
741         * as/hc08/aslink.h: updated lnksect prototype
742         * as/hc08/asm.h,
743         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
744         * as/hc08/asmain.c,
745         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
746           (newdot): handle A_ABS
747         * as/hc08/asout.c,
748         * as/mcs51/asout.c (outarea): output address
749         * as/hc08/lkaomf51.c,
750         * as/mcs51/lkaomf51.c: disabled unused array UsageType
751         * as/hc08/m08pst.c,
752         * as/mcs51/i51pst.c,
753         * as/z80/z80pst.c: "ABS" is not A_OVR
754         * as/hc08/lkarea.c (newarea): read a_addr,
755           (lnkarea): added codemap array, sort absolute areas to the front,
756            combine all GSINITx/GSFINAL,
757           (find_empty_space, allocate_space): new functions,
758           (lnksect): return next address, handle absolute sections
759         * as/mcs51/lkarea.c (newarea): read a_addr,
760           lnksect2 prototype changed,
761           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
762           (find_empty_space, allocate_space): new, factored out of lnksect2,
763           (lnksect2): return next address, handle absolute sections
764         * as/hc08/lkhead.c,
765         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
766         * as/hc08/lklibr.c (addfile, fndsym),
767         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
768           index out of range and detect both '\' and '/'
769         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
770         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
771           regression tests (ds390 cannot return bool yet)
772         * doc/sdccman.lyx: changed version number, document changed --no-peep,
773           document critical interrupts on z80, document changed SDCC define
774         * src/asm.c (_asxxxx_mapping): fixed .org directive,
775           (_a390_mapping): added .org directive
776         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
777           (genMultOneByte): fixed warnings
778         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
779           ones
780         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
781         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
782           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
783         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
784         * src/pic16/main.c: removed newReg prototype
785         * src/pic16/pcode.c,
786         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
787           warnings
788         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
789           ones
790         * src/pic16/ralloc.c
791         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
792           to fix warnings
793         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
794           from short to PIC_OPTYPE
795         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
796         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
797           optype from short to PIC_OPTYPE
798         * src/port.h: made int_size unsigned to fix warnings
799         * src/SDCC.y: fixed warning on MSVC
800         * src/SDCCicode.c (getArraySizePtr): return unsigned int
801         * src/SDCCopt.c (convertToFcall): fixed warnings
802         * src/SDCCsymt.h: removed double prototype for genSymName
803         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
804           offset int to fix warnings
805
806 2006-04-22 Borut Razem <borut.razem AT siol.net>
807
808         * doc/sdccman.lyx, */Makefile, */Makefile.in:
809           references to CVS replaced with Subversion
810
811 2006-04-21 Borut Razem <borut.razem AT siol.net>
812
813         * doc/sdccman.lyx, */Makefile, */Makefile.in:
814           references to CVS replaced with Subversion
815
816 2006-04-19 Borut Razem <borut.razem AT siol.net>
817
818         * src/version.awk: adapted for svn
819         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
820           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
821           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
822           /binutils-avr/etc/*.vi, *.jin: removed all properties
823           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
824
825 2006-04-19 Borut Razem <borut.razem AT siol.net>
826
827         * CVS to Subversion migration completed
828
829 2006-04-18 Borut Razem <borut.razem AT siol.net>
830
831         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
832           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
833
834 2006-04-17 Borut Razem <borut.razem AT siol.net>
835
836         * device/include/Makefile.in: added pic/*.inc to the installation
837
838 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
839
840         * support/regression/collate-results.py: fixed output in case of
841         a valdiag error
842         * support/regression/generate-cases.py: fixed splitting of pathnames
843         with dots
844         * as/hc08/lklibr.c (addfile),
845         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
846
847 2006-04-11 Raphael Neider <rneider AT web.de>
848
849         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
850         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
851         * src/pic16/pcode.c (assignValnums): fixed #1460578
852
853 2006-04-11 Raphael Neider <rneider AT web.de>
854
855         * device/lib/pic/libdev/*.c,
856         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
857           fixes #1468739, enables compilation in --std-c99 mode
858         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
859
860 2006-04-11 Raphael Neider <rneider AT web.de>
861
862         * src/pic/device.c (find_device): removed debug output
863           (list_valid_pics): enabled verbose listing of supported devices
864         * device/include/stdbool.h: define bool as char for pic14/16 as well
865
866 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
867
868         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
869
870 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
871
872         * .version: bumped version to 2.5.6
873         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
874
875 2006-04-06 Raphael Neider <rneider AT web.de>
876
877         * .version: bumped version to 2.5.6 (pic14 ABI changed)
878         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
879         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
880           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
881             pic14_constructAbsMap
882           (pic14printPublics): declare absolute global symbols as global
883           (pic14createInterruptVect),
884         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
885           (newReg): assume new registers unused, use correct name in
886             hashtable (reg->name instead of name), more debugLog output
887         * src/pic/device.h (PIC_device): added fields for verbose output
888         * src/pic/device.c: moved device definition to pic14devices.txt,
889             added routines for runtime parsing of pic14devices.txt,
890             added support for second config word
891         * src/pic/main.c (_process_pragma): removed #pragma maxram,
892           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
893           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
894           (_pic14_parseOptions): moved pCodeInitRegisters here
895           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
896         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
897           (pCodeInitRegisters): rewrapped comments, perpared new approach to
898             handling the pseudo stack
899         * device/lib/Makefile.in: ignore failures in objects-pic16,
900         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
901         * device/lib/pic/NEWS: document new dependency on picXXX.lib
902         * device/lib/pic/Makefile.subdir,
903         * device/lib/pic16/Makefile.subdir: improved clean rules
904         * device/lib/pic/libdev/: NEW, pic14 device libraries
905         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
906         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
907         * device/include/Makefile.in: create subdir and install pic14 headers
908         * device/include/pic/p16f_common.inc: removed unused declarations
909         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
910             PICs from inc2h.pl v1.6,
911             replaced BIT_AT macros with struct declarations
912         * device/include/pic/pic14devices.txt: definition of supported devices,
913             all above improvements contributed by Zik Saleeba, thanks
914         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
915         * support/scripts/sdcc.nsi: also install pic14 device libraries and
916             headers
917
918 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
919
920         * device/include/mcs51/c8051f410.h: added interrupt numbers,
921         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
922           thanks to Charles Olds
923
924 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
925
926         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
927
928 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
929
930         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
931         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
932         * support/regression/bug1464657.c: added, new test
933
934 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
935
936         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
937           version number
938
939 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
940
941         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
942           --no-peep and --peep-file <file> are used don't use default rules but
943           do use the <file>
944
945 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
946
947         * src/mcs51/gen.c (genCall): fixed bug 1457608
948
949 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
950
951         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
952         changes seem to cause (trigger?) problems with the build system.
953
954 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
955
956         * src/SDCCpeeph.c (operandsLiteral): new, added,
957           (callFuncByName): inserted operandsLiteral
958         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
959
960 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
961
962         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
963         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
964
965 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
966
967         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
968           implemented patch 1120823 Thanks to Willy De la Court (normal
969           interrupts need an interrupt number now if they are made critical),
970           and enabled nesting of critical functions though not for gbz80
971           (genCritical, genEndCritical): added functions
972           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
973         * src/z80/mappings.i: added "ei" to all mappings
974
975 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
976
977         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
978         submitted by the Debian SDCC maintainer Aurelien Jarno:
979         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
980         archive with gcc 4.1 on mips and wrote the patch"
981
982 2006-03-16 Raphael Neider <rneider AT web.de>
983
984         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
985           the left operand is shorter than the result (c* = lit-c* + int),
986           fixes bug #1450796
987         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
988           OP_SYMBOL
989
990 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
991
992         * src/.version: increased version number to 2.5.5
993         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
994         linking is done manually in pic16 port's _linkEdit,
995         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
996         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
997         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
998         allocate asmop as AOP_ACC,
999         (aopForRemat): added parameter 'bool result' in function declaration,
1000         (pic16_aopGet): return AOP_ACC when accessing WREG,
1001         (pic16_popGetTempReg): minor modification,
1002         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1003         'pic16_allocWithIdx',
1004         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1005         calling function in absolute addresses,
1006         (genAssign): take into account AOP_ACC asmop,
1007         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1008         * src/pic16/pcoderegs.c: some debug functions and lines added,
1009         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1010         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1011         register too,
1012         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1013         call to allocReg, not by manually allocating a new one,
1014         (pic16_assignRegisters): now before going through the register
1015         allocating functions mark all registers as free. This eliminates some
1016         side effects resulting from peephole parser done earlier in the backbone
1017
1018 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1019
1020         * src/SDCCicode.c (geniCodeLogic),
1021         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1022
1023 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1024
1025         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1026           (genSend): bugfix, do not allocate and free twice,
1027           (shiftRLong): handle partially overlapping aops
1028         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1029
1030 2006-03-08 Borut Razem <borut.razem AT siol.net>
1031
1032         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1033           for pic16
1034
1035 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1036
1037         * support/regression/tests/bug1409955.c: new, added
1038         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1039         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1040           (aopForSym, aopOp): increment asmop.allocated if reused,
1041           (freeAsmop): decrement asmop.allocated and check for zero instead of
1042           using asmop.freed,
1043           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1044           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1045            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1046            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1047            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1048            genSignedRightShift, genRightShift, genDataPointerGet,
1049            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1050            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1051             in reverse order from allocation,
1052           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1053             added swappedLR to keep track
1054         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1055           pdata & code for GCC, z80, gbz80 & hc08
1056         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1057
1058 2006-03-08 Raphael Neider <rneider AT web.de>
1059
1060         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1061
1062 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1063
1064         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1065         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1066         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1067
1068 2006-03-06 Borut Razem <borut.razem AT siol.net>
1069
1070         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1071           made the linker quiet
1072
1073 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1074
1075         * src/pic16/gen.c (genPcall): fixed bug #1443644
1076         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1077         which dumps before the function entry point a data byte which represents
1078         the number of the local variables used by the specified function, added
1079         'xinst' for initial support for Extended Instruction Support,
1080         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1081         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1082         port->fun_prefix anymore (may change later),
1083         (genFunction, genEndFunction): do not store/restore local registers for
1084         _main (this should take care the --main-return command line option in
1085         the future),
1086         (genOr): removed some legacy pic-port instructions,
1087         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1088         performing operations with SFR's causes data to be written more than
1089         once to each SFR. Perhaps SFRs should be handled in special cases...
1090         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1091         pcode.h
1092         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1093         into account for stack starting position,
1094         (struct OPTIONS pic16_optionsTable): added command line argument
1095         --extended or -y for Extended Instruction Support,
1096         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1097         (deassignLRs): *** perhaps the most important change, old 'for' code
1098         (commented out for reference), didn't account for some registers which
1099         were left marked 'not free' after a pointer operation. The change
1100         reduces register usage a lot in some cases
1101
1102 2006-03-04 Borut Razem <borut.razem AT siol.net>
1103
1104         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1105           _clean
1106         * support/regression/tests/bug-524697.c: decreased array size for
1107           mcs51 to fit into the internal RAM
1108         * support/regression/Makefile.in: a little bit more verbose
1109
1110 2006-03-03 Borut Razem <borut.razem AT siol.net>
1111
1112         * support/regression/fwk/lib/testfwk.c,
1113           support/regression/fwk/include/testfwk.h: introduced function
1114           _prints(), nonrecursive _printn(), call _initEmu() from main()
1115         * support/regression/ports/gbz80/support.asm,
1116           support/regression/ports/ucz80/support.asm,
1117           support/regression/ports/z80/support.asm,
1118           support/regression/ports/ds390/support.c,
1119           support/regression/ports/hc08/support.c,
1120           support/regression/ports/host/support.c,
1121           support/regression/ports/mcs51/support.c,
1122           support/regression/ports/xa51/support.c: added empty _initEmu()
1123           function
1124         * support/regression/ports/pic16/gpsim.cmd,
1125           support/regression/ports/pic16/spec.mk,
1126           support/regression/ports/pic16/support.c,
1127           support/regression/Makefile.in: added pic16 regression test
1128
1129 2006-03-01 Raphael Neider <rneider AT web.de>
1130
1131         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1132           genConstPointerGet): use safe way of generating MOVFF to cover
1133             literals as well as registers, fixes bug #1440527
1134         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1135             dereference
1136           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1137             more correctly, fixes bug #1232186
1138           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1139         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1140             gplink guess the correct processor in more cases, applied patch
1141             from Till Riedel attached to and fixing bug #1436552
1142
1143 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1144
1145         * support/regression/tests/array.c: added, contains check for #1434401
1146         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1147
1148 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1149
1150         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1151         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1152         * device/include/mcs51/c8051f326.h,
1153         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1154         * device/include/mcs51/c8051f000.h,
1155         * device/include/mcs51/c8051f018.h,
1156         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1157           PCON_IDLE,PCON_STOP and added sfr16 definitions
1158
1159 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1160
1161         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1162           genGetWord): fixed bug 1409955
1163
1164 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1165
1166         * device/include/hc08/mc68hc908gp32.h,
1167         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1168
1169 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1170
1171         * src/SDCCast.c (constExprValue): return NULL if not a value
1172         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1173         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1174         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1175
1176 2006-02-13 Borut Razem <borut.razem AT siol.net>
1177
1178         * src/regression/ptrarg.c: added, fails due to bug #1430967
1179         * src/regression/Makefile: ptrarg.c added, ...
1180
1181 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1182
1183         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1184         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1185
1186 2006-02-11 Borut Razem <borut.razem AT siol.net>
1187
1188         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1189           print "Processor: xxx" message to stdout only if --verbose
1190
1191 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1192
1193         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1194         * support/regression/tests/bug1426356.c: added
1195         * support/regression/tests/bitfields.c: removed 2 tests
1196
1197 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1198
1199         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1200         * device/include/mcs51/c8051f330.h,
1201         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1202           PCON_IDLE,PCON_STOP and added sfr16 definitions
1203         * device/lib/_divsint.c,
1204         * device/lib/_divuint.c,
1205         * device/lib/_divulong.c,
1206         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1207           register bank bug for small stackauto
1208
1209 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1210
1211         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1212
1213 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1214
1215         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1216         * all.dsp: corrected several bin paths
1217         * device/include/mcs51/c8051f120.h,
1218         * device/include/mcs51/c8051f300.h,
1219         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1220           to PCON_IDLE,PCON_STOP
1221         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1222         * device/lib/printf_large.c (output_float): fixed bug 1388703
1223         * support/regression/tests/bug1057979.c: added test for bug 1388703
1224
1225 2006-02-08 Raphael Neider <rneider AT web.de>
1226
1227         * src/pic/pcode.c (pciTRIS): fixed typo,
1228           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1229           (LinkFlow): fixed handling of flows that end in a call,
1230           (ReuseReg): perform safety check earlier
1231         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1232             to work with flows at the beginning of a pBlock,
1233             fixes #1426557 (Symbol not previously defined),
1234           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1235             usage information
1236           (RemoveUnusedRegisters): update register usage info
1237         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1238             created, reuse existing ones instead
1239         * src/pic/gen.c (genPcall): fixed #1424719
1240
1241 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1242
1243         * link/z80/lkmain.c,
1244         * link/z80/lklex.c,
1245         * link/z80/lkdata.c,
1246         * link/z80/aslink.h: fixed build on current cygwin:
1247         replaced getline() by lk_getline()
1248
1249 2006-02-01 Borut Razem <borut.razem AT siol.net>
1250
1251         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1252           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1253           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1254           src/regression/bool1.c, src/regression/bool2.c,
1255           src/regression/bool3.c, src/regression/call1.c,
1256           src/regression/compare.c, src/regression/compare10.c,
1257           src/regression/compare2.c, src/regression/compare3.c,
1258           src/regression/compare4.c, src/regression/compare5.c,
1259           src/regression/compare6.c, src/regression/compare7.c,
1260           src/regression/compare8.c, src/regression/compare9.c,
1261           src/regression/configword.c, src/regression/for.c,
1262           src/regression/inline.c, src/regression/mult1.c,
1263           src/regression/nestfor.c, src/regression/or1.c,
1264           src/regression/pointer1.c, src/regression/ptrfunc.c,
1265           src/regression/rotate1.c, src/regression/rotate2.c,
1266           src/regression/rotate3.c, src/regression/rotate4.c,
1267           src/regression/rotate5.c, src/regression/rotate6.c,
1268           src/regression/rotate7.c, src/regression/string1.c,
1269           src/regression/struct1.c, src/regression/sub.c,
1270           src/regression/sub2.c, src/regression/switch1.c,
1271           src/regression/while.c, src/regression/xor.c,
1272           src/regression/create_stc, src/regression/simulate,
1273           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1274           regression tests
1275         * src/regression/gpsim_assert.h: added
1276
1277 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1278
1279         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1280         ((void (code *) (void)) 0) ();
1281         * as/hc08/aslex.c,
1282         * as/hc08/aslink.h,
1283         * as/hc08/asm.h,
1284         * as/hc08/asmain.c,
1285         * as/hc08/lkdata.c,
1286         * as/hc08/lklex.c,
1287         * as/hc08/lkmain.c,
1288         * as/mcs51/aslex.c,
1289         * as/mcs51/aslink.h,
1290         * as/mcs51/asm.h,
1291         * as/mcs51/asmain.c,
1292         * as/mcs51/lkdata.c,
1293         * as/mcs51/lklex.c,
1294         * as/mcs51/lkmain.c,
1295         * as/z80/aslex.c,
1296         * as/z80/asm.h,
1297         * as/z80/asmain.c: fixed build on current cygwin:
1298         replaced getline() by as_getline()
1299
1300 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1301
1302         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1303         declarator in the symbol chain
1304         * src/SDCCsymt.h,
1305         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1306         parameter list for function pointers
1307         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1308         * support/regression/tests/bug-716242.c: added
1309
1310 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1311
1312         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1313         offset if possible
1314         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1315
1316 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1317
1318         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1319         inifinitely recurseable, added static
1320         * support/regression/tests/bug-1408066.c: added
1321
1322 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1323
1324         * src/SDCCicode.h,
1325         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1326         renamed, added possibility to create "postLoopLbl"-labels
1327         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1328         newiTempLoopHeaderLabel
1329         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1330         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1331         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1332         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1333         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1334         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1335         (basicInduction): fixed bug #136564, made static,
1336         (loopInduction): changed parameter of basicInduction, made static,
1337         (addPostLoopBlock): added
1338         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1339         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1340         findLoopEndSeq
1341         * support/regression/tests/bug-136564.c: added
1342         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1343         --std-sdcc99 to LIBSDCCFLAGS
1344
1345 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1346
1347         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1348         while loop
1349         * support/regression/tests/bug-1406131.c: added
1350
1351 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1352
1353         * src/SDCCast.c (decorateType): fix promotion of unary minus
1354         * src/SDCCsymt.c (computeType): beautified
1355         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1356         (valUnaryPM, valComplement): fix sign and promotion,
1357         (valNot): ANSI: result type is int (SDCC: unsigned char)
1358         * support/regression/tests/uminus.c: speedup by removing superflous
1359         test case 'int'
1360         * support/regression/tests/onebyte.c: added promotion and signedness
1361         tests for unary minus
1362         * support/regressions/tests/bug-477927.c: disable warning about
1363         uninitialized variables
1364         * support/regression/tests/not.c: added
1365
1366 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1367
1368         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1369         * src/mcs51/gen.c (gen51Code): show final register usage after
1370         fillGaps in asm with --i-code-in-asm
1371         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1372         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1373         incUsed, rliveClear, adjustIChain): made static,
1374         (setFromRange): excluded because it's unused,
1375         (findPrevUseSym, markWholeLoop): added,
1376         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1377         through all branches of predecessors enables sdcc to emit the warning
1378         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1379         (rlivePoint): made static, added parameter emitWarnings which is only
1380         true during the first run out of two,
1381         (findRecursiveSucc, findRecursivePred): removed,
1382         (computeLiveRanges): made static, added parameter emitWarnings,
1383         (dumpIcRlive): added for debugging only
1384         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1385         removed prototype of setFromRange()
1386         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1387         in call of computeLiveRanges()
1388         * support/regression/tests/bug-895992.c: added
1389         * support/regression/tests/bug-971834.c: added
1390         * support/valdiag/tests/bug-895992.c: added
1391         * support/valdiag/tests/bug-971834.c: added
1392
1393 2005-12-18 Raphael Neider <rneider AT web.de>
1394
1395         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1396           (genUnpackBits): improved code for direct operands,
1397           (genPackBits): improved code for literal assignment to bitfields
1398             and for direct destination operands (no FSR indirection),
1399             prevented redundant AND, fixes #1362800,
1400           (AccLsh): added parameter to disable masking of the result
1401         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1402           skip instructions with side-effects (like incfsz),
1403           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1404         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1405         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1406           fixes #1375263
1407
1408 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1409
1410         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1411         volatile variables as spill location
1412
1413 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1414
1415         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1416         replacing literals
1417         * support/regression/tests/bug-1376320.c: added
1418
1419 2005-12-08 Raphael Neider <rneider AT web.de>
1420
1421         * src/pic/device.c: renamed is_shared to pic14_is_shared
1422         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1423         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1424           (is_valid_identifier): added for above workaround
1425
1426 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1427
1428         * device/lib/Makefile.in: fixed to enable port-specific-objects
1429         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1430           char, thanks Hubert Sack
1431         * doc/sdccman.lyx: documented --xstack-loc,
1432           elaborated a bit more on interrupts and pitfalls,
1433           removed "setjmp/longjmp unsupported",
1434           documented some unsupported C99 features
1435         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1436         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1437           if, thanks Hubert Sack
1438         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1439         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1440           make make_library
1441         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1442           regression tests can report resource usage (rfe 700441)
1443         * support/regression/collate-results.py: report resource usage
1444         * support/regression/ports/ds390/spec.mk,
1445         * support/regression/ports/hc08/spec.mk,
1446         * support/regression/ports/mcs51/spec.mk,
1447         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1448         * support/regression/ports/ds390/uCsim.cmd,
1449         * support/regression/ports/hc08/uCsim.cmd,
1450         * support/regression/ports/mcs51/uCsim.cmd,
1451         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1452         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1453           library, use the default one
1454         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1455           building the library
1456
1457 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1458
1459         * config.dsp: added dependency on .version and configure_vc.awk
1460         * device/include/setjmp.h: updated for --stack-auto and --xstack
1461         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1462         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1463         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1464         * device/lib/libsdcc.lib: added _setjmp
1465         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1466           (decorateType): fixed bug 1372851,
1467           (optimizeGetHbit): fixed warning
1468         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1469           array initialisation
1470         * support/regression/tests/bug1057979.c: added test for bug 1358192
1471         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1472
1473 2005-12-03 Borut Razem <borut.razem AT siol.net>
1474
1475         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1476           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1477
1478 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1479
1480         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1481         createIval): implement symbol independant "flexible array member",
1482         (createIvalCharPtr): implemented flexible array initialisation with a
1483         string
1484         * src/SDCCsymt.c (copyStruct): removed,
1485         (getSize): fixed misleading comment,
1486         (getAllocSize): removed, the additional allocation size is now in
1487         sym->flexArrayLength,
1488         (checkStructFlexArray): new, syntax checks for flexible array members,
1489         (compStructSize): added syntax checks for "flexible array members"
1490         (copyStruct): removed,
1491         (copyLinkChain): removed inefficient fix for bug 770487
1492         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1493         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1494         symbol->flexArrayLength
1495         * src/SDCCerr.c,
1496         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1497         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1498         * support/regression/tests/structflexarray.c: added
1499         * support/valdiag/tests/structflexiblearray.c: added
1500
1501 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1502
1503         * src/SDCCast.c (decorateType): fixed bug 1368489
1504         * support/Util/SDCCerr.c,
1505         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1506
1507 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1508
1509         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1510           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1511
1512 2005-11-27 Borut Razem <borut.razem AT siol.net>
1513
1514         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1515           support/cpp2/mkdeps.h: added command line option
1516           -obj-ext=<extension> to SDCPP to define object file externion, used
1517           for generation of make dependencies (-M)
1518         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1519
1520 2005-11-26 Borut Razem <borut.razem AT siol.net>
1521
1522         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1523           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1524           added pic and pic16 libraries
1525
1526 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1527
1528         * device/include/float.h: Corrected typo in prototype of __fsgt
1529
1530 2005-11-25 Borut Razem <borut.razem AT siol.net>
1531
1532         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1533           added creation of model-mcs51-stack-auto libraries
1534
1535 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1536
1537         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1538         and fields-list too
1539         * src/SDCCast.c (createIvalArray): removed obsolete comment
1540
1541 2005-11-24 Borut Razem <borut.razem AT siol.net>
1542
1543         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1544           added missing device/lib/mcs51/crt*.asm sources
1545
1546 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1547
1548         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1549
1550 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1551
1552         * device/lib/_fs2schar.c,
1553         * device/lib/_fs2sint.c,
1554         * device/lib/_fs2slong.c: optimized inline asm
1555
1556 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1557
1558         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1559           Better handling of floats between -1.0 and 0.0.
1560
1561 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1562
1563         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1564           (the missing "if"s prohibited removal of redundant labels)
1565
1566 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1567
1568         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1569           Properly convert floats between -1.0 and 0.0 to long, int, and char
1570           types (max integer value of negative floats tends to zero).
1571         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1572           Removed changes made so to work properly with floats between
1573           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1574           and _fs2char.c
1575
1576 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1577
1578         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1579         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1580         (genCast) cosmetic change
1581         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1582         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1583         from mcs51
1584         * support/regression/tests/bitfields (testSignedBitfields): added
1585
1586 2005-11-18 Borut Razem <borut.razem AT siol.net>
1587
1588         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1589         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1590           introduced SILENT option to make building of pic16 libraries less
1591
1592 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1593
1594         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1595           Now they work properly with floats between -1.0 and 0.0
1596         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1597
1598 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1599
1600         * src/SDCCicode.c (printOperand): added missing else
1601
1602 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1603
1604         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1605         reformatted for better readability
1606         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1607         signed bitfields
1608
1609 2005-11-17 Borut Razem <borut.razem AT siol.net>
1610
1611         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1612           introduced SILENT option to make building of pic16 libraries less
1613           verbose - used for nightly snapshot build
1614         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1615           available on Win32 platforms.
1616         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1617           medium, large, pic and pic16
1618
1619 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1620
1621         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1622           printf("%f"...) sets fraction to zero.
1623
1624 2005-11-16 Raphael Neider <rneider AT web.de>
1625
1626         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1627           fixes #1357221
1628         * src/pic/gen.c (genIfx): implemented for CARRY bit
1629         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1630           to generic pointers, fixes #1357332,
1631           (pic16_movLit2f): NEW,
1632           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1633
1634 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1635
1636         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1637
1638 2005-11-11 Raphael Neider <rneider AT web.de>
1639
1640         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1641         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1642           compute pointer's type from operand,
1643           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1644           improved single bit reads, fixes bug #1353379
1645
1646 2005-11-09 Borut Razem <borut.razem AT siol.net>
1647
1648         * support/scripts/sdcc.nsi: added lib/pic to the package
1649
1650 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1651
1652         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1653
1654 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1655
1656         * support/regression/tests/bug1348008.c: added
1657         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1658         * support/regression/tests/bug1337835.c: updated comment
1659
1660 2005-11-06 Borut Razem <borut.razem AT siol.net>
1661
1662         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1663           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1664           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1665           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1666           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1667           dynamic construction of cl_error_class and derivates - 2.nd try
1668
1669 2005-11-05 Borut Razem <borut.razem AT siol.net>
1670
1671         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1672           bug, which caused Bus Errors on sparc solaris
1673
1674 2005-11-04 Borut Razem <borut.razem AT siol.net>
1675
1676         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1677           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1678           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1679           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1680           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1681           and derivates to resolve the initialization problem on OSX
1682
1683 2005-11-02 Borut Razem <borut.razem AT siol.net>
1684
1685         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1686           corrected typo - #include <winsock2.h>
1687
1688 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1689
1690         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1691           (_asxxxx_mapping): added org directive for future enhancements
1692
1693 2005-11-01 Borut Razem <borut.razem AT siol.net>
1694
1695         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1696           enabled sockets on WIN32
1697         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1698
1699 2005-10-31 Borut Razem <borut.razem AT siol.net>
1700
1701         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1702           WIN32 backslash path delimiters should be escaped when used in C strings
1703         * support/regression/tests/bitfields.c: exclude failing assertions for
1704           __CYGWIN32__ and __MINGW32__ hosts
1705
1706 2005-10-30 Borut Razem <borut.razem AT siol.net>
1707
1708         * src/SDCCutil.c: corrected double comparison typo
1709
1710 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1711
1712         * device/lib/medium/Makefile: added for new memory model medium
1713         * device/include/asm/mcs51/features.h: updated for medium/pdata
1714         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1715           added Multiply & Accumulate sbit's and MAC0_PAGE define
1716         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1717         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1718         * device/lib/_mullong.c: update for medium model
1719         * device/lib/incl.mk: added medium model
1720         * doc/sdccman.lyx: documented medium model
1721         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1722         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1723         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1724         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1725           (allocParms): set SCLS and OCLS to pdata for medium model
1726         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1727           for pdata,
1728           (powof2): return <0 if not power of 2
1729         * src/avr/gen.c (genBitWise): use updated powof2
1730         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1731           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1732           (shiftLLeftOrResult): use B if necessary
1733         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1734         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1735         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1736         * support/regression/Makefile.in: added test-mcs51-medium
1737         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1738
1739 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1740
1741         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1742         specifier unsigned
1743         * device/lib/time.c (mktime): fixed bug 1334315
1744
1745 2005-10-28 Raphael Neider <rneider AT web.de>
1746
1747         * device/include/pic/p16f_common.inc: added common declarations
1748         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1749
1750 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1751
1752         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1753           (aopPutUsesAcc): added to predict accumulator use,
1754           (assignResultValue): save acc if necessary,
1755           (genMinusDec): store result if indirectly addressed,
1756           (genDivOneByte):  save acc if necessary,
1757           (movLeft2Result): bugfix if left already in acc,
1758           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1759             attention to accumulator use (esp. pdata),
1760           (genReceive): receive pdata correctly
1761         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1762         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1763
1764 2005-10-27 Raphael Neider <rneider AT web.de>
1765
1766         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1767
1768 2005-10-27 Raphael Neider <rneider AT web.de>
1769
1770         * .version: changed version to 2.5.4
1771         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1772         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1773           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1774             arithmetics support routines
1775         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1776         * device/lib/Makefile.in: also create installdir for pic
1777
1778         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1779           pic14 port as well
1780         * src/pic/device.c (dump_sfr): rewritten to delegate register
1781           placement to the linker (use `extern sym' rather than sym EQU addr),
1782           (validAddress): fixed to check last specified address
1783         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1784           (popGetLit): truncate literal value to 8 bit,
1785           (popGet): moved assert to more appropriate place
1786           (popGetExternal): create pCode operand from and mark the according
1787             symbol as being `extern'
1788           (popGetAddr): added sanity check on immediate's offset, provide
1789             GPOINTER tag on demand
1790           (aopPut): fixed for immediates,
1791           (mov2w_op): move operand's address or contents to WREG (depending on
1792             operand type), safer variant of mov2w,
1793           (movwf,call_libraryfunc): NEW, handy abbreviations,
1794           (get_argument_pcop,get_return_val_pcop,pass_argument,
1795           get_returnvalue): interface for accessing function parameters and
1796             return values,
1797           (assignResultValuei,genRet): use new parameter/return value interface
1798           (pic14_getDataSize): back to old version handling generic pointers,
1799           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1800             provided implementation and/or fixed old one,
1801           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1802             calls, removed legacy 8051 reference code
1803           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1804           (loadSignToC): NEW, move the operands sign bit to CARRY,
1805           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1806             genRightShiftSigned, accepts negative shift counts,
1807           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1808           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1809             generic pointers, __data pointers and __code pointers,
1810           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1811             and signed bitfields, limit bitfields to 8 bit,
1812           (genDataPointerGet): fixed number of bytes read,
1813           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1814           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1815             pointers to constant data are no longer assumed to point to __code
1816             space, removed invalid pointer types,
1817           (bitpatternFromVal): retrieve the PICs representation of an integer
1818             or float literal,
1819           (genDataPointerSet): fixed assigning to po_immediate operands,
1820           (genGenPointerSet): implemented as library call,
1821           (genIfx): fixed incorrect condition,
1822           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1823             provide GPOINTER tag according to destination's storage class,
1824           (genCast): added code to handle casting to generic pointers, added
1825             sign-/zero extension of the result
1826           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1827         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1828         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1829           extend the result
1830         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1831           address/register resides in the shared banks
1832           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1833             put all variables into separate sections (have the linker arrange
1834             them)
1835           (picglue): put init code and interrupt handlers in separate sections
1836         * src/pic/main.c: added port specific options table, modified to PORT
1837           structure to make GPOINTERs 3 byte, added pic14_options
1838           (_pic14_do_link): private linking routine (update paths to libraries,
1839             add libsdcc.lib by default)
1840         * src/pic/main.h: declare pic14_options
1841         * src/pic/pcode.c: fixed instructions i/o relations,
1842           (RegCond): reverted to correct version,
1843           (newpCodeOpLit): truncate literals to 8 bit,
1844           (genericPrint): added debug output,
1845           (getRegFromInstruction): fixed for various operand types, simplified
1846           (BuildFlow): fixed broken handling of isntructions with labels
1847           (LinkFlow): start at last instruction in flow (skip trailing comments),
1848             pass the flow on to the next instruction after CALL
1849           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1850           (insertPCodeInstruction): fixed inserting after a skip instruction,
1851           (DoBankSelect): fixed for labeled instructions
1852           (OptimizepBlock): honor --nopeep switch
1853           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1854         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1855         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1856           (pCodeOptime2pCodes): allow disabling this optimization via
1857             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1858             but is still buggy), started implementation of a dataflow based
1859             pCode optimization (CSE + dead code elimination)
1860           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1861         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1862           names are independant of the stack location and therefore portable across
1863           devices
1864
1865 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1866
1867         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1868           (selectSpil): fixed bug 1337835 by not spilling bit variables
1869         * support/regression/tests/bug1337835.c: added test for this bug
1870         * src/mcs51/peeph.def: restart after rule 3.c,
1871           addded rules 263.x to optimize loading constants
1872
1873 2005-10-26 Raphael Neider <rneider AT web.de>
1874
1875         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1876         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1877           (genAssign): emit warning when casting literals to generic pointer
1878             type, also applies when taking the address of a fixed variable,
1879           (genCast): improved casting to generic pointers
1880         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
1881           extern variables, added verbose error message
1882         * device/include/pic16/{string.h,errno.h}: added #pragma library c
1883
1884 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
1885
1886         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
1887         carry must be complemented too
1888         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
1889         could be emitted by genMinus
1890         * src/SDCCval.c (constVal): fixed bug 1305065
1891
1892 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
1893
1894         * src/SDCCast.c (addCast): added promotion for bit variables
1895         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
1896         promotion casts + optimisation
1897         (optimizeGetWord): fix warning 'i' might be used uninitialized
1898         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
1899         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
1900
1901 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
1902
1903         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
1904         all chars are promoted to int; promotion should be handled in SDCCast.c
1905
1906 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1907
1908         * device/lib/_strcmp.c: Fixed bug 1326457
1909
1910 2005-10-11 Raphael Neider <rneider AT web.de>
1911
1912         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
1913         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
1914
1915 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
1916
1917         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
1918         * support/regression/tests/sfr16.c: added test for the sfr32 bug
1919
1920 2005-10-04 Raphael Neider <rneider AT web.de>
1921
1922         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
1923           device/lib/pic16/pics.all: added pic18f1320
1924         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
1925
1926 2005-09-30 Raphael Neider <rneider AT web.de>
1927
1928         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
1929         * src/pic16/devices.inc: NEW, provides device descriptions
1930         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
1931
1932 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
1933
1934         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
1935           GETHBIT
1936
1937 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
1938
1939         * doc/sdccman.lyx: updated Highest Order Bit documentation,
1940           documented Any Order Bit, Higher Order Byte and Higher Order Word
1941         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
1942         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
1943           (optimizeGetAbit): new, to get any bit, not only the high bit,
1944           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
1945           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
1946           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
1947           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
1948             RIGHT_OP: also try GETBYTE, GETWORD optimization,
1949             GETABIT, GETBYTE, GETWORD: decorate them,
1950           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
1951           (ast_print): added GETABIT, GETBYTE, GETWORD
1952         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
1953         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
1954           (geniCodeBinary): new generic binary icode,
1955           (ast2iCode): added GETABIT, GETBYTE, GETWORD
1956         * src/port.h: updated comment for PORT.hasExtBitOp
1957         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
1958           (genGetByte): new, to get a single byte,
1959           (genGetWord): new, to get a word from a long,
1960           (gen51Code): added GETABIT, GETBYTE, GETWORD
1961         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
1962
1963 2005-09-23 Raphael Neider <rneider AT web.de>
1964
1965         * configure.in, configure: have device/lib/pic configured
1966         * device/lib/Makefile.in: added model-pic14
1967         * device/lib/clean.mk: added pic/ to clean rule
1968         * device/lib/pic: added rudimentary pic14 library providing support
1969           functions for multiplication/division/generic pointer access
1970         * src/SDCCopt.c (convilong): mark support functions as extern
1971           for pic14 port as well
1972         * src/pic/gen.c (genMult): added assertions,
1973           (genpic14Code): emit warning on unhandled iCodes
1974         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
1975         * src/pic/pcode.c (pCodeOpCopy),
1976         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
1977           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
1978           SFR_REGISTER}), made safe for future extensions
1979         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
1980           instructions even if preceeded by SKIP instructions (also remove
1981           them); removed unused code
1982         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
1983           prevents leaving parts of the structure uninitialized after copying
1984
1985 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
1986
1987         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
1988           ago by me
1989         * support/regression/tests/addsub.c: added test for the bug
1990
1991 2005-09-21 Raphael Neider <rneider AT web.de>
1992
1993         * device/include/pic16/pic18f1220.h,
1994           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
1995         * device/lib/pic16/Makefile.rules: added missing opening paren
1996         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
1997           are provided in genutils.c,
1998           (genUminusFloat,genUminus,genCmpEq): added asserts on different
1999           operand/result sizes,
2000           (genCmp): assert on NULL pointers first, then check deref'ed values
2001         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2002           result size
2003
2004 2005-09-18 Raphael Neider <rneider AT web.de>
2005
2006         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2007           as these are now unused,
2008           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2009         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2010           local, avoids uninitialized pointer dereference on r->name
2011         * src/pic16/ralloc.c (newReg): fixed indentation
2012
2013 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2014
2015         * src/SDCCval.c (constVal): fixed bug 730366
2016         * support/Util/SDCCerr.c,
2017         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2018
2019 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2020
2021         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2022
2023 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2024
2025         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2026
2027 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2028
2029         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2030           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2031         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2032           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2033         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2034         * packihx/packihx.c (hexDigit): made c unsigned char
2035         * as/mcs51/lklibr.c (fndsym),
2036         * link/z80/lkgb.c (gb),
2037         * link/z80/lklibr.c (fndsym),
2038         * link/z80/lkrloc.c (relr),
2039         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2040         * src/SDCC.lex (checkCurrFile, process_pragma),
2041         * src/SDCCglue.c (spacesToUnderscores),
2042         * src/SDCCmain.c (setParseWithComma, processFile),
2043         * src/asm.c (tvsprintf, printCLine),
2044         * src/avr/gen.c (emitcode, aopPut),
2045         * src/ds390/gen.c (emitcode),
2046         * src/hc08/gen.c (emitcode, emitinline),
2047         * src/mcs51/gen.c (emitcode, genInline),
2048         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2049           tokenizeLineNode),
2050         * src/pic/ralloc.c (debugLog),
2051         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2052           tokenizeLineNode),
2053         * src/pic16/ralloc.c (debugLog),
2054         * src/z80/main.c (_process_pragma):
2055            made all ctype.h function calls safe
2056         * src/SDCCopt.c: include math.h for fabs
2057         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2058           and used them throughout the code to make ctype.h function calls safe
2059         * src/ds390/main.c (asmLineNodeFromLineNode),
2060         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2061         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2062            unsigned char*
2063         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2064           (newpCodeAsmDir): made ctype.h function calls safe
2065         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2066           pic16_emitcode):  made lbp unsigned char*
2067         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2068           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2069         * src/xa51/gen.c (emitcode),
2070         * src/z80/gen.c (_emit2): made lbp unsigned char*
2071         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2072            char*
2073
2074 2005-09-05 Raphael Neider <rneider AT web.de>
2075
2076         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2077           access bank splitpoint
2078
2079 2005-09-05 Raphael Neider <rneider AT web.de>
2080
2081         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2082
2083 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2084
2085         * .version: changed to version 2.5.3
2086         * doc/sdccman.lyx: changed version to 2.5.3,
2087           documented --codeseg and --constseg and pragma codeseg and constseg,
2088           documented bit parameters (reentrant) and bit returning
2089         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2090            currFunc->recvSize, but is this ok for all ports?
2091           (ast2iCode): result of ~ on unsigned char must be cast to int for
2092            bool to work
2093         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2094           function pointers in bit space
2095         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2096           (processFuncArgs): call port.reg_parm() with reentrancy info
2097         * src/port.h,
2098         * src/avr/main.c,
2099         * src/ds390/main.c,
2100         * src/hc08/main.c,
2101         * src/pic/main.c,
2102         * src/pic16/main.c,
2103         * src/xa51/main.c,
2104         * src/z80/main.c: port.reg_parm prototype extended with
2105           "bool reentrant" parameter
2106         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2107           options.stackAuto for allocating bit register parameters
2108         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2109           (genSend): set BitBankUsed if it is,
2110           (selectRegBank): factored out of genCall for use in genPcall,
2111           (genCall): removed redundant dtype assignmen, use selectRegBank,
2112           (genPcall): handle returning in Carry properly, save in F0 if needed,
2113           (genReceive): handle bit register parameters
2114         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2115           (mcs51_assignRegisters): enable bit registers for all reentrant
2116            functions and don't set BitBankUsed unconditionally
2117         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2118         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2119         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2120
2121 2005-08-27 Borut Razem <borut.razem AT siol.net>
2122
2123         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2124         ppc-osx (Darwin) does not support -u option. It seems that it is
2125         supported only on Linux - GNU cp
2126
2127 2005-08-25 Borut Razem <borut.razem AT siol.net>
2128
2129         * sim/ucsim/gui.src/serio.src/Makefile.in,
2130           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2131           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2132           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2133           install and strip, since the strip at /usr/ccs/bin should be used
2134           on solaris
2135
2136 2005-08-24 Borut Razem <borut.razem AT siol.net>
2137
2138         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2139
2140 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2141
2142         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2143         ffffffffu
2144
2145 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2146
2147         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2148         * as/mcs51/lkmain.c (link_main): fixed warning
2149         * device/include/stdbool.h: ds390 has no advanced bit support yet
2150         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2151         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2152         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2153           and updated their macros
2154         * src/SDCCval.c (constVal): updated comment for renamed b_long
2155
2156 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2157
2158         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2159         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2160           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2161           (oprio): set priority for '['
2162         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2163            and adb_24_bit
2164         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2165         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2166         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2167         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2168           added overlayable BIT_BANK area
2169         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2170           (summary2): explain 'T' in legenda
2171         * as/mcs51/lkrloc.c: replaced old K&R style,
2172           (relr): added R_BIT processing,
2173           (errmsg): added "Bit-addressable relocation error",
2174           (adb_bit): added for converting from byte- to bit-addressable space,
2175           (adb_24_bit): added for converting from byte- to bit-addressable space
2176         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2177            used in reentrant functions now even as return value
2178         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2179         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2180           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2181         * src/SDCCglobl.h: added indicator BitBankUsed
2182         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2183            the bit registers b0-b7
2184         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2185           (geniCodeCast): fixed bug 1263853,
2186           (geniCodeLogicAndOr): put result in bool or char,
2187           (geniCodeReceive): added parameter func for accessing the return type,
2188           (geniCodeFunctionBody): pass func to geniCodeReceive
2189         * src/SDCCmain.c: added indicator BitBankUsed
2190         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2191         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2192           (checkSClass): don't put automatic bool/bit on stack,
2193           (checkFunction): removed check on function cannot return bit
2194         * src/SDCCsymt.h: added newBoolLink prototype
2195         * src/mcs51/gen.c (rb1regs): added bit registers,
2196           (movc): created for assigning to carry,
2197           (pushReg, popReg): created for pushing registers,
2198           (sameRegs): check both AOP_REG and AOP_CRY types,
2199           (aopOp): handle bit registers,
2200           (aopPut): optimization no self-assign,
2201           (saveRegisters): push reg->base (bits) only once for bit registers,
2202            and use pushReg,
2203           (unsaveRegisters): pop reg->base only once and use popReg,
2204           (assignResultValue): added parameter func and return in carry for bits,
2205           (genIpush): optimization no reload in A if not changed,
2206           (genSend): bit parameters in reentrant functions are passed in bit
2207            registers by first assigning to bits in B, then save registers and
2208            copy B to bits,
2209           (genCall): handle returning in Carry properly, save it in F0 if needed,
2210           (genPcall): updated assignResultValue call, this is not safe yet for bit
2211            returning function !!!
2212           (genFunction): don't generate equ's for bit registers and use pushReg,
2213           (genEndFunction): take care of bit returning functions and use popReg,
2214           (genRet): return bit in Carry,
2215           (genIfx): optimize bit registers and other directly addressable bits,
2216           (genReceive): updated assignResultValue call
2217         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2218           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2219            registers when using stack-auto
2220         * src/mcs51/ralloc.c (_G): added allBitregs,
2221           (regs8051): added the bit registers,
2222           (createStackSpil): use macro IS_BIT,
2223           (getRegBit): added to allocate a bit register, else spill,
2224           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2225           (updateRegUsage): factored out to ease stepping while debugging,
2226           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2227            also allocate bit registers,
2228           (fillGaps): handle bit registers,
2229           (findAllBitregs): added to create bit vector with all bit registers,
2230           (mcs51_allBitregs): returns this bit vector,
2231           (mcs51_assignRegisters): when using stack-auto use bit registers for
2232            passing parameters and creating local variables
2233         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2234
2235 2005-08-22 Borut Razem <borut.razem AT siol.net>
2236
2237         * device/lib/Makefile.in: replaced find option -or with -o
2238           to make it run on solaris
2239
2240 2005-08-22 Raphael Neider <rneider AT web.de>
2241
2242         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2243           fixes #1265442 (crash on Solaris)
2244
2245 2005-08-20 Borut Razem <borut.razem AT siol.net>
2246
2247         * configure, configure.in: added tests for libsocket and libnsl libraries,
2248           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2249           from support/regression/Makefile.in
2250         * support/regression/Makefile.in: added
2251         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2252         * sim/ucsim/libtool: regenerated on sparc-solaris
2253         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2254           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2255           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2256           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2257           sparc-solaris, which doesn't use GNU ld linker
2258         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2259         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2260
2261 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2262
2263         * src/mcs51/peeph.def: updated comments
2264
2265 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2266
2267         * device/lib/_gptrget.c,
2268         * device/lib/_gptrput.c: slightly shorter
2269         * doc/sdccman.lyx: incremented version
2270         * src/mcs51/peeph.def: moved peephole comments to the line of first
2271           change to better keep line correlation, reanimated 186.e
2272         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2273
2274 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2275
2276         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2277           David Saxton with quotes around file name.
2278
2279 2005-08-15 Borut Razem <borut.razem AT siol.net>
2280
2281         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2282           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2283           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2284           make tests run on x86_64 platform
2285
2286 2005-08-13 Raphael Neider <rneider AT web.de>
2287
2288         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2289           as it might be executed DURING a build (parallel make is wonderful)
2290
2291 2005-08-13 Raphael Neider <rneider AT web.de>
2292
2293         * device/lib/Makefile.in (port-specific-objects-pic16):
2294           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2295         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2296           dependency
2297         * device/lib/pic16/Makefile.rules: build subdirs before creating
2298           the library, removed builddir rule, create $(builddir) early in
2299           recurse rule, use empty recurse rule for leaf directories
2300         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2301           mkdir errors (race condition), removed duplicate suffix "hex"
2302           from clean rules
2303         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2304         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2305           prevents mkdir -p from aborting on Alpha
2306
2307 2005-08-12 Raphael Neider <rneider AT web.de>
2308
2309         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2310           db-statements in order to allow for arrays of pointers in code
2311           sections to be placed without interspersed 0-padding, fixes
2312           bug #1256215
2313         * (emitStatistics): fixed division by zero for pic18f1220
2314         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2315           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2316         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2317         * (pic16_pCodeConstString): keep track of already emitted string
2318           literals to prevent "duplicate definitions of symbol _str_NR"
2319         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2320           debug message
2321         * device/lib/Makefile.in: ignore failing PIC16 library builds
2322         * device/lib/pic16/Makefile: do not build if gputils are missing
2323         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2324
2325 2005-08-10 Raphael Neider <rneider AT web.de>
2326
2327         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2328           my last commit)
2329
2330 2005-08-10 Raphael Neider <rneider AT web.de>
2331
2332         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2333           Rokas' patch to add the new fixed point type "__fixed16x16"
2334         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2335           functions for __fixed16x16 arithmetics
2336         * device/lib/pic16: reimplemented the build system to support
2337           a separate build directory, better handling of libio (create
2338           the library in a separate subdir for each architecture) and
2339           easier configuration (centralized in Makefile.common)
2340
2341 2005-08-07 Raphael Neider <rneider AT web.de>
2342
2343         * src/pic16/gen.c (genrshTwo): fixed sign extension
2344         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2345         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2346           added T0CONbits
2347         * device/include/pic16/pic18f4220.h: NEW, header for
2348           pic18f4220 and pic18f4320
2349         * device/include/pic16/pic18fregs.h: added new devices,
2350           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2351         * device/include/pic16/signal.h: resolved name clashes
2352           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2353           to also allow testing for interrupt enable bits, added
2354           comments on how to use the macros
2355         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2356         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2357           register definitions for the devices
2358         * device/lib/pic16/pics.all: added new devices
2359         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2360           allocated memory
2361         * device/lib/pic16/libc/stdlib/memfree: do not count
2362           the block header as free memory
2363         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2364           simplified and added missing end-of-blocklist-marker
2365           (reported by Peter Onion, fixes #1252814)
2366         * (_mergeHeapBlock): fixed loop condition
2367         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2368           len==0, restructured code
2369         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2370           up a bit, reduced bitfield accesses, prevent endless loops
2371           in case of heap corruption
2372         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2373           "unreferenced arguments/must return a value" warnings
2374         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2375           replaced BAUDREG with SPBRG
2376         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2377           device/lib/pic16/debug/gstack/gstack.c: replaced
2378           _naked, _asm, _endasm with __naked, __asm, __endasm
2379
2380 2005-08-05 Raphael Neider <rneider AT web.de>
2381
2382         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2383           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2384
2385 2005-08-05 Borut Razem <borut.razem AT siol.net>
2386
2387         * device/lib/Makefile.in: added missing ';'
2388         * configure: removed ^M characters
2389
2390 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2391
2392         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2393           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2394           License
2395
2396 2005-08-04 Borut Razem <borut.razem AT siol.net>
2397
2398         * configure.in: pic16 libraries build 2nd try - enable running
2399           configure in device/lib/pic16
2400         * configure: regenerated from configure.in
2401         * device/lib/Makefile.in: create $(PORT)/bin directory
2402
2403 2005-08-03 Raphael Neider <rneider AT web.de>
2404
2405         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2406           to get/set values via pointers
2407         * (genUnpackBits,genPackBits): changed detection of
2408           ptr->bitfield vs. sym.bitfield, fixed access via generic
2409           pointers, removed dead (wrong) code for multibyte bitfields
2410         * (genNearPointerGet, genGenPointerGet): removed useless code,
2411           fixed bitfield detection, fixes #1250594
2412         * (genNearPointerSet): removed useless code
2413         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2414           and introduced macro pic16_emitpcode that conditionally emits
2415           the origin of the following pCode (useful for debugging SDCC)
2416         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2417         * (createDefmap): fixed handling of LFSR for --optimize-df
2418
2419 2005-08-02 Borut Razem <borut.razem AT siol.net>
2420
2421         * device/lib/Makefile.in: pic16 libraries build enabled since
2422           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2423
2424 2005-08-02 Raphael Neider <rneider AT web.de>
2425
2426         * src/pic16/gen.c (genPackBits): removed deprecated warning
2427         * (genGenPointerSet): fixed bitfield detection
2428
2429 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2430
2431         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2432
2433 2005-07-31 Raphael Neider <rneider AT web.de>
2434
2435         * device/lib/pic16/libdev/pic18f458.c,
2436           device/include/pic16/pic18f458.h: added missing T0CONbits
2437
2438 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2439
2440         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2441
2442 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2443
2444         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2445
2446 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2447
2448         * device/include/mcs51/at89c51ed2.h: added.
2449
2450 2005-07-23 Raphael Neider <rneider AT web.de>
2451
2452         * src/pic/gen.h: added emitpcode macro for debugging
2453         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2454           and replace by macro adding debug information on demand
2455         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2456         * (gencjne): tried to fix; replaced with correct (slower) code
2457         * (gen{Unp,P}ackBits): fixed single bit access
2458         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2459         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2460           previous instruction
2461         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2462           register has to be handled with care (forbidding movement
2463           of assignments/uses, removing assignments completely, ...)
2464         * (pCodeOptime2pCodes): make use of regIsSpecial
2465         * added lots of debugging output (commented out)
2466         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2467           from being reused as result UNLESS it is known to work
2468
2469 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2470
2471         * support/Util/dbuf.h: include <stddef.h> for size_t
2472         * .version: changed to version 2.5.2
2473
2474 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2475
2476         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2477
2478 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2479
2480         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2481           (genModOneByte): removed needless psha/pula
2482
2483 2005-07-22 Raphael Neider <rneider AT web.de>
2484
2485         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2486           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2487         * src/pic/gen.c (resolveIfx): do not "invent" labels
2488         * (genSkipc): changed to positive logic
2489         * (genSkipCond): removed as no longer needed
2490         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2491           backport from PIC16
2492         * (genLeftShift): check operands are in different registers
2493         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2494           INCF does not update CARRY...
2495         * src/pic/main.c: fixed _linkCmd
2496         * src/pic/pcode.c (unlinkpCode): added inactive code
2497         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2498           alive (do not assign result and operand overlapping registers)
2499
2500 2005-07-22 Raphael Neider <rneider AT web.de>
2501
2502         * src/pic/device.c (dump_sfr): replaced register declaration with
2503           call to emitSymbolToFile() to avoid duplicate symbols
2504         * (assignRelocatableRegisters): do not declare external symbols
2505         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2506           right (take size of type, not etype)
2507         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2508         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2509         * (packRegsForAccUse): disabled assignment of WREG as
2510           the result reg to prevent occurence of just fixed #1235003,
2511           fixes #1242954
2512         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2513           symbols (avoids duplicate symbols in .asm file)
2514         * (pic14emitRegularMap): use emitSymbolToFile()
2515         * src/pic/gen.c (aopOp): fixed spillLocation handling
2516         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2517         * (genDataPointerSet): removed unneccessary variables/output
2518
2519 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2520
2521         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2522         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2523
2524 2005-07-21 Raphael Neider <rneider AT web.de>
2525
2526         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2527           architecture cannot handle them efficiently, fixes bug #1235003
2528         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2529           check for empty sets before using them (fixes bug #1232190)
2530
2531 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2532
2533         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2534           (lnksect2): generate warnings for memory overlap
2535         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2536           constseg to set the name of these segments so you can instruct the linker
2537           to place them in banks
2538         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2539         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2540           added code_seg and const_seg to options
2541         * src/SDCCglue.c (emitMaps): use options.const_seg,
2542           (createInterruptVect): put interrupt vectors in segment HOME,
2543           (glue): put HOME before static segment and put the main glue in HOME,
2544           (glue): use options.code_seg
2545         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2546         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2547           these segments so you can instruct the linker to place them in banks
2548           (linkEdit): use code_loc for HOME segment which should be the first
2549           segment in code memory now
2550         * src/SDCCmem.c: fixed more stuff like bug 1238386
2551         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2552           (changePointer): don't change function pointers to code pointers for
2553           banked functions,
2554           (compareType): added exceptional check for banked function pointers
2555         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2556         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2557           after static in code memory
2558         * src/mcs51/gen.c: added aopLiteralLong prototype,
2559           (aopForSym): use getSize for functions,
2560           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2561           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2562           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2563           the segment,
2564           (genPcall): use call for literal function pointers and generate banked
2565           calls over the one trampoline so there's only one place for the user to
2566           modify according to his/hers hardware,
2567           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2568           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2569         * src/mcs51/main.c: added keyword banked,
2570           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2571         * support/Util/SDCCerr.c,
2572         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2573           needed for passing the bank and address to the trampoline
2574         * device/lib/mcs51/crtbank.asm: added for bankswitching
2575         * device/lib/mcs51/Makefile: added crtbank
2576
2577 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2578
2579         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2580           for fields at offset 0 of a struct or union as reported
2581           on 2005-07-07 in the developer mailing list.
2582
2583 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2584
2585         * src/SDCCmem.c: fixed bug 1238386
2586
2587 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2588
2589         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2590           (patch #1144962), added peephole 300, enabled 259.x
2591         * doc/sdccman.lyx: removed screenshot and provided link instead
2592
2593 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2594
2595         * doc/sdccman.lyx: added section about debugging with ddd
2596         * doc/figures/ddd_example.eps: screenshot of debugging session
2597
2598 2005-07-04 Raphael Neider <rneider AT web.de>
2599
2600         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2601           like CODE pointers, fixes #1115683
2602         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2603           call, fixes bugs #1232211, #1228110,
2604           fixed wrong casts to pCodeFlow from pCodeInstructions
2605
2606 2005-07-04 Raphael Neider <rneider AT web.de>
2607
2608         * src/pic/gen.c (popGet): changed assert to allow for
2609           bit operands
2610         * (popGetAddr): changed signature to provide
2611           an additional index, patched all call sites
2612         * (genCmpEq): handle literal-like operands correctly
2613         * (genAddrOf): added sanity checks on __code/__data pointers
2614         * (genAssign): added handling of symbols from __code section
2615         * (gencjne): do not generate code for comparisons whose result
2616           is neither stored nor used, fixes bug #1171114
2617         * (AccLsh, AccRsh): operate on operand instead of WREG
2618         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2619           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2620           by known count
2621         * rewrote complete shift-by-literal logic, commented unused
2622           functions out
2623         * (genConstPointerGet): get multiple bytes (if result size > 1),
2624           fixed handling of non-immediate addresses
2625         * (genPointerGet): handle CODE pointers like CONST pointers
2626         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2627         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2628           operand is to be treated as a literal or not
2629         * (mov2w,genPcall,genCmpEq),
2630           src/pic/genarith.c: use aop_isLitLike() to decide between
2631           literal/register contents
2632         * (addSign): added missing offset
2633         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2634           only emit comment in debug-mode,
2635           use {aop,op}_isLitLike throughout the file
2636         * src/pic/glue.c: fix initializers for pointers (work in progress)
2637         * src/pic/pcode.c (get_op): honor index on _const symbols
2638         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2639         * (dumppBlock): added pCode size estimation
2640         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2641           check for IS_SYMOP before OP_SYMBOL'ing
2642         * fixed indentation, compacted switch-statements
2643         * (allocReg): find free register and allocate it instead of
2644           allocating new registers all the time
2645         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2646           registers as its operands (necessary only for multibyte GETs)
2647
2648 2005-07-01 Raphael Neider <rneider AT web.de>
2649
2650         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2651           debugging .asm-output macros FENTRY + FEXIT
2652         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2653           way... I wonder...
2654         * (emitpComment): NEW, printf to pCode
2655         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2656           offset handling
2657         * (popGetAddr): NEW, variant of popGet to access an immediates
2658           high(er) bytes instead of the n'th byte of memory they reference,
2659           replaced popGet with popGetAddr where neccessary
2660         * (genDataPointerGet): reactivated and fixed implementation
2661         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2662           accesses
2663         * (genDataPointerSet): fixed multibyte assignments
2664         * (genpic14Code): fixed --i-code-in-asm handling
2665         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2666         * (genPlus): fixed index-out-of-bounds error
2667         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2668         * src/pic/ralloc.c: added debugging output macro FENTRY2
2669         * (spillThis): fixed indentation, enbraced for-body for clarity
2670         * (rematStr): commented out as now unused
2671         * (regTypeNum): commented out special spill case (overwrites
2672           arbitrary values)
2673         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2674
2675 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2676
2677         * doc/sdccman.lyx: documented sfr16/sfr32,
2678           added example for using storage class with function pointers
2679         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2680
2681 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2682
2683         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2684         * device/lib/_itoa.c,
2685         * device/lib/_ltoa.c: optimized codesize
2686         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2687           but don't know how to suppress the double warning.
2688         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2689         * support/Util/SDCCerr.c,
2690         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2691
2692 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2693
2694         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2695           fixed old K&R prototypes
2696         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2697         * device/lib/_gptrget.c,
2698         * device/lib/_gptrgetc.c,
2699         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2700           also new versions for small generic pointers and banked generic pointers
2701         * src/port.h: added const_name
2702         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2703         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2704         * src/SDCCcse.c (findPrevIc): check all associative operators
2705         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2706         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2707         * src/SDCCmem.c: updated comments,
2708           set far-space to 0 for pdata, results in optimized code
2709         * src/SDCCmem.h: added macro CONST_NAME
2710         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2711           moving the info into the highest bits, see also gptrget/gptrput
2712         * src/src.dsp: added sdcc.ico to project files
2713         * src/avr/gen.c (genCast): fixed bug 0x%d
2714         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2715         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2716           relation between ptr_type and DCL_TYPE,
2717           (genCast): fixed bug 0x%d
2718         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2719           (CODE)" for const_name
2720         * src/hc08/gen.c (genCast): fixed bug 0x%d
2721         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2722           (hc08_port): added "CONST (CODE)" for const_name
2723         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2724           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2725           between ptr_type and DCL_TYPE,
2726           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2727           operand* and took AOP() inside function so sfr-ness can be checked,
2728           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2729           new prototype,
2730           (genFunction, genEndFunction): optimized stack setup,
2731           (genMinus): optimized for literals with ending zeroes (in bytes),
2732           (genCast): fixed bug 0x%d
2733         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2734           (mcs51_port): added "CONST (CODE)" for const_name
2735         * src/mcs51/peeph.def: made rule 226 more generic
2736         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2737         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2738         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2739         * src/z80/main.c (z80_port): added NULL for const_name,
2740           (gbz80_port): added NULL for const_name
2741         * support/regression/tests/bug663539.c,
2742         * support/regression/tests/sfr16.c: new tests
2743
2744 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2745
2746         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2747
2748 2005-06-24 Raphael Neider <rneider AT web.de>
2749
2750         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2751           corrected typos...
2752         * device/include/pic16/signal.h: added USBIF
2753           and SIG_USB
2754
2755 2005-06-24 Raphael Neider <rneider AT web.de>
2756
2757         * device/lib/pic16/libdev/pic18f2455.c,
2758           device/include/pic16/pic18f2455.h: NEW
2759         * device/include/pic16/pic18fregs.h,
2760           device/lib/pic16/pics.all,
2761           src/pic16/device.c: added 18f2455
2762         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2763           device/include/pic16/{pic18f[68][567].h,usart.h}:
2764           replaced MULTIPLE_USARTS define with more relaible
2765           compatibility sfrs (for USART access)
2766
2767 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2768
2769         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2770           and the output asm file line is printed on two lines.
2771
2772 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2773
2774         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2775           BGT, BLE, BHI, and BLS instructions
2776         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2777           genCmpEq): removed
2778         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2779           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2780           fixes bug #1216342
2781         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2782
2783 2005-06-15 Raphael Neider <rneider AT web.de>
2784
2785         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2786         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2787         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2788           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2789           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2790
2791 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2792
2793         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2794           Marcel Telka in bug #1215704
2795
2796 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2797
2798         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2799           located in shared memory bank.
2800
2801 2005-05-31 Raphael Neider <rneider AT web.de>
2802
2803         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2804           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2805           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2806
2807 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2808
2809         * device/lib/_strncpy.c: fixed the fix
2810
2811 2005-05-26 Raphael Neider <rneider AT web.de>
2812
2813         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2814           initializers with \0, bug #1208187
2815         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2816           intializers with \0, bug #1208187
2817
2818 2005-05-26 Raphael Neider <rneider AT web.de>
2819
2820         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2821           initializers with \0, bug #1208187
2822         * src/pic16/main.c (_process_pragma): added sanity checks
2823           for stack position and size, emit warnings when appropriate
2824
2825 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2826
2827         * device/lib/_strncpy.c: fixed not filling with \0
2828
2829 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2830
2831         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2832           createFunction),
2833         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2834           compound_statement),
2835         * src/SDCCsymt.h,
2836         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2837
2838 2005-05-24 Raphael Neider <rneider AT web.de>
2839
2840         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2841
2842 2005-05-24 Raphael Neider <rneider AT web.de>
2843
2844         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2845           TRISE definitions, closes bug #1162453
2846
2847 2005-05-22 Raphael Neider <rneider AT web.de>
2848
2849         * src/pic16/main.c (_process_pragma): check for missing
2850           arguments to pragmas code and udata
2851         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2852           consistency fixes to match other headers (thanks to Jim Paris)
2853         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2854
2855 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2856
2857         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2858
2859 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2860
2861         * support/regression/tests/bug1198642.c: new test
2862         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2863         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2864         * support/scripts/resource.h,
2865         * support/scripts/resource.rc,
2866         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2867         * support/scripts/sdcc.ico: added 32x32 icon
2868
2869 2005-05-18 Raphael Neider <rneider AT web.de>
2870
2871         * device/lib/pic16/libdev/pic18f*.c,
2872         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2873           keywords to "__sfr" and "__at (X)"
2874         * device/include/pic16/pic18fregs.h: added pic18f4520
2875         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2876           #1203088 (MPLAB compatibility)
2877
2878 2005-05-17 Raphael Neider <rneider AT web.de>
2879
2880         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
2881         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
2882         * device/lib/pic16/pics.all: added new devices
2883         * src/pic16/device.c: added support for pic18f4520
2884
2885 2005-05-16 Raphael Neider <rneider AT web.de>
2886         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
2887         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
2888         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
2889           convenience function for bit access
2890
2891 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
2892
2893         * device/lib/printf_large.c: fixed bug 1193299
2894         * support/regression/tests/bug1057979.c: added test %3.3s
2895
2896 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2897
2898         * device/include/mcs51/8051.h,
2899         * device/include/mcs51/8052.h: made parseable with lint
2900         * device/include/mcs51/lint.h: added include file for (sp)lint
2901         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
2902         * doc/cdbfileformat.lyx,
2903         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
2904
2905 2005-05-14 Raphael Neider <rneider AT web.de>
2906
2907         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
2908         * device/lib/pic16/libc/stdlib/itoa.c (new)
2909         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
2910         * device/lib/pic16/libio/Makefile: exclude subdir according to
2911           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
2912         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
2913         * src/pic16/gen.c (genFunction): prevent annoying warning
2914         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
2915           nameclashes on BeOS
2916         * support/cpp2/cppmain.c (cpp_output_string): new
2917         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
2918           fixes bug 1116802
2919
2920 2005-05-13 Borut Razem <borut.razem AT siol.net>
2921
2922         * src/SDCCmain.c (linkEdit): fixed bug 1195202
2923
2924 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2925
2926         * .version: changed to version 2.5.1; back to bleeding edge development
2927
2928 2005-05-11 Borut Razem <borut.razem AT siol.net>
2929
2930         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
2931           generate PDF version 1.3 documents
2932
2933 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2934
2935         * .version: changed to version 2.5.0
2936
2937 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2938
2939         * doc/sdccman.lyx: updated weblinks, index and smaller updates
2940
2941 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2942
2943         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
2944         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
2945         well as many smaller updates.
2946         * .version: changed to version 2.5.0-pre1
2947
2948 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2949
2950         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
2951
2952 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
2953
2954         * support/regression/tests/bug1185672.c: added
2955         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
2956           bug 1185672
2957         * src/mcs51/gen.c (genCall): added comments, made it look safer
2958         * src/mcs51/gen.c (genEndFunction): simplified
2959
2960 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
2961
2962         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
2963
2964 2005-04-14 Borut Razem <borut.razem AT siol.net>
2965
2966         * fixed bug 1045046 - SIGSEGV with really simple code?:
2967           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
2968           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
2969
2970 2005-04-14 Borut Razem <borut.razem AT siol.net>
2971
2972         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
2973           src/pic16/device.h: temporarily disabled experimental #inline pragma
2974           for 2.5.0 release
2975
2976 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
2977
2978         * device/include/z80/stdio.h,
2979         * device/include/z80/string.h: removed these highly incomplete files so
2980           SDCC can use the default ones in device/include/
2981
2982 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2983
2984         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
2985         gcc warning.
2986         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
2987         fix sdcpp warnings.
2988
2989 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
2990
2991         * device/include/malloc.h: removed redundant __reentrant prototypes
2992         * device/lib/_mullong.c: added working xstack variant in asm (C version
2993           doesn't pass regression tests)
2994         * device/lib/bpx.c: used __data and made bpx char for mcs51
2995         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
2996           (createFunction): fixed bug with xstackPtr
2997         * src/SDCCcse.c: corrected comments
2998         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
2999           (killDeadCode, eBBlockFromiCode): removed unused code
3000         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3001           corrected comments
3002         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3003           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3004           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3005           (genModOneByte): fixed warning in MSVC
3006         * src/mcs51/main.c (): added comments
3007         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3008
3009 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3010
3011         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3012
3013 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3014
3015         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3016
3017 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3018
3019         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3020         characters arrays of larger size than the declared one.
3021
3022 2005-04-10 Borut Razem <borut.razem AT siol.net>
3023
3024         * src/pic/gen.c (genInline),
3025           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3026           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3027           (findNextInstruction), (findPrevInstruction),
3028           (findInstructionUsingLabel),
3029           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3030         * src/pic/pcode.c (findLabel): added missing '\n'
3031         * src/src.dsp: added SDCCdwarf2.c to the project
3032
3033 2005-04-09 Borut Razem <borut.razem AT siol.net>
3034
3035         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3036
3037 2005-04-08 Raphael Neider <rneider AT web.de>
3038
3039         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3040           into the chain after a given one) and mergeDefmapSymbols (combine
3041           defmap entries for each symbol per pcode)
3042         * (createDefmap): have defmap entries merged in the end
3043         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3044           a symbol before replacing one access type's symbol, merge symbols in
3045           the end (replacement symbol might already have an entry)
3046         * (assignValnums): keep reference to written WREG intact
3047
3048 2005-04-08 Raphael Neider <rneider AT web.de>
3049
3050         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3051           Alpha)
3052
3053 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3054
3055         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3056         bytes
3057
3058 2005-04-07 Raphael Neider <rneider AT web.de>
3059
3060         * device/include/pic16/usart.h: added compatibility defines for
3061           devices with more than one USART
3062         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3063
3064 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3065
3066         * device/lib/Makefile.in: updated for port specific include
3067
3068 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3069
3070         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3071
3072 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3073
3074         * device/include/8051.h,
3075         * device/include/8052.h,
3076         * device/include/at89S8252.h,
3077         * device/include/at89c55.h,
3078         * device/include/at89x051.h,
3079         * device/include/at89x51.h,
3080         * device/include/at89x52.h,
3081         * device/include/mcs51reg.h,
3082         * device/include/reg51.h,
3083         * device/include/reg764.h,
3084         * device/include/regc515c.h,
3085         * device/include/sab80515.h: (re)moved these 12 files
3086         * device/include/mcs51/8051.h,
3087         * device/include/mcs51/8052.h,
3088         * device/include/mcs51/at89S8252.h,
3089         * device/include/mcs51/at89c55.h,
3090         * device/include/mcs51/at89x051.h,
3091         * device/include/mcs51/at89x51.h,
3092         * device/include/mcs51/at89x52.h,
3093         * device/include/mcs51/mcs51reg.h,
3094         * device/include/mcs51/reg51.h,
3095         * device/include/mcs51/reg764.h,
3096         * device/include/mcs51/regc515c.h,
3097         * device/include/mcs51/sab80515.h: and added them here
3098
3099 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3100
3101         * device/include/stdarg.h: changed SDCC specific keywords to double
3102           underlined form.
3103         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3104           mcs51 and ds390.
3105         * device/include/hc08/mc68hc908gp32.h,
3106         * device/include/hc08/mc68hc908jb8.h,
3107         * device/include/hc08/mc68hc908jkjl.h,
3108         * device/include/hc08/mc68hc908qy.h: fixed comments
3109         * device/include/mcs51/README: updated
3110         * device/include/mcs51/c8051f120.h: added PINRSF
3111         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3112         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3113           amidst code. Also inline is not supported.
3114
3115 2005-04-06 Raphael Neider <rneider AT web.de>
3116
3117         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3118         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3119           callers stack/frame pointers
3120
3121 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3122
3123         * device/include/pic16/usart.h: added, missing in previous commit,
3124         * device/include/pic16/adc.h: fixed typo,
3125         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3126         commit,
3127         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3128         <p18fxxx.inc>
3129         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3130         uninitialized because a bug appears with gplink
3131         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3132         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3133         complains for unrecognised option
3134
3135 2005-04-05 Raphael Neider <rneider AT web.de>
3136
3137         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3138           structs as well (using memcpy)
3139         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3140           on ISRs (GOTO has no label)
3141         * src/pic16/device.h: added OF_OPTIMIZE_DF
3142         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3143           new data flow analysis/optimization
3144         * src/pic16/pcode.c: added (prototypes for and implementation of)
3145           dataflow analysis functions, fixed pCodeInstructions' inCond and
3146           outCond values, made RCALL a branch instruction
3147         * (pic16_unlinkpCode): keep C line if possible
3148         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3149           C line moved if possible
3150         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3151         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3152           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3153         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3154           new flow)
3155         * (pic16_getJumptabpCode): NEW, needed in...
3156         * (LinkFlow): fixed handling of jumptables, calls and conditional
3157           branches
3158         * (pic16_InsertCommentAfter): NEW
3159         * (pic16_pCodeReplace): made verbose and flow preserving
3160         * (AnalyzeFlow): added call to data flow analysis
3161         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3162         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3163         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3164
3165 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3166
3167         * src/SDCCast.c (decorateType): fixed bug #1105626
3168
3169 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3170
3171         * device/include/asm/pic16/features.h,
3172         * pic18f*.h headers,
3173         * device/include/pic16/adc.h,
3174         * device/include/pic16/delay.h,
3175         * device/include/pic16/i2c.h,
3176         * device/include/pic16/malloc.h,
3177         * device/include/pic16/stdio.h,
3178         * device/include/pic16/stdlib.h,
3179         * device/include/pic16/string.h,
3180         * device/lib/pic16/libc/stdio/printf_tiny.c,
3181         * device/lib/pic16/libc/stdio/printf_small.c,
3182         * device/lib/pic16/libc/stdio/strmgpsim.c,
3183         * device/lib/pic16/libc/stdio/strmmssp.c,
3184         * device/lib/pic16/libc/stdio/strmusart.c,
3185         * device/lib/pic16/libc/stdio/vfprintf.c,
3186         * device/lib/pic16/libc/stdlib/ltoa.c,
3187         * device/lib/pic16/libc/stdlib/putchar.c,
3188         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3189         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3190         * device/lib/pic16/libc/stdlib/memchrram.c,
3191         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3192         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3193         * device/lib/pic16/libio/adc/adcbusy.c,
3194         * device/lib/pic16/libio/adc/adcread.c,
3195         * device/lib/pic16/libio/adc/adcsetch.c,
3196         * device/lib/pic16/libio/usart/ubaud.c,
3197         * device/lib/pic16/libio/usart/ubusy.c,
3198         * device/lib/pic16/libio/usart/udrdy.c,
3199         * device/lib/pic16/libio/usart/uopen.c,
3200         * device/lib/pic16/libio/usart/uputc.c,
3201         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3202         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3203         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3204         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3205         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3206         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3207         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3208         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3209         specific keywords to double underlined form,
3210         * device/lib/pic16/libc/Makefile.rules,
3211         * device/lib/pic16/libsdcc/Makefile.rules,
3212         * device/lib/pic16/libm/Makefile,
3213         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3214         to compile with C standard set in Makefile.common
3215         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3216         rand.c and crc.c in compilation process,
3217         * device/lib/pic16/libsdcc/int/divuint.c,
3218         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3219         `c' from signed to unsigned,
3220         * device/lib/pic16/startup/crt0.c,
3221         * device/lib/pic16/startup/crt0i.c,
3222         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3223         keywords to double underlined form, bug fixes in _do_cinit function
3224         which prevented the correct initialization of the .idata segment,
3225         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3226         core to enter a infinite loop
3227         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3228
3229 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3230
3231         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3232
3233 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3234
3235         * device/include/Makefile.in: add support for hc08 subdirectory
3236         * device/include/hc08/: new subdirectory
3237         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3238         Lucas Loizaga, thanks!
3239         * device/include/hc08/mc68hc908qy.h,
3240         * device/include/hc08/mc68hc908gp32.h,
3241         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3242         their own directory. Changed internal macro names to use the compiler
3243         reserved namespace. Changed SDCC specific keywords to double
3244         underlined form.
3245         * device/include/math.h,
3246         * device/include/malloc.h,
3247         * device/include/stdarg.h,
3248         * device/include/stdbool.h
3249         * device/include/string.h,
3250         * device/include/tinibios.h,
3251         * device/include/ds400rom.h,
3252         * device/include/8051.h,
3253         * device/include/8052.h,
3254         * device/include/80c51xa.h,
3255         * device/include/at89c55.h,
3256         * device/include/at89S8252.h,
3257         * device/include/at89x51.h,
3258         * device/include/at89x52.h,
3259         * device/include/ds80c390.h,
3260         * device/include/reg764.h,
3261         * device/include/regc515c.h,
3262         * device/include/sab80515.h,
3263         * device/include/mcs51/c8051f000.h,
3264         * device/include/mcs51/c8051f018.h,
3265         * device/include/mcs51/c8051f020.h,
3266         * device/include/mcs51/c8051f040.h,
3267         * device/include/mcs51/c8051f060.h,
3268         * device/include/mcs51/c8051f120.h,
3269         * device/include/mcs51/c8051f300.h,
3270         * device/include/mcs51/c8051f310.h,
3271         * device/include/mcs51/c8051f320.h,
3272         * device/include/mcs51/c8051f330.h,
3273         * device/include/mcs51/c8051f350.h,
3274         * device/include/z180.h: Changed SDCC specific keywords to double
3275         underlined form.
3276
3277 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3278
3279         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3280         18F4455,
3281         * (pic16_assignConfigWordValue): disable testing of configuration
3282         register value with config mask,
3283         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3284         function with port->fun_prefix,
3285         * (genFunction): when generating a naked interrupt function never
3286         create an absolute segment placed in interrupt vector address, place
3287         the actual interrupt function at IVA instead, when an interrupt
3288         function is generated with unspecified interrupt then do not create
3289         the absolute section,
3290         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3291         code for generating a call to generic pointer get/put function with
3292         a call to function pic16_callGenericPointer(),
3293         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3294         the call to the generic pointer get/put functions with prefixing the
3295         function name with port->fun_prefix,
3296         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3297         * src/pic16/main.c (_process_pragma): prefix function with
3298         port->fun_prefix,
3299         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3300         calling assembler, old 18Fxxxx macro is deprecated,
3301         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3302         PC_ASMDIR in while condition,
3303         * (findInstruction): add PC_ASMDIR in while condition,
3304         * (buildCallTree): prefix main with port->fun_prefix,
3305         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3306         identifier for variable with banked access in instructions BTFSS,
3307         BTFSC, BCF, BSF, BTG
3308         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3309         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3310         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3311         perform optimization when enviroment variable NO_REG_OPT is set,
3312         * (insideLRBlock): NEW, return 1 if register is inside an
3313         INF_LOCALREGS block,
3314         * (RemoveRegFromLRBlock): remove a register that is completely
3315         eliminated by register optimization, but it is still left in local
3316         register store/restore in/from stack block,
3317         * (Remove2pcodes): after removing register, check to see if it
3318         should be removed from local register store/restore in/from stack
3319         block,
3320         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3321         DUMMY_READ_VOLATILE,
3322
3323         * device/include/pic16/adc.h: minor prototype modifications and
3324         update,
3325         * device/include/pic16/malloc.h: added GPL notice various
3326         modifications,
3327         * device/include/pic16/stdint.h: NEW, standard header for ints
3328         * device/include/pic16/delay.h: NEW, header for delay functions,
3329         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3330         delay1mtcy,
3331         * device/include/pic16/signal.h: NEW, header providing helper macros
3332         for implementing signal handlers,
3333         * device/include/pic16/stdio.h: added prototypes for functions,
3334         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3335         prototypes for stdin and stdout, added macro PUTCHAR to
3336         automatically implement putchar function prototype,
3337         * device/include/pic16/usart.h: modified and updated USART library,
3338         * device/lib/pic16/libio/adc/,
3339         * device/lib/pic16/libio/i2c: some modifications to improve library
3340         performance,
3341         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3342         family of functions,
3343         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3344         family of functions and other sources,
3345         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3346         of the PIC18Fxx[28] devices,
3347         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3348         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3349         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3350         _do_cinit function, because the previous failed when local variables
3351         where not placed in the same memory bank,
3352         * device/lib/pic16/libsdcc/char/: various modifications to improve
3353         library performance,
3354         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3355         information on the new functions of the c library and more...
3356
3357 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3358
3359         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3360
3361 2005-03-26 Raphael Neider <rneider AT web.de>
3362
3363         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3364           if condition == CARRY)
3365         * (genCmp): adapted to new genSkipc semantics
3366         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3367           on rIfx (genCmp was broken)
3368
3369 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3370
3371         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3372         * src/z80/main.c (_keywords[]),
3373         * src/SDCCglobal.h (struct options),
3374         * src/SDCC.y,
3375         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3376         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3377         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3378         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3379         always available in leading double underscore form. The C99 support is
3380         mostly missing, but it's a start.
3381         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3382         reserved identifier "__data".
3383
3384 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3385
3386         * src/mcs51/peeph.def: fixed bug 1170013
3387
3388 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3389
3390         * device/include/mcs51reg.h: fixed bug 842007
3391
3392 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3393
3394         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3395         last time.
3396
3397 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3398
3399         * src/port.h (struct PORT),
3400         * src/avr/ralloc.c (avr_assignRegisters),
3401         * src/avr/main.c,
3402         * src/ds390/ralloc.c (ds390_assignRegisters),
3403         * src/ds390/main.c,
3404         * src/hc08/ralloc.c (hc08_assignRegisters),
3405         * src/hc08/main.c,
3406         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3407         * src/mcs51/main.c,
3408         * src/pic/ralloc.c (pic14_assignRegisters),
3409         * src/pic/main.c,
3410         * src/pic16/ralloc.c (pic16_assignRegisters),
3411         * src/pic16/main.c,
3412         * src/xa51/ralloc.c (xa51_assignRegisters),
3413         * src/xa51/main.c,
3414         * src/z80/ralloc.c (z80_assignRegisters),
3415         * src/z80/ralloc.h,
3416         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3417         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3418         * src/SDCCcse.h,
3419         * src/SDCCdflow.c (computeDataFlow),
3420         * src/SDCCdflow.h,
3421         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3422         * src/SDCCloop.h,
3423         * src/SDCCcflow.c (*),
3424         * src/SDCCcflow.h,
3425         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3426         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3427         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3428         immedDom() returning wrong block; probably fixes bug #1160833)
3429
3430 2005-03-20 Borut Razem <borut.razem AT siol.net>
3431
3432         * support/scripts/inc2h.pl: WIN32 port
3433
3434 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3435
3436         * device/lib/makefile.in: added abs.c and labs.c
3437
3438 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3439
3440         * device/include/stdint.h: added
3441         * device/lib/abs.c: added
3442         * device/lib/labs.c: added
3443         * device/include/stdlib.h: added abs() and labs() prototypes
3444         * device/lib/libsdcc.lib: added abs and labs
3445         * device/include/float.h,
3446         * device/lib/_fsmul.c,
3447         * device/lib/printf_fast.c,
3448         * device/lib/printf_tiny.c: updated comments
3449
3450 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3451
3452         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3453         bug #1164313
3454
3455 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3456
3457         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3458         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3459
3460 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3461
3462         * device/lib/printf_large.c: removed inline assembly for portability and
3463           readability. Use printf_fast if speed or size are more important.
3464         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3465         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3466
3467 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3468
3469         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3470         prevent compiler warning
3471
3472 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3473
3474         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3475         moved to level 0 and declared as static. Also they are explicit
3476         placed in access bank. This was necessery because some times they
3477         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3478         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3479         optimizations. Currently only compare to unsigned char is implemented,
3480         * src/pic16/gen.c: added fReturnIdx array,
3481         * (struct resolvedIfx) is moved to gen.h and made public,
3482         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3483         * (aopForSym): added an optimization to directly store in stack of
3484         the operand of a SEND iCode,
3485         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3486         but as registers instead (AOP_REG) using the fReturnIdx array,
3487         * (pic16_freeAsmop): remove the freed register from the
3488         _G.sregsAlloc field,
3489         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3490         a compare of 'WREG',
3491         * (pic16_popGetTempRegCond): changed function prototype, now
3492         function takes also a bitVector argument v which holds the current
3493         set of registers that are allocated for stack access by aopForSym,
3494         registers allocated in aopForSym for accessing stack symbols are not
3495         any more part of the functions usedRegs field,
3496         * (genCall): some times aopOp is called for a stack variable to be
3497         send, aopForSym might perform the push, if this is true make sure
3498         that genCall doesn't push the variable twice by testing _G.resDirect,
3499         * (genFunction): changed testing for unspecified interrupt number
3500         from 256 to INTNO_UNSPEC,
3501         * modified selection scheme of frame pointer generation. Previously
3502         if function did use local registers a frame pointer was generated,
3503         now a frame pointer is generated only if function has arguments
3504         (that need PLUSW2 register access), or has stack arguments, or the
3505         compiler is not instructed to omit the frame pointer,
3506         * (genEndFunction): before restoring local registers that were saved
3507         in the function preamble, also restore the registers that *might*
3508         have been allocated for stack access,
3509         * (genRet): removed some old comments,
3510         * (genCmp, the active (RN's) version): added a call to the
3511         pic16_genCmp_special function to perform the compare with a more
3512         robust and optimized way,
3513         * (genInline): a feature has been added in inline code generation,
3514         which allows a wildcard variable substitution when writing inline
3515         assembly. Code is incomplete and experimental therefore undocumented,
3516         * (genCast): changed order of aopOp for result and right to allow
3517         aopForSym to directly load the result if possible,
3518         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3519         perform an optimized compare on some selected special occasions,
3520         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3521         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3522         generate an IVT any more,
3523         * src/pic16/main.c (pic16_optionsTable): added command line option
3524         --optimize-cmp,
3525         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3526         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3527         macros,
3528         * src/pic16/NOTES: Raphael Neider added in list of active developers
3529         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3530         jumptable_end to prevent bug #,
3531         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3532         inCond and outCond fields,
3533         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3534         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3535         turn off register spilling,
3536         * (packRegsForOneUse): synced with other ports' versions although it
3537         is not used currently,
3538         * (pic16_packRegisters): added an optimization while reading
3539         structure bitfields, some registers may be saved (malloc code is
3540         decreased by 80 bytes)
3541
3542 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3543
3544         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3545         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3546         this can be optimized more?
3547
3548 2005-03-10 Raphael Neider <rneider AT web.de>
3549
3550         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3551           genNearPointerGet): (hopefully) fixed access to bitfields via
3552           pointers (p->bitN = x; and x = p->bitN; failed)
3553
3554 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3555
3556         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3557
3558 2005-03-09 Raphael Neider <rneider AT web.de>
3559
3560         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3561
3562 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3563
3564         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3565         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3566           (regTypeNum): set REG_BIT type if necessary
3567         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3568         * support/regression/tests/critical.c: check bug 1144613
3569
3570 2005-03-02 Raphael Neider <rneider AT web.de>
3571
3572         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3573
3574 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3575
3576         * src/avr/ralloc.c (serialRegAssign),
3577         * src/ds390/ralloc.c (serialRegAssign),
3578         * src/hc08/ralloc.c (serialRegAssign),
3579         * src/mcs51/ralloc.c (serialRegAssign),
3580         * src/pic/ralloc.c (serialRegAssign),
3581         * src/pic16/ralloc.c (serialRegAssign),
3582         * src/xa51/ralloc.c (serialRegAssign),
3583         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3584
3585 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3586
3587         * src/SDCCast.c (decorateType): fixed bug 1124787
3588
3589 2005-02-20 Hubert Sack <sack AT digiplan.de>
3590         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3591
3592         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3593         patch #1121755
3594
3595 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3596
3597         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3598         to keep the correct label reference count when adding/removing references
3599         to labels. A peephole file using this is appended to patch #1144962.
3600
3601 2005-02-14 Raphael Neider <rneider AT web.de>
3602
3603         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3604         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3605         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3606           retrievals of result operand's value on assignment
3607
3608 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3609
3610         * device/include/pic16/string.h: modified prototype for memccpy()
3611         to memccpy(void *, void *, char, size_t)
3612         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3613         check whether to omit frame pointer or not,
3614         * (genInline): convert all occurences of "\n" to LF in inline
3615         assembler blocks, this helps formatting the inline text,
3616         * (pic16_loadFSR0): modified prototype,
3617         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3618         removed some 8051 legacy code,
3619         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3620         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3621         before allocating temporary registers in functions,
3622
3623 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3624
3625         * support/regression/tests/bitvars.c: corrected the "fix"
3626
3627 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3628
3629         * support/regression/tests/bitvars.c,
3630         * support/regression/tests/bitwise.c,
3631         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3632
3633 2005-02-10 Raphael Neider <rneider AT web.de>
3634
3635         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3636           different size for Alpha
3637         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3638
3639 2005-02-09 Raphael Neider <rneider AT web.de>
3640
3641         * src/SDCC.lex(doPragma) : save and restore warning options as well
3642           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3643         * have #pragma less_pedantic set the errorlevel to WARNING
3644           (fixes #1117001)
3645         * (cloneOptimize) : fixed wrong malloc's size
3646         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3647           facilitate correct handling of #pragma (save|restore)
3648
3649 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3650
3651         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3652
3653 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3654
3655         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3656
3657 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3658
3659         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3660
3661 2005-02-02 Raphael Neider <rneider AT web.de>
3662
3663         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3664         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3665         * (pic16_storeForReturn): fixed to allow returning function pointers
3666         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3667         * device/include/pic16/{stddef.h,stdbool.h}: added
3668
3669 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3670
3671         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3672
3673 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3674
3675         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3676         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3677          appeared to be required
3678
3679 2005-01-31 Borut Razem <borut.razem AT siol.net>
3680
3681         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3682           include/mcs51 and include/z80 directories to the package
3683
3684 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3685
3686         * src/hc08/gen.c (genFunction): fixed bug #1112752
3687
3688 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3689
3690         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3691
3692 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3693
3694         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3695
3696 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3697
3698         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3699
3700 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3701
3702         * device/include/c8051fxxx.h: removed these 6 files
3703         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3704
3705 2005-01-26 Raphael Neider <rneider AT web.de>
3706
3707         * src/pic16/gen.c (genAssign): fixed assignment from longs
3708           in codespace (were cut to three bytes)
3709         * (genDummyRead): implemented (except for CODESPACE...),
3710           fixed bug #1108575
3711         * src/pic16/glue.c (emitStatistics): beautified
3712         * device/lib/pic16/libm/Makefile: added include path
3713
3714 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3715
3716         * src/z80/gen.c (aopPut): fixed bug #1103902
3717
3718 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3719
3720         * device/lib/expf.c: fixed bug #1095792
3721
3722 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3723
3724         * device/lib/pic16/libm: added Math library sources
3725
3726 2005-01-24 Raphael Neider <rneider AT web.de>
3727
3728         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3729           to enable upcast to pCodeOpReg2 (there is no type tag to
3730           differenciate the two and pic16_popGet2p cast into PCOR2)
3731         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3732           (sizeof(sectNames) changed to sizeof(sectName))
3733           Both patches fix segfaults under MinGW.
3734
3735 2005-01-23 Raphael Neider <rneider AT web.de>
3736
3737         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3738           Safe_[mc]?alloc()'ed variables
3739         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3740           of (byte sized) temporaries (assign them to WREG for now)
3741         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3742           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3743           this might fix SIGSEGVs on MinGW...
3744         * src/SDCCopt.c (killDeadCode): restored original behaviour
3745           (volatile operands might get thrown away though)
3746
3747 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3748
3749         * src/pic16/gen.c: fixed bug #1106975,
3750         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3751         pointer update, INTCON is saved, global interrupts are disabled and
3752         restored after updateing TOS.
3753         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3754         * added function attribute 'shadowregs' to take advantage of shadow
3755         registers,
3756         * added function attribute 'wparam' as an alternative to the wparam
3757         pragma,
3758         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3759         user declares a non-ISR function as 'shadowregs',
3760         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3761
3762 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3763
3764         * .version: bumped version number to 2.4.8
3765         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3766         pic16 port,
3767         * device/lib/pic16/libio/i2c/: I2C module support library,
3768         * device/include/pic16/i2c.h: I2C support library header,
3769         * device/lib/pic16/libc/stdio/: standard IO support sources,
3770         * (printf_small.c): printf_small() source, supports float print,
3771         * (printf_tiny.c): printf_tiny() source, does not support floats,
3772         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3773         enable global optimizations for entire library source, other
3774         Makefiles in the source tree are also modified to reflect this,
3775         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3776         function,
3777         * doc/sdccman.lyx: updated to reflect new changes,
3778         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3779         sym->onStack if-case,
3780         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3781         sbit, idata, _idata, xdata, _xdata,
3782         * added pragma library, to link an external library, (see doc),
3783         * removed command line options, --pomit-config-words, --pomit-ivt,
3784         --pleave-reset-vector,
3785         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3786         when calling assembler to reflect memory model used, also define
3787         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3788         reflect stack model used,
3789         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3790         on stack return NULL,
3791
3792 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3793
3794         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3795           of the operands is volatile. Fixes #1020220
3796
3797 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3798
3799         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3800         * (OptimizeRegUsage): make sure that there is really no other flow where
3801           the first pCode is used
3802
3803 2005-01-22 Raphael Neider <rneider AT web.de>
3804
3805         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3806           to fix #1106967 (pCode->seq are not set up correctly)
3807
3808 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3809
3810         * src/SDCCglue.c (glue): make sure code area is declared before the
3811         static initialization area.
3812
3813 2005-01-21 Raphael Neider <rneider AT web.de>
3814
3815         * device/lib/Makefile.in: fixed test for pic16 install dir
3816         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3817           optimizations
3818         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3819           added --optimize-goto compiler switch and pragma wparam documentation
3820         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3821         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3822           and PRODH closing bug #1071770 (peephole optimizer)
3823
3824 2005-01-19 Raphael Neider <rneider AT web.de>
3825
3826         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3827           cmdLine buffers (used when calling sdcpp...) are large enough
3828           (MAX_PATH=256 truncates arguments leading to system halts when
3829           used in MinGW...)
3830         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3831         * (genUminus): rewritten to for efficiency
3832         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3833           used uninitialized in some cases)
3834         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3835           copy the third byte from the int -- now assumes 0x80 (data memory)
3836         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3837           operands (genAddLit expects the iCode's operands to swapped as
3838           well), fixed leftover bytes (crashed for short left operands)
3839         * (pic16_genMinusDec): performance improvements, removed false
3840           PIC14 emitSKPNCs
3841         * (pic16_genMinus): fixed to cope with differently sized operands
3842         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3843           for --obanksel > 1
3844         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3845         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3846           new banksel optimization
3847         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3848           analysis for temporary registers (segfaults...)
3849         * src/pic16/peeph.def: added rule
3850
3851 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3852
3853         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3854         which converts a float number to its ASCII representation
3855         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3856         functions to convert the fractional and integer part of a float to ASCII,
3857         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3858         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3859         ram
3860         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3861         _STATMEM macros,
3862         * device/include/pic16/adc.h: added GPL info,
3863         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3864         a pCodeOp as tested operand,
3865         * (genNearPointerGet): optimized bit testing, does not use
3866         intermediate register for bit value, test directly instead with
3867         BTFSS, BTFSC, works only for single bits,
3868         * (genpic16Code): dump the name of the iCode in the asm,
3869         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3870         renamed to pic16_decodeOp,
3871         * (serialRegAssign): do not allocate a temporary register for iCode
3872         sequences that test a single bit for 1/0
3873
3874 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3875
3876         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3877         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3878         access stack and frame pointers. They are initially assigned to
3879         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3880         accessing SFRs. Updated all occurences of modification of stack or
3881         frame pointer in gen.c and pcode.c,
3882         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
3883         assigning of a literal value to pointers,
3884         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
3885         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
3886         selected
3887
3888 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3889
3890         * doc/sdccman.lyx: update documentation about stack pragma, added
3891         some info for stack memory models
3892
3893 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3894
3895         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
3896
3897 2005-01-08 Raphael Neider <rneider AT web.de>
3898
3899         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
3900           udata sections to fix bug #1097823
3901
3902 2005-01-05 Raphael Neider <rneider AT web.de>
3903
3904         * src/pic16/gen.c (genGenericShift): added handling of differently
3905           sized left operand and result
3906
3907 2005-01-04 Raphael Neider <rneider AT web.de>
3908
3909         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
3910         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
3911           to hold the condition bit)
3912         * added new version of genCmp (old code available via #define)
3913         * added new version of genShiftLeft/genShiftRight in a generic
3914           way, now supports shifting by negative values
3915         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
3916           shiftCount (expected by genGenericShift)
3917         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
3918         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
3919           dump
3920         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
3921           is an invalid literal too...)
3922
3923 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
3924
3925         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
3926         from Raphael Neider,
3927         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
3928         for 8-bit literals. This fixes some literal operands which are sign
3929         extended to 16-bits ints when instruction needs only 8-bits.
3930
3931 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
3932
3933         * device/lib/logf.c: added mcs51 assembly version
3934         * device/lib/expf.c: added mcs51 assembly version
3935         * device/lib/_logexpf.c: new shared asm code for expf and logf
3936         * device/include/math.h: add defines for assembly math library
3937         * device/lib/Makefile.in: build new _logexpf.c
3938         * device/lib/libfloat.lib: use new _logexpf.c
3939
3940 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3941
3942         * src/pic/device.c
3943         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
3944           device types which have less than 0x7f registers.
3945
3946 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
3947
3948         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
3949
3950 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3951
3952         * device/lib/printf_fast.c: only build on supported arch.
3953         * device/lib/printf_tiny.c: only build on supported arch.
3954         * device/lib/printf_fast_f.c: only build if asm float lib
3955         * device/lib/_fsget1arg.c: only build if asm float lib
3956         * device/lib/_fsget2args.c: only build if asm float lib
3957         * device/lib/_fsnormalize.c: only build if asm float lib
3958         * device/lib/_fsreturnval.c: only build if asm float lib
3959         * device/lib/_fsrshift.c: only build if asm float lib
3960         * device/lib/_fsswapargs.c: only build if asm float lib
3961         * device/include/stdio.h: don't provide print_fast,
3962           print_fast_f, print_tiny prototypes if --xstack used
3963
3964 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
3965
3966         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
3967         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
3968           to the SOURCES
3969
3970 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
3971
3972         * device/lib/printf_fast_f.c: same as printf_fast, but
3973           with floating point enabled
3974         * device/lib/printf_fast.c: minor tweaks
3975         * device/include/stdio.h: add printf_fast_f
3976
3977 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3978
3979         * src/SDCCmain.c: make --float-reent default for mcs51
3980         * device/lib/_fsadd.c: added mcs51 assembly version
3981         * device/lib/_fssub.c: added mcs51 assembly version
3982         * device/lib/_fsmul.c: added mcs51 assembly version
3983         * device/lib/_fsdiv.c: added mcs51 assembly version
3984         * device/lib/_fseq.c: added mcs51 assembly version
3985         * device/lib/_fsneq.c: added mcs51 assembly version
3986         * device/lib/_fsgt.c: added mcs51 assembly version
3987         * device/lib/_fslt.c: added mcs51 assembly version
3988         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
3989         * device/lib/Makefile.in: add _fscmp to build
3990         * device/lib/libfloat.lib: add _fscmp to build
3991
3992 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
3993
3994         * device/lib/_fs2slong.c: added mcs51 assembly version
3995         * device/lib/_fs2sint.c: added mcs51 assembly version
3996         * device/lib/_fs2schar.c: added mcs51 assembly version
3997         * device/lib/_fs2ulong.c: added mcs51 assembly version
3998         * device/lib/_fs2uint.c: added mcs51 assembly version
3999         * device/lib/_fs2uchar.c: added mcs51 assembly version
4000         * device/lib/_slong2fs.c: added mcs51 assembly version
4001         * device/lib/_sint2fs.c: added mcs51 assembly version
4002         * device/lib/_schar2fs.c: added mcs51 assembly version
4003         * device/lib/_ulong2fs.c: added mcs51 assembly version
4004         * device/lib/_uint2fs.c: added mcs51 assembly version
4005         * device/lib/_uchar2fs.c: added mcs51 assembly version
4006         * device/include/float.h: added #define to select asm vs c
4007
4008 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4009
4010         * device/lib/printf_fast.c: improvements to float output
4011         * device/include/float.h: add defines for assembly float library
4012         * device/lib/_fsget1arg.c: receive 1 float arg
4013         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4014         * device/lib/_fsnormalize.c: normalize a float
4015         * device/lib/_fsreturnval.c: return float, various helper routines
4016         * device/lib/_fsrshift.c: right shift a float's mantissa
4017         * device/lib/_fsswapargs.c: swap 2 floats
4018         * device/lib/Makefile.in: build these 6 new files for mcs51
4019         * device/lib/libfloat.lib: add these 6 files to the library
4020
4021 2004-12-26 Borut Razem <borut.razem AT siol.net>
4022
4023         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4024           built by gcc 3.4.2
4025
4026 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4027
4028         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4029           and fully reentrant and register bank neutral.
4030         * device/lib/printf_fast.c: added float (not enabled by default),
4031           added compact/slower integer (also not enabled by default),
4032           improved size/speed of fast integer code, other minor changes
4033         * device/include/stdio.h, device/lib/Makefile.in,
4034           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4035
4036 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4037
4038         * src/pic16/pcode.c: declaring variables other than at the start of a
4039           block is not supported in C by VC6.
4040
4041 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4042
4043         * applied a previous patch from Raphael Neider that wasn't included
4044         in the previous commits, which fixes infinite loops within jumptable
4045         improvements,
4046         * made some fixes that previous patches introduced
4047
4048 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4049
4050         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4051         that fixes an issue with AOP_PCODE asmop's offset,
4052         * (pic16_popCopyReg): update instance field too,
4053         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4054         function of pic port,
4055         * (genCmp, genAnd, genAssign),
4056         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4057
4058 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4059
4060         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4061         variables initial values to idata section,
4062         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4063         variables in some functions. This utilizes parmBytes field of iCode
4064         structure to hold the offset of the variable in stack. (might be
4065         able to use the stack field too?)
4066         * applied patch from Raphael Neider # ### , # ###
4067         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4068         variable initial values in idata section,
4069         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4070         for static variables with initial value
4071         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4072         applied fix in while loop from Raphael Neider.
4073
4074 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4075
4076         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4077         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4078         * src/ds390/ralloc.c (serialRegAssign): spill bits
4079         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4080         * support/Util/SDCCerr.c,
4081         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4082         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4083         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4084
4085 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4086
4087         * device/include/sdcc-lib.h: inserted LGPL, added includes
4088           asm/ds390/features.h and asm/mcs51/features.h
4089         * device/include/asm/default/features.h,
4090         * device/include/asm/gbz80/features.h,
4091         * device/include/asm/z80/features.h: added empty _AUTOMEM
4092           and _STATMEM
4093         * device/include/asm/ds390/features.h,
4094         * device/include/asm/mcs51/features.h: added files with defines for
4095           _AUTOMEM and _STATMEM indicating automatic and static storage class
4096         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4097         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4098         * src/SDCCicode.c (geniCodeCast),
4099         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4100         * src/SDCCloop.c (loopInduction): removed unused variable lr
4101         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4102           to convertToFcall to include char modulo (RFE 1065037), added check
4103           if left operand is unsigned and use abs of literal value
4104         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4105           as it doesn't work after conversion from peephole.def to peephole.rul
4106         * src/mcs51/gen.c (toBoolean): added check for size,
4107           (genModOneByte): optimized code for signed char modulo a literal
4108           power of 2 (thanks to Hubert Sack),
4109           (genRRC): removed unnecessary "clr c",
4110           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4111         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4112           jump optimization,
4113           swapped rules 256.c and 256.d,
4114           extended 256.d by using new multiple checks (thanks Erik),
4115           added rules 256.e and 256.f,
4116           updated rule 261.a and 261.b to new generated code
4117         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4118
4119 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4120
4121         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4122           induction related bugs, including first part of bug #1074377
4123
4124 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4125
4126         * applied patch from bug-report #1076292,
4127         * applied patches for genAnd and Goto-optimizations for Raphael
4128         Neider,
4129         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4130         dump a less iCode information,
4131         * src/pic16/device.h (pic16_options_t): added field debgen,
4132         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4133         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4134         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4135         puclic,
4136         * (various functions): added macros FENTRY and FENTRY2 to functions,
4137         to emit function prologue,
4138         * (various functions): fixed indentation,
4139         * (genNearPointerGet): fixed loading of FSR0,
4140         * (genPackBits): applied patch from Raphael Neider to fix updating
4141         of FSR0 and touching only the modified bits,
4142         * src/pic16/genarith.c (various functions): added macros FENTRY to
4143         emit function prologue in comments,
4144         * src/pic16/pcode.h: added functions debugf2, debugf3,
4145         * src/pic16/ralloc.c: partial fix for packForPush caused
4146         segmentation fault,
4147
4148 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4149
4150         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4151           <stsp AT users.sourceforge.net> with reversed byte order
4152         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4153
4154 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4155
4156         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4157           bug #1074377
4158         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4159         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4160
4161 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4162
4163         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4164
4165 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4166
4167         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4168           conditions,
4169           (setFromConditionArgs): friendly operand parser for peephole rules,
4170           (operandBaseName, operandsNotRelated): new peephole condition
4171           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4172           architecture specific register naming into account, handles n-way
4173           comparisons, and supports quoted literals
4174         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4175
4176 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4177
4178         * src/mcs51/peeph.def: fixed bug #1076940
4179
4180 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4181
4182         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4183
4184 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4185
4186         Adding support for replacing ljmps with sjmps in jumptables
4187         generated for switch statements. For now you need to set the
4188         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4189         Now 4 algorithms for mcs51 jumptable generation are used:
4190         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4191         addresses loaded pc-relative for up to 112 cases and stack-pushing
4192         target addresses loaded with offset from dptr for up to 256 cases.
4193
4194         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4195         * src/mcs51/main.c: adapted constants for switch table generation
4196         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4197
4198 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4199
4200         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4201         * support/regression/tests/bug1057979.c: added test for bug 1073386
4202
4203 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4204
4205         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4206         compilers
4207
4208 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4209
4210         * src/pic16/device.h,
4211         * src/pic16/genarith.c,
4212         * src/pic16/glue.c,
4213         * src/pic16/main.c,
4214         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4215
4216 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4217
4218         Large cummulative patch for pic16 port.
4219         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4220         to call when a stack overflow occurs,
4221         * (malloc.h): added CVS Id tag,
4222         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4223         variable,
4224         * added libc directory. The current version of LibC contains string
4225         functions, ctype functions and macros and some functions of the
4226         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4227         be extensively tested in the future. Standard disclaimer here.
4228         Library is not automatically build yet. But one can build it by
4229         invoking 'make' inside the libc directory.
4230         * added ADC library under libio. Preliminary version yet.
4231
4232         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4233         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4234         aopForRemat() now and not by pic16_aopOp(),
4235         * (pic16_popGetTempReg): removed warning messgae when allocating
4236         temporary registers, its a buggy feature and will be removed,
4237         * (pic16_popGet): set register instance field in AOP_CRY,
4238         * (pic16_outBitC): fixed for results in size greater than 1,
4239         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4240         * (pic16_storeForReturn): optimized return of 0,
4241         * (genCmp): experimental code for new genCmp which uses PIC18's
4242         special compare&skip instructions. Initial tests fail some times
4243         with variables grater than 1 byte in size, so new code is disabled,
4244         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4245         a single bit,
4246         * (genCast): began a fix to optimize the casting of a bit to another
4247         bit, now assigning a bitfield to another bitfield will fail, sorry,
4248         * src/pic16/main.c: disabled the use of lr-support feature,
4249         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4250         * added some function prototypes, added function _debugf prototype,
4251         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4252         bits with offset (case PO_GPR_BIT),
4253         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4254         command line,
4255         * (isBankInstruction): modified to return 0 for no banking instruction,
4256         and 1 for banking instruction,
4257         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4258         caused stop processing pCodes after a inline assembly block,
4259         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4260         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4261         registers when it shouldn't,
4262         * src/pic16/ralloc.c (allocReg): add preliminary support for
4263         supporting a limited set of temporary registers,
4264
4265 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4266
4267         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4268           genDataPointerSet): ensure assignments always copy in MSB to LSB
4269           order,
4270           (loadRegFromAop): recognize CLRH optimization,
4271           (genFunction): optimize RECEIVE iCodes in reentrant functions
4272
4273 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4274
4275         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4276           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4277           selected.
4278         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4279         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4280           contiguous with data
4281
4282 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4283
4284         * device/lib/_gptrget.c (_gptrget),
4285         * device/lib/_gptrgetc.c (_gptrgetc),
4286         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4287           instead of sjmp to ret
4288         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4289           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4290
4291 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4292
4293         * .version: bumped version to 2.4.7
4294         * device/lib/_gptrget.c (_gptrget): is now _naked
4295         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4296         * device/lib/_gptrput.c (_gptrput): is now _naked
4297         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4298           (createFunction): fixed xstack
4299         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4300         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4301           or bit either,
4302           (geniCodeCritical): store original interrupt state in an iTemp bit
4303           var unless stack-auto
4304         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4305         * src/SDCCmain.c (setIncludePath): added include/target to search path
4306         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4307         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4308           prototype,
4309           (processFuncArgs): put bit vars in bit area
4310         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4311           unsaveRBank): fixed xstack,
4312           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4313           (genFunction, genEndFunction): fixed xstack,
4314           (genAssign): optimization don't walk backwards through mem
4315         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4316         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4317         * support/regression/Makefile: also make library (for stack-auto) when
4318           making "all" and added "test-mcs51-xstack-auto"
4319         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4320         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4321         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4322         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4323         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4324           make-library by MAKE_LIBRARY
4325         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4326           regression tests for xstack
4327         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4328         * support/regression/tests/critical.c: test for critical on mcs51
4329
4330 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4331
4332         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4333           built version of sdcc instead of installed version
4334
4335 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4336
4337         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4338         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4339           vprintf.c now
4340         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4341         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4342           WARNING: remove device/lib/build/z80/printf.o by hand when
4343           updating from previous build!
4344         * device/lib/z80/printf.c: updated comment
4345         * support/regression/tests/bug1057979.c: test all ports now
4346         * support/regression/tests/bug1065458.c: file added
4347
4348 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4349
4350         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4351           *_start and *_end symbols for static functions
4352
4353 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4354
4355         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4356           and search crt0.o in all library paths,
4357           (setIncludePath): proper handling of --nostdinc,
4358           (setLibPath): proper handling of --nostdlib
4359         * support/regression/Makefile,
4360         * support/regression/ports/ds390/spec.mk,
4361         * support/regression/ports/gbz80/spec.mk,
4362         * support/regression/ports/hc08/spec.mk,
4363         * support/regression/ports/mcs51/spec.mk,
4364         * support/regression/ports/mcs51-large/spec.mk,
4365         * support/regression/ports/mcs51-stack-auto/spec.mk,
4366         * support/regression/ports/z80/spec.mk: use include and lib files from
4367           built version of sdcc instead of installed version
4368         * doc/sdccman.lyx: fixed typo in --nostdinc
4369
4370 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4371
4372         * src/pic/pcode.c,
4373         * src/pic/device.c,
4374         * src/pic/ralloc.c,
4375         * src/pic/gen.c : added support to generate code for struct bit fields.
4376
4377 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4378
4379         * as/xa51/xa_version.h,
4380         * device/include/errno.h,
4381         * device/include/regc515c.h,
4382         * device/lib/_itoa.c,
4383         * device/lib/_ltoa.c,
4384         * device/lib/ser_ir_cts_rts.c,
4385         * sim/ucsim/xa.src/glob.cc,
4386         * sim/ucsim/xa.src/inst_gen.cc,
4387         * sim/ucsim/xa.src/xa_bit.cc,
4388         * sim/ucsim/xa.src/xa_sfr.cc,
4389         * sim/ucsim/z80.src/inst_dd.cc,
4390         * sim/ucsim/z80.src/inst_fdcb.cc,
4391         * support/scripts/keil2sdcc.pl,
4392         * src/pic16/pic16.dsp,
4393         * src/pic16/pic16a.dsp: corrected cvs line endings
4394         * device/lib/printf_large.c: fixed bug 1057979
4395         * src/pic16/gen.c: fixed non-C standard code
4396         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4397         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4398         * support/regression/ports/mcs51/support.c: reload T1 asap
4399         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4400           pdata use and clear idata startup behaviour
4401         * support/regression/tests/bug1057979.c: added
4402
4403 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4404
4405         * device/examples/ds390/ow390/ad26.h,
4406         * device/examples/ds390/ow390/cnt1d.h,
4407         * device/examples/ds390/ow390/crcutil.c,
4408         * device/examples/ds390/ow390/ownet.h,
4409         * device/examples/ds390/ow390/owsesu.c,
4410         * device/examples/ds390/ow390/swt12.h,
4411         * device/examples/ds390/ow390/swtoper.c,
4412         * device/examples/ds390/ow390/temp10.h,
4413         * device/examples/ds390/ow390/thermodl.c,
4414         * device/examples/ds390/tinitalk/tinitalk.dsp,
4415         * device/examples/ds390/tinitalk/tinitalk.dsw,
4416         * device/examples/mcs51/clock/hw.h,
4417         * device/examples/mcs51/simple2/go.bat,
4418         * device/examples/serialcomm/windows/serial.h,
4419         * device/examples/xa51/dummy.c,
4420         * device/examples/xa51/hello.c,
4421         * device/include/80c51xa.h,
4422         * device/include/at89x051.h: corrected cvs line endings
4423
4424 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4425
4426         * src/pic16/main.c (options): added command line --gstack, to trace
4427         stack over/under flows,
4428         * added pragma 'wparam' to allow passing first byte of function
4429         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4430         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4431         call to __gstack_test function and sets up the symbol as extern,
4432         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4433         * popaop): added call to pic16_testStackOverflow,
4434         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4435         wparamList list,
4436         * (genCall, genPcall): now all parameters are passed via stack
4437         except in functions that are pass to wparam pragma in which WREG is
4438         used too,
4439         * (genPcall): REENTRANT flag is checked to see if variable prototype
4440         contains reentrant keyword, don't call a non-reentrant function, via
4441         a reentrant function pointer or vice versa, functions are never
4442         passed via WREG,
4443         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4444         D.Winkler,
4445         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4446         SIGSEGV when accessing a NULL register stucture,
4447         * (pic16_printGPointerType): modified to handle UPPER modifier for
4448         function initializers, changed prototype of function to simpler one,
4449         * (pic16_printIvalFuncPtr): check to see if function is already
4450         added in externs list,
4451         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4452         optimized a move from W to SFR with a move to the same register
4453         later after a CALL,
4454         * device/lib/pic16/debug: NEW directory, contains debug features
4455         which are enabled when linking with libdebug.lib, currently command
4456         line option --gstack enables stack pointer tracing for over/under
4457         flow, corresponding sources are in debug/gstack
4458
4459 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4460
4461         * doc/sdccman.lyx: updated SDCC version,
4462         * (PIC16 port): update list of command line options,
4463         * src/pic16/device.h (structure pic16_options_t): added field gstack
4464         to enable stack overflow tracing on push/pops,
4465         * src/pic16/device.c (statistics structure): added statistics
4466         structure,
4467         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4468         pic16_dump_int_registers): increase statistics counters for each
4469         * variable which is encountered
4470         * (pic16_dump_usection): emit each .udata variable to its own udata
4471         section,
4472         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4473         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4474         parameters via stack, otherwise use old scheme,
4475         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4476         assembler output file,
4477         * src/pic16/main.c: added command line options --gstack to enable
4478         push/pop tracing for stack overflow,
4479         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4480         instructions): added size of each instruction,
4481         * (pic16_countInstruction): estimate size of instructions in
4482         the_pFile list, inline assembly blocks are not counted,
4483         * (pic16_FixRegisterBanking): trace previous register usage, when
4484         banksel optimizations is greater than 0, don't emit a redudant
4485         banksel directive,
4486
4487 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4488
4489         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4490         * src/pic16/ralloc.c : applied same fix for pic16.
4491         * src/pic/gen.c : tidied it up a little.
4492
4493 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4494
4495         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4496         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4497
4498 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4499
4500         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4501
4502 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4503
4504         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4505         non-reentrant function __modsint in the interrupt function (thus
4506         corrupting math operations during serial I/O)
4507         * device/lib/ser_ir.c: as above, changed buffersize
4508         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4509         256.c,d for zeroing
4510         * doc/Makefile: added option -t for rsync
4511
4512 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4513
4514         * src/SDCCast.h (struct ast),
4515         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4516
4517 2004-10-20 Borut Razem <borut.razem AT siol.net>
4518
4519         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4520         package
4521
4522 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4523
4524         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4525         makefile targets,
4526         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4527         support functions to replace long sequences of MOVFF's from access
4528         bank registers to stack and vice versa,
4529         * src/pic16/device.h: added new field opt_flags, where optimization
4530         flags can be set to enable certain features,
4531         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4532         * pBlock, (genFunction, genEndFunction): surroung loop for
4533         saving/loading used registers in stack with PC_INFO pCodes,
4534         INF_LREGS. Code in between can then be optimized by pCode optimizer
4535         to support function calls,
4536         * (genDataPointerSet): fixed bug which loaded float fields in
4537         structures with corrupt data,
4538         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4539         in a standard way debug info on stderr. Feature used for developing
4540         and debugging only,
4541         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4542         obsolete chunks of code,
4543         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4544         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4545         * pic16/src/pcode.c (pic16_newpCodeInfo,
4546         * (pic16_newpCodeOpLocalRegs),
4547         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4548         feature,
4549         * (pic16_pCodeConstString): printing of the initial value of a
4550         symbol as a comment is inhibited since parsing was already done by
4551         copyStr and output is corrupt,
4552         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4553
4554 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4555
4556         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4557
4558 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4559
4560         * as/mcs51/lkarea.c: removed old K&R style,
4561           (lnksect): changed check on boundary error,
4562           (lnksect2): changed check on boundary error,
4563           (lnksect2): extend XSTK to end of page if size = 1
4564         * as/mcs51/lkmain.c: removed old K&R style,
4565           (Areas51): create l_IRAM symbol
4566         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4567         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4568           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4569         * device/lib/_mullong.c: added version to be compiled with xstack
4570         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4571         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4572         * device/lib/mcs51/crtxstack.asm: fixed comment
4573         * src/SDCCglue.c: maxInterrupts defaults to 0,
4574           (emitMaps): added pdata,
4575           (createInterruptVect): (re)moved default,
4576           (glue): added pdata,
4577           (glue): moved __start__xstack to XSTK with default size 1
4578         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4579           and options.float_rent when options.stackAuto is set,
4580           (linkEdit): only write XDATA_NAME if provided on command line
4581         * src/SDCCmem.h,
4582         * src/SDCCmem.c: added pdata
4583         * src/port.h: added pdata_name to PORT
4584         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4585           (saveRegisters, unsaveRegisters): removed usage of B,
4586           (genMinus): fixed accumulator clash,
4587           (genJumpTab): added comment, this needs another look
4588         * src/mcs51/gen.c: added check for "B in use" paranoia,
4589           added pushB() and popB()
4590         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4591           chance
4592         * src/avr/main.c,
4593         * src/ds390/main.c,
4594         * src/hc08/main.c,
4595         * src/mcs51/main.c,
4596         * src/pic/main.c,
4597         * src/pic16/main.c,
4598         * src/xa51/main.c,
4599         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4600           added PSEG (PAG,XDATA) or NULL to port specifier
4601         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4602         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4603           (_mcs51_genInitStartup): removed __start__xstack equ,
4604           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4605         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4606         * src/z80/gen.c (_rleAppend): fixed warnings
4607         * support/regression/tests/zeropad.c: added pdata test
4608         * .version: bumped to 2.4.6
4609
4610 2004-10-17 Borut Razem <borut.razem AT siol.net>
4611
4612         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4613         as a part of nightly build
4614
4615 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4616
4617         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4618         WREG holds the first byte function parameters,
4619         * (aopForSym): take special case for symbols which are in FARSPACE
4620         but in CODESPACE too,
4621         * (assignResultValue): modified to take into account _G.useWreg,
4622         * (genCall): don't use wreg for parameter passing when function is
4623         declared as reentrant, too, added optimization INCF to stack
4624         pointer when stack parameter count is 1,
4625         * (genFunction, genEndFunction): refurnished and fixed to not using
4626         wreg for passing parameters when function has varargs or is
4627         reentrant, fixed bug with symbol name compare for generating
4628         functions in absolute address,
4629         * (pic16_storeForReturn): refurnished,
4630         * (genCmp): began writing a new version of the function, not ready
4631         yet, therefore it is disabled,
4632         * (genAssign): do not read code memory when assigning a function to
4633         a pointer function,
4634         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4635         array of characters, not pointer,
4636         * (pic16initialComments): in debug mode emit an .ident directive for
4637         the assembler,
4638         * (_process_pragma): emit a new warning type (internal to pic16)
4639         when setting stack to default length, emit a similar warning when
4640         placing a function at absolute address and address is not word aligned
4641         * (_pic16_parseOptions): added 'return TRUE' statement,
4642         * (_pic16_linkEdit): if compiling a source, then add the source's
4643         file object, first in the list of objects to link,
4644
4645 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4646
4647         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4648         * src/pic/main.c : removed VC warning.
4649         * src/pic/gen.c : changed comment.
4650
4651 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4652
4653         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4654         reference to a deprecated symbol _GPTRREG was causing failure to
4655         link. Thanks G. M. Gallant for the info.
4656
4657 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4658
4659         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4660         comments for Bugs item #954788.
4661
4662 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4663
4664         * src/pic16/device.c (pic16_dump_gsection,
4665         * pic16_groupRegistersInSection): handle symbols declared to be in
4666         access bank differently,
4667         * src/pic16/gen.c (struct _G): added field resDirect,
4668         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4669         send values read from stack directly to result and don't allocate
4670         temporary values,
4671         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4672         same registers,
4673         * (pic16_sameRegsOfs): NEW,
4674         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4675         free because they were not allocated from temporary pool,
4676         * pic16_popRegFromString): workaround to fix a problem with
4677         allocating variables twice or never,
4678         * (genGenPointerGet): using PRODL instead of FSR0H,
4679         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4680         instead of FSR0H,
4681         * (genAssign): take advantage of the _G.resDirect flag,
4682         * (genCast): around line 11844, use mov2f instead of directly
4683         MOVFF'ing between operands to account for literal values,
4684         * src/pic16/genutils.c: some new debug functions for gpsim have been
4685         added,
4686         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4687         float with integer part only,
4688         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4689         place variables in access bank
4690         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4691         updated sources to reflect recent changes in gen.c
4692
4693 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4694
4695         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4696         sources that searched for headers in installation path, now the
4697         device/include/pic16 is used,
4698         * src/pic16/glue.c (pic16glue),
4699         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4700         .line directives if not in debug mode, this suppresses assembler's
4701         warnings for ignored directives
4702
4703 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4704
4705         * src/port.h: made reset_regparms prototype void parameter explicit.
4706         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4707         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4708         * doc/sdccman.lyx: documented warning disabling and how to use
4709           printf_large to make it print floats.
4710         * device/include/stdbool.h: NEW
4711         * device/lib/_atof.c,
4712         * device/lib/_divuint.c,
4713         * device/lib/_divulong.c,
4714         * device/lib/expf.c,
4715         * device/lib/printf_large.c,
4716         * device/lib/sincosf.c,
4717         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4718         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4719           a completely reentrant lib.
4720
4721 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4722
4723         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4724         * device/include/pic16/stdio.h: fixed bug with colon
4725
4726 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4727
4728         * device/include/pic16/stdio.h,
4729         * device/include/pic16/stdlib.h,
4730         * device/include/pic16/math.h: NEW
4731         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4732         declared as _naked to reduce overhead
4733         * device/lib/Makefile.in (target port-specific-objects-pic16):
4734         changed * to *.* so to ignore the CVS directory,
4735         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4736         stacked variables back in stack,
4737         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4738         corruption
4739
4740 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4741
4742         * .version: bumped version number to 2.4.5
4743         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4744         * support/Util/SDCCerr.c (messages structure): added entry for
4745         W_POSSBUG2
4746
4747         Large cumulative patch for pic16 port and libraries.
4748         * device/include/pic16/sdcc-lib.h,
4749         * device/include/pic16/stdarg.h,
4750         * device/include/asm/pic16/features.h,
4751         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4752         * device/include/pic16/float.h: changes reentrant keyword with
4753         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4754         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4755         updated target build-libraries to include objects from gptr,
4756         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4757         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4758         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4759         all function headings,
4760         * src/SDCCmain.c: added global parameter userIncDirsSet,
4761         * (parseCmdLine): when option -I is encountered add directory to
4762         userIncDirsSet too,
4763         * src/version.awk: added space between control and long,
4764         * src/pic16/NOTES: added some notes for the port,
4765         * src/pic16/gen.c: added prototype for mov2fp function,
4766         * (fReturnpic16[]): properly named return value registers,
4767         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4768         * (aopForSym): added code to handle symbols with onStack flag set,
4769         symbols onStack are allocated PTRSIZE bytes,
4770         * (aopFreeAsmop): handles special case where asmops are stack objects,
4771         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4772         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4773         added argument lock to trace flaws in allocating temporary registers
4774         when developing port,
4775         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4776         * (pic16_popRegFromString): reenabled allocating a direct register
4777         from string,
4778         * (assignResultValue): various beautifications,
4779         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4780         referenced function argument,
4781         * (genIpush): reenabled to allow stacked arguments, handles only
4782         ic->parmPush iCodes,
4783         * (genCall, genPcall): major changes to allow for variable argument
4784         functions, fixed a bug with falsely restoring stack pointer after
4785         returning from call,
4786         * (genFunction): pending code for critical function,
4787         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4788         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4789         * (genNearPointerGet): fixed bug with indirect reading, was always
4790         reading from INDF0
4791         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4792         pointers,
4793         * (genAddrOf): rewrote code to take address of a stacked function parameter
4794         * (genCast): fixed casting to generic pointer type,
4795         * src/pic16/gen.h: added AOP_STA,
4796         * (struct asmop): added field stk,
4797         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4798         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4799         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4800         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4801         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4802         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4803         generic pointers,
4804         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4805         and library paths,
4806         * (pic16_port structure): generic pointer size is set to 3,
4807         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4808         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4809         compiler warning,
4810         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4811         operand is an iTemp,
4812
4813 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4814
4815         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4816         * debugger/mcs51/simi.c: addapt new syntax of s51
4817
4818 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4819
4820         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4821         * src/pic16/pcode.c: commented out some calls to free() in order to
4822         fix bug #989576,
4823
4824 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4825
4826         * src/SDCCicode.h,
4827         * src/SDCCicode.c (isiCodeInFunctionCall),
4828         * src/avr/ralloc.c (selectSpil),
4829         * src/pic/ralloc.c (selectSpil),
4830         * src/pic16/ralloc.c (selectSpil),
4831         * src/ds390/ralloc.c (selectSpil),
4832         * src/hc08/ralloc.c (selectSpil),
4833         * src/xa51/ralloc.c (selectSpil),
4834         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4835         stack in the middle of a function call sequence (fixes bug #1020268)
4836         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4837         costs associated with the minimum switch case.
4838
4839 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4840
4841         * src/SDCC.lex: fixed bug #1030549
4842
4843 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4844
4845         * src/SDCCcse.h (struct cseDef),
4846         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4847         over a function call if the CSE is derived from a symbol whose
4848         address has been taken (fixes bug #1029883)
4849         * support/regression/tests/bug-1029883: a new regression test for
4850         this bug
4851
4852 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4853
4854         * src/hc08/gen.c (emitinline): fixed bug #1029778
4855         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4856         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4857         and starts toward RFE #905167)
4858
4859 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4860
4861         * src/pic16/gen.c (mov2f): New function to move an operand to
4862         another without considering if it is a literal or a register,
4863         * (pic16_sameRegs): don't check if they are both AOP_REG,
4864         * (AccRsh): removed andmask=0 lines,
4865         * (genLeftShift): duplicated to be improved in future versions,
4866         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4867         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4868         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4869         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4870         * (insertBankSwitch): fixed inserting banksel directives algorithm
4871         for instructions that follow a skip instruction, this fixes a report
4872         for broken subtraction code generation,
4873         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4874         iCode is a left op, just in case result and right share the same
4875         registers
4876
4877 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4878
4879         * src/hc08/main.c,
4880         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
4881         preservation of HX
4882         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
4883         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
4884         on 2004-09-12; it was buggy
4885
4886 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
4887
4888         * src/SDCCsymt.h: removed RESULT_CHECK
4889         * src/SDCCast.c,
4890         * src/SDCCglue.c,
4891         * src/SDCCval.c,
4892         * src/pic/glue.c,
4893         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
4894
4895 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
4896
4897         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
4898         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
4899         configuration values no more rejected by compiler, they are assigned
4900         to configuration registers with a warning message instead,
4901         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
4902         the for-loop so last conf register is emitted too,
4903         * (_pic16_initPaths): link library libsdcc.lib by default,
4904         * (_hasNativeMulFor): modified test for multiplication according to
4905         Raphael Neider's remarks. Integer multiplication is also done with
4906         support functions,
4907         * device/include/pic16/pic18fregs.h: corrected type error in while
4908         testing and including 18f6720 header file
4909
4910 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
4911
4912         * src/pic16/device.h (pic16_options): removed field use_crt,
4913         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
4914         until an optimization to handle single bits is added,
4915         * (pic16_loadFSR0): moved before genUnpackBits,
4916         * (genAnd): some white lines removed,
4917         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
4918         leave_reset flags in pic16_options when using crt modules,
4919
4920 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
4921
4922         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
4923           for bugs 898889 & 979599. Also used some safer print instructions.
4924
4925 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
4926
4927         * src/pic16/device.h (pic16_options_t): added field use_crt,
4928         crt_name, no_crt,
4929         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
4930         catch a probable future bug,
4931         * src/pic16/gen.c: aopIdx function commented out,
4932         * (genAssign): commented out old code which used aopIdx,
4933         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
4934         code, added if conditionals to take into account the --use-crt
4935         command line options,
4936         * src/pic16/main.c (pic16_optionsTable): added new command line
4937         options, --use-crt= and --no-crt,
4938         * (_pic16_linkEdit): now the proper crt object is added in the
4939         linker command line except than when --no-crt is specified,
4940         * src/pic16/pcode.c,
4941         * src/pic16/pcode.h: added some structures and functions for a new
4942         optimization scheme to compansate for instruction overhead between
4943         same iCodes, this scheme is currently under development and is not
4944         working in any way,
4945         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
4946         to && operator,
4947         * device/lib/pic16/startup/crt0i.c,
4948         * device/lib/pic16/startup/crt0iz.c: added global char variable
4949         __uflags to force the generation of an idata section
4950
4951 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
4952
4953         * doc/Makefile,
4954         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
4955         * doc/sdccman.lyx: updated sdcc version to 2.4.4
4956
4957 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4958
4959         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
4960         Frieder) and clarified the default code optimization mode
4961
4962 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4963
4964         * src/SDCC.lex (doPragma, process_pragma),
4965         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
4966         "opt_code_size", and "opt_code_balanced"
4967         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
4968         regrouped options by category, added support for category headers
4969         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
4970         and "--opt-code-size"
4971         * doc/sdccman.lyx: documented these new options and pragmas
4972         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
4973         preference into account
4974
4975 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4976
4977         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
4978           geniCodePreDec): Fixed bug 904237 by generating a warning
4979         * src/SDCCerr.h,
4980         * src/SDCCerr.c: added warning W_SIZEOF_VOID
4981
4982 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
4983
4984         * src/pic/device.c : When no max ram set validate full memory range.
4985         * src/pic/pcode.c,
4986         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
4987
4988 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
4989
4990         * device/lib/_gptrget.c,
4991         * device/lib/_gptrput.c: updated comment
4992         * device/lib/calloc.c,
4993         * device/lib/free.c,
4994         * device/lib/malloc.c,
4995         * device/lib/realloc.c: added LGPL, made them reentrant-safe
4996         * src/SDCCcse.c (cseBBlock),
4997         * src/SDCCicode.c (printOperand, geniCodeArray),
4998         * src/SDCCicode.h (struct operand): fixed bug 868103
4999         * support/regression/tests/bug-868103.c: added
5000         * src/SDCCast.c (searchLitOp),
5001         * src/SDCCcse.h (struct cseDef),
5002         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5003         * src/SDCCicode.h (struct operand),
5004         * src/SDCCsymt.h (struct sym_link),
5005         * src/avr/gen.c (hasInc),
5006         * src/ds390/gen.c (hasInc),
5007         * src/hc08/gen.c (genPlusIncr, hasInc),
5008         * src/mcs51/gen.c (hasInc),
5009         * src/pic16/glue.c (pic16_printIvalChar),
5010         * src/pic16/ralloc.c (regWithIdx),
5011         * src/xa51/gen.c (hasInc) : removed warnings
5012         * src/SDCCast.c (createBlock): added comment ???
5013         * src/hc08/ralloc.c: updated comments
5014
5015 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5016
5017         * doc/sdccman.lyx: updated section on switch statements, added
5018         section about semaphore locking
5019         * doc/Makefile: added option -info for latex2html
5020         * device/lib/_gptrget.c,
5021         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5022
5023 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5024
5025         * src/pic/device.h,
5026         * src/pic/device.c,
5027         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5028          maxram is less than 0x100.
5029
5030 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5031
5032         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5033
5034 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5035
5036         * src/port.h,
5037         * src/mcs51/main.c,
5038         * src/ds390/main.c,
5039         * src/z80/main.c,
5040         * src/hc08/main.c,
5041         * src/pic/main.c,
5042         * src/pic16/main.c,
5043         * src/avr/main.c,
5044         * src/xa51/main.c
5045         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5046         a jump table is the best form for a switch statement, including
5047         automatic insertion of missing cases to make the case range
5048         continuous. Developed in collaboration with Frieder Ferlemann.
5049
5050 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5051
5052         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5053         accumulator result if it needs sign extension
5054
5055 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5056
5057         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5058
5059 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5060
5061         * device/lib/gbz80/printf.c,
5062         * device/lib/z80/printf.c: removed define for NULL
5063
5064 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5065
5066         * as/xa51/xa_link.c,
5067         * device/examples/ds390/ow390/ad26.c,
5068         * device/examples/ds390/ow390/cnt1d.c,
5069         * device/examples/ds390/ow390/counter.c,
5070         * device/examples/ds390/ow390/ds2480.h,
5071         * device/examples/ds390/ow390/ds2480ut.c,
5072         * device/examples/ds390/ow390/findtype.c,
5073         * device/examples/ds390/ow390/gethumd.c,
5074         * device/examples/ds390/ow390/owllu.c,
5075         * device/examples/ds390/ow390/ownetu.c,
5076         * device/examples/ds390/ow390/swt12.c,
5077         * device/examples/ds390/ow390/swtloop.c,
5078         * device/examples/ds390/ow390/temp.c,
5079         * device/examples/ds390/ow390/temp10.c,
5080         * device/examples/ds390/ow390/thermo21.c,
5081         * device/examples/ds390/ow390/tinilnk.c,
5082         * device/examples/ds390/ow390/tstfind.c,
5083         * device/examples/serialcomm/windows/serial.cpp,
5084         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5085         * device/include/reg51.h: fixed line endings for cvs
5086
5087 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5088
5089         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5090         packRegsForAccUse, packRegisters): new accumulator register
5091         packing algorithm
5092         * support/regression/ports/hc08/support.c (_putchar): suppress
5093         warning of unused variable
5094         * src/SDCCicode.c: added SWAP entry to codeTable
5095
5096 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5097
5098         * device/lib/sprintf.c: forgot to add this file before previous commit
5099
5100 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5101
5102         * src/pic16/gen.c (genPackBits): added operand right in function
5103         parameters, load result directly if p_type is POINTER (that is
5104         called by genNearPointerSet)
5105         * (genUnPackBits): added operand left in function parameters,
5106         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5107         FSR0 if accessing bitfields,
5108
5109 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5110
5111         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5112           _print_format; updated printf, sprintf, vsprintf
5113         * device/include/asm/default/features.h: corrected comment/define
5114         * device/lib/Makefile.in: added sprintf.c
5115         * device/lib/libsdcc.lib: added sprintf module
5116         * device/lib/printf_large.c,
5117         * device/lib/vprintf.c,
5118         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5119           into these 3 files
5120         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5121         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5122         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5123           hc08 test
5124         * support/regression/tests/zeropad.c: define idata as data for hc08
5125
5126 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5127
5128         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5129         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5130         labels are referenced at least once (even if a reference is not found)
5131         * src/hc08/gen.c (emitcode): set isComment flag for comments
5132         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5133         loads), rules 6a..6b (optimize jumps to return)
5134
5135 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * device/lib/acosf.c (acosf),
5138         * device/lib/asinf.c (asinf),
5139         * device/lib/atanf.c (atanf),
5140         * device/lib/ceilf.c (ceilf),
5141         * device/lib/cosf.c (cosf),
5142         * device/lib/coshf.c (coshf),
5143         * device/lib/cotf.c (cotf),
5144         * device/lib/fabsf.c (fabsf),
5145         * device/lib/floorf.c (floorf),
5146         * device/lib/log10f.c (log10f),
5147         * device/lib/logf.c (logf),
5148         * device/lib/sinf.c (sinf),
5149         * device/lib/sinhf.c (sinhf),
5150         * device/lib/sqrtf.c (sqrtf),
5151         * device/lib/tanf.c (tanf),
5152         * device/lib/tanhf.c (tanhf),
5153         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5154         replaced all instances of "reentrant" in the library functions
5155         defined in math.h with this macro.
5156         * support/regression/tests/float_trans.c: reenabled test for hc08
5157
5158 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5159
5160         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5161         erroneously deleted
5162
5163 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5164
5165         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5166         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5167         multi-byte volatile operands are used
5168         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5169         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5170         initialization to area GSINIT0 so that it would always precede
5171         any static initializers in GSINIT
5172         * support/regression/tests/zeropad.c: fixed idata define for hc08
5173         * support/regression/tests/bug-927659.c,
5174         * support/regression/tests/float_trans.c: disabled tests for hc08
5175         pending missing library routines
5176         * .version: increased version number to 2.4.4 - hc08 port now passes
5177         regression tests
5178
5179
5180 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5181
5182         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5183         * Makefile.common.in,
5184         * as/Makefile,
5185         * as/hc08/Makefile.in,
5186         * as/mcs51/Makefile.in,
5187         * as/z80/Makefile.in,
5188         * debugger/mcs51/Makefile.in,
5189         * device/include/Makefile.in,
5190         * device/lib/Makefile.in,
5191         * doc/Makefile,
5192         * link/Makefile,
5193         * link/z80/Makefile.in,
5194         * packihx/Makefile.in,
5195         * sim/ucsim/main_in.mk,
5196         * sim/ucsim/avr.src/Makefile.in,
5197         * sim/ucsim/doc/Makefile.in,
5198         * sim/ucsim/gui.src/serio.src/Makefile.in,
5199         * sim/ucsim/hc08.src/Makefile.in,
5200         * sim/ucsim/s51.src/Makefile.in,
5201         * sim/ucsim/xa.src/Makefile.in,
5202         * sim/ucsim/z80.src/Makefile.in,
5203         * src/Makefile.in,
5204         * support/cpp2/Makefile.in,
5205         * support/librarian/Makefile,
5206         * support/makebin/Makefile: added DESTDIR to the install path proposed
5207         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5208         * doc/sdccman.lyx: added DESTDIR documentation
5209
5210 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5211
5212         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5213         instruction for interrupt handlers, use fast returns when returning
5214         from high priority interrupts
5215
5216 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5217
5218         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5219         code generation
5220         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5221         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5222         bugs, ported much of Bernhard's code from mcs51
5223         * src/mcs51/gen.c (genSend),
5224         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5225         than one when calling a reentrant function
5226         * device/lib/_mullong.c: defined an alternate struct layout for big
5227         endian ports (hc08)
5228
5229 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5230
5231         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5232         test
5233
5234 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5235
5236         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5237         are sane and complete before asking the port its prefered parameter
5238         passing method (fixes bug #1017633)
5239         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5240         and _ret3
5241
5242 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5243
5244         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5245         problem in bitfields >= 8 bits.
5246
5247 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5248
5249         * src/SDCCsymt.c: undid changes that were not meant to be committed
5250
5251 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5252
5253         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5254
5255 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5256
5257         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5258           copied and wrong bit got inverted
5259
5260 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5261
5262         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5263         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5264         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5265         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5266         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5267         assignments to bitfields at known addresses
5268         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5269         reads from bitfields at known addresses
5270         * src/hc08/ralloc.c (packRegisters),
5271         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5272         genhc08Code): optimize pointer get values used as conditionals
5273         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5274         and branch
5275
5276 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5277
5278         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5279         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5280         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5281         as conditionals
5282
5283 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5284
5285         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5286
5287 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5288
5289         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5290         related problems
5291
5292 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5293
5294         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5295
5296 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5297
5298         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5299         mcs51 port
5300
5301 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5302
5303         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5304
5305 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5306
5307         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5308         cases use more compact code.
5309
5310 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5311
5312         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5313
5314 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5315
5316         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5317
5318 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5319
5320         * src/SDCCsymt.h,
5321         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5322         parameter of changePointer() from symbol* to sym_link*
5323         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5324         * src/SDCCsymt.c (compareType): void* type is castable to other
5325         pointers, but not necesarily an exact match.
5326         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5327         is no longer blindly treated as an exact match.
5328         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5329
5330 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5331
5332         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5333
5334 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5335
5336         * src/pic/gen.c,
5337         * src/pic/pcode.c,
5338         * src/pic/ralloc.h,
5339         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5340
5341 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5342
5343         * src/pic/device.c,
5344         * src/pic/device.h,
5345         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5346
5347 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5348
5349         * src/mcs51/gen.c (emitcode): fixed bug #992819
5350
5351 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5352
5353         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5354           there's no need to make it worse
5355
5356 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5357
5358         * src/mcs51/ralloc.c (deassignLR),
5359         * src/ds390/ralloc.c (deassignLR),
5360         * src/hc08/ralloc.c (deassignLR),
5361         * src/z80/ralloc.c (deassignLR),
5362         * src/pic/ralloc.c (deassignLR),
5363         * src/pic16/ralloc.c (deassignLR),
5364         * src/avr/ralloc.c (deassignLR),
5365         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5366         rlivePoint): fixed another part of bug #971834
5367
5368 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5369
5370         * src/z80/main.c: enabled "critical" keyword
5371         * src/z80/mappings.i,
5372         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5373         functions (fixes bug #979646)
5374         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5375
5376 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5377
5378         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5379           such as c:\mydir.
5380
5381 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5382
5383         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5384           doesn't disable too much optimizations
5385
5386 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5387
5388         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5389
5390 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5391
5392         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5393
5394 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5395
5396         * src/pic/gen.c tidied up tabs
5397         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5398         * src/pic/main.c tidied up tabs
5399         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5400         * src/pic/pcoderegs.c tidied up tabs
5401         * src/pic/ralloc.c tidied up tabs
5402
5403 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5404
5405         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5406         to S_FIXED for pic16 port and when symbol is not in level 0,
5407         allocate for S_REGISTER storage class and pic16 port, too,
5408         * src/pic16/device.h: prototype for checkSym,
5409         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5410         * (pic16_assignConfigWordValue): test the value and the mask to
5411         validate that the value is suitable for the configuration word,
5412         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5413         collect extern declared symbols, don't emit symbol twice, check
5414         first if symbol is in publics set first,
5415         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5416         * added command line '--fstack' which enables an experimental
5417         feature for stack access, too buggy to be used yet...
5418         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5419         * (pic16_allocDirReg): when register has storage class S_REGISTER
5420         allocate in pic16_dynAccessRegs,
5421         * device/include/pic16/pic18f????.h: modified configuration word
5422         naming convention, words started as CONFIG0H but should be CONFIG1H
5423
5424 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5425
5426         * device/include/mcs51reg.h: fixed bug 970993
5427
5428 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5429
5430         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5431         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5432         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5433         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5434         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5435         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5436           error/warning numbers,
5437           added function setWarningDisabled()
5438         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5439         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5440           _memcmp.c _memmove.c calloc.c realloc.c free.c
5441         * support/regression/tests/malloc.c: added tests for new functionality
5442         * support/regression/tests/zeropad.c: added tests for truncated initializers
5443           and initialized char arrays starting with '\x0'
5444         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5445
5446 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5447
5448         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5449
5450 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5451
5452         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5453         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5454         peephole 177.e. Thanks to anonymous
5455
5456 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5457
5458         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5459         function isn't used in the source but referenced as a
5460         variable initializer then declare it as extern in .asm file
5461
5462 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5463
5464         * .version: increased version number to 2.4.3
5465
5466         Adding version extension according to ChangeLog CVS revision
5467         * src/Makefile.in (target all): added dependency 'version.h'
5468         * (rule version.h): added rule to create version.h from ChangeLog,
5469         * (rule dep): added dependency version.h,
5470         * src/version.awk: AWK script to create version.h
5471         * src/SDCCdwarf2.c (dwWriteModule),
5472         * src/SDCCglue.c (initialComments),
5473         * src/SDCCmain.c (printVersionInfo): modified to write after
5474         version string the version extension number,
5475         * src/SDCCutil.c: included "version.h"
5476         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5477         number,
5478         * src/SDCCutil.h: added prototype for getBuildNumber
5479
5480         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5481         includeDirsSet, too,
5482         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5483         const char [] is found in function prototype...
5484
5485         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5486         moving to WREG with source is already in WREG,
5487         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5488         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5489         * (aopForSym): stack'ed symbols are partially supported, added
5490         if-clause to support symbols in FARSPACE,
5491         * (sameRegs): added test for AOP_ACC to see if registers are same,
5492         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5493         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5494         * (pic16_popRegFromString): will not allocate a new register if it
5495         doesn't find one by name, bug may have introduced...
5496         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5497         * (genIpush): revived to use pic16 port's stack,
5498         * (genAddrOf): added incomplete case for stack'ed operand,
5499         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5500         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5501         can handle multibyte operands,
5502         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5503         * (pic16initialComments): added message for MPLAB compatibility
5504         mode enabled,
5505         * src/pic16/main.h: prototype for pic16_mplab_comp,
5506         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5507         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5508         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5509         because of increased complexity of procedure,
5510         * (_process_pragma): stack pragma changed to format 'stack pos len',
5511         emit symbol '_stack_end' to conform with gplink,
5512         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5513         to search for register,
5514         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5515         PO_GPR_REGISTER,
5516         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5517         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5518         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5519         case for PO_GPR_REGISTER,
5520         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5521         dies, the new era is ahead !...
5522         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5523         pic16_dynInternalRegs,
5524         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5525         * (pic16_allocDirReg): minor optimizations and bug fixes,
5526         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5527
5528         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5529         load stack and frame pointer with address of 'stack_end' symbol
5530
5531 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5532
5533         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5534         without source code but only variable initializers
5535
5536 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5537
5538         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5539         external are not declared as extern to reduce overhead while linking
5540
5541 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5542
5543         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5544
5545 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5546
5547         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5548           Yee Keat for the patch
5549         * src/SDCCast.c (decorateType): fixed bug #979599
5550         * src/ds390/gen.h: removed local fReturnSizeDS390
5551         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5552         * src/ds390/gen.c (genAnd, genOr, genXor),
5553         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5554
5555 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5556
5557         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5558         add relFilesSet to $3, manipulate $2 to handle linking of object
5559         files without source files in command line,
5560         * device/include/pic16 (all headers): added ID location macros,
5561         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5562         entries for ID location bytes,
5563         * (pic16_assignIdByteValue): NEW,
5564         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5565         added field dumpcalltree to pic16_options_t,
5566         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5567         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5568         emitting rFalseIfx label after check_carry label,
5569         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5570         pic16_emitDIRegs), NEW
5571         * (pic16glue): dump .calltree file when option --calltree found,
5572         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5573         * (_pic16_genAssemblerPreamble): emit ID locations after
5574         configuration registers,
5575         * (pic16_linkCmd): modifications of the link command,
5576         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5577         * (pic16_pCodeInitRegisters): don't init stack registers,
5578         * (pic16_findPrevInstruction): fixed bug,
5579         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5580         bug with immediate registers,
5581         * (buildCallTree): traces stack push and pop,
5582         * (pct2): dump also stack usage for each function,
5583         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5584         * (pic16_allocDirReg): various modifications,
5585         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5586         fixed to 1,
5587
5588 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5589
5590         * src/pic16/pcode.c: removed buggy double colon
5591
5592 2004-07-01 Borut Razem <borut.razem AT siol.net>
5593
5594         * support/scripts/sdcc.nsi: added include/pic16 to setup
5595
5596 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5597
5598         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5599         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5600         target 'clean',
5601         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5602         specific command line arguments. Also added sample lkr script
5603         for placing a variable at a specific memory bank.
5604         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5605         at a specific memory bank,
5606         * (pic16_dump_isection): fixed bug which caused string literals to
5607         be omitted when dumping idata section,
5608         * (pic16_groupRegistersInSection): added code to handle registers
5609         in specific memory banks,
5610         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5611         public, all references are renamed too,
5612         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5613         AOP_DPTR2,
5614         * (pic16_storeForReturn): added case to handle when dest is WREG,
5615         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5616         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5617         pic16_rel_udata, check to see if that register is marked as being
5618         a member of a specific memory bank,
5619         * (pic16_printIvalCharPtr): added code to add string literals either
5620         to code or the idata sections,
5621         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5622         also accept the 'udata' pragma,
5623         * src/pic16/main.h: new structure types sectName and sectSym
5624         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5625         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5626         * (pic16_findPrevInstruction): fixed, it returned nothing,
5627         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5628         instruction combinations,
5629         * (pic16_FixRegisterBanking): heavily reorganised,
5630         * (pic16_AnalyzeBanking): if generating banksel directives is
5631         disabled, then don't call FixRegisterBanking at all,
5632         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5633         completely removed,
5634         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5635
5636 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5637
5638         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5639         Phuah Yee Keat <yk.phuah AT nestac.com>
5640
5641 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5642
5643         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5644         correctly the IVT even if it is relocated to some other location
5645
5646 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5647
5648         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5649         * device/include/pic16/pic18f2220.h: NEW,
5650         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5651         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5652         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5653         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5654         nodefaultlibs, ivt_loc is the location of the interrupt vector
5655         table, and nodefaultlibs signs that default libraries should not be
5656         linked in link stage,
5657         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5658         according to --ivt-loc argument,
5659         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5660         when pragma stack is found,
5661
5662 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5663
5664         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5665         256 (range check), 257 (do while), 258.a-f (bit banging
5666         f.e. on 3-wire SPI bus)
5667
5668 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5669
5670         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5671         variables used exclusively within a loop
5672
5673 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5674
5675         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5676
5677 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5678
5679         * src/SDCClrange.c (computeClash): fixed bug #971834
5680
5681 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5682
5683         * src/mcs51/gen.c (genCmp): fixed bug #975903
5684         * src/hc08/gen.c (operandsEqu),
5685         * src/ds390/gen.c (operandsEqu),
5686         * src/z80/gen.c (operandsEqu),
5687         * src/pic/gen.c (operandsEqu),
5688         * src/pic16/gen.c (operandsEqu),
5689         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5690         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5691
5692 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5693
5694         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5695
5696 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5697
5698         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5699         default case in switch statement,
5700         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5701         to eliminate problem with initialisation of pointers, but problem
5702         still exists,
5703         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5704         * (emitStaticSegment): removed various lines emitting debug info,
5705         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5706         added processor registers for utilizing EEPROM,
5707         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5708         configurable and set 8
5709
5710 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5711
5712         * .version: increased version number to 2.4.2,
5713
5714         Cumulative patch for pic16 port
5715         * src/pic16/device.c: changed scheme to dump initial values for
5716         variables in idata segment, all print_idata* functions were removed,
5717         now the pic16_printIval* will be called,
5718         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5719         * _pic16_printPointerType, pic16_printPointerType,
5720         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5721         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5722         NEW, similar to the respective functions in SDCCglue.c,
5723         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5724         way, emitting hex bytes,
5725         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5726
5727 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5728
5729         * src/avr/ralloc.c (serialRegAssign),
5730         * src/xa51/ralloc.c (serialRegAssign),
5731         * src/pic/ralloc.c (serialRegAssign),
5732         * src/pic16/ralloc.c (serialRegAssign),
5733         * src/hc08/ralloc.c (serialRegAssign),
5734         * src/z80/ralloc.c (serialRegAssign),
5735         * src/ds390/ralloc.c (serialRegAssign),
5736         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5737
5738 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5739
5740         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5741         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5742
5743 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5744
5745         Cumulative patch for pic16 port:
5746         * src/pic16/device.h (typedef PIC16_device) modified fields for
5747         defining microcontrollers,
5748         * src/pic16/device.c: added new info for all devices in Pics16 array,
5749         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5750         to be optimised out by the pCode optimiser,
5751         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5752         specially, bug reported by G.M. Gallant,
5753         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5754         as force'd so that cannot be optimised out by pCode optimiser,
5755         * src/pic16/pcode.c,
5756         * src/pic16/pcodepeeph.c,
5757         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5758         they are disabled by default, but can be enabled explicit with
5759         command argument --denable-peeps, for testing,
5760         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5761         --pomit-ivt in COMPILE_FLAGS
5762
5763 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5764
5765         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5766           compilation on MSVC
5767
5768 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5769
5770         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5771
5772 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5773
5774         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5775         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5776
5777 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5778
5779         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5780         would only assign 0x300001 register.
5781
5782 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5783
5784         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5785         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5786
5787 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5788
5789         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5790         for ds80c400
5791         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5792         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5793         added peephole 254 (left shift), 255 (jump table)
5794
5795 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5796
5797         * device/lib/Makefile.in: removed comment line with model-pic16,
5798         * (target port-specific-objects-pic16): the libraries and objects
5799         are copied to the build directory form the device/lib/pic16/bin
5800         directory
5801
5802         Cumulative patch concerning pic16 port:
5803         * library directory has been re-organized,
5804         * added support for PIC18F1220,
5805         * added headers and library sources for chips 18f1220,18f6520,
5806         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5807
5808         * configuration registers setting has changed, now each supported
5809         device has a complete description of the registers it uses,
5810         * all initialisations are moved to idata sections, these section
5811         can be absolute or relocatable,
5812         * fixed initialisation of codespace variables,
5813         * fixed warning about PCLATU and gpsim,
5814         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5815         * (genAssign): use table reads when assigning from variables in codespace,
5816         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5817         char/int variables placed in codespace,
5818         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5819         registers set in .asm file, no need for --pomit-config-words anymore,
5820         * (pic16glue): some 8051 legacy segments are commented out
5821         (to be removed completely),
5822         * added support for alternative assembler and linker with --asm=
5823         and --link= command line arguments,
5824         * peepholes are disabled automatically in the port, no need to
5825         specify on command line,
5826         * port supports natively char/int/long multiplication, but converts
5827         all divisions to support functions,
5828         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5829         to the file set in variable $2,
5830         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5831         strings in ASCII format and not in hex,
5832         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5833         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5834         allocate proper register if iCodes aren't temporary,
5835
5836 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5837
5838         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5839
5840 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5841
5842         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5843         is commented out
5844
5845 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5846
5847         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5848         computed address is reused
5849         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5850         multi-byte bitfields
5851
5852 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5853
5854         * src/z80/gen.c: (genArrayInit): must check for pointers too
5855
5856 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5857
5858         * support/regression/tests/zeropad.c: never meant to commit the
5859           nestedstruct test: removed, added check for GCC version
5860
5861 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5862
5863         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5864         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5865         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5866           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5867           bugs 928906 and 954082 half-empty initializers
5868         * src/SDCCsymt.h,
5869         * src/SDCCsymt.c (getAllocSize): added for above fix
5870         * src/z80/gen.c (genArrayInit): fixed bug 741044
5871         * support/regression/tests/zeropad.c: added tests
5872
5873 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5874
5875         * src/pic16/device.c (pic16_dump_section): corrected bug which
5876         caused some symbols of the libraries to be misplaced
5877
5878 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5879
5880         * src/pic16/glue.c,
5881         * src/pic16/ralloc.h,
5882         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
5883         to fix conflict with pic port
5884
5885 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5886
5887         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
5888         externs configuration variables,
5889         * src/pic16/ralloc.h,
5890         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
5891         prototype in header, commented out some debug messages
5892
5893 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
5894
5895         * src/pic16/glue.c,
5896         * src/pic16/main.c,
5897         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
5898         for gpasm COFF object generation. Thanks to D. Hawkins for
5899         his patch info
5900
5901 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5902
5903         * src/ds390/main.c,
5904         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
5905         Brock for spotting this)
5906         * src/ds390/gen.c (genEndFunction),
5907         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
5908         interrupt handler and critical. Disable push/pop optimizations when
5909         peephole optimizations disabled.
5910
5911 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5912
5913         Updated pic16 library sources and headers.
5914         * device/lib/pic16/pic18f*/ ,
5915         * device/include/pic16/*.h: modified to handle structured SFR
5916         definitions
5917
5918 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
5919
5920         * src/port.h (PORT structure): added hook initPaths, now each
5921         port can declare its own default search paths,
5922         which can been seen with the --print-search-dirs option,
5923         see pic16 port for example,
5924         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
5925         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
5926         * (doPrintSearchDirs): NEW, replaces in a central manner the
5927         printing of search dirs which was split in set*Paths functions,
5928         * (main): added call to port->initPaths and doPrintSearchDirs,
5929         * src/avr/main.c,
5930         * src/ds390/main.c,
5931         * src/hc08/main.c,
5932         * src/izt/i186.c,
5933         * src/izt/tlcs900h.c,
5934         * src/mcs51/main.c,
5935         * src/pic/main.c,
5936         * src/pic16/main.c: modified port structures to reflect addition of
5937         initPaths hook,
5938
5939         * src/pic16/device.c (regCompare): registers are finally sorted by name,
5940         * (pic16_dump_section): for registers in same address reserve memory once,
5941         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
5942         to no_banksel,
5943         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
5944         result is greater in size than right or left,
5945         * (pic16_genUMult8X8_8): there are some cases where the result can
5946         be 16 bits size, so handle these,
5947         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
5948         * (pic16_outBitC): modified to emit pcodes,
5949         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
5950         or not,
5951         * (genDivOneByte): implemented algorithm to divide 8-bits,
5952         * (genCmp): uncommented goto, but issues still exist,
5953         * (genAnd): fixed a bug with variables >8bits,
5954         * (genPackBits): optimization added that uses BCF/BSF to change a
5955         single bit,
5956         * (genAssign): fixed bug when assigning floating point literals,
5957         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
5958         __sdcc_gsinit_startup label,
5959         * src/pic16/main.c (_pic16_init): removed search directory
5960         initialisations,
5961         * (_pic16_initPaths): NEW, used to initialise search directories,
5962         * (_hasNativeMulFor): support functions for all except char/int
5963         multiplication, and char division,
5964         * (PIC16_port struct): modified entry for native mul support,
5965         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
5966         no_banksel option,
5967         * (buildCallTree): call to register_usage is ifdef'ed out,
5968
5969 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5970
5971         * device/include/string.h: applied Stas Sergeev's patch to make this
5972         header file compatible with the preprocessor -Wundef option
5973         * src/SDCCmain.c (main): abort compilation if preprocessor reports
5974         failure (fixes bug #941458)
5975
5976 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5977
5978         * src/SDCCopt.c (killDeadCode): fixed bug #907733
5979         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
5980         that the variable, not the function, should be static
5981         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
5982         to be consistent with non-literal case
5983
5984 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5985
5986         * src/SDCCast.c (isConformingBody): fixed bug #949967
5987         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
5988         convilong): fixed bug #952086
5989
5990 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5991
5992         * src/SDCCmem.c (allocVariables): fixed bug #955321
5993
5994 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * src/hc08/main.c (_hc08_genAssemblerEnd),
5997         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
5998         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
5999         completely eliminated the use of a temporary file
6000         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6001         when more than one file linked
6002         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6003
6004 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6005
6006         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6007         which fixes bug #543481
6008         * support/regression/tests/bug-751703.c: fixed comments left from a
6009         cut and paste error
6010         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6011         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6012         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6013         scopes
6014         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6015         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6016         are now changed to underscores in moduleName
6017
6018 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6019
6020         * as/mcs51/lkmem.c: better fix for bug #954173
6021
6022 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6023         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6024
6025         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6026         * device/include/c8051f000.h,
6027         * device/include/c8051f120.h,
6028         * device/include/c8051f300.h,
6029         * device/include/c8051f310.h,
6030         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6031         PWM16) and detab'ed
6032
6033 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6034
6035         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6036         and mailing lists, doc'ed --no-peep-comments, removed reference
6037         to knoppix (newest version has no LyX/LaTeX), other minor changes
6038         * src/SDCCglue.c (glue): save 2 bytes stack space with
6039         option --main-return. The ljmp could probably be avoided too
6040
6041 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6042
6043         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6044
6045 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6046
6047         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6048         * src/SDCCopt.c (isLocalWithoutDef),
6049         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6050         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6051         (credit to Maarten Brock for patch #949363, on which this is based)
6052         * support/regression/tests/bug-751703.c: some test cases of extern used
6053         within inner scopes.
6054
6055 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6056
6057         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6058         SPEC_STRUCT
6059         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6060         struct definitions
6061         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6062         dwWriteLabel): fix to create valid debugger symbols even when
6063         the module name has non-alphanumeric symbols in it
6064         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6065         when a variable's allocation has been optimized away
6066
6067
6068 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6069
6070         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6071         * src/hc08/main.c,
6072         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6073         * src/mcs51/main.c,
6074         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6075         * src/ds390/main.c,
6076         * src/z80/gen.c (z80_emitDebuggerSymbol),
6077         * src/z80/main.c,
6078         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6079         * src/pic/main.c,
6080         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6081         * src/pic16/main.c,
6082         * src/avr/gen.c (avr_emitDebuggerSymbol),
6083         * src/avr/main.c,
6084         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6085         * src/xa51/main.c,
6086         * src/SDCCdebug.c (emitDebuggerSymbol),
6087         * src/SDCCdebug.h,
6088         * src/port.h: added a debugger struct to the port struct. Added a
6089         callback for defining debugger symbols
6090
6091         * src/SDCCast.c (createLabel),
6092         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6093         with isitmp = 1
6094         * src/SDCCicode.h,
6095         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6096         iCode back to the ast for the function
6097
6098         * src/hc08/ralloc.c (hc08_assignRegisters),
6099         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6100         unneeded fields from the regs struct.
6101         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6102         pushReg() & pullReg() functions instead of emitcode()
6103
6104         * src/hc08/gen.c (genLabel, genhc08Code),
6105         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6106
6107         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6108         debugger hooks
6109
6110         * src/hc08/gen.c (genEndFunction, genhc08Code),
6111         * src/hc08/gen.h,
6112         * src/mcs51/gen.c (genEndFunction, gen51Code),
6113         * src/mcs51/gen.h,
6114         * src/ds390/gen.c (genEndFunction, gen390Code),
6115         * src/ds390/gen.h,
6116         * src/z80/gen.c (genEndFunction, genZ80Code),
6117         * src/z80/gen.h,
6118         * src/z80/z80.h,
6119         * src/pic/gen.c (genEndFunction, genpic14Code),
6120         * src/pic/gen.h,
6121         * src/pic16/gen.c (genEndFunction, genpic16Code),
6122         * src/pic16/gen.h,
6123         * src/avr/gen.c (genEndFunction, genAVRCode),
6124         * src/avr/gen.h,
6125         * src/xa51/gen.c (genEndFunction, genXA51Code),
6126         * src/xa51/gen.h,
6127         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6128         specific code to cdbFile.c and out of the backend code generators
6129
6130         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6131         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6132         starting address is now 0
6133
6134         * as/hc08/asm.h,
6135         * as/hc08/m08pst.c,
6136         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6137         assembler directive for DWARF support
6138         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6139
6140         * src/src.dsp,
6141         * src/Makefile.in,
6142         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6143
6144 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6145
6146         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6147         and inappropriate peephole optimization in jump tables
6148
6149 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6150
6151         * as/hc08/m08pst.c,
6152         * src/SDCCglue.c: sdccopt works for the hc08 port now
6153
6154 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6155
6156         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6157
6158 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6159
6160         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6161
6162 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6163
6164         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6165         rules
6166         * src/SDCCmain.c,
6167         * src/SDCCglobl.h,
6168         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6169         comments from the peephole optimizer replacement rules
6170         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6171         symbols
6172         * src/SDCCcse.c (updateSpillLocation),
6173         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6174         equivalents
6175         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6176         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6177         objects far pointers
6178
6179 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6180
6181         * src/SDCCsymt.h: a missing part of my last change
6182         * src/pic/ralloc.c (regTypeNum),
6183         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6184
6185 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6186
6187         * src/SDCCicode.h,
6188         * src/SDCCicode.c (aggrToPtrDclType),
6189         * src/SDCCptropt.h,
6190         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6191         ptrPseudoSymConvert),
6192         * src/pic/ralloc.c (regTypeNum),
6193         * src/pic16/ralloc.c (regTypeNum),
6194         * src/hc08/ralloc.c (regTypeNum),
6195         * src/ds390/ralloc.c (regTypeNum),
6196         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6197         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6198
6199 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * link/z80/lkmain.c (afile),
6202         * as/hc08/lkmain.c (afile),
6203         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6204         prevent a pointer problem when a filename has no directory and
6205         no extension specified.
6206
6207 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6208
6209         * link/z80/lkmain.c (afile): allow periods in directory names
6210         * link/z80/lkmain.c (afile),
6211         * as/mcs51/lkmain.c (afile),
6212         * as/hc08/lkmain.c (afile): allow linker script file to have an
6213         extension other than ".lnk"
6214         * link/z80/lklex.c (getfid),
6215         * link/z80/lkmain.c (parse),
6216         * as/mcs51/lklex.c (getfid),
6217         * as/mcs51/lkmain.c (parse),
6218         * as/hc08/lklex.c (getfid),
6219         * as/hc08/lkmain.c (parse): Support comments in the linker script
6220         file on lines by themselves and after filenames
6221
6222 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6223
6224         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6225
6226 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6227
6228         * src/z80/peeph-z80.def: removed some peephole rules that don't
6229         work with multibyte arithmetic (fixed bug #937126)
6230         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6231         to registers and not global variables
6232         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6233         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6234         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6235         checking for assignments not internally generated (fixed bug #931895)
6236         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6237         structure member (fixed bug #930072)
6238
6239 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6240
6241         * src/SDCCmain.c (linkEdit),
6242         * src/hc08/main.c (_hc08_parseOptions),
6243         * as/hc08/Makefile.in,
6244         * as/hc08/aslink.h,
6245         * as/hc08/asm.h,
6246         * as/hc08/m08pst.c,
6247         * as/hc08/lkrloc.c (relr, rele),
6248         * as/hc08/lkarea.c (lnkarea)
6249         * as/hc08/lkmain.c (afile, parse),
6250         * as/hc08/lkelf.c: support for ELF output
6251         * as/hc08/lks19.c (s19),
6252         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6253
6254 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6255
6256         * as/mcs51/lkihx.c: Fixed bug #899105.
6257
6258 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6259
6260         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6261         .dsp files from Unix to DOS.
6262
6263 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6264
6265         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6266         function pointers; we have been compliant for several months now.
6267         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6268         change that was accidently commented out
6269         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6270         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6271         bug #922319
6272
6273 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6274
6275         * src/hc08/gen.c: output of all of the internal debugging information
6276         is now controlled by the D() macro; it is disabled by default
6277
6278 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6279
6280         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6281         harder to keep the same registers during a CAST iCode
6282         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6283         long via int can be done in a single cast, if the signedness is
6284         correct.
6285         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6286         putchar() in tinibios.c in ds390's library
6287
6288 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6289
6290         * src/SDCCast.c (decorateType): fixed bug #898889,
6291         cast result of a literal complement too
6292         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6293         fixed check for bitfields
6294
6295 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6296
6297         * src/SDCCicode.c (geniCodeLogic): made it static,
6298         (geniCodeLogicAndOr): added in order to fix bug #905492,
6299         (ast2iCode): fixed bug #905492
6300         * support/regression/tests/bug-905492.c: added
6301         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6302         (processParms): fixed bug #927659: don't copy parms, this will clear
6303         decorated flag
6304         * support/regression/tests/bug-927659.c: added
6305
6306 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         * src/SDCCast.c (addCast): don't cast float to char
6309         * device/lib/libsdcc.lib: added _memmove
6310
6311 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6312
6313         * device/lib/large/Makefile: fixed parallel execution by
6314         replacing `make` by `$(MAKE)`
6315
6316 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6317
6318         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6319         offsets (fixes bug #923936)
6320
6321 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6322
6323         * device/lib/small/Makefile: fixed parallel execution by
6324         replacing `make` by `$(MAKE)`
6325
6326 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6327
6328         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6329
6330 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6331
6332         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6333         * src/regression/Makefile: Regression test was not running.
6334
6335 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6336
6337         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6338         complement if possible
6339         * src/SDCCval.c (valComplement),
6340         * src/SDCCicode.c (operandOperation): fixed complement of literal
6341         * support/regression/tests/onebyte.c (testComplement): added
6342
6343 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6344
6345         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6346         return an optimized tree; actually replace actParm with the new tree
6347         * src/SDCCast.h: added some parantheses to remove side effects
6348         * support/regression/tests/bug-920866.c
6349
6350 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6351         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6352         Bit operands were not being handled properly in the pic14 port.
6353         (now src/regression/add.c passes again).
6354
6355 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6356
6357         * src/SDCC.y (labeled_statement): case and default no longer require
6358         a following statement (RFE #893037)
6359
6360 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6361
6362         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6363         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6364         disabled (fixes bug #916294)
6365         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6366         "mov a,acc"; patch provided by Lenny Story
6367         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6368
6369 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6370
6371         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6372         functions
6373         * src/ds390/gen.c (genFunction, genEndFunction),
6374         * src/ds390/ralloc.c (ds390_assignRegisters),
6375         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6376         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6377         pushed if there are parameters passed on the stack. Also, a cleaner
6378         way to decide if r0/r1 should be pushed/popped. (Together they fix
6379         bug #918693)
6380
6381 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6382
6383         * doc/sdccman.lyx,
6384         * device/lib/mcs51/crtpagesfr.asm,
6385         * device/lib/mcs51/crtxinit.asm,
6386         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6387         to avoid confusion with Si Lab's SFRPAGE register.
6388
6389 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6390
6391         * src/SDCCglue.c (emitMaps): allow public sfr variables
6392         * src/SDCCglue.c (initialComments): include compiler build date
6393         with compiler version and put the timestamp of the generated
6394         assembly file on a serperate line to be less confusing.
6395         * src/port.h: added genInitStartup hook
6396         * src/avr/main.c,
6397         * src/ds390/main.c,
6398         * src/hc08/main.c,
6399         * src/pic/main.c,
6400         * src/pic16/main.c,
6401         * src/xa51/main.c,
6402         * src/z80/main.c: genInitStartup initialize as NULL (default to
6403         historical behaviour)
6404         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6405         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6406         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6407         library instead of hard coding it into the compiler.
6408         * support/regression/ports/mcs51-stack-auto/spec.mk,
6409         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6410         * device/lib/mcs51/Makefile,
6411         * device/lib/small/Makefile,
6412         * device/lib/large/Makefile,
6413         * device/lib/mcs51/crtpagesfr.asm,
6414         * device/lib/mcs51/crtstart.asm,
6415         * device/lib/mcs51/crtxclear.asm,
6416         * device/lib/mcs51/crtxinit.asm,
6417         * device/lib/mcs51/crtclear.asm,
6418         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6419         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6420         and into user configurable files.
6421         * device/lib/clean.mk: clean mcs51 directory too
6422         * support/regression/tests/longlit.c: added static to T1 declaration
6423         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6424         accesses in the initialization code
6425
6426 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6427
6428         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6429         OSCTRIMVAL as noted in bug #916008
6430
6431 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6432
6433         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6434         in loops with multiple exits (reported as incorrect registers
6435         used by Martin Helmling in Sdcc-user list)
6436
6437 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6438
6439         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6440         made ds390 register extensions look less like error messages
6441
6442 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6443
6444         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6445         reported by Adam Wozniak in Sdcc-user list
6446
6447 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6448
6449         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6450         arithmetic optimizations, added debug output
6451
6452 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6453
6454         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6455         * sdcc.spec: updated and split sdcc into 3 rpms
6456         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6457         needed for literals of LEFT_OP and '+'
6458         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6459         introduced RESULT_TYPE_NOPROM
6460         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6461         left shift
6462         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6463         limited promotion to int only for '*'
6464         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6465
6466 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6467
6468         * src/pic16/gen.c (genSkip),
6469         (genc16bit2lit), (gencjneshort): commented out
6470         (is_LitOp): new helper function, checks operand type
6471         (genCmpEq): rewritten
6472
6473 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6474
6475         * support/regression/tests/bug-908454.c: added
6476
6477 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6478
6479         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6480         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6481         (geniCodeCast): cosmetic, don't preserve bit storage class
6482         (geniCodeLeftShift): added promotion
6483         (geniCodeLogic): fixed regression
6484         * src/SDCCsymt.c (computeTypeOr): accept bits too
6485         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6486
6487 2004-03-07  Borut Razem <borut.razem AT siol.net>
6488
6489         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6490
6491 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6492
6493         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6494         version of pic16_genPackRegisters which does not check if ic is a
6495         CAST operator,
6496         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6497         function cause string1.c regression test fails
6498
6499 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6500
6501         * sim/ucsim/configure.in,
6502         * sim/ucsim/configure,
6503         * sim/ucsim/doc/Makefile.in: use docdir
6504         * src/SDCC.y: fixed sbit atrributes
6505         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6506         * src/SDCCast.c (decorateType): |^& need special promotion handling
6507         * src/SDCCast.h,
6508         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6509         * src/SDCCsymt.h (computeType),
6510         * src/SDCCicode.c: computeType() needs op
6511         * src/SDCCsymt.c (checkTypeSanity),
6512         * doc/sddman.lyx: "plain" bitfields are unsigned
6513         * src/SDCCsymt.c (computeTypeOr): added
6514         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6515         |^& ops
6516         * src/SDCCval.c (val*): computeType() needs op
6517         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6518         * support/regression/tests/onebyte.c: added tests for |^&
6519
6520 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6521
6522         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6523         for writing icode into asm output.
6524
6525 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6526
6527         * src/pic16/device.c: added some debug lines enabled
6528         with macro DEBUG_CHECK,
6529         * src/pic16/genarith.c: more debug in genPlus,
6530         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6531         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6532         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6533         * (aopForSym): onStack symbols are re-placed in data memspace,
6534         and onStack flag is cleared,
6535         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6536         copy temporary pcodeop,
6537         * (genPcall): added warning for not updating PCLATU,
6538         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6539         always true for pic16 port,
6540         * (genMultOneWord): NEW, supports integer multiplication,
6541         * (genMult): modified to call genMultOneWord,
6542         * (ifxForOp): added warning when return NULL,
6543         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6544         flag is set before call to operandFromSymbol for implicit
6545         added structures,
6546         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6547         options.intlong_rent are set by default,
6548         * (_hasNativeMulFor): modified to allow port generation of integer
6549         multiplication,
6550         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6551         set regtype to REG_SFR for all registers, restricting seting the
6552         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6553
6554 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6555
6556         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6557         more than 500 times in the regression tests
6558
6559 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6560
6561         * support/Util/SDCCerr.h,
6562         * support/Util/SDCCerr.c,
6563         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6564         enumerator_list),
6565         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6566         for symbol conflicts.
6567         * support/valdiags/tests/enum.c,
6568         * support/valdiags/tests/tentdecl.c,
6569         * support/valdiags/tests/struct.c: expect possible error messages
6570         referring to original symbol definitions.
6571         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6572         * src/SDCCsymt.h,
6573         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6574
6575 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6576
6577         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6578
6579 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6580
6581         * src/pic16/ralloc.c (newReg): fixed bug #908929
6582
6583 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6584
6585         * src/ds390/gen.c: added missing #include "main.h"
6586
6587 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6588
6589         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6590         checking if symbol is already in set,
6591         * src/pic16/device.h: prototype for checkAddSym,
6592         * src/pic16/gen.c: (_G): added entry interruptvector,
6593         * (assignResultValue): removed some commented out lines,
6594         * (genFunction): check for ISR via sym->type, absolute section for
6595         interrupt code is created via a new pBlock, the goto instruction is
6596         placed now correctly at the interrupt vector position, changed all
6597         references from ivec to _G.interruptvector,
6598         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6599         is the interrupt is a high priority one, same for return from ISR,
6600         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6601         externs to calls of checkAddSym,
6602         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6603         pic16_pcode_verbose flag is set,
6604         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6605         * src/pic16/pcoderegs.c: message about how many registers are saved
6606         will only be emitted if pic16_pcode_verbose flag is set,
6607
6608 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6609
6610         * src/ds390/ralloc.h,
6611         * src/ds390/ralloc.c (ds390_regWithIdx),
6612         * src/ds390/gen.c (emitcode),
6613         * src/ds390/main.h,
6614         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6615         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6616         ds390operandCompare, getRegsRead, getRegsWritten,
6617         initializeAsmLineNode): customized instruction size calculation for
6618         ds390, started basis for some register optimizations
6619         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6620         corresponding assembly output
6621         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6622         missing push/pop of r0/r1. Optimized push/pops
6623
6624 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6625
6626         * src/mcs51/main.c (instructionSize): fixed ACALL size
6627         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6628
6629 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6630
6631         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6632         the sorting of rlist with NULL elements
6633         * (print_idataType, print_idata): NEW to create idata sections
6634         * src/pic16/device.h: idataSymSet new variable
6635         * src/pic16/gen.c (genFunction): fixed some bugs in string
6636         comparing, improved the absolute section creation for ISRs,
6637         added FSR0L/FSR0H in registers that are saved in an ISR,
6638         * (genInline): fixed the processing of inline snippets,
6639         now they undergo no process by the peephole optimizer
6640         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6641         are placed in idataSymSet,
6642         * (pic16emitStaticSeg): extern symbols are added in externs,
6643         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6644         switching when aboslute variables are placed in access bank memory
6645         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6646         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6647         commented out with #if,
6648         * (pic16_packRegisters): reintroduce the check for CAST because some
6649         symbols are not correctly handled,
6650         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6651         pCodeInstruction instead of pCode,
6652         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6653         pCodeAsmDir definition,
6654         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6655         directive, then the argument directive is emitted without the leading
6656         tab, hack for inline labels which must be in the first column,
6657         * (compareLabel,pic16_findNextInstruction),
6658         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6659         * (insertBankSwitch): modified for the new pCodeAsmDir,
6660
6661 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6662         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6663
6664         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6665         instance,
6666         * (pushSide): commented out with #if,
6667         * (assignResultValue): fixed some typos in saving
6668         registers,
6669         * (genPcall): FIXED and sync'ed with genCall,
6670         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6671         * (genNearPointerGet): fixed to handle some more cases,
6672         implementation scheme via table reads,
6673         * (genConstPointerGet): modified to access code memory correct,
6674         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6675         and improved to handle some cases
6676         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6677         instead of "RETLW" for init data
6678         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6679         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6680         variables are placed in access bank memory (<0x80 and >=0xf80),
6681         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6682         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6683         TBLWT_POSTDEC,TBLWT_PREINC
6684         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6685         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6686         directives
6687         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6688         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6689         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6690         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6691
6692 2004-02-29  Borut Razem <borut.razem AT siol.net>
6693
6694         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6695         support/Util/findme.h, support/Util/system.h: enhance binary relative
6696         search for lib and include by using findProgramPath()
6697
6698 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6699
6700         * src/SDCCpeeph.h,
6701         * src/SDCCpeeph.c (pcDistance),
6702         * src/port.h,
6703         * src/mcs51/ralloc.h,
6704         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6705         * src/mcs51/main.h,
6706         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6707         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6708         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6709         size calculation port specific, started basis for some register
6710         optimizations
6711         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6712         missing push/pop of r0/r1. Optimized push/pops
6713         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6714         * device/lib/_modsint.c (_modsint),
6715         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6716         and stack version so regression tests pass
6717
6718 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6719
6720         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6721         * src/SDCCast.c (decorateType): catch another small optimization
6722         with '?' operator
6723         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6724         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6725         modified to finally use computeType() all over SDCC,
6726         see Feature Request #877103
6727         * src/SDCCval.h: cosmetic
6728         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6729         valCompare(); regression tested in muldiv.c
6730         * support/regression/tests/muldiv.c (testMod): mod sign follows
6731         dividend only
6732
6733 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6734
6735         * src/SDCCast.c (decorateType): fixed bug #902362
6736         * doc/INSTALL.txt: fixed install instructions for win32
6737
6738 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6739
6740         * device/include/Makefile.in (install): fixed by replacing spaces
6741         by tabs
6742         * doc/README.txt,
6743         * doc/INSTALL.txt: updated for release
6744         * doc/sdccman.lyx: added warning for --xstack being buggy
6745
6746 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6747
6748         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6749         to eliminate build warnings.
6750         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6751
6752 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6753            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6754
6755         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6756         removed -penable-stack, added comment for stack pragma, added
6757         warning for not initializing the stack/frame registers, removed
6758         comment at interrupts section
6759
6760         Stack is made permanent, there is no ability to disable stack usage.
6761         * src/pic16/device.h,
6762         * src/pic16/device.c: removed all references to USE_STACK macro,
6763         * src/pic16/device.c (pic16_dump_section): when no elements in
6764         rlist, free rlist before return,
6765         * (pic16_dump_int_registers): NEW, internal registers are a new set
6766         of general purpose registers reused by each function,
6767         * (checkAddReg): returns 1 if registers is added to set,
6768         * (pic16_groupRegistersInSection): when a registers is of type
6769         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6770         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6771         SRCASECMP macro is moved here from device.c
6772         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6773         PO_PCLATU, PO_PRODL, PO_PRODH,
6774         * (pic16_pCodeOpType, genMinus,
6775         changed compares to "a" register, with AOP_ACC,
6776         * (pic16_genPlus): fixed some bugs and indented properly,
6777         * (pic16_addSign): changed size to size+offset in the MOVWF
6778         instruction,
6779         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6780         multiply 8-bit operand by literal, result is 8-bit,
6781         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6782         multiply 2 8-bit operand, result is 8-bit,
6783         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6784         genUMult8X*_16,
6785         * src/pic16/gen.c: changed accUse to contain WREG only,
6786         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6787         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6788         true, do not use immediate addressing any more unless sym is a
6789         pointer in codespace,
6790         * (aopForRemat): do not use immediate addressing when symbol not in
6791         codespace and when symbol's address is requested,
6792         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6793         accUse size (= 1),
6794         * (aopGet): added case for AOP_ACC and don't return "accumulator
6795         bug" but WREG instead,
6796         * (popGetTempReg): pushes contents of temporary register in stack,
6797         * (popReleaseTempReg): pops contents of temporary register from
6798         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6799         * (pic16_popGet): separated case AOP_ACC to return register WREG
6800         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6801         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6802         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6803         the use of immediate pointers to certain cases only.
6804
6805         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6806         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6807         * (assignResultValue, genCall, genRet): modified to use the new
6808         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6809         genPcall is still broken,
6810         * (genFunction): added code to create 'A' type pBlocks when
6811         interrupt functions are generated, code not extensively tested yet,
6812         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6813         * (genEndFunction): modified so ISRs pop stored registers from stack,
6814         * (genMultOneByte): cleanup,
6815         * (AccRsh): added flag andmask, to and result with appropriate mask,
6816         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6817         * (genDataPointerGet): fixed and reenabled its use,
6818         * (genNearDataPointerGet): bugs fixed,
6819         * (genDataPointerSet): bugs fixed,
6820         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6821         pic16_DumpSymbol, pic16_DumpOp,
6822         * src/pic16/genutils.h: function prototypes for the above functions,
6823         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6824         pointers,
6825         * (pic16emitRegularMap): many many many improvements, but needs a
6826         major cleanup,
6827         * src/pic16/main.c: enable_stack in pic16_options is removed,
6828         * (_pic16_parseOptions): removed command line options -penable-stack,
6829         * (_process_pragma): emit stack symbol only when stack pragma is
6830         processed,
6831         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6832         redirected to FSR0L/FSR0H pair,
6833         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6834         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6835         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6836         for immediates,
6837         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6838         * (dumpPicOptype): NEW,
6839         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6840         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6841         with movff instruction,
6842         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6843         added pic16_int_regs, some packRegsFor* functions are commented out,
6844         because produce errors,
6845         * src/pic16/NOTES: minor modifications
6846
6847 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6848
6849         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6850         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6851         --pack-iram.
6852         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6853         * as/mcs51/lkaomf51.c: fixed bug #895763
6854
6855 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6856
6857         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6858
6859 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6860
6861         * doc/sdccman.lyx: added details about the HC08 storage classes and
6862         interrupts, fixed the register usage info for z80 & gbz80
6863
6864 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6865
6866         * doc/sdccman.lyx: added more pic16 port documentation
6867         * device/include/pic16/: added header pic18fregs.h
6868
6869 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6870
6871         * doc/sdccman.lyx: added Vangelis' contribution
6872
6873 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6874
6875         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6876         extend to the next CALL or PCALL, not just to the next CALL.
6877
6878 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6879
6880         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
6881
6882 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6883
6884         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
6885         bug #895752 and a better fix for bug #716790
6886
6887 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6888
6889         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
6890
6891 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6892
6893         * doc/sdccman.lyx: minor changes, minor changed
6894
6895 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
6896
6897         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
6898         which can't handle SDCC_NEWONEBYTEOPS,
6899         (geniCodeMultiply): removed conversion from mult to shift for pic14
6900         and pic16
6901
6902 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * src/hc08/gen.h,
6905         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
6906         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
6907         thus fixing bug #895406
6908
6909 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
6910
6911         * device/lib/_modsint.c,
6912         * device/lib/_modslong.c: sign follows divisor only
6913         * src/hc08/gen.c (genMultOneByte): if result size is 1,
6914         signs or signedness can be ignored
6915         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
6916         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
6917         added optimization for IFX,
6918         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
6919         arguments;
6920         reenabled optimization for IFX, which was removed on 2004-01-11
6921         * src/SDCCast.h: added return type IFX
6922         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
6923         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
6924         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
6925         SDCC_OLDONEBYTEOPS selects the old behaviour
6926         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
6927         changed again and commented promotion rule
6928         * src/SDCCval.c (valDiv): promotion no longer necessary
6929         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
6930         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
6931         rewritten
6932         * support/regression/tests/onebyte.c: added
6933
6934 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
6935
6936         * gen.c (genInline): reverted to old code for assemnling inline
6937         code because of bug reported James Chadd
6938
6939 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
6940
6941         * ralloc.h: missing declarations from previous patch,
6942         seems that patch for ralloc.h was never applied, fixed
6943
6944 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6945            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
6946
6947         * pcode.c,
6948         * pcode.h,
6949         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
6950         indirect addressing. Marked FSR0 as deprecated
6951         * gen.c (pointerCode): commented out, not needed now
6952         (pic16_popGet2p): new MOVFF helper function
6953         (genGenPointerGet),
6954         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
6955         (shiftRLong): removed duplicate debugging info
6956
6957 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6958
6959         * src/ds390/gen.c (genNearPointerGet),
6960         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
6961         optimization with bits, but not bitfields.
6962         * src/ds390/ralloc.c (packRegisters),
6963         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
6964
6965 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
6966
6967         * src/SDCCcse.c (algebraicOpts): copy operands before modification
6968
6969 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6970
6971         * src/SDCCsymt.h,
6972         * src/SDCCicode.c (operandFromSymbol),
6973         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
6974         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
6975         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
6976         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
6977         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
6978         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
6979         bug #892038
6980         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
6981         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
6982         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
6983         * src/SDCCsymt.c (newSymbol),
6984         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6985         enumerator_list),
6986         * src/SDCCval.h,
6987         * src/SDCCval.c (newiList): fixed bug #885705
6988
6989 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6990
6991         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
6992         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
6993
6994 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6995
6996         * device/include/c8051f120.h,
6997         * device/include/c8051f300.h,
6998         * device/include/c8051f310.h: added/updated header files for Silicon
6999         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7000         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7001         in new section Submitting patches
7002
7003 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7004
7005         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7006         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7007         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7008         genGenPointerSet),
7009         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7010         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7011         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7012         genGenPointerSet),
7013         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7014         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7015         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7016         genGenPointerSet),
7017         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7018         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7019         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7020         genGenPointerSet): fixed bug #892400
7021         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7022         to eliminate build warnings.
7023         * src/SDCCast.c (processParms),
7024         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7025         fixed bug 751859
7026         * support/valdiag/valdiag.py: added GCC to the list of defines active
7027         when compiling with gcc
7028
7029 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7030
7031         * support/Util/SDCCerr.h,
7032         * support/Util/SDCCerr.c,
7033         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7034         with an incomplete type (fixed bug #883734)
7035         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7036
7037 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7038
7039         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7040
7041 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7042
7043         * src/SDCCast.c (decorateType),
7044         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7045         function pointer implementation
7046         * support/regression/tests/funptrs.c: added tests to verify both forms
7047         of function pointers work correctly. Added tests to verify parameters
7048         are passed in the correct order.
7049
7050 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7051
7052         * device.c (regCompare): registers are sorted by ascending
7053         address and increasing size,
7054         * main.c (_pic16_finaliseOptions): removed the declaration
7055         of compiler macro MCU. Now a macro of the format pic18fxxxx
7056         will be defined from the command line
7057
7058 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7059             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7060
7061         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7062         PCOP_RLCF was overwritten!
7063         * gen.c (genSkip): commented out calls to pic16_emitcode,
7064         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7065         * (genlshTwo),
7066         * (genRRC): added debugging info,
7067         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7068         overwritten while shifting,
7069         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7070         overwritten while shifting,
7071         * (AccLsh),
7072         * (AccRsh),
7073         * (shiftLLeftOrResult),
7074         * (shiftRLeftOrResult),
7075         * (shiftRLong),
7076         * (shiftLLong): Implemented with pic16_emitpcode
7077         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7078         * (genLeftShift): Fixed bug, operand for shift by variable always
7079         was "and"ed with 0x0f,
7080         * (genLeftShiftLiteral),
7081         * (genrshTwo),
7082         * (genRightShiftLiteral): added debugging info,
7083         * (genrshFour): added comment,
7084         * (genRightShift): determined signedness from operand "left"
7085         instead of "result"
7086
7087 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7088
7089         * src/SDCCicode.c (geniCodeParms),
7090         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7091         function pointers, fixed function pointer bugs #861242 and #861896
7092
7093 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7094
7095         * device/include/c8051f000.h,
7096         * device/include/c8051f120.h,
7097         * device/include/c8051f300.h: added header files for Silicon
7098         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7099
7100 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7101
7102         * src/SDCCast.c (processParams): added new type flow and restructured
7103         (gatherAutoInit): added new type flow
7104         (addCast): cosmetic changes
7105         (getLeftResultType): added new type flow for array indices, patch
7106         provided by Stas, see FR #877103
7107         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7108         array index patch by Stas
7109         * src/SDCCast.h: added prototype getResultTypeFromType()
7110         * src/SDCCval.h,
7111         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7112         * src/pic/glue.c (pic14emitStaticSeg),
7113         * src/pic16/glue.c (pic16emitStaticSeg),
7114         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7115         for initialization of symbols
7116         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7117         * support/Util/SDCCerr.h:
7118         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7119         * .version: bumped version number to 2.3.8
7120         * device/include/Makefile.in (install),
7121         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7122         avoid warnings
7123
7124 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7125
7126         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7127         Slade Rich fixed an optimization bug
7128         * src/pic/pcodepeep.c,
7129         * src/pic/pcoderegs.c
7130         * doc/Makefile (install): added test for directory
7131
7132 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7133
7134         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7135         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7136         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7137         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7138         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7139         * as/mcs51/asexpr.c (term),
7140         * as/hc08/asexpr.c (term): fixed bug #887146
7141
7142 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7143
7144         * src/z80/gen.c (genMult): handle single byte result product
7145         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7146         DUMMY_READ_VOLATILE (fixed bug #886367)
7147
7148 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7149
7150         * support/regression/tests/libmullong.c: fixed logic, on little endian
7151         hosts we ended without a mullong_wrapper()
7152
7153 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7154
7155         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7156         virus/worm forged address usage.
7157
7158 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7159
7160         Fixed promotion, it should be done on AST level:
7161         * src/SDCCast.c (addCast): added promotion to int
7162         (decorateType): updated call to upCast()
7163         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7164         usualUnaryConversions()
7165
7166 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7167
7168         * support/regression/tests/literalop.c (mulWrapper): Added a
7169         wrapper to remove integer overflow warnings.
7170
7171         * support/regression/tests/float_trans.c: Made work on host.
7172
7173         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7174         location of sz80.
7175
7176         * support/regression/generate-cases.py (main): Changed from inline
7177         to a main method.
7178
7179         * doc/Makefile (install): Changed to depth first to get rid of
7180         missing directory install warning.
7181
7182         * as/Makefile (install-doc): Made work on Mac.
7183
7184 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7185
7186         * src/SDCCast.c: added an additional type flow in decorateType() of
7187         opposite direction, see feature request #860006; it's enabled at runtime
7188         by setting the environment variable SDCC_NEWTYPEFLOW
7189         * src/SDCCast.h: changed prototype of decorateType()
7190         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7191         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7192         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7193         see feature request #877103
7194         * src/SDCCval.c: updated call of decorateType()
7195         (valBitwise): fixed bug #882876
7196         (valMinus): added promotion
7197         (valLogicAndOr): result is unsigned
7198         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7199         * src/SDCCsymt.c (computeType),
7200         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7201         must not cause an unsigned operation
7202         * src/pic/glue (pic14emitRegularMap),
7203         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7204
7205 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7206
7207         * src/pic/pcode.c (PCodeID): commented out left over debug code
7208
7209 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7210
7211         * support/valdiag/tests/overflow.c: added shift tests
7212         * src/pic/device.c,
7213         * src/pic/gen.c,
7214         * src/pic/gen.h,
7215         * src/pic/glue.c,
7216         * src/pic/main.c,
7217         * src/pic/pcode.c,
7218         * src/pic/pcode.h,
7219         * src/pic/pcodepeep.c,
7220         * src/pic/pcoderegs.c,
7221         * src/pic/ralloc.c,
7222         * src/pic/ralloc.h: applied patch from Slade Rich;
7223         added support for multiple code pages and multiple RAM banks on the
7224         PIC 14 port. The ASM files now no longer simply assume all the
7225         code / RAM are in the same page / bank. This means the linker can
7226         safely allocate code/RAM of separate ASM files to different pages/banks.
7227         * doc/sdccman.lyx: added Slade's tips
7228         * src/mcs51/peeph.def: fixed bug #880768
7229
7230 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7231
7232         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7233         * src/SDCCast.c (decorateType): fixed bug #880197
7234
7235 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7236
7237         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7238         getopt.h.
7239
7240         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7241         strtof is not part of C89 and isn't included with Mac OS X.
7242
7243 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7244
7245         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7246         shiftL2Left2Result): fixed bug #879326
7247         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7248         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7249         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7250         address fetch for clr instruction
7251         * device/lib/hc08/_mulint.c: created optimized assembly version
7252         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7253
7254 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7255
7256         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7257         proposed in FR #877103
7258
7259 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7260
7261         * src/SDCCval.c (cheapestVal): added missing checks
7262         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7263         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7264
7265 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7266
7267         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7268         equal operands
7269
7270 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7271
7272         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7273         loaded with the linker search paths (-L arguments) and the libraries
7274         to be linked with the current source (-l arguments). Changes
7275         currently will affect only the pic16 port.
7276         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7277         include path the port specific paths and port specific libraries,
7278         * gplink command now contains the $3 argument,
7279         * src/pic16/device.h,
7280         * src/pic16/device.c,: structure PIC_device is made public and
7281         renamed to PIC16_device, the same for variable Pics which is renamed
7282         to Pics16. Updated all references to them.
7283         * src/pic16/glue.c (pic16glue): corrected bug with code
7284         initialization which bypassed the variable initializations block.
7285
7286         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7287         COMPILE_FLAGS and added the --nostdinc option
7288
7289 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7290
7291         * device/include/mc68hc908jb8.h: Register defs for another member
7292         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7293
7294 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7295
7296         Documenting changes from previous commits.
7297         * configure.in (version 1.56),
7298         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7299         when generating output files to configure the pic16 library,
7300         but now I've commented it out, since gputils aren't installed in the
7301         SF compile farm, so library won't compile
7302
7303         * device/lib/Makefile.in (version 1.56): initially I've added in
7304         target 'all' the prerequestive 'model-pic16' so it compiled the
7305         pic16 library, but now I've commented it out for the same reasons
7306         above,
7307         * added targets 'model-pic16' and 'objects-pic16' to compile the
7308         library
7309         * added target 'port-specific-objects-pic16' to handle the
7310         generated libraries and copy them into the build/ directory
7311         * added target 'clean-intermediate-pic16' to clean intermediate
7312         files into pic16 directory
7313         * in target 'installdirs' added line to create directory pic16 in
7314         the installation path
7315
7316         * device/include/Makefile.in (version 1.11): in target 'install'
7317         added lines to copy all header files to installation path,
7318         * in target 'installdirs' added line create directory for pic16
7319         headers in the installation path
7320
7321 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7322
7323         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7324          a function call
7325
7326 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7327
7328         * configure,
7329         * device/lib/configure.in,
7330         * device/lib/configure: fixed for autoconf 2.57
7331
7332 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7333
7334         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7335         option so that it actually works. Made it specific to the z80, since
7336         the gbz80 doesn't have these kinds of I/O ports.
7337
7338 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7339
7340         * device/include/z180.h,
7341         * device/lib/_memcpy.c,
7342         * device/lib/_memmove.c,
7343         * device/lib/_mulint.c,
7344         * device/lib/ser_ir.c,
7345         * device/lib/ser_ir_cts_rts.c,
7346         * device/lib/_strcmp.c,
7347         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7348         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7349         portmode; added deprecation warning for bank= and protmode= forms.
7350         Also, guard against buffer overflow.
7351         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7352
7353 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7354
7355         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7356         changed interrupt vector table generation to only emit declared vectors.
7357         * device/include/Makefile.in: added missing backslash
7358         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7359
7360 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7361
7362         Mainly changes to support compilation of the device libraries
7363         * src/pic16/device.c: stack is allocated via symbol and not
7364         via literal number. The symbol is placed in the corresponding
7365         position of the data ram
7366         * (pic16_dump_section): relocatable and absolute uninitialized
7367         data are now emitted in sorted order to reduce section naming,
7368         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7369         weren't marked as being in the access bank,
7370
7371 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7372
7373         Added portion of GNU PIC Library under the directory
7374         device/include/pic16 and device/lib/pic16. These files
7375         contain the declarations of SFRs for the PIC18Fxx2 devices.
7376         The directory is initialized via configure from toplevel.
7377
7378 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7379
7380         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7381         the spilllocations to be compared correctly
7382
7383 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7384
7385         * src/SDCCast.c (decorateType): fixed bug introduced today
7386
7387 2004-01-12  Borut Razem <borut.razem AT siol.net>
7388
7389         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7390         doc/sdccman.lyx: upper case pragmas are deprecated
7391
7392 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7393
7394         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7395         in simpler and even better code
7396
7397 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7398
7399         * src/SDCCicode.c (operandOperation): fixed bug #874819
7400         * src/SDCCast.c (decorateType): fixed
7401         char foo (unsigned long ul) { return ul > 0; }
7402
7403 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7404
7405         * doc/sdccman.lyx: Moved and added some sections, small changes
7406         all over. Telling LaTeX to be less strict with word spacing
7407         to better keep the right margin. Changed some notes about
7408         maintainance of the ports in section 3.2.1 - is it OK like this?
7409
7410 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7411
7412         SDCC source changes:
7413         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7414         convilong): modified to inform the pic16 port that builtin functions
7415         are external
7416
7417         PIC16 PORT specific changes:
7418         * src/pic16/device.c pic16_dump_equates() added,
7419         processor registers declared internally by the port are emitted in
7420         the translation as equates,
7421         * src/pic16/gen.c: inline code is passed unprocessed to the
7422         translation,
7423         * (pic16_popGetLit2): fnuction modified to take second operand as
7424         pCodeOp pointer and not as literal,
7425         * (popRegFromIdx): prefixed with pic16_,
7426         * (pic16_popCombine2): modified to receive already allocated pCode
7427         operands,
7428         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7429         * (genFunction): initializes local stack frame and pushes on stack
7430         all the registers used by this function,
7431         * (genEndFunction): restores all registers from stack and restores
7432         stack frame,
7433         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7434         improvements,
7435         * (pic16glue): changed the program startup sequence,
7436         * added new dbName code 'A' for functions placed in absolute section
7437         * src/pic16/main.c: added function attribute _naked,
7438         * added pragma 'code' to place a fnuction at an absolute address,
7439         * added command line arguments --debug-ralloc and --pcode-verbose,
7440         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7441         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7442         * (pic16_newpCodeOpLit2): modified to take the second operand as
7443         pCodeOp pointer,
7444         * (pic16_printpBlock): modified to emit each function in a separate
7445         section,
7446         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7447         UPPER for immediate operands,
7448         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7449         instruction,
7450         * src/pic16/peeph.def: all peepholes with movff are commented out,
7451         because there is a problem in the pcode peep optimizer,
7452         * src/pic16/ralloc.c: the register allocator can now reuse local
7453         function symbols for another function. This saves register usage.
7454         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7455
7456         Added file src/pic16/NOTES with information about program writing on
7457         the current port version.
7458
7459 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7460
7461         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7462         and peephole 252 (array access)
7463
7464 2004-01-09  Borut Razem <borut.razem AT siol.net>
7465
7466         * src/SDCCmain.c : fixed #872250: -l command line defined library
7467           files are scanned before standard library files
7468
7469 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7470
7471         * src/SDCCast.c (decorateType): fixed bug #874046
7472
7473 2004-01-09  Borut Razem <borut.razem AT siol.net>
7474
7475         * support/scripts/sdcc.nsi: remove previous installation
7476
7477 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7478
7479         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7480         bytes for last interrupt vector (mcs51)
7481         * sdcc.spec: fixed typo
7482
7483 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7484
7485         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7486         gen51Code): more efficient parameter receive for --model-large
7487         ("bug" #845294)
7488
7489 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7490
7491         * src/ds390/main.c,
7492         * src/z80/main.c: added missed needLinkerScript flags (more than
7493         one port structure defined in these file)
7494         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7495         bug #795325
7496
7497 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7498
7499         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7500         * src/port.h: added flag needLinkerScript in port->linker
7501         structure to inform whether to create a .lnk file or not,
7502         * src/avr/main.c,
7503         * src/ds390/main.c,
7504         * src/hc08/main.c,
7505         * src/mcs51/main.c,
7506         * src/pic/main.c,
7507         * src/pic16/main.c,
7508         * src/xa51/main.c,
7509         * src/z80/main.c: changed appropriately to configure
7510         needLinkerScript flag
7511         * src/pic/gen.c,
7512         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7513         * src/pic/glue.c: added variable udata_section_name to
7514         override default uninitialized data segment definition for
7515         devices only with SHAREBANK memory (reported from Erik Epetrich)
7516         * (pic14emitOverlay): modified to emit a commented overlay segment
7517         directive when no overlay data exist
7518         * (picglue): modified to emit uninitialized data segment
7519         according to udata_section_name
7520         * src/pic/main.c (_pic14_parseOptions): added command line
7521         options --udata-section-name=[name] to override default
7522         udata definition name
7523         * modified _linkCmd and _asmCmd to include compiler passed
7524         arguments via -W option
7525         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7526         object file from '.rel' to '.o' in port->linker structure,
7527         changed size of fptr from 2 to 3 in port structure
7528
7529 2004-01-07  Borut Razem <borut.razem AT siol.net>
7530
7531         * support/scripts/sdcc.nsi: update PATH
7532         * support/scripts/sdcc.ico: craeted
7533
7534 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7535
7536         * device/include/Makefile.in: fix install
7537         * doc/Makefile: fix install
7538
7539 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7540
7541         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7542         in bug #860505
7543         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7544         how the function variable allocation summary is displayed; also
7545         include information about variables allocated to the overlay
7546         segment
7547
7548 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7549
7550         * as/mcs51/lkmain.c: Help about -Y option
7551         * as/mcs51/lkarea.c: Fixed gcc warnings
7552
7553 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7554
7555         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7556         fixed warning
7557         * support/valdiag/tests/overflow.c: added
7558         * src/SDCCast.c (decorateType),
7559         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7560         LEFT_OP (left shift)
7561
7562 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7563
7564         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7565         (default behaviour).
7566
7567 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7568
7569         A python script to validate compiler diagnostic messages. It can be
7570         used to verify that sdcc complains about bad c source code and
7571         gives a good location of the error.
7572         * support/valdiag/Makefile,
7573         * support/valdiag/valdiag.py,
7574         * support/valdiag/tests/*
7575
7576 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7577
7578         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7579         * src/SDCCsymt.c (newEnumType),
7580         * src/SDCCsymt.h
7581         * support/Util/SDCCerr.c,
7582         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7583         enum related bugs.
7584         * support/regression/tests/enum.c: added test for enum values that
7585         require at least 2 bytes of storage.
7586
7587 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7588
7589         * src/common.h: added ifndef/define/endif macros
7590         around the header file.
7591         Bug reported from Jesus Calvino-Fraga
7592
7593 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7594
7595         * sdcc.spec: updated
7596         * device/include/Makefile.in: don't install CVS directories
7597         * device/lib/Makefile.in: added removal of CVS directories after install
7598         * doc/Makefile: fixed install, added local_icons
7599         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7600         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7601         * src/ds390/gen.c (genRightShift): fixed bug #870788
7602         * src/SDCCast.c (decorateType): fixed bug #870781
7603
7604 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7605
7606         PIC16 port related changes:
7607         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7608         added variable stackPos,
7609
7610         * gen.c: genCall, assignResultValue: added support for
7611         pushing/retrieving function parameters to/from stack,
7612         genFunction,genEndFunction: setup stack frame for the
7613         generated function,
7614         genAddrOf: will be changed according to bug 863624
7615
7616         * added files genutils.c and genutils.h which contain gen*
7617         debugged and optimised functions extracted from gen.c
7618
7619         * glue.c: added variable 'externs' which holds extern symbols,
7620         pic16emitRegularMap: is modified to properly handle relocatable
7621          symbols under the new scheme,
7622         pic16createInterruptVect: is modified
7623         pic16printPublics: is modified to emit 'global' assembler directives,
7624         added pic16_printExterns to print extern symbols,
7625         pic16glue: initializes stack/frame pointer in the beginning of
7626         the assembly output. Temporary hack, will be corrected later,
7627         because gplink yet does not support stack and SDCC does not
7628         yet support a type of crt0.o object to create the final binary.
7629
7630         * Removed many lines that contain 8051 legacy code.
7631         * The code is finally placed under a 'code' directive.
7632         * Added port specific options.
7633
7634         * _process_pragma: simplified since now we do not need *special*
7635         include file to define SFR registers. But a separate header
7636         will be needed. This will be developed later.
7637         * _pic16_parseOptions: added, parses port specific options:
7638         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7639         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7640         --preplace-udata-with=
7641
7642         * _pic16_setDefaultOptions: modified to initialize section names,
7643         but hack is temporarly out of order since it needs improvement.
7644         * _pic16_genAssemblerPreamble: configuration words are emitted by
7645         their address instead of their name. This part is incomplete and
7646         supports only the 18Fxx2 devices. Other devices will emit an error
7647         during assembly since they do not contain the same set of config
7648         registers
7649         * _pic16_genIVT: is modified,
7650
7651         * pcode.c: added definitions for some hardware registers that are needed
7652         for stack support
7653         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7654         All PCI entries are updated. Now LFSR is supported.
7655         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7656         * added pic16_newpCodeOpLit2 to support instructions with
7657         two literal arguments
7658         * pic16_pCode2str: corrected code that emits assembler instructions
7659         with two literal operands and those that have an access bit modifier
7660         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7661         this fixes a bug which caused some labels to be lost, when an
7662         assembler directive was added, i.e. banksel,
7663         * pic16_FixRegisterBanking: improved logic that causes the insertion
7664         of bank switching,
7665         * InlineFunction: functions that are called once, are not any more
7666         inlined. This can be a port option in the future,
7667
7668         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7669
7670         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7671         hold the corresponding uninitialized symbols,
7672         * pic16_allocProcessorRegister: registers have explicit marked the
7673         accessBank field,
7674         * pic16_allocInternalRegister: registers are explicit marked as
7675         not used,
7676         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7677         processing list, so bit registers were lost,
7678         *
7679
7680         * ralloc.h: added field 'accessBank' and original symbol operand
7681         in register definition,
7682         * removed the field isMapped from register definition,
7683
7684         ** Several functions have been removed from various sources:
7685         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7686         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7687         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7688         pic16_assignRelocatableRegisters
7689
7690         ** others have been introduced:
7691         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7692         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7693
7694 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7695
7696         * support/scripts/inc2h.pl: changed definition of BIT_AT
7697         to emit 'sbit at' instead of 'bit at'. This was a request.
7698
7699         PIC16 port related preliminary changes:
7700         * gen.c: prefixed function popRegFromString with
7701         pic16_ and all references to it corrected
7702         * pcode.c: all pic16_pc_* hardware registers prefixed
7703         with underscore (_),
7704         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7705         * ralloc.c: newReg(): when register is REG_SFR then
7706         set address to rIdx,
7707         pic16_allocProcessorRegister(): marks register wasUsed=0
7708         pic16_writeUsedRegs(): added a call to assign processor
7709         registers via pic16_assignFixedRegisters
7710
7711 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7712
7713         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7714         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7715         variables in unused register banks.  Also the SSEG is placed
7716         wherever there is enough space for it, and IDATA can be anywhere
7717         in internal RAM.  For now compile using -Wl-Y[stack_size].
7718         The mem file is different for this option as well, since it
7719         makes no sense of talking about DSEG lenght.
7720
7721 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7722
7723         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7724         in certain cases, e.g. when ROM assignment, patch provided
7725         from Albert den Haan.
7726
7727 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7728
7729         Many signedness and type propagation fixes:
7730         * src/SDCCicode.c: made geniCodeCast() static
7731         replaced SPEC_ by IS_ (cosmetic)
7732         (operandOperation): fixed div and mod operation
7733         (usualBinaryConversions): added support for promotion of char
7734         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7735         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7736         (geniCodeAdd): an array index will stay unsigned, even if promoted
7737         from char to int
7738         (geniCodeArray): ditto
7739         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7740         * src/SDCCsymt.c (computeType): added more support for char;
7741         promotion of char is selectable by promoteCharToInt, fixed signedness
7742         for all cases
7743         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7744         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7745         * src/SDCCval (val*): replaced signedness calculation by
7746         computeType()
7747         rearranged if-branches (cosmetic)
7748         (valShift): added warning W_SHIFT_CHANGED
7749         (valCompare): fixed problem with different types
7750         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7751         * support/regression/tests/literalop.c: added many cases
7752         * support/regression/tests/ast_constant_folding.c: changed finally to
7753         'unsigned int'
7754         * .version: new year, new version: 2.3.7
7755         * src/SDCCmain.c (main): applied patch #866468
7756         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7757         provided by Scott Bronson
7758         * doc/sdccman.lyx: updated documentation for sdcdb
7759         updated and added chapter tips
7760
7761 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7762
7763         * src/SDCCsymt.h: missing from yesterday's commits
7764
7765 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7766
7767         * src/SDCC.y (struct_or_union_specifier),
7768         * support/Util/SDCCerr.c,
7769         * support/Util/SDCCerr.h: verify that struct & union tags are used
7770         as declared.
7771
7772 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7773
7774         * src/SDCCglobl.h: missing from yesterday's commits
7775
7776 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7777
7778         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7779         sft_attributes, struct_declaration, parameter_declaration,
7780         type_name, start_block, declaration_list),
7781         * src/SDCC.lex (check_type): support redefinition of typedef names
7782
7783 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7784
7785         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7786         aligned xdata arrays. Erik helped me with the if clause.
7787
7788 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7789
7790         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7791         warning
7792
7793 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7794
7795         * src/SDCCast.h,
7796         * src/SDCCast.c (newAst_),
7797         * src/SDCCicode.h,
7798         * src/SDCCicode.c (ast2iCode, newiCode),
7799         * src/SDCCglobl.h,
7800         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7801         expr, statement, expression_statement, selection_statement,
7802         iteration_statement, expr_opt, jump_statement): foundation for tracking
7803         sequence points
7804         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7805         point code too)
7806
7807 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7808
7809         * support/Util/SDCCerr.c,
7810         * src/SDCCast.h,
7811         * src/SDCCast.c (createCase, createDefault, decorateType),
7812         * src/SDCClabel.c (labelUnreach),
7813         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7814         to error messages.
7815         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7816         (with thanks to Stas Sergeev)
7817         * device/include/time.h,
7818         * device/lib/time.c (CheckTime): suppress unreachable code warning
7819
7820 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7821
7822         * src/SDCCast.c (createIvalCharPtr),
7823         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7824         bug #753752)
7825         * support/regression/tests/nullstring.c: tests for these two bugs
7826
7827 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7828
7829         * support/Util/SDCCerr.h,
7830         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7831         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7832         about storage class and 'at' used inside struct or union
7833         * src/SDCCBBlock.c (iCodeFromeBBlock),
7834         * src/SDCCcse.c (ifxOptimize),
7835         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7836         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7837         printIval, emitStaticSeg, emitOverlay),
7838         * src/SDCClabel.c (deleteIfx),
7839         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7840         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7841         gatherAutoInit, processParms),
7842         * support/Util/SDCCerr.h,
7843         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7844         reporting for post-parse errors.
7845
7846 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7847
7848         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7849         implicit casts via union; they don't work on big endian systems
7850         (possible fix for bug #861138)
7851
7852 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7853
7854         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7855         * src/mcs51/main.c: fixed the fix for bug #737001
7856
7857 2003-12-15  Borut Razem <borut.razem AT siol.net>
7858
7859         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7860
7861 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7862
7863         * support/makebin/makebin.c: put output in binary mode
7864
7865 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7866
7867         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7868         xdata and data memory on startup. Set the environment variable
7869         SDCC_NOGENRAMCLEAR to disable this.
7870         * src/mcs51/peephole.def,
7871         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7872         (allows non-interrupt and interrupt code to safely compete for a resource
7873         without the non-interrupt code having to disable interrupts)
7874
7875 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7876
7877         * src/SDCCicode.c (geniCodeAdd),
7878         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7879         with valFromType if type might be a pointer and host is big endian).
7880         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
7881         types, not just integer types.
7882         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
7883         multiply defined with mismatching "at" address.
7884
7885 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7886
7887         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
7888         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
7889         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
7890         with embedded nulls (fixed bug #753752)
7891
7892 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7893
7894         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
7895         Apparently this did not see much testing (endless loop)
7896
7897 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7898
7899         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
7900
7901 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7902
7903         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
7904         gracefully handle NULL memmap pointers
7905
7906 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7907
7908         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
7909         instead of deleting the iCode when an operand is volatile
7910         * src/z80/gen.c (genDummyRead),
7911         * src/mcs51/gen.c (genDummyRead),
7912         * src/ds390/gen.c (genDummyRead),
7913         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
7914         not just IC_RIGHT
7915         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
7916         * src/SDCC.y: fixed bug #850420
7917
7918 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7919
7920         Applied z80 i/o port patch from Peter Townson and fixed some operators
7921         to better handle operands in A register.
7922         * device/include/z180.h
7923         * src/SDCC.y
7924         * src/SDCCglue.c
7925         * src/z80/gen.c
7926         * src/z80/gen.h
7927         * src/z80/main.c
7928         * src/z80/peeph-z80.def
7929         * src/z80/peeph.def
7930         * src/z80/z80.h
7931
7932 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7933
7934         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
7935
7936 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7937
7938         * device/lib/hc08/_mullong.c: Removed extra #endif
7939
7940 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7941
7942         * sim/ucsim/hc08.src/inst.cc,
7943         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
7944         carries from x to h
7945         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
7946         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
7947         * device/include/stdarg.h: fixed varargs for hc08
7948         * device/lib/Makefile.in,
7949         * device/lib/hc08/Makefile,
7950         * device/lib/hc08/_mulint.c,
7951         * device/lib/hc08/_mullong.c: fixed some endian problems
7952
7953 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7954
7955         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
7956         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
7957         * device/lib/_gptrget.c,
7958         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
7959
7960 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7961
7962         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
7963         * src/SDCCast.c (astErrors): fixed bug #846007
7964         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
7965
7966 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7967
7968         * src/SDCCast.c (decorateType): disabled a transformation I added in
7969         revision 1.188 (access to fields of a structure at an absolute address);
7970         it breaks with bitfields, extern declarations, and gcse analysis.
7971         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
7972         could be assigned through a pointer, so don't complain.
7973         * src/SDCCast.c (astErrors),
7974         * src/SDCCast.h,
7975         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
7976
7977 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
7978
7979         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
7980         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
7981         output of __config directives, since gpasm now supports them
7982         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
7983         pre-processor macro, i.e. -DMCU=p18f452
7984         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
7985         and modified to handle 'cast' icode similarly to '=' icode
7986         * src/pic16/device.h (typedef struct PIC_device): added field
7987         'extMIface' to indicate that chip has external memory interface
7988         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
7989         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
7990         18F8720
7991
7992 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7993
7994         * src/SDCC.y (pointer): fixed bug #846006
7995         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
7996         * src/SDCCast.c (decorateType): fixed bug #846009
7997         * src/ds390/peeph.def,
7998         * src/ds390/gen.c (genAnd, genOr),
7999         * src/mcs51/peeph.def,
8000         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8001
8002 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8003
8004         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8005         * src/SDCCdflow.c
8006         * src/SDCCcse.c
8007         * src/SDCCcse.h
8008         * src/SDCCBBlock.h
8009         * src/SDCCBBlock.c
8010
8011 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8012
8013         fixed bug #845089
8014         * src/SDCCbitv.h,
8015         * src/SDCCbitv.c: added function to free a bitvector
8016         * src/SDCClrange.h,
8017         * src/SDCClrange.c: added function to recompute the liveranges
8018         * src/avr/ralloc.c,
8019         * src/ds390/ralloc.c,
8020         * src/hc08/ralloc.c,
8021         * src/mcs51/ralloc.c,
8022         * src/pic/ralloc.c,
8023         * src/pic16/ralloc.c,
8024         * src/xa51/ralloc.c,
8025         * src/z80/ralloc.c: recompute the liveranges after register packing
8026
8027 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8028
8029         * src/SDCCloop.c (newInduction): fixed bug #845630
8030
8031 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8032
8033         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8034         inadvertantly left behind from my 2003-11-12 change
8035
8036 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8037
8038         Updated headers I neglected to commit yesterday.
8039         * src/SDCClrange.h,
8040         * src/SDCCicode.h
8041
8042 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8043
8044         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8045         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8046         * src/SDCCopt.c (eBBlockFromiCode),
8047         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8048         the creation of the key hash table from the sequencing so it can be used
8049         earlier (for some GCSE bug fixes still pending)
8050
8051 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8052
8053         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8054         * support/regression/tests/addsub.c: testing genPlus shortcut
8055
8056 2003-11-15  Borut Razem <borut.razem AT siol.net>
8057
8058         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8059
8060 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8061
8062         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8063         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8064         ordering is immaterial.
8065         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8066
8067 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8068
8069         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8070         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8071         (SIGSEV) of bug #840381
8072         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8073         unlink new file before rename if new and old filenames are the same)
8074
8075 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8076
8077         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8078         uninitialized variables) for the mcs51. Set environment variable
8079         SDCC_GENRAMCLEAR to test.
8080         xdata initialization slightly shorter
8081
8082 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8083
8084         * src/SDCCsymt.h,
8085         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8086         #838241 & 780691 (basicly the same bug)
8087         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8088         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8089
8090 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8091
8092         * src/SDCCmain.c (linkEdit): "fix" #834252
8093
8094 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8095
8096         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8097         * src/SDCCast.h,
8098         * src/SDCC.y: fixed bug #819403
8099
8100 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8101
8102         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8103         the reentrant attribute.
8104         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8105         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8106         simulation
8107         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8108         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8109         erroneously reduced to a literal.
8110         * src/hc08/ralloc.c (packRegisters, rematStr),
8111         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8112         some cases
8113
8114 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8115
8116         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8117         * doc/sdccman.lyx: changed from 'article' to 'book'
8118         * doc/Makefile: readded test_suite_spec and cdbfileformat
8119
8120 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8121
8122         * device/include/stdlib.h: include malloc.h to comply with ANSI
8123         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8124
8125 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8126
8127         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8128         * doc/clean.mk: also remove *.out files
8129         * doc/sdccman.lyx: some additions, larger top/bottom margins
8130
8131 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8132
8133         * src/SDCC.y: fixed bug #837365
8134         * support/regression/tests/bitopcse.c
8135         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8136         a symbol (might be valop instead)
8137         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8138         * device/lib/clean.mk: added hc08 to the cleaning list
8139
8140 2003-11-04  Borut Razem <borut.razem AT siol.net>
8141
8142         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8143           made 2003-11-04
8144         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8145           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8146           malloc is declared in standard stdlib.h
8147
8148 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8149
8150         * device/lib/hc08/Makefile: need to clean .rel not .o files
8151         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8152
8153 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8154
8155         * src/port.h,
8156         * src/hc08/main.c,
8157         * src/mcs51/main.c,
8158         * src/ds390/main.c,
8159         * src/z80/main.c,
8160         * src/avr/main.c,
8161         * src/pic/main.c,
8162         * src/pic16/main.c,
8163         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8164         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8165         tests (which uses the port's oclsExpense function)
8166         * src/SDCC.y,
8167         * src/SDCCast.c,
8168         * src/SDCCicode.c,
8169         * src/hc08/gen.c,
8170         * src/ds390/gen.c,
8171         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8172
8173 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8174
8175         * src/SDCCcse.c (ifxOptimize),
8176         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8177         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8178         deleting the IFX iCode.
8179         * src/hc08/ralloc.c: reduced unneeded slocs
8180         * src/hc08/gen.c: fixed bug in asmopToBoolean
8181
8182 2003-11-04  Borut Razem <borut.razem AT siol.net>
8183
8184         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8185           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8186           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8187           transferred to configure
8188
8189 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8190
8191         Use headers defined in the C[++] standards:
8192         * sim/ucsim/gui.src/serio.src/fileio.cc
8193         * sim/ucsim/gui.src/serio.src/frontend.cc
8194         * sim/ucsim/gui.src/serio.src/main.cc
8195         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8196         * support/Util/NewAlloc.c
8197         * as/hc08/lklibr.c
8198         * as/mcs51/lklibr.c
8199         * as/z80/aslist.c
8200         * as/z80/assym.c
8201
8202 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8203
8204         * Added MSVC projects for hc08 assembler and linker:
8205         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8206         /as/hc08/link_hc08.dsp
8207
8208 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8209
8210         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8211
8212 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8213
8214         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8215
8216 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8217
8218         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8219
8220 2003-10-31  Borut Razem <borut.razem AT siol.net>
8221
8222         * support/cpp2/cpplib.h,
8223           support/cpp2/cpplib.c,
8224           support/cpp2/cpplex.c,
8225           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8226           to switch _asm block preprocessing on / off. Default is
8227           #pragma preproc_asm +
8228
8229 2003-10-31  Borut Razem <borut.razem AT siol.net>
8230
8231         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8232           when outputting comment blocks (when executed with -C option) and
8233           _asm (SDCPP specific) blocks
8234
8235 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8236
8237         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8238
8239 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8240
8241         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8242
8243 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8244
8245         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8246         * src/SDCCast.c (decorateType): fixed bug #832664
8247
8248 2003-10-31  Borut Razem <borut.razem AT siol.net>
8249
8250         * support\cpp2\cpplex.c: fixed for SDCPP:
8251           comments(when executed with -C option) and _asm blocks
8252           were included even if they where in skipped #if block.
8253           Applied solution from GCC cpp 3.3.2
8254
8255 2003-10-31  Borut Razem <borut.razem AT siol.net>
8256
8257         * src/SDCC.lex: sdcc now understands both formats:
8258           '# <line_number> <file_name>' and
8259           '#line <line_number> <file_name>'
8260         * support/cpp2/cppmain.c: sdcpp now generates the standard
8261           '# <line_number> <file_name>' instead of former
8262           '#line <line_number> <file_name>'
8263
8264 2003-10-30  Borut Razem <borut.razem AT siol.net>
8265
8266         * support/cpp2/cpphash.h,
8267         * support/cpp2/cpplib.h
8268         * support/cpp2/cpplex.c,
8269         * support/cpp2/cppmain.c,
8270         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8271
8272 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8273
8274         Fixed a number of problems revealed by bug #827883.
8275         * src/SDCCloop.c (loopInvariants): Spill location of the
8276         result operand should be recomputed if extracted from
8277         a loop. Also, don't extract assignments of an iTemp
8278         from a literal.
8279         * src/SDCCast.c (isConformingBody): loop reversal should
8280         not occur if the control variable is involved with a
8281         relational operator.
8282
8283 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8284
8285         * .version: bumped to 2.3.6 to reflect the big improvements
8286         made by Erik and Klaus. Thanks!
8287
8288 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8289
8290         Replaced the livrange code.
8291         * src/SDCClrange.c: added new LR code
8292         * src/SDCCloop.c,
8293         * src/SDCCBBlock.h: removed remainig parts from old LR code
8294         * src/ds390/ralloc.c,
8295         * src/ds390/gen.c: minor fixes to make it work with new code
8296
8297 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8298
8299         * as/hc08/asm.h,
8300         * as/hc08/lkrloc.c,
8301         * src/hc08/gen.c,
8302         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8303         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8304         (tweaked fix for bug #818696)
8305
8306 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8307
8308         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8309
8310 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8311
8312         * src/SDCCmain.c,
8313         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8314         * src/mcs51/gen.c (gencjneshort),
8315         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8316         more efficient (per Scott Bronson's suggestion)
8317
8318 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8319
8320         Extended the semantics of the critical keyword to include
8321         individual statements. See RFE #827755 and #799831
8322         * src/SDCC.y
8323         * src/SDCCicode.c
8324         * src/SDCCopt.c
8325         * src/SDCCast.c
8326         * support/Util/SDCCerr.c
8327         * support/Util/SDCCerr.h
8328         * src/mcs51/gen.c
8329         * src/ds390/gen.c
8330         * src/hc08/gen.c
8331
8332 2003-10-19  Borut Razem <borut.razem AT siol.net>
8333
8334         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8335
8336 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8337
8338         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8339         Fixed bug #818696
8340         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8341         and predecrement operand is displayed
8342
8343 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8344
8345         * src/SDCCval.c (valMinus): fixed bug #826041
8346
8347 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8348
8349         Some hc08 related updates that I missed earlier
8350         * sim/ucsim/stypes.h
8351         * support/regression/ports/hc08/spec.mk
8352
8353 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8354
8355         New target "hc08" for the Motorola 68hc08 family of micros
8356
8357         * configure
8358         * configure.in
8359         * Makefile
8360         * src/hc08/*
8361         * src/SDCCmain.c
8362         * src/port.h
8363         * sim/ucsim/hc08.src/*
8364         * sim/ucsim/configure.in
8365         * src/ucsim/configure
8366         * sim/ucsim/packages_in.mk
8367         * as/hc08/*
8368         * as/Makefile
8369         * device/include/mc68hc908qy.h
8370         * device/lib/hc08/*
8371         * device/lib/Makefile.in
8372         * support/regression/ports/hc08/*
8373         * support/regression/Makefile
8374
8375 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8376
8377         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8378         regression test
8379         * src/ds390/gen.c (genCast): fixed bug #821957
8380
8381 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8382
8383         * device/lib/logf.c: "fixed" overlay bug
8384         * support/regression/ports/host/spec.mk: added m library
8385         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8386         * support/regression/tests/float_trans: added (for Eric)
8387
8388 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8389
8390         * src/mcs51/gen.c (genCpl): fixed bug
8391         http://sf.net/mailarchive/message.php?msg_id=6263915
8392
8393 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         * src/SDCCast.c (decorateType): added extended constant folding
8396         * src/SDCCsymt.c (computeType): cleanup
8397         * src/SDCCval.c (valShift): minor optimization
8398         * support/regression/tests/ast_constant_folding.c: added
8399
8400 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8401
8402         * src/SDCCmain.c: removed some unintended changes
8403
8404 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8405
8406         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8407         * src/z80/gen.c: fixed part of bug #817589
8408         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8409
8410 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8411
8412         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8413         * src/SDCCcflow.c
8414         * src/SDCCcse.c
8415         * src/SDCCdflow.c
8416         * src/SDCClabel.c
8417         * src/SDCClrange.c
8418         * src/SDCCmem.c
8419         * src/SDCCopt.c
8420         * src/SDCCpeeph.c
8421         * src/SDCCset.c
8422         * src/avr/ralloc.c
8423         * src/ds390/ralloc.c
8424         * src/izt/ralloc.c
8425         * src/mcs51/ralloc.c
8426         * src/pic/ralloc.c
8427         * src/pic16/ralloc.c
8428         * src/xa51/ralloc.c
8429         * src/z80/ralloc.c
8430         * src/z80/gen.c: removed unused label "release:"
8431
8432 2003-10-06  Borut Razem <borut.razem AT siol.net>
8433
8434         * src/SDCC.lex: removed definition of unused variables
8435           save_optimize and save_options
8436
8437 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8438
8439         * clean.mk: removed '=' in "-maxdepth=1"
8440         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8441         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8442
8443 2003-10-06  Borut Razem <borut.razem AT siol.net>
8444
8445         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8446           my_unput() replaced by unput()
8447
8448 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8449
8450         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8451         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8452         type-punned pointer will break strict-aliasing rules"
8453         Old LR behaviour is again default; Klaus' LR can be choosen by
8454         defining the environment variable LRKLAUS
8455         * src/SDCCBBlock.h
8456         * src/SDCCloop.c
8457         * src/SDCClrange.c
8458         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8459         * clean.mk: fixed removal of files in bin/CVS/
8460         * device/lib/clean.mk: fixed removal of directories small and large
8461         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8462         * src/SDCCicode.c,
8463         * src/SDCCval.c: removed superflous test for pedantic
8464
8465 2003-10-05  Borut Razem <borut.razem AT siol.net>
8466
8467         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8468           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8469           message "unmatched #pragma SAVE and #pragma RESTORE"
8470
8471 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8472
8473         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8474           assembly, critical functions, atomic, nojtbound)
8475
8476 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8477
8478         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8479         * src/SDCCBBlock.h
8480         * src/SDCCloop.c
8481         * src/SDCCloop.h
8482         * src/SDCClrange.c
8483
8484 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8485
8486         * src/z80/gen.h,
8487         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8488         * src/mcs51/gen.h
8489         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8490         * src/ds390/gen.h
8491         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8492         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8493         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8494
8495 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8496
8497         * src/z80/gen.c (genRet): fixed bug #524753
8498         * src/z80/gen.c (genCast): fixed internal error on cast from
8499         pointer to long
8500         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8501         fix for bug #477835 to the z80
8502         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8503         for tracking iCodes in the peephole optimizer for z80
8504
8505 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8506
8507         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8508         the other part of bug #814548
8509         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8510
8511 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8512
8513         * src/SDCCcse.c: fixed part of bug #814548
8514
8515 2003-09-28  Borut Razem <borut.razem AT siol.net>
8516
8517         * src/asm.c: rewrite of printILine() to use temporary file instead
8518           a pipe
8519         * src/xa51/main.c: commented out declaration of int rewinds
8520
8521 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8522
8523         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8524
8525 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8526
8527         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8528         * src/asm.c (printILine): Fixed bug #811015
8529
8530 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8531
8532         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8533         freeing.
8534
8535 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8536
8537         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8538         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8539         to correctly handle general case of AOP_PAIRPTR
8540         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8541
8542 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8543
8544         * src/mcs51/ralloc.c (fillGaps),
8545         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8546         register positioning bug)
8547
8548 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8549
8550         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8551
8552 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8553
8554         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8555         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8556         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8557         (ralloc doesn't intentionally do this now, but perhaps later)
8558         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8559         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8560         register positioning bugs (Fixed bug #762602 and #795325)
8561         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8562         (Fixed bug #808779)
8563         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8564         lines that --i-code-in-asm generates
8565
8566 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8567
8568         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8569         trying to fclose a FILE* that was already closed.
8570
8571 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8572
8573         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8574         of const struct should be treated as if const themselves)
8575
8576 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8577
8578         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8579
8580 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8581
8582         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8583         Unix (/n) and DOS (/r/n) line terminations.
8584
8585 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8586
8587         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8588         bug #613775
8589
8590 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8591
8592         * src/mcs51/gen.c (genFunction, genEndFunction),
8593         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8594         and restore of EA so that stack offsets to parameters are
8595         correct when using both critical and reentrant/stack-auto.
8596         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8597         size (can be triggered in error if sloc is shared between
8598         different sized objects)
8599         * device/include/float.h: fixed macros to explicitly use
8600         unsigned long where needed
8601
8602 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8603
8604         Feature req. 799831: added code to allow nesting of critical functions
8605         * src/mcs51/gen.c (genFunction, genEndFunction)
8606         * src/ds390/gen.c (genFunction, genEndFunction)
8607
8608 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8609
8610         * src/SDCCsymt.c (sclsFromPtr),
8611         * src/SDCCsymt.h,
8612         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8613         support for standard C idiom of memory mapped variables; for
8614         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8615         to xdata int at 0x1234 tempvar = 1.
8616         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8617         provided by Akiya ISHIDA
8618
8619 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8620
8621         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8622         * src/SDCCval.c (constVal): added reduction from int to char
8623         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8624         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8625         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8626         to ignore the sign
8627         * support/regression/tests/shifts.c: fixed
8628
8629 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8630
8631         * src/z80/gen.c (genXor): Fixed bug #805445
8632
8633 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8634
8635         Fixed bug #621531 (const & volatile confusion in the type chain).
8636         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8637         refer to the const or volatile state of the pointer itself.
8638
8639         * src/SDCCast.c
8640         * src/SDCCglue.c
8641         * src/SDCCicode.c
8642         * src/SDCCsymt.c
8643         * src/SDCCval.c
8644         * src/SDCC.y
8645         * src/SDCCsymt.h
8646         * src/pic/gen.c
8647         * src/pic/ralloc.c
8648         * src/pic16/gen.c
8649         * src/pic16/ralloc.c
8650         * support/regression/tests/const.c
8651
8652 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8653
8654         When checking for duplicated modules, use absolute paths
8655         instead of relative paths.  Files changed:
8656
8657         * as/mcs51/lklib.c
8658         * link/z80/lklib.c
8659
8660 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8661
8662         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8663
8664 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8665
8666         * device/include/string.h: added size_t typedef, changed
8667         prototypes to use size_t, eliminated separate reentrant and
8668         non-reentrant declarations, added _memmove declaration
8669         * device/lib/_memcpy.c: changed to use size_t instead of int,
8670         changed /4 to >>2 to avoid division library call
8671         * device/lib/_memcmp.c,
8672         * device/lib/_memset.c,
8673         * device/lib/_strncat.c,
8674         * device/lib/_strncpy.c,
8675         * device/lib/_strncmp.c: changed to use size_t instead of int
8676         * device/lib/_memmove.c: new file (fixed bug #772294)
8677         * device/lib/Makefile.in: added _memmove.c
8678         * device/lib/z80/asm_strings.s: fixed bug #772290
8679         * support/regression/tests/bitfields.c: attempt to fix host assertion
8680         failure on amd64-unknown-linux2.2
8681
8682 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8683
8684         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8685         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8686         * as/z80/asmain.c (main): fixed bug #801766
8687
8688 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8689
8690         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8691         compilers
8692
8693 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8694
8695         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8696         reported in bug #800609
8697
8698 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8699
8700         * Top header beautifications in src/pic16 directory:
8701           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8702           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8703           pcoderegs.h, ralloc.c, ralloc.h
8704         * main.c: added top header and GPL license notice
8705         * pcode.c: fixed the if-conditional warning
8706
8707 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8708
8709         * device/lib/_mullong.c: replaced int by short for gcc
8710
8711 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8712
8713         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8714         and JUMPTABLE iCodes properly now (worked by accident before)
8715         * src/mcs51/gen.c (leftRightUseAcc),
8716         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8717         iCode properly now. Use getSize instead of nRegs since a & b
8718         aren't part of the nRegs tally.
8719
8720 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8721
8722         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8723         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8724           before instructions that use the _STATUS register
8725
8726 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8727
8728         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8729         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8730         fetching of the pointer
8731         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8732         copied from genNearPointerSet()
8733         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8734         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8735         If they pop r0/r1 they must be called in the opposite order than aopOp().
8736         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8737         (resp. --stack-auto), prepared for --xstack
8738
8739 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8740
8741         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8742
8743 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8744
8745         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8746         these ports have their own __sdcc_external_start()
8747
8748 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8749
8750         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8751         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8752         type for bits was changed. It resulted in bit variables becoming
8753         global, which is not permitted in PIC 14 assembly output.
8754
8755 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8756
8757         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8758
8759 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8760
8761         Z80 and MCS51 linkers complaint if a public symbol is defined
8762         in more than one library module:
8763
8764         * as/mcs51/lklib.c
8765         * link/z80/lklib.c
8766         * as/mcs51/Makefile.in
8767
8768 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8769
8770         A few small changes that speed up the peephole optimizer.
8771
8772         * src/SDCCpeeph.c
8773
8774 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8775
8776         Try to make the peephole optimizer smarter by maintaining
8777         an association between the assembly source code and the
8778         iCodes that originated them. Put this information to use
8779         with a new peephole rule condition "notVolatile" so that
8780         the rules can be aggressive yet still safe.
8781
8782         * src/SDCCpeeph.c
8783         * src/SDCCpeeph.h
8784         * src/mcs51/gen.c
8785         * src/mcs51/peeph.def
8786
8787 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8788
8789         Fixed bug #741761
8790
8791         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8792         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8793         if the left or right operand symbols have the accuse flag set.
8794
8795 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8796
8797         Changed the type of the result of the ! (NOT) operator to char;
8798         previously it returned the same type as the source. This allows
8799         us to eliminate all the genFloatNot functions (all of its target
8800         implementations were very buggy) since !float can use the same
8801         code as !long now.
8802
8803         * src/SDCCicode.c (ast2iCode): ! returns char
8804         * src/mcs51/gen.c (genNot, genNotFloat),
8805         * src/ds390/gen.c (genNot, genNotFloat),
8806         * src/z80/gen.c (genNot, genNotFloat),
8807         * src/pic/gen.c (genNot, genNotFloat),
8808         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8809
8810 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8811
8812         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8813         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8814            during interrupts. Ensure WSAVE is located at a shared bank address.
8815         2. Fixed page selection in some places
8816         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8817            the registers name strings.
8818         4. Fixed "signed / unsigned compare" compiler warnings.
8819         5. The PIC port manages its own allocation of the general purpose
8820            registers, but makes no attempt to reuse them. As a result when
8821            compiling it soon runs out of general purpose registers. Some
8822            additional code was added to the files pcode.c and device.c to walk
8823            through the function call tree and rename the registers so that they
8824            get reused.
8825
8826         * src/pic/device.c
8827         * src/pic/gen.c
8828         * src/pic/glue.c
8829         * src/pic/pcode.c
8830         * src/pic/pcode.h
8831         * src/pic/ralloc.c
8832         * src/pic/ralloc.h
8833         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8834         genPlus() & genMinus() when the result is the same as left or right
8835
8836 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8837
8838         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8839
8840 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8841
8842         Made bitfield a distinct type from bit so that bitfields
8843         convert as per ANSI C and bits retain their traditional
8844         boolean style behaviour. Implemented bitfield support in
8845         the z80 port.
8846
8847         * src/SDCCsymt.h,
8848         * src/SDCCsymt.c,
8849         * src/SDCCast.c,
8850         * src/cdbFile.c,
8851         * src/mcs51/gen.c,
8852         * src/ds390/gen.c: bit v bitfield split
8853         * src/z80/gen.c: New support for bitfields
8854         * support/regression/tests/bitfields.c: reenabled z80,
8855         added more tests
8856
8857 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8858
8859         Rules 246.x, 247.x relate to bitfields, the others speed up
8860         access to xdata mapped I/O devices.
8861
8862         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8863
8864 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8865
8866         Cleaned up genPackBits and genUnpackBits and added two helper
8867         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8868         for literal assignments in genPackBits (thanks to Frieder for
8869         reminding me).
8870
8871         * src/mcs51/gen.c
8872         * src/ds390/gen.c
8873
8874 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8875
8876         Fixed bug #748310 (pointer to function type mishandled when the
8877         function name is omitted). Also fixed a SIGSEGV when a function
8878         attribute (reentrant, etc) is used on a non-function or on a
8879         function but misplaced before the parameter list.
8880
8881         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
8882         bug #748310
8883         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
8884         * support/Util/SDCCerr.h,
8885         * support/Util/SDCCerr.c: Added func attr misuse error msg
8886
8887 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8888
8889         Fixed bug #787649 by anonymous
8890         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
8891         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
8892
8893 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8894
8895         Fixed numerous bitfield problems.
8896
8897         * src/SDCC.y: More bitfield related error checking
8898         * src/SDCCsymt.h,
8899         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
8900         * support/Util/SDCCerr.h,
8901         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
8902         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8903         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
8904         * support/regression/tests/bitfields.c: tests added
8905
8906 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8907
8908         Made the constant following the "interrupt" keyword optional. If
8909         omitted, the function will not automatically be given an entry
8910         in the interrupt vector table (similar to #pragma NOIV, but
8911         less syntacticly kludgy). The interrupt number is also now
8912         range checked. Also fixed a bug in the high order bit example
8913         in the manual.
8914
8915         * src/SDCC.y
8916         * src/SDCCmem.c
8917         * src/SDCCglue.c
8918         * src/SDCCsymt.h
8919         * support/Util/SDCCerr.c
8920         * support/Util/SDCCerr.h
8921         * doc/sdccman.lyx
8922
8923 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
8924
8925         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
8926         * src/SDCCicode.c (operandOperation): rewritten some ops
8927         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
8928         * src/SDCCsymt.c (computeType): literals are handled the same way as any
8929         other type
8930         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
8931         be re-activated by defining REDUCE_LITERALS)
8932         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
8933         unsigned, but are signed by default
8934         * src/SDCCval.c (constVal): rearranged
8935         * src/SDCCval.c (valMod): preliminary fix
8936         * src/SDCCval.c (valCastLiteral): use TYPE_* types
8937         * support/regression/literalop.c: added, work in progress
8938
8939 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8940
8941         Generate warnings for useless declarations like "char data;"
8942         that don't do what new users expect.
8943
8944         * src/SDCC.y
8945         * support/Util/SDCCerr.h
8946         * support/Util/SDCCerr.c
8947
8948 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
8949
8950         * src/SDCCval.c (valMult): fix overflow detection of negative int
8951
8952 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8953
8954         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
8955
8956         Changes to support big endian targets:
8957
8958         * src/ports.h
8959         * src/SDCCglue.c
8960         * src/avr/main.c
8961         * src/ds390/main.c
8962         * src/izt/i186.c
8963         * src/mcs51/main.c
8964         * src/pic/main.c
8965         * src/pic16/main.c
8966         * src/xa51/main.c
8967         * src/z80/main.c
8968
8969 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
8970
8971         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
8972         * device/lib/time.c: fixed warning "integer overflow in expression"
8973
8974 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
8975
8976         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
8977         * src/SDCCval.c (constVal): changed default to signed; hex and octal
8978         constants are unsigned; added recognition of "u" flag for unsigned
8979         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
8980         * src/SDCCval.c (valDiv, valMod): fixed signdness
8981         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
8982         signedness of modulo, left and right shift
8983         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
8984         * support/Util/SDCCerr.h: added warning W_INT_OVL
8985         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
8986         * src/SDCCast.c (ast_print): improved output of constants
8987
8988 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8989
8990         Fixed some warnings when building with MSVC:
8991
8992         * as\mcs51\asdata.c
8993         * as\z80\asdata.c
8994         * as\mcs51\asm.h
8995         * as\z80\asm.h
8996         * link\z80\aslink.h
8997         * link\z80\lkdata.c
8998         * link\z80\lkeval.c
8999         * link\z80\lkgb.c
9000         * link\z80\lkihx.c
9001         * link\z80\lks19.c
9002         * link\z80\lksym.c
9003         * support\cpp2\cpplib.c
9004         * src\ds390\gen.c
9005         * src\mcs51\gen.c
9006
9007 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9008
9009         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9010
9011 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9012
9013         * support\librarian\clean.mk: Do not remove Makefile.
9014         * support\librarian\Makefile: added.
9015
9016 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9017
9018         Added librarian to MSVC build:
9019         * all.dsp
9020         * sdcc.dsw
9021         * support\librarian\librarian.dsp
9022
9023         'configure' not needed for librarian, removed:
9024         * support\librarian\configure
9025         * support\librarian\configure.in
9026         * support\librarian\config_in.h
9027         * support\librarian\Makefile.in
9028
9029         Hopefully these ones built the librarian and the rest of sdcc properly:
9030         * Makefile
9031         * Makefile.common.in
9032
9033         Messed up 'configure', so revert to previous version:
9034         * configure
9035         * configure.in
9036
9037 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9038
9039         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9040         there, while the mantissa of a double is "only" 53 bits wide.
9041
9042 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9043
9044         Adding sdcclib to the build.  MSVC project coming soon.
9045         Files added/changed:
9046
9047         * support\librarian\clean.mk
9048         * support\librarian\configure
9049         * support\librarian\configure.in
9050         * support\librarian\config_in.h
9051         * support\librarian\Makefile.bcc
9052         * support\librarian\Makefile.in
9053         * support\librarian\sdcclib.c
9054         * Makefile.bcc
9055         * Makefile
9056         * Makefile.common.in
9057         * configure
9058         * configure.in
9059
9060 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9061
9062         Linker now complaints if linked modules have conflicting options, for
9063         example, one compiled using --model-large and another one compiled with
9064         --model-small.  The following files were modified:
9065
9066         * as\mcs51\asdata.c
9067         * as\mcs51\aslink.h
9068         * as\mcs51\asm.h
9069         * as\mcs51\asmain.c
9070         * as\mcs51\asout.c
9071         * as\mcs51\i51pst.c
9072         * as\mcs51\lkdata.c
9073         * as\mcs51\lklibr.c
9074         * as\mcs51\lkmain.c
9075         * as\z80\asdata.c
9076         * as\z80\asm.h
9077         * as\z80\asmain.c
9078         * as\z80\asout.c
9079         * as\z80\z80pst.c
9080         * link\z80\aslink.h
9081         * link\z80\lkdata.c
9082         * link\z80\lklibr.c
9083         * link\z80\lkmain.c
9084         * src\SDCCglue.c
9085
9086 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9087
9088         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9089         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9090
9091 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9092
9093         * src/z80/mappings.i: fix _mul[us][int,long] entries
9094
9095 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9096
9097         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9098
9099 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9100
9101         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9102         * support/regression/tests/bitopcse.c: added
9103         fixed warning:
9104         * src/avr/gen.c:
9105         * src/pic/gen.c:
9106         * src/pic16/gen.c:
9107         * src/z80/gen.c:
9108         * src/xa51/gen.c:
9109
9110 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9111
9112         added support for new library format to z80, gbz80 linkers:
9113         *link/z80/aslink.h
9114         *link/z80/lklex.c
9115         *link/z80/lklib.c
9116         *link/z80/lklist.c
9117
9118 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9119
9120         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9121         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9122
9123 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9124
9125         added DUMMY_READ_VOLATILE:
9126         * src/SDCC.y:
9127         * src/avr/gen.c:
9128         * src/xa51/gen.c:
9129         * src/z80/gen.c:
9130         * src/pic/gen.c:
9131         * src/pic16/gen.c:
9132         * src/mcs51/gen.c:
9133         * src/ds390/gen.c:
9134         * src/SDCCcse.c (algebraicOpts): many improvements
9135         * src/SDCCcse.h: removed algebraicOpts()
9136         * src/SDCCicode.c (picDummyRead): added
9137
9138 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9139
9140         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9141         "Insufficient space in data memory".
9142
9143 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9144
9145         * src/mcs51/gen.c: fixed bug #771358
9146         * src/z80/gen.c: fixed bug #759087
9147
9148 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9149
9150         * src/pic16/glue.c: minor cleanup by Vangelis
9151
9152 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9153
9154         * device/include/regc515c.h: fixed #758477
9155         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9156         * device/lib/_gptrput.c: saved a few bytes
9157         * my tab spacing is 8, yours too?)
9158         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9159         * device/lib/serial.c: process RX bytes earlier than TX bytes
9160         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9161
9162 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9163
9164         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9165
9166 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9167
9168     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9169
9170 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9171
9172         * device/lib/Makefile.in: bad fix, reverted to 1.43
9173
9174 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9175
9176         * device/lib/Makefile.in: added missing z80 object files
9177
9178 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9179
9180         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9181         pic16 progress by Vangelis:
9182         * src/SDCCglobl.h:
9183         * src/SDCCmain.c:
9184         * src/pic/Makefile:
9185         * src/pic:
9186         * pic/Makefile:
9187         * pic16/device.c:
9188         * pic16/device.h:
9189         * pic16/gen.c:
9190         * pic16/gen.h:
9191         * pic16/genarith.c:
9192         * pic16/glue.c:
9193         * pic16/main.c:
9194         * pic16/pcode.c:
9195         * pic16/pcode.h:
9196         * pic16/pcodepeep.c:
9197         * pic16/peeph.def:
9198
9199 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9200
9201     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9202
9203 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9204
9205     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9206     added gbz80 build to MSVC project.
9207     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9208     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9209     from 8051 stuff and setup so it links using a .lnk file.
9210
9211 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9212
9213     * support/librarian/sdcclib.c: sdcc librarian.
9214     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9215     with sdcclib.
9216
9217 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9218
9219     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9220
9221 2003-07-02  Borut Razem <borut.razem AT siol.net>
9222
9223         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9224         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9225         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9226         src/xa51/main.c, src/z80/main.c:
9227         virtualization of glue() function: each port has it's own glue function,
9228         which is accessed by do_glue function pointer in PORT.general structure
9229
9230 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9231
9232         * DS800C400 fun, improved ROM interface and tinibios.
9233
9234 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9235
9236         * More support for DS80C400. Now includes beginning of interface to ROM.
9237
9238 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9239
9240         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9241
9242 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9243
9244         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9245
9246 2003-06-19  Borut Razem <borut.razem AT siol.net>
9247
9248         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9249
9250 2003-06-19  Borut Razem <borut.razem AT siol.net>
9251
9252         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9253         fixed Z80 port - crt0.o: cannot open.
9254
9255 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9256
9257         * support/Util/MySystem.c (merge_command): revert bad fix
9258
9259 2003-06-18  Borut Razem <borut.razem AT siol.net>
9260
9261         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9262
9263 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9264
9265         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9266         option --use-stdout sends errors to stdout instead of stderr.
9267
9268 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9269
9270         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9271
9272 2003-06-15  Borut Razem <borut.razem AT siol.net>
9273
9274         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9275         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9276         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9277         fixed width array of pointers replaced with sets;
9278         multiple include and lib paths ared transferred to preprocessor and linker
9279         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9280         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9281         fixed width array of pointers
9282         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9283         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9284         fixupPath(), getPathDifference()
9285         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9286         fixed width array of pointers
9287
9288 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9289
9290         * src/pic16/ralloc.c: fix warnings
9291         * src/pic16/pcode.c: fix warning
9292
9293 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9294
9295          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9296         know all the details, but essentially this set of changes enable
9297         the pic16 port to generate movff instructions and generate assembler
9298         directives,
9299         * src/SDCCmain.c:
9300         * src/pic16/gen.c:
9301         * src/pic16/glue.c:
9302         * src/pic16/pcode.c:
9303         * src/pic16/device.c:
9304         * src/pic16/main.c:
9305         * src/pic16/pcode.h:
9306         * src/pic16/pcoderegs.c:
9307         * src/pic16/ralloc.c:
9308         * src/pic16/ralloc.h:
9309
9310 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9311
9312         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9313         added option --vc, so sdcc errors and warnings are compatible with
9314         Microsoft Visual Studio.
9315
9316 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9317
9318         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9319           device/lib/libfloat.lib: added atof function.
9320
9321 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9322
9323         * doc/sdccman.lyx: updated to Lyx 1.3
9324         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9325         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9326         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9327
9328 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9329
9330         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9331
9332 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9333
9334         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9335           additions to the "related tools/documentation" section
9336
9337 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9338
9339         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9340
9341 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9342
9343         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9344         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9345
9346 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9347
9348         * doc/sdccman.lyx: fix double dash and other minor things
9349         * doc/Makefile: fix double dash
9350
9351 2003-05-28  Karl Bongers(patches from Martin Helmling)
9352         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9353           condition and ignore commands.
9354
9355 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9356
9357         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9358           is in parts still quite out of date, I did changes as far as I felt makes sense
9359           for a non-native english speaker.
9360           Please feel free to add to the manual or to correct my changes.
9361         * doc/Makefile: undid touching the date of intermediate tex files.
9362
9363 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9364
9365         * doc/sdccman.lyx: Manual has an index now
9366
9367 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9368
9369         Finalize muluint/mulsint and mululong/mulslong merging:
9370         * device/lib/_mulint.c
9371         * device/lib/_mullong.c
9372         * device/lib/gbz80/mul.s
9373         * device/lib/gbz80/stubs.s
9374         * device/lib/z80/mul.s
9375         * device/lib/z80/stubs.s
9376         * src/SDCCsymt.c (initCSupport)
9377
9378 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9379
9380         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9381         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9382           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9383           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9384           instead of /Zm500.
9385
9386 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9387
9388         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9389           the regression tests I'm not brave enough to enable 245.b, 245.c
9390         * doc/sdccman.lyx: added latex preamble for hyperref package.
9391           Using pdflatex this will give you a hyperlinked pdf file with
9392           bookmarks. (prepend '%' before /usepackage if this breaks something)
9393
9394 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9395
9396          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9397
9398 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9399
9400         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9401
9402 2003-05-21    <johan AT balder>
9403
9404         * src/SDCCglue.c (printIval): fixed bug #739934
9405
9406 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9407
9408         Applied patch from bug 737905 (renamed yylineo to mylineno):
9409         * src/altlex.c
9410         * src/SDCCast.c
9411         * src/SDCglobl.h
9412         * src/SDCC.lex
9413         * src/SDCCsymt.c
9414         * src/SDCCval.c
9415         * src/pic16/pcode.c: Cleaned warnings
9416         * src/pic16/pcodeflow.c: Cleaned warnings
9417         * src/pic16/pcoderegs.c: Cleaned warnings
9418
9419 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9420
9421         * src/pic16/pcode.c: Cleaned warnings
9422         * src/pic16/pcodepeep.c: Cleaned warnings
9423         * src/pic16/ralloc.c: Cleaned warnings
9424
9425 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9426
9427         * doc/sdccman.lyx: fixed bug 739745
9428         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9429
9430 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9431
9432         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9433         it can be defined with CFLAGS when running configure
9434         * src/SDCCmain.c: fixed compiling + linking with object files
9435
9436 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9437
9438         * configure.in: configure for pic16 port,
9439             added --disable-pic16-port
9440         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9441         * src/SDCCmain.c: linkOptions is changed to set *,
9442             added if/endif conditional macros to remove options help
9443             messages from optionsTable when a port is not configured, added
9444             support for the PIc16 port in the ports table, when executing
9445             the compiler with no port specified on command line, a default
9446             port is selected with the new macro DEFAULT_PORT which is
9447             defined in port.h, in setDefaultOptions() linkOptions is removed
9448             from initialization assignment, since now it is a set,
9449             parseCmdLine uses setParseWithComma for linkOptions, in
9450             linkEdit() linkOptions are accessed with new function indexSet()
9451             which returns the i'th item of a set variable. See SDCCset.c, in
9452             linkEdit() when calling buildCmdLine(), added linkOptions as
9453             last argument. Now users can pass arguments to gplink via the
9454             -Wl option, main() uses pic16glue() to glue up pic16 programs
9455         * src/SDCCpeeph.c: various changes to support pic16
9456         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9457             return the i'th item of the set
9458         * src/SDCCset.h: added function prototype for indexSet()
9459         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9460         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9461         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9462             added macro DEFAULT_PORT
9463         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9464         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9465             generated
9466         * src/pic16/glue.c: commented out some error producing lines
9467         * src/pic16/main.c: __config directives are commented out to stop
9468             gpasm complaining and test the linkage with gplink, _linkCmd and
9469             _asmCmd changed to be more gplink and gpasm friendly
9470         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9471             produced an error when parsed, peep rule 12 is added to utilize
9472             movff, but it is commented out since the pCode does not support
9473             yet a command with 2 address arguments
9474
9475 2003-05-18    <johan AT balder>
9476
9477         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9478         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9479 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9480
9481         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9482   Added feature to script commands from file.
9483
9484 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9485
9486         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9487         * src/SDCCutil.c: include ctype.h for win32
9488
9489 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9490
9491         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9492
9493 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9494
9495         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9496   Fixed so you can set breakpoints prior to run, run does not stop
9497   on entry now.  Add tbreak.  Other enhancements and fixes for use
9498   with ddd.
9499
9500 2003-05-12  Borut Razem <borut.razem AT siol.net>
9501
9502         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9503
9504 2003-05-11  Borut Razem <borut.razem AT siol.net>
9505
9506         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9507         the path of bin directory, so that PATH is the only env. variable, which has to be set
9508         in case of standard installation.
9509         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9510         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9511         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9512
9513 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9514
9515         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9516         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9517         temp files are in the port dir; clean the gen/test directory when
9518         generating new test.c
9519         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9520         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9521         * support/regression/tests/zeropad.c: added
9522
9523 2003-05-09    <johan AT balder>
9524
9525         * src/SDCCglue.c: fixed bug #597940
9526
9527 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9528
9529         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9530   cache sfr, optimize next,step, fix off by one sourceline,
9531   support ddd list function.
9532         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9533
9534 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9535
9536         * support/regression/HTMLgen.py: added compare_s2f()
9537         * support/regression/Makefile: redo 1.27
9538         * support/regression/generate-cases.py: redo 1.5
9539
9540 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9541
9542         * support/regression/tests/float.c: workaround 33 bit hex constant
9543         * support/regression/tests/simplefloat.c: fix division for host
9544
9545 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9546
9547         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9548         that tame's the PIC's over-aggressive optimizer.
9549
9550 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9551
9552          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9553          support for MSVC.
9554
9555 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9556
9557         Initial support for DS80C400. "Hello world" runs on TINIm400
9558         (with polled I/O).
9559
9560 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9561
9562          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9563          * Some notes on ddd usage added in debugger/README
9564          Martin Helmling adding more features and fixes for ddd GUI debugger.
9565          Code added for nexti, stepi, up, down, and other adjustments.
9566
9567 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9568
9569         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9570         * src/pic/peeph.def Added two rules to optimize carry manipulation
9571         * src/pic/* removed debug printfs
9572
9573 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9574
9575         * debugger/mcs51/cmd.c: added header newalloc.h
9576
9577 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9578
9579         * as/Makefile: new EXEEXT
9580         * as/z80/Makefile: remove trailing slash of BUILDIR
9581         * as/z80/clean.mk: new EXEEXT
9582         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9583         * support/cpp2/Makefile.in: new EXEEXT
9584         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9585
9586 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9587
9588         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9589         EXEEXT was introduced to fix all related problems with targets
9590         "clean", "install" and "uninstall"; a couple of further flaws
9591         especially with "clean" have been fixed too
9592         * as/mcs51/Makefile.in
9593         * as/mcs51/clean.mk
9594         * as/z80/Makefile
9595         * Makefile
9596         * clean.mk
9597         * debugger/mcs51/Makefile.in
9598         * debugger/mcs51/clean.mk
9599         * link/z80/Makefile
9600         * link/z80/Makefile.in
9601         * link/z80/clean.mk
9602         * link/Makefile
9603         * packihx/Makefile.in
9604         * packihx/clean.mk
9605         * sim/ucsim/Makefile
9606         * sim/ucsim/clean.mk
9607         * sim/ucsim/avr.src/Makefile.in
9608         * sim/ucsim/avr.src/clean.mk
9609         * sim/ucsim/s51.src/Makefile.in
9610         * sim/ucsim/s51.src/clean.mk
9611         * sim/ucsim/xa.src/Makefile.in
9612         * sim/ucsim/xa.src/clean.mk
9613         * sim/ucsim/z80.src/Makefile.in
9614         * sim/ucsim/z80.src/clean.mk
9615         * sim/ucsim/main_in.mk
9616         * sim/ucsim/packages_in.mk
9617         * sim/ucsim/gui.src/Makefile.in
9618         * sim/ucsim/gui.src/serio.src/Makefile.in
9619         * sim/ucsim/gui.src/serio.src/clean.mk
9620         * src/Makefile.in
9621         * src/clean.mk
9622         * support/cpp2/Makefile.in
9623         * support/cpp2/clean.mk
9624         * support/makebin/Makefile
9625         * support/makebin/clean.mk
9626         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9627         * doc/sdccman.lyx: --program-suffix no longer needed
9628
9629 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9630
9631          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9632          Martin Helmling added support for ddd GUI debugger.
9633          Code added to display assembly, set variables, and other commands
9634          to interface to ddd.
9635
9636 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9637
9638         * as/Makefile: fix target clean
9639         * as/clean.mk: fix target clean
9640         * as/z80/clean.mk: fix target clean
9641
9642 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9643
9644         * Makefile.common.in: added  AT EXEEXT AT
9645         * configure.in: removed all mingw32 stuff
9646         * configure: rebuilt from configure.in
9647         * doc/sdccman.lyx: updated section "installation"
9648         * support/scripts/sdcc_mingw32: adapted to configure
9649         * support/scripts/sdcc_cygwin_mingw32: added
9650
9651 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9652
9653         * src/pic Added object file support for the PIC port
9654         * src/pic Applied patch from Craig Franklin (this started the object file support)
9655         * src/regression Updated the PIC regression tests for object files
9656
9657 2003-04-20  Borut Razem <borut.razem AT siol.net>
9658
9659         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9660           lklex.c: In function `getfid':
9661           lklex.c:203: warning: array subscript has type `char'
9662         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9663           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9664         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9665           stack handling macros
9666
9667 2003-04-19  Borut Razem <borut.razem AT siol.net>
9668
9669         * "handling space characters in file path" task:
9670         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9671         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9672         * support/Util/MySystem.h: make it self-sufficient
9673         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9674           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9675           handling space characters in file path
9676         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9677           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9678         * support/Util/MySystem.c: handling space characters in executable's path
9679
9680 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9681
9682         * as/z80/Makefile: fix permanent rebuild of z80
9683         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9684         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9685
9686 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9687
9688         * src/SDCCopt.c: add special case optimization to replace modulo by
9689           a power of two with a bitwise AND.
9690
9691 2003-04-18    <johan AT balder>
9692
9693         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9694
9695 2003-04-17    <johan AT balder>
9696
9697         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9698         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9699
9700 2003-04-13  Borut Razem <borut.razem AT siol.net>
9701
9702         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9703         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9704           fixed mingw problem in adl_NORMALIZE_PATH
9705
9706 2003-04-12  Borut Razem <borut.razem AT siol.net>
9707
9708         * fixed "#pragma SAVE/RESTORE can not be nested":
9709         * src/SDCC.lex: reworked pragma handling functions
9710         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9711         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9712
9713 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9714
9715         * src/SDCCutil.c (pathEquivalent): defined but not used
9716         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9717         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9718         * configure: rebuilt from configure.in
9719         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9720         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9721         * device/include/Makefile.in: replace sdcc_datadir
9722         * device/lib/Makefile.in: replace sdcc_datadir
9723         * Makefile.common.in: add LDFLAGS from configure
9724         * packihx/Makefile.in: use LDFLAGS
9725         * src/Makefile.in: use LDFLAGS
9726         * support/cpp2/Makefile.in: add LDFLAGS from configure
9727         * support/makebin/Makefile: use LDFLAGS
9728         * .version: bumped version number to 2.3.5
9729
9730 2003-04-12  Borut Razem <borut.razem AT siol.net>
9731
9732         * completed "different paths" task:
9733         * src/SDCCmacro.c: fixed bug in handling quotes
9734         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9735         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9736
9737 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9738
9739         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9740
9741 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9742
9743         * ds390/gen.c ds390/peeph.def: fix bug 706781
9744
9745 2003-04-11  Borut Razem <borut.razem AT siol.net>
9746
9747         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9748
9749 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9750
9751         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9752         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9753          set - this bit used to not be set...).
9754         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9755           bad code in PIC Port
9756         * src/regression/and2.c added to test bug 609268
9757         * src/regression/Makefile added and2.c to regression test
9758
9759
9760 2003-04-08    <johan AT CP255758-A>
9761
9762         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9763         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9764         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9765
9766 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9767
9768         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9769         fix bug #487815
9770         * support/cpp2/Makefile.in: fix bug #487815
9771         * configure: rebuilt from configure.in
9772         * Makefile.common.in: docdir changed, new path suffixes
9773         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9774         * sdcc_vc_in.h: reflect changes from sdccconf.h
9775         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9776         * src/SDCCutil.h: remove BINDIR hack
9777         * doc/sdccman.lyx: update new path hierarchy
9778
9779 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9780
9781         * src/SDCCpeeph.c: added okToRemoveSLOC test
9782
9783 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9784
9785         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9786
9787 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9788
9789         * src/SDCCpeeph.c: added labelIsReturnOnly test
9790         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9791
9792 2003-04-05    <johan AT balder>
9793
9794         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9795         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9796         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9797         * src/SDCCast.c: fixed a warning
9798         * src/SDCCast.h: fixed a warning
9799         * src/SDCCicode.c (operandFromAst): fixed a warning
9800
9801 2003-04-04    <johan AT balder>
9802
9803         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9804         * src/SDCCast.c (decorateType): fixed bug #715076
9805         * src/SDCC.y: fixed bug #702907
9806
9807 2003-04-03    <johan AT balder>
9808
9809         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9810         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9811         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9812         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9813         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9814
9815 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9816
9817         * _decdptr.c: fix return values
9818         * _gptrget.c: fix return values
9819         * _gptrgetc.c: fix return values
9820         * _gptrput.c: fix return values
9821         * _mulint.c: fix return values
9822         * as/z80/Makefile: fix 'make -j' problem
9823
9824 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9825
9826         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9827         * configure.in: big cleanup, updated to autoconf 2.5x
9828         * configure: rebuilt from configure.in
9829         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9830         * sdcc_vc_in.h: reflect changes from sdccconf.h
9831         * doc/Makefile: fixed a flaw in "make install"
9832
9833 2003-04-02    <johan AT balder>
9834
9835         * src/ds390/gen.c (genCmp): no comments
9836         * src/mcs51/gen.c (genCmp): no comments
9837         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9838         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9839
9840 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9841
9842         * support/regression/generate-cases.py: place generated file in given sub directory
9843         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9844         * support/regression/Makefile: improvements for 'make -j';
9845         side effect: it's simpler and faster now
9846
9847 2003-03-31  Borut Razem <borut.razem AT siol.net>
9848
9849         * src/z80/main.c: link-{port} and as-{port} defined without path
9850         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9851
9852 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9853
9854         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9855
9856 2003-03-30  Borut Razem <borut.razem AT siol.net>
9857
9858         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9859           changed type of list parameter to set
9860         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9861         * src/port.h: changed type of do_assemble() parameter to set
9862         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9863           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9864           definition of "cppoutfilename" macro with NULL value in preProcess()
9865         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9866         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9867         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9868           replaced with set *binPathSet
9869         * shash_add() deallocates the item, if allready exsists, before adding the new one
9870         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9871
9872 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9873
9874         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9875           a nested for loop bug in the PIC port
9876         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9877           for loops
9878
9879 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9880
9881         * support/Util/dbuf.h: remove C++ stuff to make it portable
9882
9883 2003-03-28  Borut Razem <borut.razem AT siol.net>
9884
9885         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
9886           literal strings in stringLiteral()
9887         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
9888         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
9889           to the project
9890
9891 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
9892
9893         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
9894
9895 2003-03-26    <johan AT balder>
9896
9897         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
9898         * src/ds390/gen.c (saveRegisters): catched symbol abuse
9899         * src/SDCCast.c (decorateType): fixed " -v < 3"
9900
9901 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
9902
9903         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
9904         Added Lenny Story's debug infrastructure changes:
9905         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
9906         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
9907         * src/cdbFile.c: added
9908         * src/SDCCdebug.c: added
9909         * src/SDCCdebug.h: added
9910         * src/SDCCast.c (createFunction)
9911         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
9912         * src/SDCCmain.c (parseCmdLine, main)
9913         * src/SDCCmem.c (redoStackOffsets)
9914         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
9915         * src/SDCCsymt.h
9916         * src/common.h
9917         * src/avr/gen.c (genAVRCode)
9918         * src/ds390/gen.c (gen390Code)
9919         * src/mcs51/gen.c (gen51Code)
9920         * src/pic/gen.c (genpic14Code)
9921         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
9922         * src/xa51/gen.c (genXA51Code)
9923         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
9924
9925 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9926
9927         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
9928         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
9929
9930 2003-03-22    <johan AT balder>
9931
9932         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
9933
9934 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
9935
9936         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
9937         * doc/cdbfileformat.lyx: added, written by Lenny Story
9938         * doc/Makefile: added cdbfileformat.lyx
9939         * doc/clean.mk: added cdbfileformat.lyx
9940
9941 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
9942
9943         * src/mcs51/peeph.def: fix bug #705773
9944
9945 2003-03-20    <johan AT balder>
9946
9947         An sfr/sbit can have an "at #" AND an initializer
9948         * src/SDCCsymt.c (checkSClass):
9949         * src/SDCCmem.c (allocGlobal):
9950         * src/SDCCmem.c (allocLocal):
9951         * src/SDCCast.c (createBlock):
9952
9953 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
9954
9955         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
9956
9957 2003-03-16    <johan AT balder>
9958
9959         Undid the hackup of const and volatile, the problem is much bigger
9960         * src/SDCC.y:1.65
9961         * src/SDCCast.c:1.171
9962         * src/SDCCglue.c:1.138
9963         * src/SDCCicode.c:1.146
9964         * src/SDCCsymt.c:1.150
9965         * src/SDCCval.c:1.65
9966
9967 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
9968
9969         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
9970         * src/ds390/gen.c (genAddrOf): fixed bug #704087
9971
9972 2003-03-13    <johan AT balder>
9973
9974         Hackup const and volatile modifiers in type chains a bit:
9975         * src/SDCC.y:1.63
9976         * src/SDCCast.c:1.169
9977         * src/SDCCglue.c:1.136
9978         * src/SDCCicode.c:1.143
9979         * src/SDCCsymt.c1.146
9980         * src/SDCCsymt.h1.59
9981         * src/SDCCval.c:1.63
9982
9983 2003-03-12    <johan AT balder>
9984
9985         * src/SDCCBBlock.h: more LRH debugging junk
9986         * src/SDCCcflow.h: more LRH debugging junk
9987         * src/SDCCloop.c: more LRH debugging junk
9988         * src/SDCC.y (struct_declaration): fixed bug #697590
9989         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
9990         * src/ds390/gen.c (aopForRemat): fixed bug #700031
9991         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
9992
9993 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
9994         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
9995         test function names must now match exactly).
9996         * src/SDCCcse.c: added special case in findCheaperOp to allow
9997         extending a short integer. Makes less awful code for bug 700121 test case.
9998
9999 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10000
10001         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10002         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10003
10004 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10005
10006         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10007         actually called (operandsNotEqual() was called for all
10008         operandsNotEqualX tests).
10009
10010 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10011
10012         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10013         with shorter literals. Fixes bug 700121.
10014
10015 2003-03-11    <johan AT balder>
10016
10017         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10018
10019 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10020
10021         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10022         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10023
10024 2003-03-10  Borut Razem <borut.razem AT siol.net>
10025
10026         * src/SDCCmain.c: pipe preprocessor's output
10027         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10028         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10029         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10030         which closes all pipes in pipeSet set
10031         * src/SDCCset.c: free deleted item in function deleteSetItem()
10032         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10033         moved from z80 to src subproject
10034         * .version: increased version number to 2.3.4
10035
10036 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10037
10038         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10039         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10040         * support/regression/ports/xa51/spec.mk: fix typo
10041
10042 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10043
10044         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10045
10046 2003-03-09  Borut Razem <borut.razem AT siol.net>
10047
10048         * src/SDCCmain.c: pipe preprocessor's output
10049         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10050         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10051         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10052         which closes all pipes in pipeSet set
10053         * src/SDCCset.c: free deleted item in function deleteSetItem()
10054         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10055         moved from z80 to src subproject
10056
10057 2003-03-09  Borut Razem <borut.razem AT siol.net>
10058
10059         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10060         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10061         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10062         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10063         * src/SDCCglobl.h: unification of WIN32 native definitions
10064
10065 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10066
10067         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10068
10069 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10070
10071         * src/configure.in:   check for endianess (even while cross-compiling)
10072         * src/configure:      check for endianess (even while cross-compiling)
10073         * src/configure_in.h: check for endianess (even while cross-compiling)
10074         * src/avr/gen.c:        remove old endianess stuff
10075         * src/mcs51/gen.c:      remove old endianess stuff
10076         * src/ds390/gen.c:      remove old endianess stuff
10077         * src/pic/gen.c:        remove old endianess stuff
10078         * src/pic/genarith.c:   remove old endianess stuff
10079         * src/pic/glue.c:       fix endianess check
10080         * src/pic16/gen.c:      remove old endianess stuff
10081         * src/pic16/genarith.c: remove old endianess stuff
10082         * src/pic16/glue.c:     fix endianess check
10083         * src/xa51/gen.c:       remove old endianess stuff
10084         * src/z80/gen.c:        fix endianess check
10085         * src/SDCCglue.c:       fix endianess check
10086         * src/ds390/peeph.def: fix bug 700036
10087
10088 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10089
10090         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10091         * src/configure: find appropriate data-types on host for SDCC's int and long
10092         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10093         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10094         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10095
10096 2003-03-07    <johan AT balder>
10097
10098         Just a big NOOP:
10099                 some minor cleanups before the big shot
10100                 OP_DEFS and OP_USES now use Kevin's protection
10101                 new option --nolabelopt
10102
10103         * src/SDCCBBlock.c:
10104         * src/SDCCast.c,:
10105         * src/SDCCcflow.c:
10106         * src/SDCCcse.c:
10107         * src/SDCCicode.c:
10108         * src/SDCCicode.h:
10109         * src/SDCClabel.c:
10110         * src/SDCCloop.c:
10111         * src/SDCCmain.c:
10112         * src/ds390/ralloc.c:
10113         * src/mcs51/ralloc.c:
10114         * src/pic/ralloc.c:
10115         * src/xa51/ralloc.c:
10116         * src/z80/ralloc.c:
10117
10118 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10119
10120         * src/pic/pcode.c (get_op): fix 64 bit warnings
10121         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10122         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10123         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10124         * support/regression/tests/malloc.c: fix 64 bit warnings
10125
10126 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10127
10128         * src/mcs51/gen.c (genMinus): fixed bug 696436
10129
10130 2003-03-02  Borut Razem <borut.razem AT siol.net>
10131
10132         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10133
10134 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10135
10136         * configure.in: test for mkstemp
10137         * sdccconf_in.h: add HAVE_MKSTEMP
10138
10139 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10140
10141         * device/include/ctype.h: removed warning while using --stack-auto
10142         * device/include/malloc.h: removed warning while using --stack-auto
10143         * device/include/string.h: removed warning while using --stack-auto
10144
10145 2003-02-23  Borut Razem <borut.razem AT siol.net>
10146
10147         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10148         because NDEBUG is defined (see man assert)
10149         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10150
10151 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10152
10153         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10154         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10155
10156 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10157
10158         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10159         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10160
10161 2003-02-18    <johan AT balder>
10162
10163         * as/mcs51/asmain.c (asmbl): module can start with a digit
10164         * as/z80/asmain.c (asmbl): module can start with a digit
10165
10166 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10167
10168         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10169         * src/asm.c: fix pipe() for Mingw32
10170
10171 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10172
10173         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10174         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10175         make -V work again; --c1mode reads now from stdin
10176         * doc/sdccman.lyx: added --c1mode
10177         * support/Util/SDCCerr.c: new messages for c1 mode
10178         * support/Util/SDCCerr.h: new messages for c1 mode
10179         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10180
10181 2003-02-15    <johan AT balder>
10182
10183         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10184
10185 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10186
10187         * doc/sdccman.lyx: Environment variables, -o and other minor things
10188
10189 2003-02-14    <johan AT balder>
10190
10191         * src/xa51/main.c: before anyone really tries to use it :)
10192
10193         * Install doc's in share/sdcc/doc
10194         * removed some obsolete files
10195         * Do a proper make distclean and uninstall
10196         M Makefile.common.in
10197         R sdccbuild.sh
10198         M as/Makefile
10199         M device/include/Makefile.in
10200         M device/lib/Makefile.in
10201         M doc/sdccman.lyx
10202         M link/Makefile
10203         M sim/ucsim/doc/Makefile.in
10204         M src/clean.mk
10205         R src/avr/peeph.rul
10206         R src/xa51/peeph.rul
10207         M support/cpp2/Makefile.in
10208         M support/makebin/Makefile
10209
10210
10211 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10212
10213         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10214
10215 2003-02-10  Borut Razem <borut.razem AT siol.net>
10216
10217         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10218         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10219         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10220         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10221         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10222         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10223         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10224         src/z80/Makefile.bcc: Borland Makefile cleanup
10225         * as/z80/Makefile.bcc: Added Borland Makefile
10226         * support/cpp2/borland.h: Removed
10227
10228 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10229
10230         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10231         * src/SDCC.lex: new pragma NOIV
10232         * src/SDCCglobl.h: new pragma NOIV
10233         * src/SDCCmem.c: new pragma NOIV
10234
10235 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10236
10237         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10238
10239 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10240
10241         * src/SDCCmain.c: signal handling is switched off by --debug
10242         * doc/Makefile: small fix for install; use clean.mk again
10243         * doc/clean.mk: clean *.pdf and *.html too
10244
10245 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10246
10247         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10248         * device/lib/printfl.c: fix a ds390 bug by making it portable
10249         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10250         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10251         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10252         * debugger/mcs51/cmd.c: converted multi-line string literals
10253         * sim/ucsim/globals.cc: converted multi-line string literals
10254         * src/SDCCmain.c: introduced signal handler to remove temp files
10255         * doc/Makefile: small tweaks, implement clean
10256         * doc: removed generated files
10257
10258 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10259
10260         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10261         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10262         Address Record is not correctly generated for DS390."
10263
10264 2003-02-02  Borut Razem <borut.razem AT siol.net>
10265
10266         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10267         * as/mcs51/asm.h: fixed compilation with Borland C
10268         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10269         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10270         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10271         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10272         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10273         src/z80/Makefile.bcc: delete $(LIB) only if exist
10274         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10275
10276 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10277
10278         * device/include/malloc.h: introduced NULL
10279         * device/include/string.h: introduced NULL
10280         * device/include/stdlib.h: introduced NULL
10281         * device/lib/_memcpy.c: removed NULL
10282         * device/lib/_strcat.c: removed NULL
10283         * device/lib/_strchr.c: removed NULL
10284         * device/lib/_strcmp.c: removed NULL
10285         * device/lib/_strcpy.c: removed NULL
10286         * device/lib/_strcspn.c: removed NULL
10287         * device/lib/_strlen.c: removed NULL
10288         * device/lib/_strncat.c: removed NULL
10289         * device/lib/_strncmp.c: removed NULL
10290         * device/lib/_strncpy.c: removed NULL
10291         * device/lib/_strpbrk.c: removed NULL
10292         * device/lib/_strrchr.c: removed NULL
10293         * device/lib/_strspn.c: removed NULL
10294         * device/lib/_strstr.c: removed NULL
10295         * device/lib/_strtok.c: removed NULL
10296         * device/lib/malloc.c: removed NULL, include own header
10297
10298 2003-02-02    <johan AT balder>
10299
10300         * 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
10301         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10302         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10303         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10304         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10305         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10306
10307 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10308
10309         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10310         area 'DATA'"
10311
10312 2003-02-01    <johan AT balder>
10313
10314         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10315
10316 2003-01-31    <johan AT CP255758-A>
10317
10318         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10319
10320 2003-01-30    <johan AT balder>
10321
10322         * src/SDCCBBlock.c: automatic bug detection
10323         * src/SDCCicode.c: automatic bug detection
10324
10325 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10326
10327         * src/SDCCglobl.h:   now --xram-size 0 works
10328         * src/SDCCmain.c:    now --xram-size 0 works
10329
10330 2003-01-29    <johan AT balder>
10331
10332         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10333
10334 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10335
10336         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10337         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10338         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10339         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10340         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10341         * src/SDCCmain.c:    Added options --xram-size and --code-size
10342
10343 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10344
10345         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10346         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10347
10348 2003-01-27    <johan AT balder>
10349
10350         * src/SDCC.y: fixed bug #613764
10351
10352 2003-01-26    <johan AT balder>
10353
10354         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10355         * src/SDCCsymt.h: fixed bug #673374
10356         * src/SDCCglue.c: fixed bug #661910
10357         * src/SDCCast.c: fixed bug #458099 and 673374
10358
10359 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10360
10361         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10362         * as/mcs51/strcmpi.h: added
10363         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10364         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10365         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10366         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10367         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10368         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10369         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10370         * as/mcs51/Makefile.aslink: new module strcmpi
10371         * as/mcs51/Makefile.asx8051: new module strcmpi
10372         * as/mcs51/Makefil.bcc: new module strcmpi
10373         * as/mcs51/Makefile.in: new module strcmpi
10374         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10375
10376 2003-01-26    <johan AT balder>
10377
10378         * src/SDCCglue.c: reverted back to 1.124
10379         * src/SDCCast.c: reverted back to 1.156
10380         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10381
10382 2003-01-25    <johan AT balder>
10383
10384         * src/SDCCglue.c: A better fix for bug #661910
10385         * src/SDCCast.c: A better fix for bug #661910
10386         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10387
10388 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10389
10390         * src/Makefile.in: remove spawn.o
10391         * src/SDCCmain.c: remove spawn.h
10392         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10393         * src/spawn.c: removed
10394         * src/spawn.h: removed
10395         * support/regression/ports/ds390/spec.mk: link with -r
10396
10397 2003-01-24    <johan AT CP255758-A>
10398
10399         * src/ds390/gen.c (aopOp): fixed bug #667458
10400         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10401         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10402         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10403
10404 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10405
10406         * src/mcs51/peeph.def: better assembler identation by Frieder
10407         * src/mcs51/gen.c: better assembler identation by Frieder
10408
10409 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10410
10411         * as/z80/string.h: removed for gcc 3.2
10412         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10413         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10414
10415 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10416
10417         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10418         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10419         * support/regression/Makefile: separate temp files for ports
10420         * support/regression/generate-cases.py: separate temp files for ports
10421         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10422         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10423
10424 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10425
10426         * moved tinitalk to device/examples/ds390
10427
10428 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10429
10430         * as/mcs51/lkmem.c: rflag is for DS390
10431         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10432         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10433                          (linkEdit): move mem- and map-files the same way as ihx-files
10434         * src/z80/main.c (_setDefaultOptions): removed --generic
10435         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10436         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10437         * src/pic/glue.c (picglue): --c1mode works again
10438         * src/pic16/glue.c (pic16glue): --c1mode works again
10439         * src/asm.c (printCLine): fix #660034
10440
10441 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10442
10443         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10444         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10445         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10446         * as/mcs51/lkmem (summary): better fix for sp problem
10447         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10448         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10449         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10450                                               remove --stack-after-data
10451
10452 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10453
10454         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10455         * src/SDCCutil.c (join): ugly bug: missing '\0'
10456         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10457
10458 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10459
10460         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10461         * src/port.h: typo
10462         * src/pic/main.c (_asmCmd): gpasm supports -o
10463         * src/z80/main.c: more general macros
10464         * device/lib/Makefile.in: remove intermediate files
10465
10466 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10467
10468         * .version: Bumped version number to 2.3.3
10469         * src/SDCCBBlock.c: new option -o
10470         * src/SDCCglobl.h: new option -o
10471         * src/SDCCglue.c: new option -o
10472         * src/SDCCmain.c: new option -o
10473         * src/asm.c: new option -o
10474         * src/ds390/main.c: new option -o
10475         * src/pic/glue.c: new option -o
10476         * src/pic/pcode.c: new option -o
10477         * src/pic/ralloc.c: new option -o
10478         * src/pic16/glue.c: new option -o
10479         * src/pic16/pcode.c: new option -o
10480         * src/pic16/ralloc.c: new option -o
10481         * src/z80/main.c: new option -o
10482         * device/lib/Makefile.in: use -o
10483         * support/regression/ports/ds390/spec.mk: use -o
10484         * support/regression/ports/gbz80/spec.mk: use -o
10485         * support/regression/ports/mcs51/spec.mk: use -o
10486         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10487         * support/regression/ports/z80/spec.mk: use -o
10488         * support/regression/ports/ucz80/spec.mk: use -o
10489         * support/regression/ports/xa51/spec.mk: use -o
10490         * support/regression/fwk/lib/timeout.c: fix usage string
10491
10492 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10493         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10494
10495 2003-01-07    <johan AT balder>
10496
10497         * src/SDCCast.c (decorateType): fixed bug #600035
10498
10499 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10500         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10501         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10502         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10503         * src/pic/pcode.c: outcommented unused variable to remove warnings
10504         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10505
10506 2003-01-06    <karl AT turbobit.com>
10507         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10508    regression tests.
10509
10510 2003-01-06    <johan AT balder>
10511
10512         * src/SDCCicode.c: fixed array add
10513
10514 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10515         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10516         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10517
10518 2003-01-04    <johan AT balder>
10519
10520         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10521
10522 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10523         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10524
10525 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10526         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10527         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10528
10529 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10530         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10531
10532 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10533         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10534
10535 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10536         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10537
10538 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10539
10540     * in \sdcc\as\mcs51\ changed these files in order to create an
10541     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10542     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10543     following files to include the previous two files: aslink.dsp,
10544     Makefile.aslink, Makefile.bcc, and Makefile.in.
10545
10546     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10547     .adb instead of .cdb
10548
10549 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10550
10551         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10552         value from option --iram-size.
10553
10554 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10555
10556         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10557         dram[] array.
10558
10559 2002-09-18    <wiml AT hhhh.org>
10560
10561         * SDCClrange.h: exposed setFromRange() and setToRange()
10562         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10563           packRegsForAccUse() (bug 542397)
10564         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10565           multiple times and emitting the fetch operations more than once
10566           added aopGetUsesAcc() function to allow binary operators to
10567           fetch their operands in the correct order; made genMinus() emit
10568           compact code for X = LITERAL - Y
10569
10570 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10571         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10572         sprintf() in line 1267.
10573
10574 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10575         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10576         like ports.
10577
10578 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10579         Changes to aslink (All the changes are marked with 'JCF'):
10580
10581         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10582         summary().
10583
10584         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10585         area BSEG.  Also moves, if possible, the DATA area down into the internal
10586         ram so more space is available.
10587
10588         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10589         sflag.
10590
10591         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10592         not bytes.  Function summary() which creates a memory usage summary
10593         file with extension .mem.  Reports of overlaping stack and small stack
10594         size.  If the space for the stack is less than 16 bytes aslink trows a
10595         warning.
10596
10597         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10598         the 8051.  Option 'y' for memory summary output file.
10599
10600         Changes to sdcc (All the changes are marked with 'JCF'):
10601
10602         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10603
10604         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10605         overlaying area for it (uses RegBankUsed[4]).
10606
10607         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10608         bank zero as used by default.  By default aslink locates the stack
10609         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10610         the creation of the .mem file.  Delegates the allocation of data area
10611         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10612         the begining of the stack area to aslink.
10613
10614         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10615         glue() in SDCCglue.c creates an area for it.
10616
10617 2002-09-03  Borut Razem <borut.razem AT siol.net>
10618         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10619         sdcc/src/pic/glue.c:
10620         introduced atexit() handler for teporay files removal in case of
10621         errors, assertions, ...
10622
10623 2002-08-29  Borut Razem <borut.razem AT siol.net>
10624         * sdcc/support/cpp2/auto-host_vc_in.h:
10625         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10626         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10627         Maybe there is a similar problem with BORLANDC? It should be checked!
10628
10629         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10630         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10631         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10632         was not executed, and the compiler (cl) launched a warning:
10633         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10634
10635 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10636         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10637
10638 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10639         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10640
10641         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10642           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10643           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10644           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10645           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10646           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10647           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10648         - added Release configuration in VS projects
10649         - review of compiler an linker options
10650         - VC .exe files are generated in bin_vc directory, not to interfere
10651           with binaries generated from other projects (cygwin, mingw, bcc ...)
10652
10653         * sdcc/src/yacc.dsp: added
10654
10655         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10656         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10657         and insert the version number definitions from .version
10658
10659         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10660
10661         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10662         added - genarate auto-host.h using auto-host_vc_in.h as template
10663
10664         * sdcc/sdcc_vc.h,
10665         removed from CVS, generated automatically
10666
10667 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10668         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10669
10670 2002-08-11  Borut Razem <borut.razem AT siol.net>
10671         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10672
10673 2002-08-10  Borut Razem <borut.razem AT siol.net>
10674         * src/SDCCmain.c (main):
10675         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10676         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10677         The consequence was that some temporary files were not removed.
10678
10679         * src/SDCCglue.c:
10680         unification of code in functions tempfilename() and tempfile():
10681         function tempnam() is defined in Visual Studio 6.0 and .NET
10682
10683         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10684
10685         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10686           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10687         - removed compiler command line option /WX: Treats all warnings as errors
10688         - update a list of source files, included into the project
10689
10690         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10691           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10692         changed project type to Generic Project so that can be correcly converted to VS.NET project
10693
10694         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10695
10696         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10697
10698         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10699
10700         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10701         added return 0 statements after assert() to make compiler happy
10702
10703         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10704         added newline in the def file to keep MSC compiler satisfied
10705
10706         * sdcc/src/z80/gen.c:
10707         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10708           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10709         - solved MSC error in function aopDump()
10710
10711         * sdcc_vc.h: define PREFIX as "\\sdcc"
10712
10713 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10714         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10715
10716 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10717         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10718         - Rewrote the register banking algorithm.
10719         - Added pCode live-range analysis to registers (for now, only non-used and
10720         singly-used registers optimized away)
10721
10722         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10723
10724         * 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.
10725
10726 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10727         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10728
10729 2002-04-22  Michael Hope  <michaelh AT vroom>
10730
10731         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10732
10733         * configure.in (DD_COPT): Added include support required for gbdk.
10734
10735         * .version: Bumped version number just to increase it.
10736
10737         * src/SDCCmain.c: Added -nostdinc to the default options.
10738
10739 2002-04-15  Michael Hope  <michaelh AT vroom>
10740
10741         * device/lib/z80/printf.c (sprintf): Added.
10742
10743         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10744
10745         * src/z80/peeph.def: Added transpose redundent load rule.
10746
10747         * src/z80/main.c: Added force callee saves for jaune.
10748
10749         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10750
10751         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10752
10753 2002-03-28  Johan Knol  <johan AT balder>
10754
10755         * src/SDCCval.c: fixed bug #532436
10756
10757 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10758         * /src/port.h:
10759         Added "char *Processor" field to the port structure.
10760
10761         * /src/SDCCmain.c:
10762         Added -p option. Allows port dependent processor to be specified.
10763
10764         * all ports:
10765         Initialized the new field char *Processor field to NULL in all ports
10766
10767         * /src/pic/*:
10768         Compiler generated registers for interrupt context saving
10769         were not getting allocated.
10770
10771 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10772
10773         * /src/SDCCast.c:
10774         Fixed left shift. Will promote the left side of a left shift
10775         if a) left shifting more than size of operand or b) when assigned
10776         to something size > size of left side
10777
10778 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10779         * src/pic/*
10780         tons of changes. Register allocation has been
10781         rewritten. Added customization for the various PICs. Flow
10782         analysis is restructured. ...
10783
10784         * src/pic/device.h:
10785         Added
10786
10787         * src/pic/device.c:
10788         Added. device.c is a PIC port hack to accomodate variations
10789         in PIC devices.
10790
10791 2002-03-13  Michael Hope  <michaelh AT vroom>
10792
10793         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10794
10795 2002-03-04  johanknol  <johanknol AT manik>
10796
10797         * /src/SDCCval.c: fixed
10798
10799         const unsigned char arr[][2] = { { 0, 1 } };
10800         t18.c:1: error: Initializer element is not constant
10801
10802 2002-03-04  bela  <bela AT manik>
10803
10804         * /device/include/mcs51reg.h:
10805         ds89c420 register definition update
10806
10807 2002-03-03    <johan AT FRIJA>
10808
10809         * support/Util/SDCCerr.c: did something, but don't no why anymore
10810
10811         * support/regression/tests/bug-524691.c: made it a little less shy
10812
10813         * src/SDCCast.c (decorateType): fixed bug #524697
10814
10815         * src/SDCCast.c: made some lineno improvements
10816
10817         * src/SDCCval.c (getNelements): changed warning to error
10818
10819         * src/SDCCglue.c (printIvalArray): changed warning to error
10820
10821         * src/SDCCicode.c: fixed a warning for mingw
10822
10823         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10824
10825         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10826
10827 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10828
10829         * src/ds390/peeph.def:
10830         Added some more peephole rules
10831
10832         * src/ds390/gen.c: Various fixes & enhancements
10833
10834         * src/SDCClrange.c, src/SDCClrange.h:
10835         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10836
10837         * src/ds390/ralloc.c:
10838         various fixes & enhancements (ds390) specific
10839
10840         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10841         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10842         from rallocs.
10843
10844         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10845
10846 2002-03-02    <johan AT FRIJA>
10847
10848         * src/SDCCast.c (decorateType): fixed bug #524708
10849
10850         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10851
10852         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10853
10854 2002-03-01  Michael Hope  <michaelh AT vroom>
10855
10856         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10857
10858         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10859
10860 2002-03-01    <johan AT FRIJA>
10861
10862         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10863
10864         * src/SDCCast.c (decorateType): fixed bug #524209
10865
10866         * src/SDCCval.c (valNot): fixed bug #524195
10867
10868 2002-02-26    <johan AT balder>
10869
10870         * src/xa51/gen.c: fixed a warning
10871
10872         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10873
10874         * src/SDCCast.c (decorateType): fixed bug #522534
10875
10876 2002-02-23    <johan AT balder>
10877
10878         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10879
10880 2002-02-22    <johan AT balder>
10881
10882         * src/SDCCast.c: fixed bug #514865
10883
10884         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
10885
10886 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
10887
10888         * sdcc/src/SDCCloop.c:
10889         Previous fix was not good. basic blocks that have "break" or "return" are
10890         not really partof a loop , but live ranges used in these blocks should
10891         be live thru the entire loop, so set partOfLoop but don't add them to
10892         loop region
10893
10894 2002-02-21    <johan AT FRIJA>
10895
10896         * src/SDCCcse.c: fixed bug #514308
10897
10898 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
10899
10900         * src/SDCCloop.c:
10901         Fixed BUG #519583. If a conditional block ended in a return/break
10902         statement inside a loop, it was not being considered part of the loop.
10903
10904         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
10905
10906 2002-02-10  Karl Bongers <karl AT turbobit.com>
10907
10908         * debugger/*:
10909         Fixed up SDCDB debugger somewhat.  Updated debugger/README
10910         with lots of comments and notes.
10911
10912         * device/examples/test2.c:
10913         Fix bug, "red" variable not being initialized(compiler complained).
10914
10915         * device/examples/Makefile, examples/test3.c:
10916         Add Makefile in device/examples folder, compiles test3.c
10917         for use as a multiple module SDCDB test case.
10918
10919         * sim/ucsim/cmd.src/cmdset.cc:
10920         Took out debug printfs in ucsim "next" command.
10921
10922         * sim/ucsim/xa.src:
10923         Karl and Johan start ucsim XA support.  Most dissassembly working,
10924         about 75% emulation done(plenty of work remaining).
10925
10926         * sim/ucsim/z80.src:
10927         Add Z80 support to ucsim, add test-ucz80 regression test,
10928         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
10929         Notice z80 compiler fails on examples/test3.c/crc code.
10930
10931 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
10932
10933         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
10934         Added support for --parms-in-bank1
10935
10936         * src/ds390/peeph.def:
10937         added a few more peephole optimzations
10938
10939         * src/ds390/main.c:
10940         1) added __builtin_inp & __builtin_outp used to read in data of given length
10941            from a memory mapped port
10942         2) added __builtin_memcmp
10943         3) added __builtin_swapw swap bytes of a short
10944
10945         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
10946         1) handle multiple send & receives from register bank1
10947         2) ralloc can now allocate DPTR1 to some liveRanges
10948
10949         * src/SDCCsymt.c, src/SDCCsymt.h:
10950         changes to handle multiple sends & receives
10951
10952         * src/SDCCptropt.h:
10953         added some pointer arithmetic optimization
10954
10955         * src/SDCCptropt.c:
10956         added some pointer arithmetic optimizations but not stable yet so not
10957         called from anywhere (will get this working shortly)
10958
10959         * src/SDCCopt.c: fixed for multiple sends & receives
10960
10961         * src/SDCCmain.c:
10962         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
10963         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
10964            set preprocessor defines (depending on options)
10965
10966         * src/SDCCicode.c, src/SDCCicode.h:
10967         changes made to handle multiple sends & receives
10968
10969         * src/SDCCglobl.h:
10970         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
10971
10972         * src/SDCCcse.c, src/SDCCcse.h:
10973         added function findbackward def (to be used in upcoming optimization)
10974
10975         * src/SDCCcflow.c, src/SDCCcflow.h:
10976         added function returnAtEnd - to determine if a basic block terminates with
10977         a RETURN iCode
10978
10979         * src/SDCCast.c, src/SDCCast.h:
10980         added option parms-in-bank1
10981
10982         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
10983         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
10984         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
10985         adjusted for --parms-in-bank1 option
10986
10987         * device/include/string.h:
10988         donot redefine "reentrant" keyword
10989
10990         * device/include/ds80c390.h: Added some more SFRs
10991
10992 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
10993
10994         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
10995
10996 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
10997
10998         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
10999
11000 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11001
11002         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11003
11004 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11005
11006         * Added --xram-movc option
11007
11008 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11009
11010         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11011
11012 2002-01-11  Johan Knol
11013
11014         * Added math lib of Jesus Calvino-Fraga
11015
11016 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11017
11018         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11019         * support/regression/Makefile: new target test-mcs51-stack-auto
11020         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11021
11022 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11023
11024         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11025
11026 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11027
11028         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11029
11030 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11031
11032         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11033
11034         * src/SDCCglue.h: add definition for printIvalChar()
11035
11036 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11037
11038         * src/SDCCast.c: fix #498138 by Johan
11039
11040         * src/SDCCglue.c: fix #498138 by Johan
11041
11042 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11043
11044         * support/regression/Makefile: fix clean
11045
11046         * support/regression/ports/ds390/support.c: fix transmission of last character
11047
11048 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11049
11050         * /sdcc/src/ds390/gen.c:
11051         a) improved computing address of stack variable
11052         b) took out some #if 0 code
11053         c) improved parmBytes adjustment
11054         d) improved genPlusIncr & genMinusIncr
11055         e) genCmp could generate bad code (when left assigned to DPTR)
11056         f) Fixed bug in hasInc
11057
11058         * /sdcc/src/ds390/ralloc.c:
11059         a) packRegsForSupport could mess up live information (Fixed)
11060         b) packRegsDPTRuse could be incorrect for left & right shift
11061
11062         * /sdcc/src/mcs51/ralloc.c:
11063         packRegsForSupport could mess up the live information (Fixed)
11064
11065         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11066
11067         * /sdcc/src/SDCCast.c:
11068         can reverse a loop even if function call is present as long
11069         as the loop control variable is local & is not passed as parameter
11070
11071 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11072
11073         * /sdcc/ChangeLog: *** empty log message ***
11074
11075         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11076         More builtin function additions for TININative
11077
11078         * /sdcc/src/ds390/ralloc.c:
11079         Had broken the regression testsuite
11080
11081         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11082
11083         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11084         Added funcattr hasStackParms will be set for reentrant functions when there
11085         are paramteres on the stack, this helps in minimizing frame pointer generation
11086         typeFromStr can handle function pointers now
11087
11088         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11089         *** empty log message ***
11090
11091 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11092
11093         * /src/ds390/gen.c, /src/ds390/main.c:
11094         More builtin function additions for TININative
11095
11096         * /src/ds390/ralloc.c:
11097         Had broken the regression testsuite
11098
11099         * /src/SDCCast.c: Fixed a bug in dumptree
11100
11101         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11102         Added funcattr hasStackParms will be set for reentrant functions when there
11103         are paramteres on the stack, this helps in minimizing frame pointer generation
11104         typeFromStr can handle function pointers now
11105
11106         * /doc/builtins.txt, /doc/TININative.txt:
11107         *** empty log message ***
11108
11109
11110 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11111
11112         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11113         ALPHA version for -mTININative
11114
11115         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11116         updated to reflect changes in the port structure
11117
11118         * /src/port.h:
11119         added function do_assemble (similar to do_link) if non-null this function
11120         will be called to do assembly (-mTININative) requires a multi command
11121         assembly
11122         added function genAssemblerEnd will be called to generate assembler Epilogue
11123
11124         * /src/SDCCsymt.c:
11125         added _JavaNative to debug info printing
11126
11127         * /src/SDCCmain.c: added option --tini-libid
11128         added port->do_assemble function (-mTININative) has a multi command assemble
11129
11130         * /src/SDCCglue.c: Disabled "constExpr" check
11131         added port->genAssemblerEnd function
11132
11133         * /src/SDCCglobl.h: Added option --tini-libid value
11134
11135         * /src/SDCCast.h:
11136         tookout optimizeCompare from the header (has no external references)
11137
11138         * /src/SDCCast.c: made one more function "static"
11139
11140 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11141
11142         * src/z80/mappings.i: Added z80asm support.
11143
11144         * src/z80/main.c: Added z80asm support on --asm=z80asm
11145
11146         * src/z80/gen.c: Fixed asm portability issues.
11147
11148         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11149
11150         * src/SDCCglue.c (printExterns): Added global/extern split.
11151
11152 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11153
11154         * support/regression/Makefile: added test for mcs51 model large
11155
11156         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11157
11158         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11159
11160 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11161
11162         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11163
11164 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11165
11166         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11167
11168         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11169
11170 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11171
11172         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11173
11174         * support/regression/tests/simplefloat.c: Port to mcs51.
11175
11176 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11177         * support/regression/tests/bug-485362.c: Added.
11178
11179         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11180
11181         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11182
11183         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11184
11185         * src/z80/gen.c (aopDump): Added a dump function.
11186
11187 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11188         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11189
11190         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11191
11192         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11193
11194         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11195
11196         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11197
11198         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11199
11200         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11201
11202         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11203
11204         * support/regression/ports/ds390/support.c: Use tinibios.
11205
11206         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11207
11208 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11209
11210         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11211         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11212
11213         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11214
11215         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11216
11217 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11218
11219         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11220
11221         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11222         (packRegsForIYUse): Created and optimised.
11223
11224 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11225
11226         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11227 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11228
11229         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11230
11231         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11232
11233         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11234
11235 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11236
11237         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11238
11239         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11240
11241 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11242
11243         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11244
11245         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11246
11247         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11248
11249 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11250
11251         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11252         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11253         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11254
11255         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11256
11257         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11258         (genNotFloat): Added.
11259         (genUminusFloat): Added.
11260
11261         * device/lib/z80/Makefile: Added floating pt stubs.
11262
11263         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11264
11265         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11266
11267         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11268
11269 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11270
11271         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11272
11273         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11274
11275         * sdcc/support/regression/Makefile: Add port ds390.
11276
11277         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11278
11279         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11280
11281         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11282
11283         * sdcc/support/regression/ports/ds390/support.c: Added.
11284
11285         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11286
11287         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11288
11289         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11290
11291 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11292
11293         * device/include/malloc.h: Added z80 and gbz80 support.
11294
11295         * device/lib/gbz80/heap.s: Added.
11296
11297         * device/lib/z80/heap.s: Added.
11298
11299         * device/lib/malloc.c: Added z80 and gbz80 support.
11300
11301         * support/regression/tests/malloc.c (testMalloc): Added.
11302
11303         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11304
11305         * support/regression/tests/bug-478094.c: Added.
11306
11307         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11308
11309 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11310
11311         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11312
11313         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11314
11315         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11316
11317         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11318
11319         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11320
11321 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11322
11323         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11324
11325 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11326
11327         * support/regression/tests/bug-477927.c: Added.
11328
11329         * src/z80/peeph.def: Added minor rules.
11330
11331         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11332
11333         * src/z80/peeph.def: Added jump optimisation modification.
11334
11335 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11336
11337         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11338
11339 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11340
11341         * support/regression/tests/funptrs.c: Added.
11342
11343 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11344
11345         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11346
11347 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11348
11349         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11350
11351         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11352
11353         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11354         (movLeft2ResultLong): Created.
11355
11356         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11357         (joinPushes): Added.  Joins two char pushes into a word push.
11358
11359 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11360
11361         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11362
11363         * support/makebin/Makefile (install): Added creation of dest dir.
11364
11365 2001-10-24 Karl Bongers <karl AT turbobit.com>
11366
11367         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11368
11369 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11370
11371         * src/z80/ralloc.c: Turned off faulty pack for one use.
11372
11373         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11374
11375         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11376
11377 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11378
11379         * support/regression/Makefile: Improved clean
11380
11381         * support/regression/ports/gbz80/spec.mk: Added clean
11382
11383         * support/regression/ports/host/spec.mk: Added clean
11384
11385         * support/regression/ports/z80/spec.mk: Added clean
11386
11387         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11388
11389         * support/regression/ports/mcs51/timeout.c: little improvements
11390
11391 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11392
11393         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11394
11395         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11396
11397         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11398
11399 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11400
11401         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11402
11403         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11404
11405 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11406         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11407
11408         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11409
11410         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11411
11412         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11413
11414         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11415
11416         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11417
11418         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11419
11420         * support/regression/tests/longor.c: Added.
11421
11422 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11423
11424         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11425
11426         * as/mcs51/aslink.h: define PATH_MAX
11427
11428         * as/mcs51/asm.h: define PATH_MAX
11429
11430         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11431
11432         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11433
11434         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11435
11436         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11437
11438         * src/SDCCglobl.h: define PATH_MAX
11439
11440         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11441
11442         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11443
11444 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11445
11446         * src/z80/gen.c (gencjneshort): Fixed
11447
11448         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11449
11450 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11451
11452         * support/regression/tests/bug-469671.c: Added.
11453
11454         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11455
11456 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11457
11458         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11459
11460         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11461
11462 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11463
11464         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11465
11466         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11467
11468         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11469
11470         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11471
11472         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11473
11474         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11475
11476         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11477
11478 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11479
11480         * 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.
11481
11482         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11483
11484         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11485
11486 2001-10-07    <johan AT FRIJA>
11487
11488         * device/lib/gets.c (gets): fixed the return value.
11489
11490 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11491         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11492
11493         * 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.
11494
11495         * 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.
11496
11497         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11498
11499         * src/pic/gen.c: Removed Safe_strdup.
11500
11501         * configure.in: Added option to enable libgc support.
11502
11503         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11504         (bitVectUnion): Optimised.
11505         (bitVectIntersect): Optimised.
11506         (bitVectBitsInCommon): Optimised.
11507         (bitVectCplAnd): Optimised.
11508
11509         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11510
11511 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11512
11513         * src/SDCCmain.c: distinguish between assembler debug and plain options
11514
11515         * src/avr/main.c:   remove standard assembler options
11516
11517         * src/ds390/main.c: remove standard assembler options
11518
11519         * src/mcs51/main.c: remove standard assembler options
11520
11521         * src/port.h: removed "PENDING" comment
11522
11523 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11524
11525         * src/device/lib/_mulint.c  : new, with assember functions
11526
11527         * src/device/lib/_mullong.c : new, with assember functions
11528
11529         * src/device/lib/_divuint.c : with assember functions
11530
11531         * src/device/lib/_divsint.c : with assember functions
11532
11533         * src/device/lib/_divulong.c: with assember functions
11534
11535         * src/device/lib/_divslong.c: with assember functions
11536
11537         * src/device/lib/_moduint.c : with assember functions
11538
11539         * src/device/lib/_modsint.c : with assember functions
11540
11541         * src/device/lib/_modulong.c: with assember functions
11542
11543         * src/device/lib/_modslong.c: with assember functions
11544
11545         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11546
11547         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11548
11549         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11550                                       replaced _mululong.c and _mulslong.c by _mullong.c
11551
11552 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11553
11554         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11555
11556 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11557
11558         * src/SDCCglue.c: test, if win32api is available for MINGW
11559
11560 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11561
11562         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11563         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11564         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11565         * support/regression/ports/host/spec.mk: removed GENERIC
11566         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11567         * support/regression/ports/z80/spec.mk: removed GENERIC
11568
11569 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11570
11571         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11572
11573         * support/regression/tests/bug-467035.c: Created.
11574
11575 2001-10-01    <johan AT FRIJA>
11576
11577         * src/SDCC.y: fixed bug #466586 part 1
11578
11579 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11580
11581         * SDCCicode.c: z80 has no generic pointers
11582         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11583
11584 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11585
11586         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11587
11588 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11589
11590         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11591
11592         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11593
11594 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11595
11596         * configure.in: Fixed up so that ucsim is only configured once.
11597
11598         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11599
11600         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11601         (getPathDifference): As above.
11602
11603         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11604
11605         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11606
11607 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11608         * .version: Updated to 2.3.1
11609
11610         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11611         Added copyright header.
11612
11613         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11614         (assemble): Added support for macro based assembler commands.
11615         (linkEdit): Added support for macro based linker commands.
11616         (preProcess): Changed the pre-processor to use macros.
11617         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11618         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11619
11620         * device/lib/z80/crt0.s: Added module name for debugging.
11621
11622 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11623
11624         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11625
11626         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11627
11628         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11629
11630         * src/Makefile.in: Added SDCCmacro and SDCCutil
11631
11632 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11633
11634         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11635
11636 2001-09-16    <johan AT FRIJA>
11637
11638         * 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.
11639
11640 2001-09-15    <johan AT FRIJA>
11641
11642         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11643         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11644
11645 2001-09-11    <johan AT FRIJA>
11646
11647         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11648
11649 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11650
11651         * support/regression/tests/bug-460444.c: Added test case.
11652
11653         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11654         (genCast): Added justification for all of the asserts.
11655
11656 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11657
11658         * support/regression/support.c: _xdata replaced by xdata
11659
11660         * support/regression/spec.mk: removed _generic
11661
11662 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11663
11664         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11665
11666         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11667         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11668
11669         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11670
11671         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11672
11673         * support/regression/tests/bug-460010.c: Added test case.
11674
11675         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11676
11677 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11678
11679         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11680
11681         * support/regression/testfwk.c: removed workaround for bug #436344
11682
11683         * support/regression/tests/bp.c: use less memory with mcs51
11684
11685         * support/regression/tests/bug-441448.c: use less memory
11686
11687         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11688
11689         * support/regression/collate-results.py: typo
11690
11691 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11692
11693         * support/regression/tests/fetchoverlap.c: Added new test case.
11694
11695         * support/regression/tests/bp.c: Added new test case.
11696
11697         * support/regression/tests/bug-448984.c: Added new test case.
11698
11699         * support/regression/tests/pow2shifts.c: Added new test case.
11700
11701         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11702         (genlshTwo): Fixed right shift for count > 8.
11703
11704         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11705
11706 2001-09-08    <johan AT FRIJA>
11707
11708         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11709
11710 2001-09-07    <johan AT FRIJA>
11711
11712         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11713
11714         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11715
11716 2001-09-06    <johan AT FRIJA>
11717
11718         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11719         * bernhard noted me at this: "() equals to (void)" (1.38)
11720
11721 2001-09-05    <johan AT FRIJA>
11722
11723         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11724
11725 2001-09-04    <johan AT FRIJA>
11726
11727         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11728
11729
11730 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11731
11732         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11733
11734 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11735
11736         * link/z80/aslink.h: Fixed path for PATH_MAX
11737
11738 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11739
11740         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11741
11742         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11743
11744         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11745
11746         * 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.
11747
11748 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11749
11750         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11751         (genCmp): Fixed up genCmp for the GB with longs.
11752
11753         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11754
11755         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11756
11757         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11758
11759         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11760
11761 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11762
11763         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11764
11765 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11766
11767         * 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.
11768
11769         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11770
11771 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11772
11773         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11774
11775         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11776
11777 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11778
11779   * sim/ucsim/configure:    little improvement of Cygwin-detection
11780   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11781   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11782   * support/regression/tests/bug-221100.c: small changes for mcs51
11783   * support/regression/tests/bug-221168.c: small changes for mcs51
11784   * support/regression/tests/bug-227710.c: small changes for mcs51
11785   * support/regression/tests/staticinit.c: small changes for mcs51
11786   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11787   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11788   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11789
11790 $Revision$