* as/z80/Makefile.in: defined CPPFLAGS
[fw/sdcc] / ChangeLog
1 2006-07-03 Borut Razem <borut.razem AT siol.net>
2
3         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in:
4           defined CPPFLAGS
5         * src/port.mk: defined CPPFLAGS, renamed to src/port.mk.in
6         * src/avr/Makefile.in, rc/ds390/Makefile.in, src/ds400/Makefile.in,
7           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
8           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
9           include ../port.mk
10         * sim/ucsim/main_in.mk, sim/ucsim/avr.src/Makefile.in,
11           sim/ucsim/gui.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
12           sim/ucsim/s52.src/Makefile.in, sim/ucsim/sim.src/Makefile.in,
13           sim/ucsim/xa.src/Makefile.in: ignore header files for dependencies
14
15 2006-07-02 Raphael Neider <rneider AT web.de>
16
17         * src/pic16/devices.inc,
18         * device/include/pic16/pic18fregs.h,
19         * device/include/pic16/pic18f4550.h,
20         * device/lib/pic16/pics.all,
21         * device/lib/pic16/libdev/pic18f4550.c: added support for 18f4550
22
23 2006-07-01 Bernhard Held <bernhard AT bernhardheld.de>
24
25         * as/hc08/lkaomf51.c (OutputName),
26         * as/mcs51/lkaomf51.c (OutputName),
27         * as/z80/asmain.c (asmbl),
28         * src/ds390/main.c (asmLineNodeFromLineNode),
29         * src/hc08/ralloc.c (hc08_assignRegisters),
30         * src/mcs51/main.c (asmLineNodeFromLineNode),
31         * src/xa51/ralloc.c (checkRegMask),
32         * src/xa51/gen.c (emitcode),
33         * src/z80/gen.c (_emit2),
34         * src/SDCCast.c (searchLitOp),
35         * src/SDCCglobl.h,
36         * support/packihx/packihx.c,
37         * support/Util/MySystem.c (split_command): fix gcc 4 warnings
38         * src/ds390/gen.c (aopPutUsesAcc),
39         * src/ds390/ralloc.c (getRegBitNoSpil): unused, therefore disabled
40         * support/regression/tests/libmullong.c (mullong_wrapper),
41         * src/SDCCsymt.c (powof2),
42         * src/SDCCast.c,
43         * src/SDCCicode.c: renamed TYPE_WORD by TYPE_TARGET_INT and so on
44         * src/SDCCsymt.h: added TYPE_TARGET_*
45         * src/SDCCutil.c (doubleFromFixed16x16, fixed16x16FromDouble),
46         * src/SDCCutil.h (doubleFromFixed16x16, fixed16x16FromDouble): moved to
47         SDCCast because 1) header problems 2) this is the right place
48         * src/SDCCast.c (doubleFromFixed16x16, fixed16x16FromDouble): added
49         * src/SDCCval.h (doubleFromFixed16x16, fixed16x16FromDouble): added
50         prototype
51
52 2006-06-29 Bernhard Held <bernhard AT bernhardheld.de>
53
54         * src/SDCCicode.h: removed buggy semicolon in unused macro
55         * src/SDCClrange.c (findPrevUseSym, rlivePoint): fixed bug #1486853,
56         search for previous definiton of auto symbols too,
57         (findPrevUse): fixed logic of emitWarnings
58
59 2006-06-26 Raphael Neider <rneider AT web.de>
60
61         * src/pic16/gen.c (genFunction, genEndFunction): also preserve
62           PCLATH and PCLATU on interrupts, potentially fixes #1505141
63
64 2006-06-25 Raphael Neider <rneider AT web.de>
65
66         * device/lib/pic/libm: NEW, added math library functions
67         * device/lib/pic/libsdcc: NEW; added float support functions
68         * device/lib/pic/{Makefile.in,configure.in,configure}: added libm/
69         * device/include/pic/{limits.h,errno.h,sdcc-lib.h,float.h,math.h}:
70           NEW, added math related headers
71         * device/include/asm/pic/features.h: NEW
72         * src/pic/gen.c (emitpcode_real): emit warning on NULL pCodeOp,
73           (popGet): allow larger offsets for AOP_PCODE,
74           (genDataPointerSet): handle literals explicitly, more debug output,
75           (genAssign): fixed for float using aopLiteral ;-)
76         * src/pic/glue.c (pic14createInterruptVect): inserted pagesel before
77           GOTO initialisation routine
78         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): set wasUsed
79           flag on registers, fixes #1469043 (local variables do not work)
80         * src/pic/main.c (_pic14_do_link),
81         * src/pic16/main.c (_pic16_linkEdit): use fullDstFileName if
82           available
83
84 2006-06-25 Borut Razem <borut.razem AT siol.net>
85
86         * device/lib/pic16/libc/stdio/sprintf.c: return the number of
87           characters printed (not including the trailing '\0' used to end
88           output to strings). Problem detected in regression test bug-927659.c.
89           NOTE: printf() family functions should return int instead
90           unsigned int!
91         * device/lib/pic16/libc/stdio/vfprintf.c: "%%" prints "%", unknown
92           specifier are printed as themselves
93         * sdcc/support/regression/tests/bug1057979.c: pic16 printf doesn't
94           support flags, width and precision specifiers
95
96 2006-06-24 Borut Razem <borut.razem AT siol.net>
97
98         * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16
99           to the list of sdcc tagrets not supporting bit type
100         * sdcc/support/regression/tests/bug-905992.c.c: excluded regression
101           testfor pic16 due to bug:
102           [ 1511794 ] pic16: regression test bug-895992.c fails
103
104 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
105
106         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
107         * src/SDCCglue.c (initPointer), fixed bug 1496419
108         * support/regression/tests/bug1496419.c: new, added
109
110 2006-06-22 Borut Razem <borut.razem AT siol.net>
111
112         * support/regression/ports/pic16/support.c: use gpsim usart module from
113           libgpsim_modules library
114
115 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
116
117         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
118         IP0H to IPH0.
119
120 2006-06-19 Raphael Neider <rneider AT web.de>
121
122         * src/pic/glue.h,src/pic16/glue.h: added prototypes
123         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
124           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
125           (pic14printExterns,pic14printPublics,pic16printPublics,
126           pic16_printExterns): use new functions to emit symbols
127           (picglue,pic16glue): emit publics before emitting externs
128         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
129           locally defined functions to avoid bug #1443651
130         * support/regression/tests/bug-716242.c: removed pic16 workaround
131         * support/regression/ports/pic16/spec.mk: ignore errors during build
132
133 2006-06-19 Raphael Neider <rneider AT web.de>
134
135         * src/pic/glue.h: added pic14aopLiteral prototype
136         * src/pic/glue.c (pic14aopLiteral): return unsigned int
137         * src/pic/gen.c: removed stdint.h dependency
138           (aopGet): use Safe_strdup()
139           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
140           (genDataPointerSet): use pic14aopLiteral()
141         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
142           for pic16; thanks to Bernhard and Maarten
143
144 2006-06-18 Borut Razem <borut.razem AT siol.net>
145
146         * support/regression/tests/structflexarray.c: flexible array members
147           not supported by gcc < 3
148         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
149           GUI tool by default
150         * src/pic/gen.c: don't include [p]strdin.h on solaris
151         * support/Util/pstdint.h: addad svn attributes
152         * support/regression/tests/constantRange.c,
153           support/regression/tests/rotate.c: include inttypes.h instead
154           stdint.h on solaris, addad svn attributes
155
156 2006-06-18 Raphael Neider <rneider AT web.de>
157
158         * src/SDCCsymt.c (initCSupport): change return type of divschar to
159           int for PIC16
160         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
161           (pic16_genMinusBits): simplified sign-extension
162           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
163             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
164             adjusted to correctly handle mixed-signed operands, disabled
165             now unused multiplciation routines
166         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
167           (assignResultValue): added argument denoting the size of the result
168             as returned by the function (fixes upcasts in assigning from
169             function calls: char foo(); int i = foo();)
170           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
171             function result to assignResultValue
172           (genMult): disabled inlined multiplication code
173           (genDiv): augmented to also handle the modulus operator, fixed to
174             handle mixed-signed operands correctly
175           (genMod): simply call genDiv, disabled unused code
176           (genAssign): fixed missing (sign-)extension on result
177         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
178             valid char operands, allow signed operands for native code, added
179             division and modulo operator handling
180         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
181
182         As a consequence, onebyte.c (if split into two files) and muldiv.c
183         pass regression tests.
184
185 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
186
187         * doc/Makefile.in: two runs of makeindex seem needed to get
188         correct page references in the index of sdccman.pdf
189         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
190
191 2006-06-17 Borut Razem <borut.razem AT siol.net>
192
193         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
194
195 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
196
197         * doc/sdccman.lyx: updated, added (porting source code, debugging),
198         mentioned ec2drv and paulmon
199
200 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
201
202         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
203           consecutive abs areas
204           (find_empty_space, allocate_space): added map to handle codemap or
205            xdatamap,
206           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
207            absolute idata and xdata
208         * as/mcs51/lkmem.c (summary2): updated legend
209
210 2006-06-16 Raphael Neider <rneider AT web.de>
211
212         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
213
214 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
215
216         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
217           1208515
218         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
219
220 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
221
222         * src/port.h (struct PORT): added field gp_tags, to hold the tag
223         value of generic pointers,
224         * src/avr/main.c,
225           src/ds390/main.c,
226           src/hc08/main.c,
227           src/izt/i186.c,
228           src/izt/tlcs900h.c,
229           src/mcs51/main.c,
230           src/pic/main.c,
231           src/pic16/main.c,
232           src/xa51/main.c,
233           src/z80/main.c: PORT structure, added elements for gp_tags field,
234         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
235         fields in the PORT structure of each port,
236         * src/SDCCast.c (decorateType): allow processing of generic pointers
237         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
238         S_FIXED symbols
239
240 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
241
242         * link/z80/lkgb.c,
243         * link/z80/lkgg.c,
244         * src/pic16/gen.c,
245         * src/pic16/main.c,
246         * src/pic16/pcode.c,
247         * src/pic/main.c,
248         * src/pic/pcoderegs.c,
249         * src/SDCCicode.c,
250         * src/SDCCmain.c,
251         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
252           bug 1504689 on minGW
253
254 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
255
256         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
257
258 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
259
260         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
261
262 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
263
264         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
265           for optimization
266
267 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
268
269         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
270         to a char variable. Fixed bug #1504211
271         * device/include/pic16/adc.h,
272         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
273         and fixed bug #1364390
274
275 2006-06-10 Borut Razem <borut.razem AT siol.net>
276
277         * CVSROOT: removed the CVS left-over
278
279 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
280
281         * as/hc08/asmain.c (asexit),
282         * as/hc08/lkmain.c (lkexit),
283         * as/mcs51/asmain.c (asexit),
284         * as/mcs51/lkmain.c (lkexit),
285         * src/SDCCglue.c (DEFSETFUNC),
286         * src/SDCCmain.c (linkEdit, assemble),
287         * support/librarian/sdcclib.c (AddRel),
288           replaced unlink() by standard C remove()
289         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
290         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
291           gatherImplicitVariables): new, added to fix bug 608752,
292           (createFunction): added gatherImplicitVariables()
293         * src/SDCCast.h: added createRMW prototype
294         * src/SDCCsymt.h (struct symbol): added infertype
295         * support/regression/tests/bug608752.c: new, added
296
297 2006-06-10 Raphael Neider <rneider AT web.de>
298
299         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
300           multibyte dummy reads (fixes #1503234)
301
302 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
303
304         * device/include/mcs51/compiler.h: new, added header file to enable
305           creating common sfr definition header files for different compilers
306
307 2006-06-05 Raphael Neider <rneider AT web.de>
308
309         * src/pic16/{pcode.h,genarith.c}:
310           introduced pCodeOp combining any two pCodeOps (previously only
311           two register operands could be combined), removed pcop2 from
312           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
313         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
314         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
315           rewritten to use new PO_TWO_OPS
316         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
317         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
318           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
319           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
320           (pic16_get_op): embraced return arg to allow #define return(x),
321             added new case for combined opcodes
322           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
323           (pic16_pCode2str,pic16_getRegFrompCodeOp,
324            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
325
326 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
327
328         * src/SDCCval.c (checkConstantRange): added
329         * src/SDCCval.h: added checkConstantRange
330         * support/Util/SDCCerr.c,
331         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
332         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
333         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
334         * src/SDCCast.c (decorateType): added checkConstantRange,
335         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
336         can be emitted with the correct always true/false warning,
337         added optimization for double '!';
338         result of decorateType() must be assigned back to the tree, because
339         decorateType() can change the tree
340         * src/SDCCicode.c (geniCodeLogic),
341         (geniCodeAssign): replaced new checkConstantRange, added warnings,
342         (checkConstantRange): removed, it was only a fragment which never
343         emitted a warning
344         * src/SDCCsymt.c (computeType): fixed promotion for
345         "-1 < (unsigned bit) b"
346         * src/pic/ralloc.c (packRegsForAssign),
347         * src/pic16/ralloc.c (packRegsForAssign),
348         * src/hc08/ralloc.c (packRegsForAssign),
349         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
350         from mcs51
351         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
352         * support/regression/tests/constantRange.c: added
353         * support/valdiag/tests/constantRange.c: added
354         * support/valdiag/valdiag.py: added -DPORT_HOST=1
355
356 2006-06-02 Borut Razem <borut.razem AT siol.net>
357
358         * support/regression/ports/pic16/support.c: increase stack size
359           to 255 bytes
360         * support/regression/Makefile.in: sort tests by name so that the
361           resutlts can be compared on different machines / platforms
362
363 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
364
365         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
366         * src/ds390/gen.c (emitLabel): new, added,
367           (genDjnz): fixed stack overflow bug,
368           (throughout): cosmetic changes to sync with mcs51/gen.c,
369           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
370         * src/mcs51/gen.c (genEndFunction): small optimization,
371           (throughout): cosmetic changes to sync with ds390/gen.c
372
373 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
374
375         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
376           (_print_format): fixed printing pointers
377         * src/mcs51/gen.c (emitLabel, movb): new, added,
378           (genAssign): small optimization,
379           (genDjnz): fixed stack overflow bug,
380           (throughout): replaced sprintf with SNPRINTF,
381           replaced mcs51_regWithIdx with REG_WITH_INDEX,
382           replaced emitcode("mov", "b,...") with MOVB(...),
383           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
384           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
385         * src/mcs51/peeph.def: added rules 140 and 264
386         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
387           so they may get optimized into registers
388
389 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
390
391         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
392           immediately when encountered,
393           (printUsage): always use stderr even on windows
394
395 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
396
397         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
398         (processParms): fixed bug #1247551
399         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
400         parseCmdLine, main): print '--version' to stdout,
401         print 'help' to stdout if --help is given,
402         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
403         arguments are given; fixed --help
404
405 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
406
407         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
408         * support/regression/tests/bug-1493710.c: added
409
410 2006-05-27 Borut Razem <borut.razem AT siol.net>
411
412         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
413           static instead auto
414         * support/regression/ports/pic16/support.c: increase stack size
415           from default 64 bytes to 128 bytes
416         * support/regression/tests/staticinit.c,
417           support/regression/tests/float.c: regression tests fully enabled
418           for pic16 port by putting the initialized data arrays into the code
419           section
420         * support/regression/ports/pic16/spec.mk: don't link default libraries.
421           This was changed by mistake in the previous version.
422
423 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
424
425         * src/pic16/gen.c (genFunction, genEndFunction): some
426         beautifications, fixed bug with falsely restoring FSR2 in large
427         stack model, thanks to Beau E. Cox for reporting the bug
428
429 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
430
431         * debugger/mcs51/break.c,
432         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
433           use %p to print pointers, made address variables unsigned
434         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
435         * debugger/mcs51/symtab.c (parseSymbol): must return something
436         * src/mcs51/gen.c (aopForSym): small optimization,
437            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
438           (freeAsmop): added missing break,
439           (aopPut): removed parameter bvolatile, determine it inside the function,
440           (saveRegisters, unsaveRegisters): small optimization,
441           (genIpush): removed pointless check,
442           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
443           replaced sprintf with SNPRINTF,
444           replaced strcpy with strncpyz,
445           updated aopPut calls,
446           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
447         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
448
449 2006-05-24 Borut Razem <borut.razem AT siol.net>
450
451         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
452           modification of test for the pic16 port, put the array to the code
453           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
454
455 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
456
457         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
458         * support/Util/pstdint.h: added
459
460 2006-05-22 Borut Razem <borut.razem AT siol.net>
461
462         * src/regression/Makefile: removed bool2.c test, added -q linker option
463         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
464           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
465           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
466           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
467           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
468           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
469           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
470           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
471           define SUPPORT_BIT_TYPES 0, removed unused bit variables
472
473 2006-05-22 Raphael Neider <rneider AT web.de>
474
475         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
476           bug #1492360 (problematic due to generic pointers, see code)
477
478 2006-05-22 Borut Razem <borut.razem AT siol.net>
479
480         * support/regression/ports/pic16/specs.mk: removed stack size linker
481           directive
482         * support/regression/tests/array.c,
483           support/regression/tests/bitopcse.c,
484           support/regression/tests/bug-908454.c,
485           support/regression/tests/malloc.c: modified for pic16 regression test
486         * support/regression/tests/bitfields.c:
487           pic16 - excluded bitfileds of size > 8
488         * support/regression/tests/bp.c: pic16 - reduced data size
489         * support/regression/tests/bug-221100.c: pic16 - reduced data size
490         * support/regression/tests/bug-460010.c:
491           pic16 - used the absolute address the fits in memory
492         * support/regression/tests/bug-716242.c:
493           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
494         * support/regression/tests/float.c:
495           pic16 - excluded - data size too big
496         * support/regression/tests/onebyte.c:
497           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
498         * support/regression/tests/shifts.c:
499           pic16 - function names probably have to differ in first X characters
500           (gpasm limitation?)
501         * support/regression/tests/staticinit.c:
502           pic16 - excluded some tests due error: no target memory available for
503           section ".idata"
504
505 2006-05-22 Borut Razem <borut.razem AT siol.net>
506
507         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
508           second try. Thanks Stas Sergeev once more.
509
510 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
511
512         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
513           (genLeftShift, genRightShift): fixed bug 1491627
514         * src/hc08/peeph.def (rules 7, 8.x): added
515         * support/regression/tests/shifts.c (ShiftLeftByParam,
516           ShiftRightByParam, testShiftByParam): added to test variable shifting
517
518 2006-05-20 Raphael Neider <rneider AT web.de>
519
520         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
521         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
522           (allocReg): add only new registers to dynAllocRegs,
523           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
524             #1489055, #1445850, and probably #1483693
525
526 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
527
528         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
529         bug in for-loop that didn't emit the last of CONFIG and ID registers
530
531 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
532
533         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
534           with offset
535         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
536           1489016, 1434401 and 1490124
537         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
538           1489016, 1434401 and 1490124
539
540 2006-05-17 Borut Razem <borut.razem AT siol.net>
541
542         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
543           thanks Stas Sergeev
544
545 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
546
547         * device/include/mcs51/P89c51RD2.h,
548         * device/include/mcs51/P89LPC901.h,
549         * device/include/mcs51/P89LPC922.h,
550         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
551
552 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
553
554         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
555         to fix missing stack pragma in compiled binary object file,
556
557 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
558
559         * support/packihx/configure.in,
560         * support/packihx/configure: removed warning, autoconf >= 2.5x can
561         determine sizeof basic types even while cross compiling
562
563 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
564
565         * src/avr/gen.c (aopop),
566         * src/ds390/gen.c (aopOp),
567         * src/hc08/gen.c (aopOp),
568         * src/mcs51/gen.c (aopop),
569         * src/pic16/gen.c (pic16_aopOp),
570         * src/pic/gen.c (aopOp),
571         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
572         if size of operand is smaller than spill location
573
574 2006-05-12 Borut Razem <borut.razem AT siol.net>
575
576         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
577           have to have CR/LF line endings even if they are checked out on *nix
578           or on WIN32 in cygwin binmode
579
580 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
581
582         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
583         * device/include/ds80c390.h: added sfr16 definitions
584         * src/ds390/gen.c,
585         * src/ds390/gen.h,
586         * src/ds390/main.c,
587         * src/ds390/ralloc.c,
588         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
589           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
590           bit returning functions
591         * support/regression/tests/sfr16.c: enabled test on ds390
592
593 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
594
595         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
596         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
597
598 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
599
600         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
601         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
602           (cl_address_space constructor): removed expensive initialization,
603           (cl_address_space::get_cell): extended for late initialization,
604           (cl_address_space::*): use late initialization,
605           (cl_address_decoder::activate): removed expensive initialization,
606           This reduced regression test running time by 25%
607
608 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
609
610         * packihx/,
611         * configure.in,
612         * configure,
613         * sdcc.dsw,
614         * Makefile.bcc,
615         * Makefile.in,
616         * support/packihx/Makefile.in,
617         * support/packihx/clean.mk,
618         * support/packihx/Makefile.bcc,
619         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
620
621 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
622
623         * src/SDCCval.c (valNot): fix for regression test failure
624           of not.c on big endian hosts
625
626 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
627
628         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
629
630 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
631
632         * device/lib/mcs51/Makefile.in: changed string comparison operator
633           to = for POSIX compliance; == is bash extension
634
635 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
636
637         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
638           kosmonaut_pirx
639
640 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
641
642         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
643         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
644         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
645         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
646         bug report #1478657,
647
648 2006-05-05 Borut Razem <borut.razem AT siol.net>
649
650         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
651           making the html
652
653 2006-05-02 Borut Razem <borut.razem AT siol.net>
654
655         * doc/Makefile.in: removed *.ind dependency since there is no rule to
656           create *.ind, which made make to fail if invoked with -j 2
657
658 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
659
660         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
661           Hubert Sack for patch 1479782
662
663 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
664
665         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
666
667 2006-05-01 Raphael Neider <rneider AT web.de>
668
669         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
670           (create_pic): store only prefix-free device name,
671           (init_pic): check for device names with "16" prefix,
672           (list_valid_pics),
673         * src/pic/device.h (struct PIC_device),
674         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
675             stored device name,
676         * device/include/pic/pic12f{635,675,629,683}.h,
677         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
678         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
679         * device/include/pic/pic16f505.h,
680         * device/lib/pic/libdev/pic16f505.c: removed
681         * device/include/pic/pic14devices.txt: added support for pic12f
682             devices, removed unsupported non 16-bit devices
683             [above changes provided by patch from Zik Saleeba]
684         * src/pic/*, src/pic16/*, device/include/pic16/*,
685           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
686
687 2006-05-01 Borut Razem <borut.razem AT siol.net>
688
689         * configure.in, configure, doc/Makefile.in:
690           sync with nightly build makefile - latex, dvipdf and dvips
691           not needed any more
692
693 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
694
695         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
696         in the library source
697
698 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
699
700         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
701
702 2006-04-28 Raphael Neider <rneider AT web.de>
703
704         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
705         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
706           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
707         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
708
709 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
710
711         * device/lib/pic/libdev/Makefile.in,
712         * device/lib/hc08/Makefile.in,
713         * device/lib/gbz80/Makefile.in,
714         * device/lib/z80/Makefile.in,
715         * device/lib/ds390/Makefile.in,
716         * device/lib/ds400/Makefile.in: added srcdir to include search path,
717         thanks to Borut for the bug report
718         * configure.in,
719         * configure: always create doc/Makefile independent from --enable-doc
720         * Makefile.in: always install from directory doc independent from
721         --enable-doc
722         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
723         removed
724         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
725         * doc/Makefile.in: install *.txt if present
726         * device/include/Makefile.in (install): added installation of pic/*.inc
727         and pic/*.txt files again, they were erroneously removed
728
729 2006-04-28 Raphael Neider <rneider AT web.de>
730
731         * src/pic/{gen.c,main.h,pcode.c},
732         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
733             concerning signedness with casts
734
735 2006-04-28 Raphael Neider <rneider AT web.de>
736
737         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
738             definition of an interrupt handler,
739         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
740             interrupt handler stuff from picglue() to separate routine,
741           (picglue): enabled definition of intr handlers in files w/o main()
742
743 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
744
745         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
746           compilation with MSVC 2005 Express Edition (VC8)
747
748 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
749
750         * device/lib/Makefile: fixed build of gbz80 lib
751
752 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
753
754         * support/regression/tests/bug-460010.c,
755         * support/regression/tests/bug-524691.c,
756         * support/regression/tests/bug-716242.c: removed conditional defines
757           that are already in testfwk.h
758
759 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
760
761         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
762           (AccAXRsh1): added, shift right by 1,
763           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
764            AccAXLrl1
765         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
766
767 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
768
769         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
770         remove cast to same type
771         * src/SDCCast.c (decorateType): fix for RFE 1475742,
772         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
773         * as/z80/Makefile,
774         * link/z80/Makefile: removed, they have moved to
775         Makefile.in files
776         * configure,
777         * configure.in: replaced duplicate message about ucsim by missing sdcpp
778         * install-sh: fix bug #1204398 by setting umask 0022
779         * device/lib/Makefile: separate build of z80 and gbz80 lib
780
781 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
782
783         Enabled VPATH feature: changed nearly all Makefiles (149 files).
784         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
785
786         One basic decision: e.g. src/clean.mk includes further files. In order
787         to make this work there are two solutions:
788         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
789           run configure on them. This way they can use
790           'include $(srcdir)/port-clean.mk'
791         - always include clean.mk by the Makefile at the same level. To avoid
792           that `make clean` tries to include and build Makefile.dep the
793           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
794           implemented, because now even `make uninstall` doesn't create
795           Makefile.in. clean.mk could be eliminated by pasting it in
796           Makefile.in.
797
798         * debugger/mcs51/Makefile.in: build own objects from library sources
799         (SLIB, SDCC) in current directory
800
801         * configure, configure.in: renamed --disable-device-lib-build in
802         --disable-device-lib; added --enable-doc, the required tools are
803         searched by configure; added result message; the toolchain for the
804         belonging ports are now only built, if the port is enabled.
805
806         * support/regression/*: all output is written in directory gen, because
807         the fwk and ports directories don't livet in the build tree using vpath
808
809         * doc/sdccman.lyx: renamed --disable-device-lib-build to
810         --disable-device-lib, added --enable-doc, added section VPATH
811
812         * sim/ucsim/configure.in,
813         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
814         z80 are enabled by default
815
816 2006-04-24 Raphael Neider <rneider AT web.de>
817
818         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
819             to config word, "pic14_"-prefixed some extern functions
820           (pic14_emitConfigWord): emit __config directive(s) if assignment to
821             config word has been found
822         * src/pic/device.h: added prototypes
823         * src/pic/pcode.c: added "pic14_"-prefix where needed
824         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
825             fixup
826         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
827             words,
828           (pic14emitRegularMap): ignore config words,
829           (pic14createInterruptVect): moved generating __config directives away
830           (picglue): have __config directives emitted
831
832 2006-04-24 Borut Razem <borut.razem AT siol.net>
833
834         * doc/Makefile: sync with nightly build makefile
835
836 2006-04-24 Raphael Neider <rneider AT web.de>
837
838         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
839             registers that have not been assigned proper liveranges,
840             fixes #1469504 and #1474602,
841           (pCodeRegOptimizeRegUsage): fixed typo in comment
842
843 2006-04-24 Borut Razem <borut.razem AT siol.net>
844
845         * device/examples/main8051.c: deleted - it was removed from CVS
846           24.mar.2000 and after that modified 18.feb.2001, so it reappered
847           after the transition to Subversion
848         * src/SDCCalloc.h: deleted - it was removed  from CVS
849           3.feb.2001 and after that modified 18.feb.2001, so it reappered
850           after the transition to Subversion
851         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
852           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
853           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
854           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
855
856 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
857
858         * as/asx8051.dsp: added mcs51/strcmpi.h
859         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
860         * as/hc08/aslink.h: updated lnksect prototype
861         * as/hc08/asm.h,
862         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
863         * as/hc08/asmain.c,
864         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
865           (newdot): handle A_ABS
866         * as/hc08/asout.c,
867         * as/mcs51/asout.c (outarea): output address
868         * as/hc08/lkaomf51.c,
869         * as/mcs51/lkaomf51.c: disabled unused array UsageType
870         * as/hc08/m08pst.c,
871         * as/mcs51/i51pst.c,
872         * as/z80/z80pst.c: "ABS" is not A_OVR
873         * as/hc08/lkarea.c (newarea): read a_addr,
874           (lnkarea): added codemap array, sort absolute areas to the front,
875            combine all GSINITx/GSFINAL,
876           (find_empty_space, allocate_space): new functions,
877           (lnksect): return next address, handle absolute sections
878         * as/mcs51/lkarea.c (newarea): read a_addr,
879           lnksect2 prototype changed,
880           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
881           (find_empty_space, allocate_space): new, factored out of lnksect2,
882           (lnksect2): return next address, handle absolute sections
883         * as/hc08/lkhead.c,
884         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
885         * as/hc08/lklibr.c (addfile, fndsym),
886         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
887           index out of range and detect both '\' and '/'
888         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
889         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
890           regression tests (ds390 cannot return bool yet)
891         * doc/sdccman.lyx: changed version number, document changed --no-peep,
892           document critical interrupts on z80, document changed SDCC define
893         * src/asm.c (_asxxxx_mapping): fixed .org directive,
894           (_a390_mapping): added .org directive
895         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
896           (genMultOneByte): fixed warnings
897         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
898           ones
899         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
900         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
901           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
902         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
903         * src/pic16/main.c: removed newReg prototype
904         * src/pic16/pcode.c,
905         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
906           warnings
907         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
908           ones
909         * src/pic16/ralloc.c
910         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
911           to fix warnings
912         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
913           from short to PIC_OPTYPE
914         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
915         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
916           optype from short to PIC_OPTYPE
917         * src/port.h: made int_size unsigned to fix warnings
918         * src/SDCC.y: fixed warning on MSVC
919         * src/SDCCicode.c (getArraySizePtr): return unsigned int
920         * src/SDCCopt.c (convertToFcall): fixed warnings
921         * src/SDCCsymt.h: removed double prototype for genSymName
922         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
923           offset int to fix warnings
924
925 2006-04-22 Borut Razem <borut.razem AT siol.net>
926
927         * doc/sdccman.lyx, */Makefile, */Makefile.in:
928           references to CVS replaced with Subversion
929
930 2006-04-21 Borut Razem <borut.razem AT siol.net>
931
932         * doc/sdccman.lyx, */Makefile, */Makefile.in:
933           references to CVS replaced with Subversion
934
935 2006-04-19 Borut Razem <borut.razem AT siol.net>
936
937         * src/version.awk: adapted for svn
938         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
939           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
940           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
941           /binutils-avr/etc/*.vi, *.jin: removed all properties
942           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
943
944 2006-04-19 Borut Razem <borut.razem AT siol.net>
945
946         * CVS to Subversion migration completed
947
948 2006-04-18 Borut Razem <borut.razem AT siol.net>
949
950         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
951           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
952
953 2006-04-17 Borut Razem <borut.razem AT siol.net>
954
955         * device/include/Makefile.in: added pic/*.inc to the installation
956
957 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
958
959         * support/regression/collate-results.py: fixed output in case of
960         a valdiag error
961         * support/regression/generate-cases.py: fixed splitting of pathnames
962         with dots
963         * as/hc08/lklibr.c (addfile),
964         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
965
966 2006-04-11 Raphael Neider <rneider AT web.de>
967
968         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
969         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
970         * src/pic16/pcode.c (assignValnums): fixed #1460578
971
972 2006-04-11 Raphael Neider <rneider AT web.de>
973
974         * device/lib/pic/libdev/*.c,
975         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
976           fixes #1468739, enables compilation in --std-c99 mode
977         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
978
979 2006-04-11 Raphael Neider <rneider AT web.de>
980
981         * src/pic/device.c (find_device): removed debug output
982           (list_valid_pics): enabled verbose listing of supported devices
983         * device/include/stdbool.h: define bool as char for pic14/16 as well
984
985 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
986
987         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
988
989 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
990
991         * .version: bumped version to 2.5.6
992         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
993
994 2006-04-06 Raphael Neider <rneider AT web.de>
995
996         * .version: bumped version to 2.5.6 (pic14 ABI changed)
997         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
998         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
999           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
1000             pic14_constructAbsMap
1001           (pic14printPublics): declare absolute global symbols as global
1002           (pic14createInterruptVect),
1003         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
1004           (newReg): assume new registers unused, use correct name in
1005             hashtable (reg->name instead of name), more debugLog output
1006         * src/pic/device.h (PIC_device): added fields for verbose output
1007         * src/pic/device.c: moved device definition to pic14devices.txt,
1008             added routines for runtime parsing of pic14devices.txt,
1009             added support for second config word
1010         * src/pic/main.c (_process_pragma): removed #pragma maxram,
1011           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
1012           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
1013           (_pic14_parseOptions): moved pCodeInitRegisters here
1014           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
1015         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
1016           (pCodeInitRegisters): rewrapped comments, perpared new approach to
1017             handling the pseudo stack
1018         * device/lib/Makefile.in: ignore failures in objects-pic16,
1019         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
1020         * device/lib/pic/NEWS: document new dependency on picXXX.lib
1021         * device/lib/pic/Makefile.subdir,
1022         * device/lib/pic16/Makefile.subdir: improved clean rules
1023         * device/lib/pic/libdev/: NEW, pic14 device libraries
1024         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
1025         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
1026         * device/include/Makefile.in: create subdir and install pic14 headers
1027         * device/include/pic/p16f_common.inc: removed unused declarations
1028         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
1029             PICs from inc2h.pl v1.6,
1030             replaced BIT_AT macros with struct declarations
1031         * device/include/pic/pic14devices.txt: definition of supported devices,
1032             all above improvements contributed by Zik Saleeba, thanks
1033         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
1034         * support/scripts/sdcc.nsi: also install pic14 device libraries and
1035             headers
1036
1037 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1038
1039         * device/include/mcs51/c8051f410.h: added interrupt numbers,
1040         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
1041           thanks to Charles Olds
1042
1043 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1044
1045         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
1046
1047 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1048
1049         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
1050         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
1051         * support/regression/bug1464657.c: added, new test
1052
1053 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1054
1055         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
1056           version number
1057
1058 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1059
1060         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
1061           --no-peep and --peep-file <file> are used don't use default rules but
1062           do use the <file>
1063
1064 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1065
1066         * src/mcs51/gen.c (genCall): fixed bug 1457608
1067
1068 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1069
1070         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
1071         changes seem to cause (trigger?) problems with the build system.
1072
1073 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
1074
1075         * src/SDCCpeeph.c (operandsLiteral): new, added,
1076           (callFuncByName): inserted operandsLiteral
1077         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
1078
1079 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1080
1081         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
1082         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
1083
1084 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1085
1086         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
1087           implemented patch 1120823 Thanks to Willy De la Court (normal
1088           interrupts need an interrupt number now if they are made critical),
1089           and enabled nesting of critical functions though not for gbz80
1090           (genCritical, genEndCritical): added functions
1091           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
1092         * src/z80/mappings.i: added "ei" to all mappings
1093
1094 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1095
1096         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
1097         submitted by the Debian SDCC maintainer Aurelien Jarno:
1098         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
1099         archive with gcc 4.1 on mips and wrote the patch"
1100
1101 2006-03-16 Raphael Neider <rneider AT web.de>
1102
1103         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
1104           the left operand is shorter than the result (c* = lit-c* + int),
1105           fixes bug #1450796
1106         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
1107           OP_SYMBOL
1108
1109 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1110
1111         * src/.version: increased version number to 2.5.5
1112         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1113         linking is done manually in pic16 port's _linkEdit,
1114         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1115         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1116         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1117         allocate asmop as AOP_ACC,
1118         (aopForRemat): added parameter 'bool result' in function declaration,
1119         (pic16_aopGet): return AOP_ACC when accessing WREG,
1120         (pic16_popGetTempReg): minor modification,
1121         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1122         'pic16_allocWithIdx',
1123         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1124         calling function in absolute addresses,
1125         (genAssign): take into account AOP_ACC asmop,
1126         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1127         * src/pic16/pcoderegs.c: some debug functions and lines added,
1128         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1129         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1130         register too,
1131         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1132         call to allocReg, not by manually allocating a new one,
1133         (pic16_assignRegisters): now before going through the register
1134         allocating functions mark all registers as free. This eliminates some
1135         side effects resulting from peephole parser done earlier in the backbone
1136
1137 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1138
1139         * src/SDCCicode.c (geniCodeLogic),
1140         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1141
1142 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1143
1144         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1145           (genSend): bugfix, do not allocate and free twice,
1146           (shiftRLong): handle partially overlapping aops
1147         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1148
1149 2006-03-08 Borut Razem <borut.razem AT siol.net>
1150
1151         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1152           for pic16
1153
1154 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1155
1156         * support/regression/tests/bug1409955.c: new, added
1157         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1158         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1159           (aopForSym, aopOp): increment asmop.allocated if reused,
1160           (freeAsmop): decrement asmop.allocated and check for zero instead of
1161           using asmop.freed,
1162           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1163           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1164            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1165            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1166            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1167            genSignedRightShift, genRightShift, genDataPointerGet,
1168            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1169            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1170             in reverse order from allocation,
1171           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1172             added swappedLR to keep track
1173         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1174           pdata & code for GCC, z80, gbz80 & hc08
1175         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1176
1177 2006-03-08 Raphael Neider <rneider AT web.de>
1178
1179         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1180
1181 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1182
1183         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1184         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1185         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1186
1187 2006-03-06 Borut Razem <borut.razem AT siol.net>
1188
1189         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1190           made the linker quiet
1191
1192 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1193
1194         * src/pic16/gen.c (genPcall): fixed bug #1443644
1195         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1196         which dumps before the function entry point a data byte which represents
1197         the number of the local variables used by the specified function, added
1198         'xinst' for initial support for Extended Instruction Support,
1199         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1200         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1201         port->fun_prefix anymore (may change later),
1202         (genFunction, genEndFunction): do not store/restore local registers for
1203         _main (this should take care the --main-return command line option in
1204         the future),
1205         (genOr): removed some legacy pic-port instructions,
1206         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1207         performing operations with SFR's causes data to be written more than
1208         once to each SFR. Perhaps SFRs should be handled in special cases...
1209         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1210         pcode.h
1211         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1212         into account for stack starting position,
1213         (struct OPTIONS pic16_optionsTable): added command line argument
1214         --extended or -y for Extended Instruction Support,
1215         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1216         (deassignLRs): *** perhaps the most important change, old 'for' code
1217         (commented out for reference), didn't account for some registers which
1218         were left marked 'not free' after a pointer operation. The change
1219         reduces register usage a lot in some cases
1220
1221 2006-03-04 Borut Razem <borut.razem AT siol.net>
1222
1223         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1224           _clean
1225         * support/regression/tests/bug-524697.c: decreased array size for
1226           mcs51 to fit into the internal RAM
1227         * support/regression/Makefile.in: a little bit more verbose
1228
1229 2006-03-03 Borut Razem <borut.razem AT siol.net>
1230
1231         * support/regression/fwk/lib/testfwk.c,
1232           support/regression/fwk/include/testfwk.h: introduced function
1233           _prints(), nonrecursive _printn(), call _initEmu() from main()
1234         * support/regression/ports/gbz80/support.asm,
1235           support/regression/ports/ucz80/support.asm,
1236           support/regression/ports/z80/support.asm,
1237           support/regression/ports/ds390/support.c,
1238           support/regression/ports/hc08/support.c,
1239           support/regression/ports/host/support.c,
1240           support/regression/ports/mcs51/support.c,
1241           support/regression/ports/xa51/support.c: added empty _initEmu()
1242           function
1243         * support/regression/ports/pic16/gpsim.cmd,
1244           support/regression/ports/pic16/spec.mk,
1245           support/regression/ports/pic16/support.c,
1246           support/regression/Makefile.in: added pic16 regression test
1247
1248 2006-03-01 Raphael Neider <rneider AT web.de>
1249
1250         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1251           genConstPointerGet): use safe way of generating MOVFF to cover
1252             literals as well as registers, fixes bug #1440527
1253         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1254             dereference
1255           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1256             more correctly, fixes bug #1232186
1257           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1258         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1259             gplink guess the correct processor in more cases, applied patch
1260             from Till Riedel attached to and fixing bug #1436552
1261
1262 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1263
1264         * support/regression/tests/array.c: added, contains check for #1434401
1265         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1266
1267 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1268
1269         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1270         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1271         * device/include/mcs51/c8051f326.h,
1272         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1273         * device/include/mcs51/c8051f000.h,
1274         * device/include/mcs51/c8051f018.h,
1275         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1276           PCON_IDLE,PCON_STOP and added sfr16 definitions
1277
1278 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1279
1280         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1281           genGetWord): fixed bug 1409955
1282
1283 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1284
1285         * device/include/hc08/mc68hc908gp32.h,
1286         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1287
1288 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1289
1290         * src/SDCCast.c (constExprValue): return NULL if not a value
1291         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1292         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1293         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1294
1295 2006-02-13 Borut Razem <borut.razem AT siol.net>
1296
1297         * src/regression/ptrarg.c: added, fails due to bug #1430967
1298         * src/regression/Makefile: ptrarg.c added, ...
1299
1300 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1301
1302         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1303         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1304
1305 2006-02-11 Borut Razem <borut.razem AT siol.net>
1306
1307         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1308           print "Processor: xxx" message to stdout only if --verbose
1309
1310 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1311
1312         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1313         * support/regression/tests/bug1426356.c: added
1314         * support/regression/tests/bitfields.c: removed 2 tests
1315
1316 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1317
1318         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1319         * device/include/mcs51/c8051f330.h,
1320         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1321           PCON_IDLE,PCON_STOP and added sfr16 definitions
1322         * device/lib/_divsint.c,
1323         * device/lib/_divuint.c,
1324         * device/lib/_divulong.c,
1325         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1326           register bank bug for small stackauto
1327
1328 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1329
1330         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1331
1332 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1333
1334         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1335         * all.dsp: corrected several bin paths
1336         * device/include/mcs51/c8051f120.h,
1337         * device/include/mcs51/c8051f300.h,
1338         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1339           to PCON_IDLE,PCON_STOP
1340         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1341         * device/lib/printf_large.c (output_float): fixed bug 1388703
1342         * support/regression/tests/bug1057979.c: added test for bug 1388703
1343
1344 2006-02-08 Raphael Neider <rneider AT web.de>
1345
1346         * src/pic/pcode.c (pciTRIS): fixed typo,
1347           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1348           (LinkFlow): fixed handling of flows that end in a call,
1349           (ReuseReg): perform safety check earlier
1350         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1351             to work with flows at the beginning of a pBlock,
1352             fixes #1426557 (Symbol not previously defined),
1353           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1354             usage information
1355           (RemoveUnusedRegisters): update register usage info
1356         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1357             created, reuse existing ones instead
1358         * src/pic/gen.c (genPcall): fixed #1424719
1359
1360 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1361
1362         * link/z80/lkmain.c,
1363         * link/z80/lklex.c,
1364         * link/z80/lkdata.c,
1365         * link/z80/aslink.h: fixed build on current cygwin:
1366         replaced getline() by lk_getline()
1367
1368 2006-02-01 Borut Razem <borut.razem AT siol.net>
1369
1370         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1371           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1372           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1373           src/regression/bool1.c, src/regression/bool2.c,
1374           src/regression/bool3.c, src/regression/call1.c,
1375           src/regression/compare.c, src/regression/compare10.c,
1376           src/regression/compare2.c, src/regression/compare3.c,
1377           src/regression/compare4.c, src/regression/compare5.c,
1378           src/regression/compare6.c, src/regression/compare7.c,
1379           src/regression/compare8.c, src/regression/compare9.c,
1380           src/regression/configword.c, src/regression/for.c,
1381           src/regression/inline.c, src/regression/mult1.c,
1382           src/regression/nestfor.c, src/regression/or1.c,
1383           src/regression/pointer1.c, src/regression/ptrfunc.c,
1384           src/regression/rotate1.c, src/regression/rotate2.c,
1385           src/regression/rotate3.c, src/regression/rotate4.c,
1386           src/regression/rotate5.c, src/regression/rotate6.c,
1387           src/regression/rotate7.c, src/regression/string1.c,
1388           src/regression/struct1.c, src/regression/sub.c,
1389           src/regression/sub2.c, src/regression/switch1.c,
1390           src/regression/while.c, src/regression/xor.c,
1391           src/regression/create_stc, src/regression/simulate,
1392           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1393           regression tests
1394         * src/regression/gpsim_assert.h: added
1395
1396 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1397
1398         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1399         ((void (code *) (void)) 0) ();
1400         * as/hc08/aslex.c,
1401         * as/hc08/aslink.h,
1402         * as/hc08/asm.h,
1403         * as/hc08/asmain.c,
1404         * as/hc08/lkdata.c,
1405         * as/hc08/lklex.c,
1406         * as/hc08/lkmain.c,
1407         * as/mcs51/aslex.c,
1408         * as/mcs51/aslink.h,
1409         * as/mcs51/asm.h,
1410         * as/mcs51/asmain.c,
1411         * as/mcs51/lkdata.c,
1412         * as/mcs51/lklex.c,
1413         * as/mcs51/lkmain.c,
1414         * as/z80/aslex.c,
1415         * as/z80/asm.h,
1416         * as/z80/asmain.c: fixed build on current cygwin:
1417         replaced getline() by as_getline()
1418
1419 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1420
1421         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1422         declarator in the symbol chain
1423         * src/SDCCsymt.h,
1424         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1425         parameter list for function pointers
1426         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1427         * support/regression/tests/bug-716242.c: added
1428
1429 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1430
1431         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1432         offset if possible
1433         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1434
1435 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1436
1437         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1438         inifinitely recurseable, added static
1439         * support/regression/tests/bug-1408066.c: added
1440
1441 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1442
1443         * src/SDCCicode.h,
1444         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1445         renamed, added possibility to create "postLoopLbl"-labels
1446         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1447         newiTempLoopHeaderLabel
1448         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1449         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1450         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1451         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1452         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1453         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1454         (basicInduction): fixed bug #136564, made static,
1455         (loopInduction): changed parameter of basicInduction, made static,
1456         (addPostLoopBlock): added
1457         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1458         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1459         findLoopEndSeq
1460         * support/regression/tests/bug-136564.c: added
1461         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1462         --std-sdcc99 to LIBSDCCFLAGS
1463
1464 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1465
1466         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1467         while loop
1468         * support/regression/tests/bug-1406131.c: added
1469
1470 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1471
1472         * src/SDCCast.c (decorateType): fix promotion of unary minus
1473         * src/SDCCsymt.c (computeType): beautified
1474         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1475         (valUnaryPM, valComplement): fix sign and promotion,
1476         (valNot): ANSI: result type is int (SDCC: unsigned char)
1477         * support/regression/tests/uminus.c: speedup by removing superflous
1478         test case 'int'
1479         * support/regression/tests/onebyte.c: added promotion and signedness
1480         tests for unary minus
1481         * support/regressions/tests/bug-477927.c: disable warning about
1482         uninitialized variables
1483         * support/regression/tests/not.c: added
1484
1485 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1486
1487         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1488         * src/mcs51/gen.c (gen51Code): show final register usage after
1489         fillGaps in asm with --i-code-in-asm
1490         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1491         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1492         incUsed, rliveClear, adjustIChain): made static,
1493         (setFromRange): excluded because it's unused,
1494         (findPrevUseSym, markWholeLoop): added,
1495         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1496         through all branches of predecessors enables sdcc to emit the warning
1497         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1498         (rlivePoint): made static, added parameter emitWarnings which is only
1499         true during the first run out of two,
1500         (findRecursiveSucc, findRecursivePred): removed,
1501         (computeLiveRanges): made static, added parameter emitWarnings,
1502         (dumpIcRlive): added for debugging only
1503         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1504         removed prototype of setFromRange()
1505         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1506         in call of computeLiveRanges()
1507         * support/regression/tests/bug-895992.c: added
1508         * support/regression/tests/bug-971834.c: added
1509         * support/valdiag/tests/bug-895992.c: added
1510         * support/valdiag/tests/bug-971834.c: added
1511
1512 2005-12-18 Raphael Neider <rneider AT web.de>
1513
1514         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1515           (genUnpackBits): improved code for direct operands,
1516           (genPackBits): improved code for literal assignment to bitfields
1517             and for direct destination operands (no FSR indirection),
1518             prevented redundant AND, fixes #1362800,
1519           (AccLsh): added parameter to disable masking of the result
1520         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1521           skip instructions with side-effects (like incfsz),
1522           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1523         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1524         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1525           fixes #1375263
1526
1527 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1528
1529         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1530         volatile variables as spill location
1531
1532 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1533
1534         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1535         replacing literals
1536         * support/regression/tests/bug-1376320.c: added
1537
1538 2005-12-08 Raphael Neider <rneider AT web.de>
1539
1540         * src/pic/device.c: renamed is_shared to pic14_is_shared
1541         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1542         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1543           (is_valid_identifier): added for above workaround
1544
1545 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1546
1547         * device/lib/Makefile.in: fixed to enable port-specific-objects
1548         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1549           char, thanks Hubert Sack
1550         * doc/sdccman.lyx: documented --xstack-loc,
1551           elaborated a bit more on interrupts and pitfalls,
1552           removed "setjmp/longjmp unsupported",
1553           documented some unsupported C99 features
1554         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1555         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1556           if, thanks Hubert Sack
1557         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1558         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1559           make make_library
1560         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1561           regression tests can report resource usage (rfe 700441)
1562         * support/regression/collate-results.py: report resource usage
1563         * support/regression/ports/ds390/spec.mk,
1564         * support/regression/ports/hc08/spec.mk,
1565         * support/regression/ports/mcs51/spec.mk,
1566         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1567         * support/regression/ports/ds390/uCsim.cmd,
1568         * support/regression/ports/hc08/uCsim.cmd,
1569         * support/regression/ports/mcs51/uCsim.cmd,
1570         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1571         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1572           library, use the default one
1573         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1574           building the library
1575
1576 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1577
1578         * config.dsp: added dependency on .version and configure_vc.awk
1579         * device/include/setjmp.h: updated for --stack-auto and --xstack
1580         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1581         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1582         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1583         * device/lib/libsdcc.lib: added _setjmp
1584         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1585           (decorateType): fixed bug 1372851,
1586           (optimizeGetHbit): fixed warning
1587         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1588           array initialisation
1589         * support/regression/tests/bug1057979.c: added test for bug 1358192
1590         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1591
1592 2005-12-03 Borut Razem <borut.razem AT siol.net>
1593
1594         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1595           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1596
1597 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1598
1599         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1600         createIval): implement symbol independant "flexible array member",
1601         (createIvalCharPtr): implemented flexible array initialisation with a
1602         string
1603         * src/SDCCsymt.c (copyStruct): removed,
1604         (getSize): fixed misleading comment,
1605         (getAllocSize): removed, the additional allocation size is now in
1606         sym->flexArrayLength,
1607         (checkStructFlexArray): new, syntax checks for flexible array members,
1608         (compStructSize): added syntax checks for "flexible array members"
1609         (copyStruct): removed,
1610         (copyLinkChain): removed inefficient fix for bug 770487
1611         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1612         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1613         symbol->flexArrayLength
1614         * src/SDCCerr.c,
1615         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1616         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1617         * support/regression/tests/structflexarray.c: added
1618         * support/valdiag/tests/structflexiblearray.c: added
1619
1620 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1621
1622         * src/SDCCast.c (decorateType): fixed bug 1368489
1623         * support/Util/SDCCerr.c,
1624         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1625
1626 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1627
1628         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1629           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1630
1631 2005-11-27 Borut Razem <borut.razem AT siol.net>
1632
1633         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1634           support/cpp2/mkdeps.h: added command line option
1635           -obj-ext=<extension> to SDCPP to define object file externion, used
1636           for generation of make dependencies (-M)
1637         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1638
1639 2005-11-26 Borut Razem <borut.razem AT siol.net>
1640
1641         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1642           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1643           added pic and pic16 libraries
1644
1645 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1646
1647         * device/include/float.h: Corrected typo in prototype of __fsgt
1648
1649 2005-11-25 Borut Razem <borut.razem AT siol.net>
1650
1651         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1652           added creation of model-mcs51-stack-auto libraries
1653
1654 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1655
1656         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1657         and fields-list too
1658         * src/SDCCast.c (createIvalArray): removed obsolete comment
1659
1660 2005-11-24 Borut Razem <borut.razem AT siol.net>
1661
1662         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1663           added missing device/lib/mcs51/crt*.asm sources
1664
1665 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1666
1667         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1668
1669 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1670
1671         * device/lib/_fs2schar.c,
1672         * device/lib/_fs2sint.c,
1673         * device/lib/_fs2slong.c: optimized inline asm
1674
1675 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1676
1677         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1678           Better handling of floats between -1.0 and 0.0.
1679
1680 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1681
1682         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1683           (the missing "if"s prohibited removal of redundant labels)
1684
1685 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1686
1687         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1688           Properly convert floats between -1.0 and 0.0 to long, int, and char
1689           types (max integer value of negative floats tends to zero).
1690         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1691           Removed changes made so to work properly with floats between
1692           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1693           and _fs2char.c
1694
1695 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1696
1697         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1698         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1699         (genCast) cosmetic change
1700         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1701         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1702         from mcs51
1703         * support/regression/tests/bitfields (testSignedBitfields): added
1704
1705 2005-11-18 Borut Razem <borut.razem AT siol.net>
1706
1707         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1708         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1709           introduced SILENT option to make building of pic16 libraries less
1710
1711 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1712
1713         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1714           Now they work properly with floats between -1.0 and 0.0
1715         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1716
1717 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1718
1719         * src/SDCCicode.c (printOperand): added missing else
1720
1721 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1722
1723         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1724         reformatted for better readability
1725         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1726         signed bitfields
1727
1728 2005-11-17 Borut Razem <borut.razem AT siol.net>
1729
1730         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1731           introduced SILENT option to make building of pic16 libraries less
1732           verbose - used for nightly snapshot build
1733         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1734           available on Win32 platforms.
1735         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1736           medium, large, pic and pic16
1737
1738 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1739
1740         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1741           printf("%f"...) sets fraction to zero.
1742
1743 2005-11-16 Raphael Neider <rneider AT web.de>
1744
1745         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1746           fixes #1357221
1747         * src/pic/gen.c (genIfx): implemented for CARRY bit
1748         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1749           to generic pointers, fixes #1357332,
1750           (pic16_movLit2f): NEW,
1751           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1752
1753 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1754
1755         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1756
1757 2005-11-11 Raphael Neider <rneider AT web.de>
1758
1759         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1760         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1761           compute pointer's type from operand,
1762           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1763           improved single bit reads, fixes bug #1353379
1764
1765 2005-11-09 Borut Razem <borut.razem AT siol.net>
1766
1767         * support/scripts/sdcc.nsi: added lib/pic to the package
1768
1769 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1770
1771         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1772
1773 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1774
1775         * support/regression/tests/bug1348008.c: added
1776         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1777         * support/regression/tests/bug1337835.c: updated comment
1778
1779 2005-11-06 Borut Razem <borut.razem AT siol.net>
1780
1781         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1782           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1783           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1784           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1785           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1786           dynamic construction of cl_error_class and derivates - 2.nd try
1787
1788 2005-11-05 Borut Razem <borut.razem AT siol.net>
1789
1790         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1791           bug, which caused Bus Errors on sparc solaris
1792
1793 2005-11-04 Borut Razem <borut.razem AT siol.net>
1794
1795         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1796           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1797           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1798           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1799           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1800           and derivates to resolve the initialization problem on OSX
1801
1802 2005-11-02 Borut Razem <borut.razem AT siol.net>
1803
1804         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1805           corrected typo - #include <winsock2.h>
1806
1807 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1808
1809         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1810           (_asxxxx_mapping): added org directive for future enhancements
1811
1812 2005-11-01 Borut Razem <borut.razem AT siol.net>
1813
1814         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1815           enabled sockets on WIN32
1816         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1817
1818 2005-10-31 Borut Razem <borut.razem AT siol.net>
1819
1820         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1821           WIN32 backslash path delimiters should be escaped when used in C strings
1822         * support/regression/tests/bitfields.c: exclude failing assertions for
1823           __CYGWIN32__ and __MINGW32__ hosts
1824
1825 2005-10-30 Borut Razem <borut.razem AT siol.net>
1826
1827         * src/SDCCutil.c: corrected double comparison typo
1828
1829 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1830
1831         * device/lib/medium/Makefile: added for new memory model medium
1832         * device/include/asm/mcs51/features.h: updated for medium/pdata
1833         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1834           added Multiply & Accumulate sbit's and MAC0_PAGE define
1835         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1836         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1837         * device/lib/_mullong.c: update for medium model
1838         * device/lib/incl.mk: added medium model
1839         * doc/sdccman.lyx: documented medium model
1840         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1841         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1842         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1843         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1844           (allocParms): set SCLS and OCLS to pdata for medium model
1845         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1846           for pdata,
1847           (powof2): return <0 if not power of 2
1848         * src/avr/gen.c (genBitWise): use updated powof2
1849         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1850           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1851           (shiftLLeftOrResult): use B if necessary
1852         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1853         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1854         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1855         * support/regression/Makefile.in: added test-mcs51-medium
1856         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1857
1858 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1859
1860         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1861         specifier unsigned
1862         * device/lib/time.c (mktime): fixed bug 1334315
1863
1864 2005-10-28 Raphael Neider <rneider AT web.de>
1865
1866         * device/include/pic/p16f_common.inc: added common declarations
1867         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1868
1869 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1870
1871         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1872           (aopPutUsesAcc): added to predict accumulator use,
1873           (assignResultValue): save acc if necessary,
1874           (genMinusDec): store result if indirectly addressed,
1875           (genDivOneByte):  save acc if necessary,
1876           (movLeft2Result): bugfix if left already in acc,
1877           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1878             attention to accumulator use (esp. pdata),
1879           (genReceive): receive pdata correctly
1880         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1881         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1882
1883 2005-10-27 Raphael Neider <rneider AT web.de>
1884
1885         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1886
1887 2005-10-27 Raphael Neider <rneider AT web.de>
1888
1889         * .version: changed version to 2.5.4
1890         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1891         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1892           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1893             arithmetics support routines
1894         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1895         * device/lib/Makefile.in: also create installdir for pic
1896
1897         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1898           pic14 port as well
1899         * src/pic/device.c (dump_sfr): rewritten to delegate register
1900           placement to the linker (use `extern sym' rather than sym EQU addr),
1901           (validAddress): fixed to check last specified address
1902         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1903           (popGetLit): truncate literal value to 8 bit,
1904           (popGet): moved assert to more appropriate place
1905           (popGetExternal): create pCode operand from and mark the according
1906             symbol as being `extern'
1907           (popGetAddr): added sanity check on immediate's offset, provide
1908             GPOINTER tag on demand
1909           (aopPut): fixed for immediates,
1910           (mov2w_op): move operand's address or contents to WREG (depending on
1911             operand type), safer variant of mov2w,
1912           (movwf,call_libraryfunc): NEW, handy abbreviations,
1913           (get_argument_pcop,get_return_val_pcop,pass_argument,
1914           get_returnvalue): interface for accessing function parameters and
1915             return values,
1916           (assignResultValuei,genRet): use new parameter/return value interface
1917           (pic14_getDataSize): back to old version handling generic pointers,
1918           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1919             provided implementation and/or fixed old one,
1920           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1921             calls, removed legacy 8051 reference code
1922           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1923           (loadSignToC): NEW, move the operands sign bit to CARRY,
1924           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1925             genRightShiftSigned, accepts negative shift counts,
1926           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1927           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1928             generic pointers, __data pointers and __code pointers,
1929           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1930             and signed bitfields, limit bitfields to 8 bit,
1931           (genDataPointerGet): fixed number of bytes read,
1932           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1933           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1934             pointers to constant data are no longer assumed to point to __code
1935             space, removed invalid pointer types,
1936           (bitpatternFromVal): retrieve the PICs representation of an integer
1937             or float literal,
1938           (genDataPointerSet): fixed assigning to po_immediate operands,
1939           (genGenPointerSet): implemented as library call,
1940           (genIfx): fixed incorrect condition,
1941           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1942             provide GPOINTER tag according to destination's storage class,
1943           (genCast): added code to handle casting to generic pointers, added
1944             sign-/zero extension of the result
1945           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1946         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1947         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1948           extend the result
1949         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1950           address/register resides in the shared banks
1951           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1952             put all variables into separate sections (have the linker arrange
1953             them)
1954           (picglue): put init code and interrupt handlers in separate sections
1955         * src/pic/main.c: added port specific options table, modified to PORT
1956           structure to make GPOINTERs 3 byte, added pic14_options
1957           (_pic14_do_link): private linking routine (update paths to libraries,
1958             add libsdcc.lib by default)
1959         * src/pic/main.h: declare pic14_options
1960         * src/pic/pcode.c: fixed instructions i/o relations,
1961           (RegCond): reverted to correct version,
1962           (newpCodeOpLit): truncate literals to 8 bit,
1963           (genericPrint): added debug output,
1964           (getRegFromInstruction): fixed for various operand types, simplified
1965           (BuildFlow): fixed broken handling of isntructions with labels
1966           (LinkFlow): start at last instruction in flow (skip trailing comments),
1967             pass the flow on to the next instruction after CALL
1968           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1969           (insertPCodeInstruction): fixed inserting after a skip instruction,
1970           (DoBankSelect): fixed for labeled instructions
1971           (OptimizepBlock): honor --nopeep switch
1972           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1973         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1974         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1975           (pCodeOptime2pCodes): allow disabling this optimization via
1976             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1977             but is still buggy), started implementation of a dataflow based
1978             pCode optimization (CSE + dead code elimination)
1979           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1980         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1981           names are independant of the stack location and therefore portable across
1982           devices
1983
1984 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1985
1986         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1987           (selectSpil): fixed bug 1337835 by not spilling bit variables
1988         * support/regression/tests/bug1337835.c: added test for this bug
1989         * src/mcs51/peeph.def: restart after rule 3.c,
1990           addded rules 263.x to optimize loading constants
1991
1992 2005-10-26 Raphael Neider <rneider AT web.de>
1993
1994         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
1995         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
1996           (genAssign): emit warning when casting literals to generic pointer
1997             type, also applies when taking the address of a fixed variable,
1998           (genCast): improved casting to generic pointers
1999         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
2000           extern variables, added verbose error message
2001         * device/include/pic16/{string.h,errno.h}: added #pragma library c
2002
2003 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
2004
2005         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
2006         carry must be complemented too
2007         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
2008         could be emitted by genMinus
2009         * src/SDCCval.c (constVal): fixed bug 1305065
2010
2011 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
2012
2013         * src/SDCCast.c (addCast): added promotion for bit variables
2014         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
2015         promotion casts + optimisation
2016         (optimizeGetWord): fix warning 'i' might be used uninitialized
2017         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
2018         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
2019
2020 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
2021
2022         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
2023         all chars are promoted to int; promotion should be handled in SDCCast.c
2024
2025 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2026
2027         * device/lib/_strcmp.c: Fixed bug 1326457
2028
2029 2005-10-11 Raphael Neider <rneider AT web.de>
2030
2031         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
2032         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
2033
2034 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2035
2036         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
2037         * support/regression/tests/sfr16.c: added test for the sfr32 bug
2038
2039 2005-10-04 Raphael Neider <rneider AT web.de>
2040
2041         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
2042           device/lib/pic16/pics.all: added pic18f1320
2043         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
2044
2045 2005-09-30 Raphael Neider <rneider AT web.de>
2046
2047         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
2048         * src/pic16/devices.inc: NEW, provides device descriptions
2049         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
2050
2051 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
2052
2053         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
2054           GETHBIT
2055
2056 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
2057
2058         * doc/sdccman.lyx: updated Highest Order Bit documentation,
2059           documented Any Order Bit, Higher Order Byte and Higher Order Word
2060         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
2061         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
2062           (optimizeGetAbit): new, to get any bit, not only the high bit,
2063           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
2064           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
2065           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
2066           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
2067             RIGHT_OP: also try GETBYTE, GETWORD optimization,
2068             GETABIT, GETBYTE, GETWORD: decorate them,
2069           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
2070           (ast_print): added GETABIT, GETBYTE, GETWORD
2071         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
2072         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
2073           (geniCodeBinary): new generic binary icode,
2074           (ast2iCode): added GETABIT, GETBYTE, GETWORD
2075         * src/port.h: updated comment for PORT.hasExtBitOp
2076         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
2077           (genGetByte): new, to get a single byte,
2078           (genGetWord): new, to get a word from a long,
2079           (gen51Code): added GETABIT, GETBYTE, GETWORD
2080         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
2081
2082 2005-09-23 Raphael Neider <rneider AT web.de>
2083
2084         * configure.in, configure: have device/lib/pic configured
2085         * device/lib/Makefile.in: added model-pic14
2086         * device/lib/clean.mk: added pic/ to clean rule
2087         * device/lib/pic: added rudimentary pic14 library providing support
2088           functions for multiplication/division/generic pointer access
2089         * src/SDCCopt.c (convilong): mark support functions as extern
2090           for pic14 port as well
2091         * src/pic/gen.c (genMult): added assertions,
2092           (genpic14Code): emit warning on unhandled iCodes
2093         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
2094         * src/pic/pcode.c (pCodeOpCopy),
2095         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
2096           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
2097           SFR_REGISTER}), made safe for future extensions
2098         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
2099           instructions even if preceeded by SKIP instructions (also remove
2100           them); removed unused code
2101         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
2102           prevents leaving parts of the structure uninitialized after copying
2103
2104 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
2105
2106         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
2107           ago by me
2108         * support/regression/tests/addsub.c: added test for the bug
2109
2110 2005-09-21 Raphael Neider <rneider AT web.de>
2111
2112         * device/include/pic16/pic18f1220.h,
2113           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2114         * device/lib/pic16/Makefile.rules: added missing opening paren
2115         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2116           are provided in genutils.c,
2117           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2118           operand/result sizes,
2119           (genCmp): assert on NULL pointers first, then check deref'ed values
2120         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2121           result size
2122
2123 2005-09-18 Raphael Neider <rneider AT web.de>
2124
2125         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2126           as these are now unused,
2127           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2128         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2129           local, avoids uninitialized pointer dereference on r->name
2130         * src/pic16/ralloc.c (newReg): fixed indentation
2131
2132 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2133
2134         * src/SDCCval.c (constVal): fixed bug 730366
2135         * support/Util/SDCCerr.c,
2136         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2137
2138 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2139
2140         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2141
2142 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2143
2144         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2145
2146 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2147
2148         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2149           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2150         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2151           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2152         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2153         * packihx/packihx.c (hexDigit): made c unsigned char
2154         * as/mcs51/lklibr.c (fndsym),
2155         * link/z80/lkgb.c (gb),
2156         * link/z80/lklibr.c (fndsym),
2157         * link/z80/lkrloc.c (relr),
2158         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2159         * src/SDCC.lex (checkCurrFile, process_pragma),
2160         * src/SDCCglue.c (spacesToUnderscores),
2161         * src/SDCCmain.c (setParseWithComma, processFile),
2162         * src/asm.c (tvsprintf, printCLine),
2163         * src/avr/gen.c (emitcode, aopPut),
2164         * src/ds390/gen.c (emitcode),
2165         * src/hc08/gen.c (emitcode, emitinline),
2166         * src/mcs51/gen.c (emitcode, genInline),
2167         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2168           tokenizeLineNode),
2169         * src/pic/ralloc.c (debugLog),
2170         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2171           tokenizeLineNode),
2172         * src/pic16/ralloc.c (debugLog),
2173         * src/z80/main.c (_process_pragma):
2174            made all ctype.h function calls safe
2175         * src/SDCCopt.c: include math.h for fabs
2176         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2177           and used them throughout the code to make ctype.h function calls safe
2178         * src/ds390/main.c (asmLineNodeFromLineNode),
2179         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2180         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2181            unsigned char*
2182         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2183           (newpCodeAsmDir): made ctype.h function calls safe
2184         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2185           pic16_emitcode):  made lbp unsigned char*
2186         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2187           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2188         * src/xa51/gen.c (emitcode),
2189         * src/z80/gen.c (_emit2): made lbp unsigned char*
2190         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2191            char*
2192
2193 2005-09-05 Raphael Neider <rneider AT web.de>
2194
2195         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2196           access bank splitpoint
2197
2198 2005-09-05 Raphael Neider <rneider AT web.de>
2199
2200         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2201
2202 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2203
2204         * .version: changed to version 2.5.3
2205         * doc/sdccman.lyx: changed version to 2.5.3,
2206           documented --codeseg and --constseg and pragma codeseg and constseg,
2207           documented bit parameters (reentrant) and bit returning
2208         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2209            currFunc->recvSize, but is this ok for all ports?
2210           (ast2iCode): result of ~ on unsigned char must be cast to int for
2211            bool to work
2212         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2213           function pointers in bit space
2214         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2215           (processFuncArgs): call port.reg_parm() with reentrancy info
2216         * src/port.h,
2217         * src/avr/main.c,
2218         * src/ds390/main.c,
2219         * src/hc08/main.c,
2220         * src/pic/main.c,
2221         * src/pic16/main.c,
2222         * src/xa51/main.c,
2223         * src/z80/main.c: port.reg_parm prototype extended with
2224           "bool reentrant" parameter
2225         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2226           options.stackAuto for allocating bit register parameters
2227         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2228           (genSend): set BitBankUsed if it is,
2229           (selectRegBank): factored out of genCall for use in genPcall,
2230           (genCall): removed redundant dtype assignmen, use selectRegBank,
2231           (genPcall): handle returning in Carry properly, save in F0 if needed,
2232           (genReceive): handle bit register parameters
2233         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2234           (mcs51_assignRegisters): enable bit registers for all reentrant
2235            functions and don't set BitBankUsed unconditionally
2236         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2237         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2238         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2239
2240 2005-08-27 Borut Razem <borut.razem AT siol.net>
2241
2242         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2243         ppc-osx (Darwin) does not support -u option. It seems that it is
2244         supported only on Linux - GNU cp
2245
2246 2005-08-25 Borut Razem <borut.razem AT siol.net>
2247
2248         * sim/ucsim/gui.src/serio.src/Makefile.in,
2249           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2250           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2251           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2252           install and strip, since the strip at /usr/ccs/bin should be used
2253           on solaris
2254
2255 2005-08-24 Borut Razem <borut.razem AT siol.net>
2256
2257         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2258
2259 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2260
2261         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2262         ffffffffu
2263
2264 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2265
2266         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2267         * as/mcs51/lkmain.c (link_main): fixed warning
2268         * device/include/stdbool.h: ds390 has no advanced bit support yet
2269         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2270         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2271         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2272           and updated their macros
2273         * src/SDCCval.c (constVal): updated comment for renamed b_long
2274
2275 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2276
2277         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2278         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2279           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2280           (oprio): set priority for '['
2281         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2282            and adb_24_bit
2283         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2284         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2285         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2286         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2287           added overlayable BIT_BANK area
2288         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2289           (summary2): explain 'T' in legenda
2290         * as/mcs51/lkrloc.c: replaced old K&R style,
2291           (relr): added R_BIT processing,
2292           (errmsg): added "Bit-addressable relocation error",
2293           (adb_bit): added for converting from byte- to bit-addressable space,
2294           (adb_24_bit): added for converting from byte- to bit-addressable space
2295         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2296            used in reentrant functions now even as return value
2297         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2298         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2299           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2300         * src/SDCCglobl.h: added indicator BitBankUsed
2301         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2302            the bit registers b0-b7
2303         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2304           (geniCodeCast): fixed bug 1263853,
2305           (geniCodeLogicAndOr): put result in bool or char,
2306           (geniCodeReceive): added parameter func for accessing the return type,
2307           (geniCodeFunctionBody): pass func to geniCodeReceive
2308         * src/SDCCmain.c: added indicator BitBankUsed
2309         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2310         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2311           (checkSClass): don't put automatic bool/bit on stack,
2312           (checkFunction): removed check on function cannot return bit
2313         * src/SDCCsymt.h: added newBoolLink prototype
2314         * src/mcs51/gen.c (rb1regs): added bit registers,
2315           (movc): created for assigning to carry,
2316           (pushReg, popReg): created for pushing registers,
2317           (sameRegs): check both AOP_REG and AOP_CRY types,
2318           (aopOp): handle bit registers,
2319           (aopPut): optimization no self-assign,
2320           (saveRegisters): push reg->base (bits) only once for bit registers,
2321            and use pushReg,
2322           (unsaveRegisters): pop reg->base only once and use popReg,
2323           (assignResultValue): added parameter func and return in carry for bits,
2324           (genIpush): optimization no reload in A if not changed,
2325           (genSend): bit parameters in reentrant functions are passed in bit
2326            registers by first assigning to bits in B, then save registers and
2327            copy B to bits,
2328           (genCall): handle returning in Carry properly, save it in F0 if needed,
2329           (genPcall): updated assignResultValue call, this is not safe yet for bit
2330            returning function !!!
2331           (genFunction): don't generate equ's for bit registers and use pushReg,
2332           (genEndFunction): take care of bit returning functions and use popReg,
2333           (genRet): return bit in Carry,
2334           (genIfx): optimize bit registers and other directly addressable bits,
2335           (genReceive): updated assignResultValue call
2336         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2337           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2338            registers when using stack-auto
2339         * src/mcs51/ralloc.c (_G): added allBitregs,
2340           (regs8051): added the bit registers,
2341           (createStackSpil): use macro IS_BIT,
2342           (getRegBit): added to allocate a bit register, else spill,
2343           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2344           (updateRegUsage): factored out to ease stepping while debugging,
2345           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2346            also allocate bit registers,
2347           (fillGaps): handle bit registers,
2348           (findAllBitregs): added to create bit vector with all bit registers,
2349           (mcs51_allBitregs): returns this bit vector,
2350           (mcs51_assignRegisters): when using stack-auto use bit registers for
2351            passing parameters and creating local variables
2352         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2353
2354 2005-08-22 Borut Razem <borut.razem AT siol.net>
2355
2356         * device/lib/Makefile.in: replaced find option -or with -o
2357           to make it run on solaris
2358
2359 2005-08-22 Raphael Neider <rneider AT web.de>
2360
2361         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2362           fixes #1265442 (crash on Solaris)
2363
2364 2005-08-20 Borut Razem <borut.razem AT siol.net>
2365
2366         * configure, configure.in: added tests for libsocket and libnsl libraries,
2367           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2368           from support/regression/Makefile.in
2369         * support/regression/Makefile.in: added
2370         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2371         * sim/ucsim/libtool: regenerated on sparc-solaris
2372         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2373           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2374           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2375           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2376           sparc-solaris, which doesn't use GNU ld linker
2377         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2378         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2379
2380 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2381
2382         * src/mcs51/peeph.def: updated comments
2383
2384 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2385
2386         * device/lib/_gptrget.c,
2387         * device/lib/_gptrput.c: slightly shorter
2388         * doc/sdccman.lyx: incremented version
2389         * src/mcs51/peeph.def: moved peephole comments to the line of first
2390           change to better keep line correlation, reanimated 186.e
2391         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2392
2393 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2394
2395         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2396           David Saxton with quotes around file name.
2397
2398 2005-08-15 Borut Razem <borut.razem AT siol.net>
2399
2400         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2401           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2402           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2403           make tests run on x86_64 platform
2404
2405 2005-08-13 Raphael Neider <rneider AT web.de>
2406
2407         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2408           as it might be executed DURING a build (parallel make is wonderful)
2409
2410 2005-08-13 Raphael Neider <rneider AT web.de>
2411
2412         * device/lib/Makefile.in (port-specific-objects-pic16):
2413           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2414         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2415           dependency
2416         * device/lib/pic16/Makefile.rules: build subdirs before creating
2417           the library, removed builddir rule, create $(builddir) early in
2418           recurse rule, use empty recurse rule for leaf directories
2419         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2420           mkdir errors (race condition), removed duplicate suffix "hex"
2421           from clean rules
2422         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2423         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2424           prevents mkdir -p from aborting on Alpha
2425
2426 2005-08-12 Raphael Neider <rneider AT web.de>
2427
2428         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2429           db-statements in order to allow for arrays of pointers in code
2430           sections to be placed without interspersed 0-padding, fixes
2431           bug #1256215
2432         * (emitStatistics): fixed division by zero for pic18f1220
2433         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2434           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2435         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2436         * (pic16_pCodeConstString): keep track of already emitted string
2437           literals to prevent "duplicate definitions of symbol _str_NR"
2438         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2439           debug message
2440         * device/lib/Makefile.in: ignore failing PIC16 library builds
2441         * device/lib/pic16/Makefile: do not build if gputils are missing
2442         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2443
2444 2005-08-10 Raphael Neider <rneider AT web.de>
2445
2446         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2447           my last commit)
2448
2449 2005-08-10 Raphael Neider <rneider AT web.de>
2450
2451         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2452           Rokas' patch to add the new fixed point type "__fixed16x16"
2453         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2454           functions for __fixed16x16 arithmetics
2455         * device/lib/pic16: reimplemented the build system to support
2456           a separate build directory, better handling of libio (create
2457           the library in a separate subdir for each architecture) and
2458           easier configuration (centralized in Makefile.common)
2459
2460 2005-08-07 Raphael Neider <rneider AT web.de>
2461
2462         * src/pic16/gen.c (genrshTwo): fixed sign extension
2463         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2464         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2465           added T0CONbits
2466         * device/include/pic16/pic18f4220.h: NEW, header for
2467           pic18f4220 and pic18f4320
2468         * device/include/pic16/pic18fregs.h: added new devices,
2469           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2470         * device/include/pic16/signal.h: resolved name clashes
2471           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2472           to also allow testing for interrupt enable bits, added
2473           comments on how to use the macros
2474         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2475         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2476           register definitions for the devices
2477         * device/lib/pic16/pics.all: added new devices
2478         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2479           allocated memory
2480         * device/lib/pic16/libc/stdlib/memfree: do not count
2481           the block header as free memory
2482         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2483           simplified and added missing end-of-blocklist-marker
2484           (reported by Peter Onion, fixes #1252814)
2485         * (_mergeHeapBlock): fixed loop condition
2486         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2487           len==0, restructured code
2488         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2489           up a bit, reduced bitfield accesses, prevent endless loops
2490           in case of heap corruption
2491         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2492           "unreferenced arguments/must return a value" warnings
2493         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2494           replaced BAUDREG with SPBRG
2495         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2496           device/lib/pic16/debug/gstack/gstack.c: replaced
2497           _naked, _asm, _endasm with __naked, __asm, __endasm
2498
2499 2005-08-05 Raphael Neider <rneider AT web.de>
2500
2501         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2502           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2503
2504 2005-08-05 Borut Razem <borut.razem AT siol.net>
2505
2506         * device/lib/Makefile.in: added missing ';'
2507         * configure: removed ^M characters
2508
2509 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2510
2511         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2512           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2513           License
2514
2515 2005-08-04 Borut Razem <borut.razem AT siol.net>
2516
2517         * configure.in: pic16 libraries build 2nd try - enable running
2518           configure in device/lib/pic16
2519         * configure: regenerated from configure.in
2520         * device/lib/Makefile.in: create $(PORT)/bin directory
2521
2522 2005-08-03 Raphael Neider <rneider AT web.de>
2523
2524         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2525           to get/set values via pointers
2526         * (genUnpackBits,genPackBits): changed detection of
2527           ptr->bitfield vs. sym.bitfield, fixed access via generic
2528           pointers, removed dead (wrong) code for multibyte bitfields
2529         * (genNearPointerGet, genGenPointerGet): removed useless code,
2530           fixed bitfield detection, fixes #1250594
2531         * (genNearPointerSet): removed useless code
2532         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2533           and introduced macro pic16_emitpcode that conditionally emits
2534           the origin of the following pCode (useful for debugging SDCC)
2535         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2536         * (createDefmap): fixed handling of LFSR for --optimize-df
2537
2538 2005-08-02 Borut Razem <borut.razem AT siol.net>
2539
2540         * device/lib/Makefile.in: pic16 libraries build enabled since
2541           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2542
2543 2005-08-02 Raphael Neider <rneider AT web.de>
2544
2545         * src/pic16/gen.c (genPackBits): removed deprecated warning
2546         * (genGenPointerSet): fixed bitfield detection
2547
2548 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2549
2550         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2551
2552 2005-07-31 Raphael Neider <rneider AT web.de>
2553
2554         * device/lib/pic16/libdev/pic18f458.c,
2555           device/include/pic16/pic18f458.h: added missing T0CONbits
2556
2557 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2558
2559         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2560
2561 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2562
2563         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2564
2565 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2566
2567         * device/include/mcs51/at89c51ed2.h: added.
2568
2569 2005-07-23 Raphael Neider <rneider AT web.de>
2570
2571         * src/pic/gen.h: added emitpcode macro for debugging
2572         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2573           and replace by macro adding debug information on demand
2574         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2575         * (gencjne): tried to fix; replaced with correct (slower) code
2576         * (gen{Unp,P}ackBits): fixed single bit access
2577         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2578         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2579           previous instruction
2580         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2581           register has to be handled with care (forbidding movement
2582           of assignments/uses, removing assignments completely, ...)
2583         * (pCodeOptime2pCodes): make use of regIsSpecial
2584         * added lots of debugging output (commented out)
2585         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2586           from being reused as result UNLESS it is known to work
2587
2588 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2589
2590         * support/Util/dbuf.h: include <stddef.h> for size_t
2591         * .version: changed to version 2.5.2
2592
2593 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2594
2595         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2596
2597 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2598
2599         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2600           (genModOneByte): removed needless psha/pula
2601
2602 2005-07-22 Raphael Neider <rneider AT web.de>
2603
2604         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2605           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2606         * src/pic/gen.c (resolveIfx): do not "invent" labels
2607         * (genSkipc): changed to positive logic
2608         * (genSkipCond): removed as no longer needed
2609         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2610           backport from PIC16
2611         * (genLeftShift): check operands are in different registers
2612         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2613           INCF does not update CARRY...
2614         * src/pic/main.c: fixed _linkCmd
2615         * src/pic/pcode.c (unlinkpCode): added inactive code
2616         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2617           alive (do not assign result and operand overlapping registers)
2618
2619 2005-07-22 Raphael Neider <rneider AT web.de>
2620
2621         * src/pic/device.c (dump_sfr): replaced register declaration with
2622           call to emitSymbolToFile() to avoid duplicate symbols
2623         * (assignRelocatableRegisters): do not declare external symbols
2624         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2625           right (take size of type, not etype)
2626         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2627         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2628         * (packRegsForAccUse): disabled assignment of WREG as
2629           the result reg to prevent occurence of just fixed #1235003,
2630           fixes #1242954
2631         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2632           symbols (avoids duplicate symbols in .asm file)
2633         * (pic14emitRegularMap): use emitSymbolToFile()
2634         * src/pic/gen.c (aopOp): fixed spillLocation handling
2635         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2636         * (genDataPointerSet): removed unneccessary variables/output
2637
2638 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2639
2640         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2641         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2642
2643 2005-07-21 Raphael Neider <rneider AT web.de>
2644
2645         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2646           architecture cannot handle them efficiently, fixes bug #1235003
2647         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2648           check for empty sets before using them (fixes bug #1232190)
2649
2650 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2651
2652         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2653           (lnksect2): generate warnings for memory overlap
2654         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2655           constseg to set the name of these segments so you can instruct the linker
2656           to place them in banks
2657         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2658         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2659           added code_seg and const_seg to options
2660         * src/SDCCglue.c (emitMaps): use options.const_seg,
2661           (createInterruptVect): put interrupt vectors in segment HOME,
2662           (glue): put HOME before static segment and put the main glue in HOME,
2663           (glue): use options.code_seg
2664         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2665         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2666           these segments so you can instruct the linker to place them in banks
2667           (linkEdit): use code_loc for HOME segment which should be the first
2668           segment in code memory now
2669         * src/SDCCmem.c: fixed more stuff like bug 1238386
2670         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2671           (changePointer): don't change function pointers to code pointers for
2672           banked functions,
2673           (compareType): added exceptional check for banked function pointers
2674         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2675         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2676           after static in code memory
2677         * src/mcs51/gen.c: added aopLiteralLong prototype,
2678           (aopForSym): use getSize for functions,
2679           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2680           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2681           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2682           the segment,
2683           (genPcall): use call for literal function pointers and generate banked
2684           calls over the one trampoline so there's only one place for the user to
2685           modify according to his/hers hardware,
2686           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2687           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2688         * src/mcs51/main.c: added keyword banked,
2689           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2690         * support/Util/SDCCerr.c,
2691         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2692           needed for passing the bank and address to the trampoline
2693         * device/lib/mcs51/crtbank.asm: added for bankswitching
2694         * device/lib/mcs51/Makefile: added crtbank
2695
2696 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2697
2698         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2699           for fields at offset 0 of a struct or union as reported
2700           on 2005-07-07 in the developer mailing list.
2701
2702 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2703
2704         * src/SDCCmem.c: fixed bug 1238386
2705
2706 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2707
2708         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2709           (patch #1144962), added peephole 300, enabled 259.x
2710         * doc/sdccman.lyx: removed screenshot and provided link instead
2711
2712 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2713
2714         * doc/sdccman.lyx: added section about debugging with ddd
2715         * doc/figures/ddd_example.eps: screenshot of debugging session
2716
2717 2005-07-04 Raphael Neider <rneider AT web.de>
2718
2719         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2720           like CODE pointers, fixes #1115683
2721         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2722           call, fixes bugs #1232211, #1228110,
2723           fixed wrong casts to pCodeFlow from pCodeInstructions
2724
2725 2005-07-04 Raphael Neider <rneider AT web.de>
2726
2727         * src/pic/gen.c (popGet): changed assert to allow for
2728           bit operands
2729         * (popGetAddr): changed signature to provide
2730           an additional index, patched all call sites
2731         * (genCmpEq): handle literal-like operands correctly
2732         * (genAddrOf): added sanity checks on __code/__data pointers
2733         * (genAssign): added handling of symbols from __code section
2734         * (gencjne): do not generate code for comparisons whose result
2735           is neither stored nor used, fixes bug #1171114
2736         * (AccLsh, AccRsh): operate on operand instead of WREG
2737         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2738           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2739           by known count
2740         * rewrote complete shift-by-literal logic, commented unused
2741           functions out
2742         * (genConstPointerGet): get multiple bytes (if result size > 1),
2743           fixed handling of non-immediate addresses
2744         * (genPointerGet): handle CODE pointers like CONST pointers
2745         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2746         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2747           operand is to be treated as a literal or not
2748         * (mov2w,genPcall,genCmpEq),
2749           src/pic/genarith.c: use aop_isLitLike() to decide between
2750           literal/register contents
2751         * (addSign): added missing offset
2752         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2753           only emit comment in debug-mode,
2754           use {aop,op}_isLitLike throughout the file
2755         * src/pic/glue.c: fix initializers for pointers (work in progress)
2756         * src/pic/pcode.c (get_op): honor index on _const symbols
2757         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2758         * (dumppBlock): added pCode size estimation
2759         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2760           check for IS_SYMOP before OP_SYMBOL'ing
2761         * fixed indentation, compacted switch-statements
2762         * (allocReg): find free register and allocate it instead of
2763           allocating new registers all the time
2764         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2765           registers as its operands (necessary only for multibyte GETs)
2766
2767 2005-07-01 Raphael Neider <rneider AT web.de>
2768
2769         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2770           debugging .asm-output macros FENTRY + FEXIT
2771         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2772           way... I wonder...
2773         * (emitpComment): NEW, printf to pCode
2774         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2775           offset handling
2776         * (popGetAddr): NEW, variant of popGet to access an immediates
2777           high(er) bytes instead of the n'th byte of memory they reference,
2778           replaced popGet with popGetAddr where neccessary
2779         * (genDataPointerGet): reactivated and fixed implementation
2780         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2781           accesses
2782         * (genDataPointerSet): fixed multibyte assignments
2783         * (genpic14Code): fixed --i-code-in-asm handling
2784         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2785         * (genPlus): fixed index-out-of-bounds error
2786         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2787         * src/pic/ralloc.c: added debugging output macro FENTRY2
2788         * (spillThis): fixed indentation, enbraced for-body for clarity
2789         * (rematStr): commented out as now unused
2790         * (regTypeNum): commented out special spill case (overwrites
2791           arbitrary values)
2792         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2793
2794 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2795
2796         * doc/sdccman.lyx: documented sfr16/sfr32,
2797           added example for using storage class with function pointers
2798         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2799
2800 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2801
2802         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2803         * device/lib/_itoa.c,
2804         * device/lib/_ltoa.c: optimized codesize
2805         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2806           but don't know how to suppress the double warning.
2807         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2808         * support/Util/SDCCerr.c,
2809         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2810
2811 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2812
2813         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2814           fixed old K&R prototypes
2815         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2816         * device/lib/_gptrget.c,
2817         * device/lib/_gptrgetc.c,
2818         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2819           also new versions for small generic pointers and banked generic pointers
2820         * src/port.h: added const_name
2821         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2822         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2823         * src/SDCCcse.c (findPrevIc): check all associative operators
2824         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2825         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2826         * src/SDCCmem.c: updated comments,
2827           set far-space to 0 for pdata, results in optimized code
2828         * src/SDCCmem.h: added macro CONST_NAME
2829         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2830           moving the info into the highest bits, see also gptrget/gptrput
2831         * src/src.dsp: added sdcc.ico to project files
2832         * src/avr/gen.c (genCast): fixed bug 0x%d
2833         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2834         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2835           relation between ptr_type and DCL_TYPE,
2836           (genCast): fixed bug 0x%d
2837         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2838           (CODE)" for const_name
2839         * src/hc08/gen.c (genCast): fixed bug 0x%d
2840         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2841           (hc08_port): added "CONST (CODE)" for const_name
2842         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2843           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2844           between ptr_type and DCL_TYPE,
2845           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2846           operand* and took AOP() inside function so sfr-ness can be checked,
2847           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2848           new prototype,
2849           (genFunction, genEndFunction): optimized stack setup,
2850           (genMinus): optimized for literals with ending zeroes (in bytes),
2851           (genCast): fixed bug 0x%d
2852         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2853           (mcs51_port): added "CONST (CODE)" for const_name
2854         * src/mcs51/peeph.def: made rule 226 more generic
2855         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2856         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2857         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2858         * src/z80/main.c (z80_port): added NULL for const_name,
2859           (gbz80_port): added NULL for const_name
2860         * support/regression/tests/bug663539.c,
2861         * support/regression/tests/sfr16.c: new tests
2862
2863 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2864
2865         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2866
2867 2005-06-24 Raphael Neider <rneider AT web.de>
2868
2869         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2870           corrected typos...
2871         * device/include/pic16/signal.h: added USBIF
2872           and SIG_USB
2873
2874 2005-06-24 Raphael Neider <rneider AT web.de>
2875
2876         * device/lib/pic16/libdev/pic18f2455.c,
2877           device/include/pic16/pic18f2455.h: NEW
2878         * device/include/pic16/pic18fregs.h,
2879           device/lib/pic16/pics.all,
2880           src/pic16/device.c: added 18f2455
2881         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2882           device/include/pic16/{pic18f[68][567].h,usart.h}:
2883           replaced MULTIPLE_USARTS define with more relaible
2884           compatibility sfrs (for USART access)
2885
2886 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2887
2888         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2889           and the output asm file line is printed on two lines.
2890
2891 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2892
2893         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2894           BGT, BLE, BHI, and BLS instructions
2895         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2896           genCmpEq): removed
2897         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2898           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2899           fixes bug #1216342
2900         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2901
2902 2005-06-15 Raphael Neider <rneider AT web.de>
2903
2904         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2905         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2906         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2907           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2908           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2909
2910 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2911
2912         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2913           Marcel Telka in bug #1215704
2914
2915 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2916
2917         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2918           located in shared memory bank.
2919
2920 2005-05-31 Raphael Neider <rneider AT web.de>
2921
2922         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2923           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2924           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2925
2926 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2927
2928         * device/lib/_strncpy.c: fixed the fix
2929
2930 2005-05-26 Raphael Neider <rneider AT web.de>
2931
2932         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2933           initializers with \0, bug #1208187
2934         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2935           intializers with \0, bug #1208187
2936
2937 2005-05-26 Raphael Neider <rneider AT web.de>
2938
2939         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2940           initializers with \0, bug #1208187
2941         * src/pic16/main.c (_process_pragma): added sanity checks
2942           for stack position and size, emit warnings when appropriate
2943
2944 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2945
2946         * device/lib/_strncpy.c: fixed not filling with \0
2947
2948 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2949
2950         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2951           createFunction),
2952         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2953           compound_statement),
2954         * src/SDCCsymt.h,
2955         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2956
2957 2005-05-24 Raphael Neider <rneider AT web.de>
2958
2959         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2960
2961 2005-05-24 Raphael Neider <rneider AT web.de>
2962
2963         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2964           TRISE definitions, closes bug #1162453
2965
2966 2005-05-22 Raphael Neider <rneider AT web.de>
2967
2968         * src/pic16/main.c (_process_pragma): check for missing
2969           arguments to pragmas code and udata
2970         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2971           consistency fixes to match other headers (thanks to Jim Paris)
2972         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2973
2974 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2975
2976         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2977
2978 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2979
2980         * support/regression/tests/bug1198642.c: new test
2981         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2982         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2983         * support/scripts/resource.h,
2984         * support/scripts/resource.rc,
2985         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2986         * support/scripts/sdcc.ico: added 32x32 icon
2987
2988 2005-05-18 Raphael Neider <rneider AT web.de>
2989
2990         * device/lib/pic16/libdev/pic18f*.c,
2991         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
2992           keywords to "__sfr" and "__at (X)"
2993         * device/include/pic16/pic18fregs.h: added pic18f4520
2994         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
2995           #1203088 (MPLAB compatibility)
2996
2997 2005-05-17 Raphael Neider <rneider AT web.de>
2998
2999         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
3000         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
3001         * device/lib/pic16/pics.all: added new devices
3002         * src/pic16/device.c: added support for pic18f4520
3003
3004 2005-05-16 Raphael Neider <rneider AT web.de>
3005         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
3006         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
3007         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
3008           convenience function for bit access
3009
3010 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3011
3012         * device/lib/printf_large.c: fixed bug 1193299
3013         * support/regression/tests/bug1057979.c: added test %3.3s
3014
3015 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3016
3017         * device/include/mcs51/8051.h,
3018         * device/include/mcs51/8052.h: made parseable with lint
3019         * device/include/mcs51/lint.h: added include file for (sp)lint
3020         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
3021         * doc/cdbfileformat.lyx,
3022         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
3023
3024 2005-05-14 Raphael Neider <rneider AT web.de>
3025
3026         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
3027         * device/lib/pic16/libc/stdlib/itoa.c (new)
3028         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
3029         * device/lib/pic16/libio/Makefile: exclude subdir according to
3030           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
3031         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
3032         * src/pic16/gen.c (genFunction): prevent annoying warning
3033         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
3034           nameclashes on BeOS
3035         * support/cpp2/cppmain.c (cpp_output_string): new
3036         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
3037           fixes bug 1116802
3038
3039 2005-05-13 Borut Razem <borut.razem AT siol.net>
3040
3041         * src/SDCCmain.c (linkEdit): fixed bug 1195202
3042
3043 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3044
3045         * .version: changed to version 2.5.1; back to bleeding edge development
3046
3047 2005-05-11 Borut Razem <borut.razem AT siol.net>
3048
3049         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
3050           generate PDF version 1.3 documents
3051
3052 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3053
3054         * .version: changed to version 2.5.0
3055
3056 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3057
3058         * doc/sdccman.lyx: updated weblinks, index and smaller updates
3059
3060 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3061
3062         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
3063         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
3064         well as many smaller updates.
3065         * .version: changed to version 2.5.0-pre1
3066
3067 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3068
3069         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
3070
3071 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
3072
3073         * support/regression/tests/bug1185672.c: added
3074         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
3075           bug 1185672
3076         * src/mcs51/gen.c (genCall): added comments, made it look safer
3077         * src/mcs51/gen.c (genEndFunction): simplified
3078
3079 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
3080
3081         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
3082
3083 2005-04-14 Borut Razem <borut.razem AT siol.net>
3084
3085         * fixed bug 1045046 - SIGSEGV with really simple code?:
3086           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
3087           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
3088
3089 2005-04-14 Borut Razem <borut.razem AT siol.net>
3090
3091         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
3092           src/pic16/device.h: temporarily disabled experimental #inline pragma
3093           for 2.5.0 release
3094
3095 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
3096
3097         * device/include/z80/stdio.h,
3098         * device/include/z80/string.h: removed these highly incomplete files so
3099           SDCC can use the default ones in device/include/
3100
3101 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3102
3103         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
3104         gcc warning.
3105         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
3106         fix sdcpp warnings.
3107
3108 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3109
3110         * device/include/malloc.h: removed redundant __reentrant prototypes
3111         * device/lib/_mullong.c: added working xstack variant in asm (C version
3112           doesn't pass regression tests)
3113         * device/lib/bpx.c: used __data and made bpx char for mcs51
3114         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3115           (createFunction): fixed bug with xstackPtr
3116         * src/SDCCcse.c: corrected comments
3117         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3118           (killDeadCode, eBBlockFromiCode): removed unused code
3119         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3120           corrected comments
3121         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3122           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3123           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3124           (genModOneByte): fixed warning in MSVC
3125         * src/mcs51/main.c (): added comments
3126         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3127
3128 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3129
3130         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3131
3132 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3133
3134         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3135
3136 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3137
3138         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3139         characters arrays of larger size than the declared one.
3140
3141 2005-04-10 Borut Razem <borut.razem AT siol.net>
3142
3143         * src/pic/gen.c (genInline),
3144           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3145           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3146           (findNextInstruction), (findPrevInstruction),
3147           (findInstructionUsingLabel),
3148           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3149         * src/pic/pcode.c (findLabel): added missing '\n'
3150         * src/src.dsp: added SDCCdwarf2.c to the project
3151
3152 2005-04-09 Borut Razem <borut.razem AT siol.net>
3153
3154         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3155
3156 2005-04-08 Raphael Neider <rneider AT web.de>
3157
3158         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3159           into the chain after a given one) and mergeDefmapSymbols (combine
3160           defmap entries for each symbol per pcode)
3161         * (createDefmap): have defmap entries merged in the end
3162         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3163           a symbol before replacing one access type's symbol, merge symbols in
3164           the end (replacement symbol might already have an entry)
3165         * (assignValnums): keep reference to written WREG intact
3166
3167 2005-04-08 Raphael Neider <rneider AT web.de>
3168
3169         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3170           Alpha)
3171
3172 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3173
3174         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3175         bytes
3176
3177 2005-04-07 Raphael Neider <rneider AT web.de>
3178
3179         * device/include/pic16/usart.h: added compatibility defines for
3180           devices with more than one USART
3181         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3182
3183 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3184
3185         * device/lib/Makefile.in: updated for port specific include
3186
3187 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3188
3189         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3190
3191 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3192
3193         * device/include/8051.h,
3194         * device/include/8052.h,
3195         * device/include/at89S8252.h,
3196         * device/include/at89c55.h,
3197         * device/include/at89x051.h,
3198         * device/include/at89x51.h,
3199         * device/include/at89x52.h,
3200         * device/include/mcs51reg.h,
3201         * device/include/reg51.h,
3202         * device/include/reg764.h,
3203         * device/include/regc515c.h,
3204         * device/include/sab80515.h: (re)moved these 12 files
3205         * device/include/mcs51/8051.h,
3206         * device/include/mcs51/8052.h,
3207         * device/include/mcs51/at89S8252.h,
3208         * device/include/mcs51/at89c55.h,
3209         * device/include/mcs51/at89x051.h,
3210         * device/include/mcs51/at89x51.h,
3211         * device/include/mcs51/at89x52.h,
3212         * device/include/mcs51/mcs51reg.h,
3213         * device/include/mcs51/reg51.h,
3214         * device/include/mcs51/reg764.h,
3215         * device/include/mcs51/regc515c.h,
3216         * device/include/mcs51/sab80515.h: and added them here
3217
3218 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3219
3220         * device/include/stdarg.h: changed SDCC specific keywords to double
3221           underlined form.
3222         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3223           mcs51 and ds390.
3224         * device/include/hc08/mc68hc908gp32.h,
3225         * device/include/hc08/mc68hc908jb8.h,
3226         * device/include/hc08/mc68hc908jkjl.h,
3227         * device/include/hc08/mc68hc908qy.h: fixed comments
3228         * device/include/mcs51/README: updated
3229         * device/include/mcs51/c8051f120.h: added PINRSF
3230         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3231         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3232           amidst code. Also inline is not supported.
3233
3234 2005-04-06 Raphael Neider <rneider AT web.de>
3235
3236         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3237         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3238           callers stack/frame pointers
3239
3240 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3241
3242         * device/include/pic16/usart.h: added, missing in previous commit,
3243         * device/include/pic16/adc.h: fixed typo,
3244         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3245         commit,
3246         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3247         <p18fxxx.inc>
3248         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3249         uninitialized because a bug appears with gplink
3250         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3251         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3252         complains for unrecognised option
3253
3254 2005-04-05 Raphael Neider <rneider AT web.de>
3255
3256         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3257           structs as well (using memcpy)
3258         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3259           on ISRs (GOTO has no label)
3260         * src/pic16/device.h: added OF_OPTIMIZE_DF
3261         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3262           new data flow analysis/optimization
3263         * src/pic16/pcode.c: added (prototypes for and implementation of)
3264           dataflow analysis functions, fixed pCodeInstructions' inCond and
3265           outCond values, made RCALL a branch instruction
3266         * (pic16_unlinkpCode): keep C line if possible
3267         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3268           C line moved if possible
3269         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3270         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3271           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3272         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3273           new flow)
3274         * (pic16_getJumptabpCode): NEW, needed in...
3275         * (LinkFlow): fixed handling of jumptables, calls and conditional
3276           branches
3277         * (pic16_InsertCommentAfter): NEW
3278         * (pic16_pCodeReplace): made verbose and flow preserving
3279         * (AnalyzeFlow): added call to data flow analysis
3280         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3281         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3282         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3283
3284 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3285
3286         * src/SDCCast.c (decorateType): fixed bug #1105626
3287
3288 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3289
3290         * device/include/asm/pic16/features.h,
3291         * pic18f*.h headers,
3292         * device/include/pic16/adc.h,
3293         * device/include/pic16/delay.h,
3294         * device/include/pic16/i2c.h,
3295         * device/include/pic16/malloc.h,
3296         * device/include/pic16/stdio.h,
3297         * device/include/pic16/stdlib.h,
3298         * device/include/pic16/string.h,
3299         * device/lib/pic16/libc/stdio/printf_tiny.c,
3300         * device/lib/pic16/libc/stdio/printf_small.c,
3301         * device/lib/pic16/libc/stdio/strmgpsim.c,
3302         * device/lib/pic16/libc/stdio/strmmssp.c,
3303         * device/lib/pic16/libc/stdio/strmusart.c,
3304         * device/lib/pic16/libc/stdio/vfprintf.c,
3305         * device/lib/pic16/libc/stdlib/ltoa.c,
3306         * device/lib/pic16/libc/stdlib/putchar.c,
3307         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3308         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3309         * device/lib/pic16/libc/stdlib/memchrram.c,
3310         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3311         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3312         * device/lib/pic16/libio/adc/adcbusy.c,
3313         * device/lib/pic16/libio/adc/adcread.c,
3314         * device/lib/pic16/libio/adc/adcsetch.c,
3315         * device/lib/pic16/libio/usart/ubaud.c,
3316         * device/lib/pic16/libio/usart/ubusy.c,
3317         * device/lib/pic16/libio/usart/udrdy.c,
3318         * device/lib/pic16/libio/usart/uopen.c,
3319         * device/lib/pic16/libio/usart/uputc.c,
3320         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3321         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3322         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3323         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3324         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3325         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3326         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3327         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3328         specific keywords to double underlined form,
3329         * device/lib/pic16/libc/Makefile.rules,
3330         * device/lib/pic16/libsdcc/Makefile.rules,
3331         * device/lib/pic16/libm/Makefile,
3332         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3333         to compile with C standard set in Makefile.common
3334         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3335         rand.c and crc.c in compilation process,
3336         * device/lib/pic16/libsdcc/int/divuint.c,
3337         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3338         `c' from signed to unsigned,
3339         * device/lib/pic16/startup/crt0.c,
3340         * device/lib/pic16/startup/crt0i.c,
3341         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3342         keywords to double underlined form, bug fixes in _do_cinit function
3343         which prevented the correct initialization of the .idata segment,
3344         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3345         core to enter a infinite loop
3346         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3347
3348 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3349
3350         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3351
3352 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3353
3354         * device/include/Makefile.in: add support for hc08 subdirectory
3355         * device/include/hc08/: new subdirectory
3356         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3357         Lucas Loizaga, thanks!
3358         * device/include/hc08/mc68hc908qy.h,
3359         * device/include/hc08/mc68hc908gp32.h,
3360         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3361         their own directory. Changed internal macro names to use the compiler
3362         reserved namespace. Changed SDCC specific keywords to double
3363         underlined form.
3364         * device/include/math.h,
3365         * device/include/malloc.h,
3366         * device/include/stdarg.h,
3367         * device/include/stdbool.h
3368         * device/include/string.h,
3369         * device/include/tinibios.h,
3370         * device/include/ds400rom.h,
3371         * device/include/8051.h,
3372         * device/include/8052.h,
3373         * device/include/80c51xa.h,
3374         * device/include/at89c55.h,
3375         * device/include/at89S8252.h,
3376         * device/include/at89x51.h,
3377         * device/include/at89x52.h,
3378         * device/include/ds80c390.h,
3379         * device/include/reg764.h,
3380         * device/include/regc515c.h,
3381         * device/include/sab80515.h,
3382         * device/include/mcs51/c8051f000.h,
3383         * device/include/mcs51/c8051f018.h,
3384         * device/include/mcs51/c8051f020.h,
3385         * device/include/mcs51/c8051f040.h,
3386         * device/include/mcs51/c8051f060.h,
3387         * device/include/mcs51/c8051f120.h,
3388         * device/include/mcs51/c8051f300.h,
3389         * device/include/mcs51/c8051f310.h,
3390         * device/include/mcs51/c8051f320.h,
3391         * device/include/mcs51/c8051f330.h,
3392         * device/include/mcs51/c8051f350.h,
3393         * device/include/z180.h: Changed SDCC specific keywords to double
3394         underlined form.
3395
3396 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3397
3398         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3399         18F4455,
3400         * (pic16_assignConfigWordValue): disable testing of configuration
3401         register value with config mask,
3402         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3403         function with port->fun_prefix,
3404         * (genFunction): when generating a naked interrupt function never
3405         create an absolute segment placed in interrupt vector address, place
3406         the actual interrupt function at IVA instead, when an interrupt
3407         function is generated with unspecified interrupt then do not create
3408         the absolute section,
3409         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3410         code for generating a call to generic pointer get/put function with
3411         a call to function pic16_callGenericPointer(),
3412         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3413         the call to the generic pointer get/put functions with prefixing the
3414         function name with port->fun_prefix,
3415         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3416         * src/pic16/main.c (_process_pragma): prefix function with
3417         port->fun_prefix,
3418         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3419         calling assembler, old 18Fxxxx macro is deprecated,
3420         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3421         PC_ASMDIR in while condition,
3422         * (findInstruction): add PC_ASMDIR in while condition,
3423         * (buildCallTree): prefix main with port->fun_prefix,
3424         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3425         identifier for variable with banked access in instructions BTFSS,
3426         BTFSC, BCF, BSF, BTG
3427         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3428         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3429         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3430         perform optimization when enviroment variable NO_REG_OPT is set,
3431         * (insideLRBlock): NEW, return 1 if register is inside an
3432         INF_LOCALREGS block,
3433         * (RemoveRegFromLRBlock): remove a register that is completely
3434         eliminated by register optimization, but it is still left in local
3435         register store/restore in/from stack block,
3436         * (Remove2pcodes): after removing register, check to see if it
3437         should be removed from local register store/restore in/from stack
3438         block,
3439         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3440         DUMMY_READ_VOLATILE,
3441
3442         * device/include/pic16/adc.h: minor prototype modifications and
3443         update,
3444         * device/include/pic16/malloc.h: added GPL notice various
3445         modifications,
3446         * device/include/pic16/stdint.h: NEW, standard header for ints
3447         * device/include/pic16/delay.h: NEW, header for delay functions,
3448         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3449         delay1mtcy,
3450         * device/include/pic16/signal.h: NEW, header providing helper macros
3451         for implementing signal handlers,
3452         * device/include/pic16/stdio.h: added prototypes for functions,
3453         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3454         prototypes for stdin and stdout, added macro PUTCHAR to
3455         automatically implement putchar function prototype,
3456         * device/include/pic16/usart.h: modified and updated USART library,
3457         * device/lib/pic16/libio/adc/,
3458         * device/lib/pic16/libio/i2c: some modifications to improve library
3459         performance,
3460         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3461         family of functions,
3462         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3463         family of functions and other sources,
3464         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3465         of the PIC18Fxx[28] devices,
3466         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3467         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3468         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3469         _do_cinit function, because the previous failed when local variables
3470         where not placed in the same memory bank,
3471         * device/lib/pic16/libsdcc/char/: various modifications to improve
3472         library performance,
3473         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3474         information on the new functions of the c library and more...
3475
3476 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3477
3478         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3479
3480 2005-03-26 Raphael Neider <rneider AT web.de>
3481
3482         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3483           if condition == CARRY)
3484         * (genCmp): adapted to new genSkipc semantics
3485         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3486           on rIfx (genCmp was broken)
3487
3488 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3489
3490         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3491         * src/z80/main.c (_keywords[]),
3492         * src/SDCCglobal.h (struct options),
3493         * src/SDCC.y,
3494         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3495         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3496         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3497         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3498         always available in leading double underscore form. The C99 support is
3499         mostly missing, but it's a start.
3500         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3501         reserved identifier "__data".
3502
3503 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3504
3505         * src/mcs51/peeph.def: fixed bug 1170013
3506
3507 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3508
3509         * device/include/mcs51reg.h: fixed bug 842007
3510
3511 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3512
3513         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3514         last time.
3515
3516 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3517
3518         * src/port.h (struct PORT),
3519         * src/avr/ralloc.c (avr_assignRegisters),
3520         * src/avr/main.c,
3521         * src/ds390/ralloc.c (ds390_assignRegisters),
3522         * src/ds390/main.c,
3523         * src/hc08/ralloc.c (hc08_assignRegisters),
3524         * src/hc08/main.c,
3525         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3526         * src/mcs51/main.c,
3527         * src/pic/ralloc.c (pic14_assignRegisters),
3528         * src/pic/main.c,
3529         * src/pic16/ralloc.c (pic16_assignRegisters),
3530         * src/pic16/main.c,
3531         * src/xa51/ralloc.c (xa51_assignRegisters),
3532         * src/xa51/main.c,
3533         * src/z80/ralloc.c (z80_assignRegisters),
3534         * src/z80/ralloc.h,
3535         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3536         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3537         * src/SDCCcse.h,
3538         * src/SDCCdflow.c (computeDataFlow),
3539         * src/SDCCdflow.h,
3540         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3541         * src/SDCCloop.h,
3542         * src/SDCCcflow.c (*),
3543         * src/SDCCcflow.h,
3544         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3545         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3546         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3547         immedDom() returning wrong block; probably fixes bug #1160833)
3548
3549 2005-03-20 Borut Razem <borut.razem AT siol.net>
3550
3551         * support/scripts/inc2h.pl: WIN32 port
3552
3553 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3554
3555         * device/lib/makefile.in: added abs.c and labs.c
3556
3557 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3558
3559         * device/include/stdint.h: added
3560         * device/lib/abs.c: added
3561         * device/lib/labs.c: added
3562         * device/include/stdlib.h: added abs() and labs() prototypes
3563         * device/lib/libsdcc.lib: added abs and labs
3564         * device/include/float.h,
3565         * device/lib/_fsmul.c,
3566         * device/lib/printf_fast.c,
3567         * device/lib/printf_tiny.c: updated comments
3568
3569 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3570
3571         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3572         bug #1164313
3573
3574 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3575
3576         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3577         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3578
3579 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3580
3581         * device/lib/printf_large.c: removed inline assembly for portability and
3582           readability. Use printf_fast if speed or size are more important.
3583         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3584         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3585
3586 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3587
3588         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3589         prevent compiler warning
3590
3591 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3592
3593         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3594         moved to level 0 and declared as static. Also they are explicit
3595         placed in access bank. This was necessery because some times they
3596         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3597         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3598         optimizations. Currently only compare to unsigned char is implemented,
3599         * src/pic16/gen.c: added fReturnIdx array,
3600         * (struct resolvedIfx) is moved to gen.h and made public,
3601         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3602         * (aopForSym): added an optimization to directly store in stack of
3603         the operand of a SEND iCode,
3604         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3605         but as registers instead (AOP_REG) using the fReturnIdx array,
3606         * (pic16_freeAsmop): remove the freed register from the
3607         _G.sregsAlloc field,
3608         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3609         a compare of 'WREG',
3610         * (pic16_popGetTempRegCond): changed function prototype, now
3611         function takes also a bitVector argument v which holds the current
3612         set of registers that are allocated for stack access by aopForSym,
3613         registers allocated in aopForSym for accessing stack symbols are not
3614         any more part of the functions usedRegs field,
3615         * (genCall): some times aopOp is called for a stack variable to be
3616         send, aopForSym might perform the push, if this is true make sure
3617         that genCall doesn't push the variable twice by testing _G.resDirect,
3618         * (genFunction): changed testing for unspecified interrupt number
3619         from 256 to INTNO_UNSPEC,
3620         * modified selection scheme of frame pointer generation. Previously
3621         if function did use local registers a frame pointer was generated,
3622         now a frame pointer is generated only if function has arguments
3623         (that need PLUSW2 register access), or has stack arguments, or the
3624         compiler is not instructed to omit the frame pointer,
3625         * (genEndFunction): before restoring local registers that were saved
3626         in the function preamble, also restore the registers that *might*
3627         have been allocated for stack access,
3628         * (genRet): removed some old comments,
3629         * (genCmp, the active (RN's) version): added a call to the
3630         pic16_genCmp_special function to perform the compare with a more
3631         robust and optimized way,
3632         * (genInline): a feature has been added in inline code generation,
3633         which allows a wildcard variable substitution when writing inline
3634         assembly. Code is incomplete and experimental therefore undocumented,
3635         * (genCast): changed order of aopOp for result and right to allow
3636         aopForSym to directly load the result if possible,
3637         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3638         perform an optimized compare on some selected special occasions,
3639         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3640         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3641         generate an IVT any more,
3642         * src/pic16/main.c (pic16_optionsTable): added command line option
3643         --optimize-cmp,
3644         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3645         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3646         macros,
3647         * src/pic16/NOTES: Raphael Neider added in list of active developers
3648         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3649         jumptable_end to prevent bug #,
3650         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3651         inCond and outCond fields,
3652         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3653         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3654         turn off register spilling,
3655         * (packRegsForOneUse): synced with other ports' versions although it
3656         is not used currently,
3657         * (pic16_packRegisters): added an optimization while reading
3658         structure bitfields, some registers may be saved (malloc code is
3659         decreased by 80 bytes)
3660
3661 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3662
3663         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3664         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3665         this can be optimized more?
3666
3667 2005-03-10 Raphael Neider <rneider AT web.de>
3668
3669         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3670           genNearPointerGet): (hopefully) fixed access to bitfields via
3671           pointers (p->bitN = x; and x = p->bitN; failed)
3672
3673 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3674
3675         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3676
3677 2005-03-09 Raphael Neider <rneider AT web.de>
3678
3679         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3680
3681 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3682
3683         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3684         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3685           (regTypeNum): set REG_BIT type if necessary
3686         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3687         * support/regression/tests/critical.c: check bug 1144613
3688
3689 2005-03-02 Raphael Neider <rneider AT web.de>
3690
3691         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3692
3693 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3694
3695         * src/avr/ralloc.c (serialRegAssign),
3696         * src/ds390/ralloc.c (serialRegAssign),
3697         * src/hc08/ralloc.c (serialRegAssign),
3698         * src/mcs51/ralloc.c (serialRegAssign),
3699         * src/pic/ralloc.c (serialRegAssign),
3700         * src/pic16/ralloc.c (serialRegAssign),
3701         * src/xa51/ralloc.c (serialRegAssign),
3702         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3703
3704 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3705
3706         * src/SDCCast.c (decorateType): fixed bug 1124787
3707
3708 2005-02-20 Hubert Sack <sack AT digiplan.de>
3709         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3710
3711         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3712         patch #1121755
3713
3714 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3715
3716         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3717         to keep the correct label reference count when adding/removing references
3718         to labels. A peephole file using this is appended to patch #1144962.
3719
3720 2005-02-14 Raphael Neider <rneider AT web.de>
3721
3722         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3723         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3724         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3725           retrievals of result operand's value on assignment
3726
3727 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3728
3729         * device/include/pic16/string.h: modified prototype for memccpy()
3730         to memccpy(void *, void *, char, size_t)
3731         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3732         check whether to omit frame pointer or not,
3733         * (genInline): convert all occurences of "\n" to LF in inline
3734         assembler blocks, this helps formatting the inline text,
3735         * (pic16_loadFSR0): modified prototype,
3736         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3737         removed some 8051 legacy code,
3738         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3739         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3740         before allocating temporary registers in functions,
3741
3742 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3743
3744         * support/regression/tests/bitvars.c: corrected the "fix"
3745
3746 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3747
3748         * support/regression/tests/bitvars.c,
3749         * support/regression/tests/bitwise.c,
3750         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3751
3752 2005-02-10 Raphael Neider <rneider AT web.de>
3753
3754         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3755           different size for Alpha
3756         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3757
3758 2005-02-09 Raphael Neider <rneider AT web.de>
3759
3760         * src/SDCC.lex(doPragma) : save and restore warning options as well
3761           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3762         * have #pragma less_pedantic set the errorlevel to WARNING
3763           (fixes #1117001)
3764         * (cloneOptimize) : fixed wrong malloc's size
3765         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3766           facilitate correct handling of #pragma (save|restore)
3767
3768 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3769
3770         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3771
3772 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3773
3774         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3775
3776 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3777
3778         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3779
3780 2005-02-02 Raphael Neider <rneider AT web.de>
3781
3782         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3783         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3784         * (pic16_storeForReturn): fixed to allow returning function pointers
3785         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3786         * device/include/pic16/{stddef.h,stdbool.h}: added
3787
3788 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3789
3790         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3791
3792 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3793
3794         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3795         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3796          appeared to be required
3797
3798 2005-01-31 Borut Razem <borut.razem AT siol.net>
3799
3800         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3801           include/mcs51 and include/z80 directories to the package
3802
3803 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3804
3805         * src/hc08/gen.c (genFunction): fixed bug #1112752
3806
3807 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3808
3809         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3810
3811 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3812
3813         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3814
3815 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3816
3817         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3818
3819 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3820
3821         * device/include/c8051fxxx.h: removed these 6 files
3822         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3823
3824 2005-01-26 Raphael Neider <rneider AT web.de>
3825
3826         * src/pic16/gen.c (genAssign): fixed assignment from longs
3827           in codespace (were cut to three bytes)
3828         * (genDummyRead): implemented (except for CODESPACE...),
3829           fixed bug #1108575
3830         * src/pic16/glue.c (emitStatistics): beautified
3831         * device/lib/pic16/libm/Makefile: added include path
3832
3833 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3834
3835         * src/z80/gen.c (aopPut): fixed bug #1103902
3836
3837 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3838
3839         * device/lib/expf.c: fixed bug #1095792
3840
3841 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3842
3843         * device/lib/pic16/libm: added Math library sources
3844
3845 2005-01-24 Raphael Neider <rneider AT web.de>
3846
3847         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3848           to enable upcast to pCodeOpReg2 (there is no type tag to
3849           differenciate the two and pic16_popGet2p cast into PCOR2)
3850         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3851           (sizeof(sectNames) changed to sizeof(sectName))
3852           Both patches fix segfaults under MinGW.
3853
3854 2005-01-23 Raphael Neider <rneider AT web.de>
3855
3856         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3857           Safe_[mc]?alloc()'ed variables
3858         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3859           of (byte sized) temporaries (assign them to WREG for now)
3860         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3861           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3862           this might fix SIGSEGVs on MinGW...
3863         * src/SDCCopt.c (killDeadCode): restored original behaviour
3864           (volatile operands might get thrown away though)
3865
3866 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3867
3868         * src/pic16/gen.c: fixed bug #1106975,
3869         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3870         pointer update, INTCON is saved, global interrupts are disabled and
3871         restored after updateing TOS.
3872         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3873         * added function attribute 'shadowregs' to take advantage of shadow
3874         registers,
3875         * added function attribute 'wparam' as an alternative to the wparam
3876         pragma,
3877         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3878         user declares a non-ISR function as 'shadowregs',
3879         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3880
3881 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3882
3883         * .version: bumped version number to 2.4.8
3884         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3885         pic16 port,
3886         * device/lib/pic16/libio/i2c/: I2C module support library,
3887         * device/include/pic16/i2c.h: I2C support library header,
3888         * device/lib/pic16/libc/stdio/: standard IO support sources,
3889         * (printf_small.c): printf_small() source, supports float print,
3890         * (printf_tiny.c): printf_tiny() source, does not support floats,
3891         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3892         enable global optimizations for entire library source, other
3893         Makefiles in the source tree are also modified to reflect this,
3894         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3895         function,
3896         * doc/sdccman.lyx: updated to reflect new changes,
3897         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3898         sym->onStack if-case,
3899         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3900         sbit, idata, _idata, xdata, _xdata,
3901         * added pragma library, to link an external library, (see doc),
3902         * removed command line options, --pomit-config-words, --pomit-ivt,
3903         --pleave-reset-vector,
3904         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3905         when calling assembler to reflect memory model used, also define
3906         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3907         reflect stack model used,
3908         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3909         on stack return NULL,
3910
3911 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3912
3913         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3914           of the operands is volatile. Fixes #1020220
3915
3916 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3917
3918         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3919         * (OptimizeRegUsage): make sure that there is really no other flow where
3920           the first pCode is used
3921
3922 2005-01-22 Raphael Neider <rneider AT web.de>
3923
3924         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3925           to fix #1106967 (pCode->seq are not set up correctly)
3926
3927 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3928
3929         * src/SDCCglue.c (glue): make sure code area is declared before the
3930         static initialization area.
3931
3932 2005-01-21 Raphael Neider <rneider AT web.de>
3933
3934         * device/lib/Makefile.in: fixed test for pic16 install dir
3935         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3936           optimizations
3937         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3938           added --optimize-goto compiler switch and pragma wparam documentation
3939         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3940         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3941           and PRODH closing bug #1071770 (peephole optimizer)
3942
3943 2005-01-19 Raphael Neider <rneider AT web.de>
3944
3945         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3946           cmdLine buffers (used when calling sdcpp...) are large enough
3947           (MAX_PATH=256 truncates arguments leading to system halts when
3948           used in MinGW...)
3949         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3950         * (genUminus): rewritten to for efficiency
3951         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3952           used uninitialized in some cases)
3953         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3954           copy the third byte from the int -- now assumes 0x80 (data memory)
3955         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3956           operands (genAddLit expects the iCode's operands to swapped as
3957           well), fixed leftover bytes (crashed for short left operands)
3958         * (pic16_genMinusDec): performance improvements, removed false
3959           PIC14 emitSKPNCs
3960         * (pic16_genMinus): fixed to cope with differently sized operands
3961         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3962           for --obanksel > 1
3963         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3964         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3965           new banksel optimization
3966         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3967           analysis for temporary registers (segfaults...)
3968         * src/pic16/peeph.def: added rule
3969
3970 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3971
3972         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3973         which converts a float number to its ASCII representation
3974         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3975         functions to convert the fractional and integer part of a float to ASCII,
3976         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3977         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3978         ram
3979         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3980         _STATMEM macros,
3981         * device/include/pic16/adc.h: added GPL info,
3982         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3983         a pCodeOp as tested operand,
3984         * (genNearPointerGet): optimized bit testing, does not use
3985         intermediate register for bit value, test directly instead with
3986         BTFSS, BTFSC, works only for single bits,
3987         * (genpic16Code): dump the name of the iCode in the asm,
3988         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3989         renamed to pic16_decodeOp,
3990         * (serialRegAssign): do not allocate a temporary register for iCode
3991         sequences that test a single bit for 1/0
3992
3993 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
3994
3995         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
3996         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
3997         access stack and frame pointers. They are initially assigned to
3998         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
3999         accessing SFRs. Updated all occurences of modification of stack or
4000         frame pointer in gen.c and pcode.c,
4001         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
4002         assigning of a literal value to pointers,
4003         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
4004         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
4005         selected
4006
4007 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4008
4009         * doc/sdccman.lyx: update documentation about stack pragma, added
4010         some info for stack memory models
4011
4012 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4013
4014         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
4015
4016 2005-01-08 Raphael Neider <rneider AT web.de>
4017
4018         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
4019           udata sections to fix bug #1097823
4020
4021 2005-01-05 Raphael Neider <rneider AT web.de>
4022
4023         * src/pic16/gen.c (genGenericShift): added handling of differently
4024           sized left operand and result
4025
4026 2005-01-04 Raphael Neider <rneider AT web.de>
4027
4028         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
4029         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
4030           to hold the condition bit)
4031         * added new version of genCmp (old code available via #define)
4032         * added new version of genShiftLeft/genShiftRight in a generic
4033           way, now supports shifting by negative values
4034         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
4035           shiftCount (expected by genGenericShift)
4036         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
4037         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
4038           dump
4039         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
4040           is an invalid literal too...)
4041
4042 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
4043
4044         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
4045         from Raphael Neider,
4046         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
4047         for 8-bit literals. This fixes some literal operands which are sign
4048         extended to 16-bits ints when instruction needs only 8-bits.
4049
4050 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
4051
4052         * device/lib/logf.c: added mcs51 assembly version
4053         * device/lib/expf.c: added mcs51 assembly version
4054         * device/lib/_logexpf.c: new shared asm code for expf and logf
4055         * device/include/math.h: add defines for assembly math library
4056         * device/lib/Makefile.in: build new _logexpf.c
4057         * device/lib/libfloat.lib: use new _logexpf.c
4058
4059 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4060
4061         * src/pic/device.c
4062         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
4063           device types which have less than 0x7f registers.
4064
4065 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4066
4067         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
4068
4069 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4070
4071         * device/lib/printf_fast.c: only build on supported arch.
4072         * device/lib/printf_tiny.c: only build on supported arch.
4073         * device/lib/printf_fast_f.c: only build if asm float lib
4074         * device/lib/_fsget1arg.c: only build if asm float lib
4075         * device/lib/_fsget2args.c: only build if asm float lib
4076         * device/lib/_fsnormalize.c: only build if asm float lib
4077         * device/lib/_fsreturnval.c: only build if asm float lib
4078         * device/lib/_fsrshift.c: only build if asm float lib
4079         * device/lib/_fsswapargs.c: only build if asm float lib
4080         * device/include/stdio.h: don't provide print_fast,
4081           print_fast_f, print_tiny prototypes if --xstack used
4082
4083 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
4084
4085         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
4086         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
4087           to the SOURCES
4088
4089 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4090
4091         * device/lib/printf_fast_f.c: same as printf_fast, but
4092           with floating point enabled
4093         * device/lib/printf_fast.c: minor tweaks
4094         * device/include/stdio.h: add printf_fast_f
4095
4096 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4097
4098         * src/SDCCmain.c: make --float-reent default for mcs51
4099         * device/lib/_fsadd.c: added mcs51 assembly version
4100         * device/lib/_fssub.c: added mcs51 assembly version
4101         * device/lib/_fsmul.c: added mcs51 assembly version
4102         * device/lib/_fsdiv.c: added mcs51 assembly version
4103         * device/lib/_fseq.c: added mcs51 assembly version
4104         * device/lib/_fsneq.c: added mcs51 assembly version
4105         * device/lib/_fsgt.c: added mcs51 assembly version
4106         * device/lib/_fslt.c: added mcs51 assembly version
4107         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
4108         * device/lib/Makefile.in: add _fscmp to build
4109         * device/lib/libfloat.lib: add _fscmp to build
4110
4111 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4112
4113         * device/lib/_fs2slong.c: added mcs51 assembly version
4114         * device/lib/_fs2sint.c: added mcs51 assembly version
4115         * device/lib/_fs2schar.c: added mcs51 assembly version
4116         * device/lib/_fs2ulong.c: added mcs51 assembly version
4117         * device/lib/_fs2uint.c: added mcs51 assembly version
4118         * device/lib/_fs2uchar.c: added mcs51 assembly version
4119         * device/lib/_slong2fs.c: added mcs51 assembly version
4120         * device/lib/_sint2fs.c: added mcs51 assembly version
4121         * device/lib/_schar2fs.c: added mcs51 assembly version
4122         * device/lib/_ulong2fs.c: added mcs51 assembly version
4123         * device/lib/_uint2fs.c: added mcs51 assembly version
4124         * device/lib/_uchar2fs.c: added mcs51 assembly version
4125         * device/include/float.h: added #define to select asm vs c
4126
4127 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4128
4129         * device/lib/printf_fast.c: improvements to float output
4130         * device/include/float.h: add defines for assembly float library
4131         * device/lib/_fsget1arg.c: receive 1 float arg
4132         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4133         * device/lib/_fsnormalize.c: normalize a float
4134         * device/lib/_fsreturnval.c: return float, various helper routines
4135         * device/lib/_fsrshift.c: right shift a float's mantissa
4136         * device/lib/_fsswapargs.c: swap 2 floats
4137         * device/lib/Makefile.in: build these 6 new files for mcs51
4138         * device/lib/libfloat.lib: add these 6 files to the library
4139
4140 2004-12-26 Borut Razem <borut.razem AT siol.net>
4141
4142         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4143           built by gcc 3.4.2
4144
4145 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4146
4147         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4148           and fully reentrant and register bank neutral.
4149         * device/lib/printf_fast.c: added float (not enabled by default),
4150           added compact/slower integer (also not enabled by default),
4151           improved size/speed of fast integer code, other minor changes
4152         * device/include/stdio.h, device/lib/Makefile.in,
4153           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4154
4155 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4156
4157         * src/pic16/pcode.c: declaring variables other than at the start of a
4158           block is not supported in C by VC6.
4159
4160 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4161
4162         * applied a previous patch from Raphael Neider that wasn't included
4163         in the previous commits, which fixes infinite loops within jumptable
4164         improvements,
4165         * made some fixes that previous patches introduced
4166
4167 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4168
4169         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4170         that fixes an issue with AOP_PCODE asmop's offset,
4171         * (pic16_popCopyReg): update instance field too,
4172         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4173         function of pic port,
4174         * (genCmp, genAnd, genAssign),
4175         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4176
4177 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4178
4179         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4180         variables initial values to idata section,
4181         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4182         variables in some functions. This utilizes parmBytes field of iCode
4183         structure to hold the offset of the variable in stack. (might be
4184         able to use the stack field too?)
4185         * applied patch from Raphael Neider # ### , # ###
4186         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4187         variable initial values in idata section,
4188         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4189         for static variables with initial value
4190         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4191         applied fix in while loop from Raphael Neider.
4192
4193 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4194
4195         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4196         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4197         * src/ds390/ralloc.c (serialRegAssign): spill bits
4198         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4199         * support/Util/SDCCerr.c,
4200         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4201         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4202         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4203
4204 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4205
4206         * device/include/sdcc-lib.h: inserted LGPL, added includes
4207           asm/ds390/features.h and asm/mcs51/features.h
4208         * device/include/asm/default/features.h,
4209         * device/include/asm/gbz80/features.h,
4210         * device/include/asm/z80/features.h: added empty _AUTOMEM
4211           and _STATMEM
4212         * device/include/asm/ds390/features.h,
4213         * device/include/asm/mcs51/features.h: added files with defines for
4214           _AUTOMEM and _STATMEM indicating automatic and static storage class
4215         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4216         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4217         * src/SDCCicode.c (geniCodeCast),
4218         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4219         * src/SDCCloop.c (loopInduction): removed unused variable lr
4220         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4221           to convertToFcall to include char modulo (RFE 1065037), added check
4222           if left operand is unsigned and use abs of literal value
4223         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4224           as it doesn't work after conversion from peephole.def to peephole.rul
4225         * src/mcs51/gen.c (toBoolean): added check for size,
4226           (genModOneByte): optimized code for signed char modulo a literal
4227           power of 2 (thanks to Hubert Sack),
4228           (genRRC): removed unnecessary "clr c",
4229           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4230         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4231           jump optimization,
4232           swapped rules 256.c and 256.d,
4233           extended 256.d by using new multiple checks (thanks Erik),
4234           added rules 256.e and 256.f,
4235           updated rule 261.a and 261.b to new generated code
4236         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4237
4238 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4239
4240         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4241           induction related bugs, including first part of bug #1074377
4242
4243 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4244
4245         * applied patch from bug-report #1076292,
4246         * applied patches for genAnd and Goto-optimizations for Raphael
4247         Neider,
4248         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4249         dump a less iCode information,
4250         * src/pic16/device.h (pic16_options_t): added field debgen,
4251         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4252         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4253         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4254         puclic,
4255         * (various functions): added macros FENTRY and FENTRY2 to functions,
4256         to emit function prologue,
4257         * (various functions): fixed indentation,
4258         * (genNearPointerGet): fixed loading of FSR0,
4259         * (genPackBits): applied patch from Raphael Neider to fix updating
4260         of FSR0 and touching only the modified bits,
4261         * src/pic16/genarith.c (various functions): added macros FENTRY to
4262         emit function prologue in comments,
4263         * src/pic16/pcode.h: added functions debugf2, debugf3,
4264         * src/pic16/ralloc.c: partial fix for packForPush caused
4265         segmentation fault,
4266
4267 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4268
4269         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4270           <stsp AT users.sourceforge.net> with reversed byte order
4271         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4272
4273 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4274
4275         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4276           bug #1074377
4277         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4278         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4279
4280 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4281
4282         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4283
4284 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4285
4286         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4287           conditions,
4288           (setFromConditionArgs): friendly operand parser for peephole rules,
4289           (operandBaseName, operandsNotRelated): new peephole condition
4290           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4291           architecture specific register naming into account, handles n-way
4292           comparisons, and supports quoted literals
4293         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4294
4295 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4296
4297         * src/mcs51/peeph.def: fixed bug #1076940
4298
4299 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4300
4301         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4302
4303 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4304
4305         Adding support for replacing ljmps with sjmps in jumptables
4306         generated for switch statements. For now you need to set the
4307         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4308         Now 4 algorithms for mcs51 jumptable generation are used:
4309         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4310         addresses loaded pc-relative for up to 112 cases and stack-pushing
4311         target addresses loaded with offset from dptr for up to 256 cases.
4312
4313         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4314         * src/mcs51/main.c: adapted constants for switch table generation
4315         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4316
4317 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4318
4319         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4320         * support/regression/tests/bug1057979.c: added test for bug 1073386
4321
4322 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4323
4324         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4325         compilers
4326
4327 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4328
4329         * src/pic16/device.h,
4330         * src/pic16/genarith.c,
4331         * src/pic16/glue.c,
4332         * src/pic16/main.c,
4333         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4334
4335 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4336
4337         Large cummulative patch for pic16 port.
4338         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4339         to call when a stack overflow occurs,
4340         * (malloc.h): added CVS Id tag,
4341         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4342         variable,
4343         * added libc directory. The current version of LibC contains string
4344         functions, ctype functions and macros and some functions of the
4345         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4346         be extensively tested in the future. Standard disclaimer here.
4347         Library is not automatically build yet. But one can build it by
4348         invoking 'make' inside the libc directory.
4349         * added ADC library under libio. Preliminary version yet.
4350
4351         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4352         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4353         aopForRemat() now and not by pic16_aopOp(),
4354         * (pic16_popGetTempReg): removed warning messgae when allocating
4355         temporary registers, its a buggy feature and will be removed,
4356         * (pic16_popGet): set register instance field in AOP_CRY,
4357         * (pic16_outBitC): fixed for results in size greater than 1,
4358         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4359         * (pic16_storeForReturn): optimized return of 0,
4360         * (genCmp): experimental code for new genCmp which uses PIC18's
4361         special compare&skip instructions. Initial tests fail some times
4362         with variables grater than 1 byte in size, so new code is disabled,
4363         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4364         a single bit,
4365         * (genCast): began a fix to optimize the casting of a bit to another
4366         bit, now assigning a bitfield to another bitfield will fail, sorry,
4367         * src/pic16/main.c: disabled the use of lr-support feature,
4368         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4369         * added some function prototypes, added function _debugf prototype,
4370         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4371         bits with offset (case PO_GPR_BIT),
4372         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4373         command line,
4374         * (isBankInstruction): modified to return 0 for no banking instruction,
4375         and 1 for banking instruction,
4376         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4377         caused stop processing pCodes after a inline assembly block,
4378         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4379         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4380         registers when it shouldn't,
4381         * src/pic16/ralloc.c (allocReg): add preliminary support for
4382         supporting a limited set of temporary registers,
4383
4384 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4385
4386         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4387           genDataPointerSet): ensure assignments always copy in MSB to LSB
4388           order,
4389           (loadRegFromAop): recognize CLRH optimization,
4390           (genFunction): optimize RECEIVE iCodes in reentrant functions
4391
4392 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4393
4394         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4395           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4396           selected.
4397         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4398         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4399           contiguous with data
4400
4401 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4402
4403         * device/lib/_gptrget.c (_gptrget),
4404         * device/lib/_gptrgetc.c (_gptrgetc),
4405         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4406           instead of sjmp to ret
4407         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4408           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4409
4410 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4411
4412         * .version: bumped version to 2.4.7
4413         * device/lib/_gptrget.c (_gptrget): is now _naked
4414         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4415         * device/lib/_gptrput.c (_gptrput): is now _naked
4416         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4417           (createFunction): fixed xstack
4418         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4419         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4420           or bit either,
4421           (geniCodeCritical): store original interrupt state in an iTemp bit
4422           var unless stack-auto
4423         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4424         * src/SDCCmain.c (setIncludePath): added include/target to search path
4425         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4426         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4427           prototype,
4428           (processFuncArgs): put bit vars in bit area
4429         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4430           unsaveRBank): fixed xstack,
4431           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4432           (genFunction, genEndFunction): fixed xstack,
4433           (genAssign): optimization don't walk backwards through mem
4434         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4435         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4436         * support/regression/Makefile: also make library (for stack-auto) when
4437           making "all" and added "test-mcs51-xstack-auto"
4438         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4439         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4440         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4441         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4442         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4443           make-library by MAKE_LIBRARY
4444         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4445           regression tests for xstack
4446         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4447         * support/regression/tests/critical.c: test for critical on mcs51
4448
4449 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4450
4451         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4452           built version of sdcc instead of installed version
4453
4454 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4455
4456         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4457         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4458           vprintf.c now
4459         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4460         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4461           WARNING: remove device/lib/build/z80/printf.o by hand when
4462           updating from previous build!
4463         * device/lib/z80/printf.c: updated comment
4464         * support/regression/tests/bug1057979.c: test all ports now
4465         * support/regression/tests/bug1065458.c: file added
4466
4467 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4468
4469         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4470           *_start and *_end symbols for static functions
4471
4472 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4473
4474         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4475           and search crt0.o in all library paths,
4476           (setIncludePath): proper handling of --nostdinc,
4477           (setLibPath): proper handling of --nostdlib
4478         * support/regression/Makefile,
4479         * support/regression/ports/ds390/spec.mk,
4480         * support/regression/ports/gbz80/spec.mk,
4481         * support/regression/ports/hc08/spec.mk,
4482         * support/regression/ports/mcs51/spec.mk,
4483         * support/regression/ports/mcs51-large/spec.mk,
4484         * support/regression/ports/mcs51-stack-auto/spec.mk,
4485         * support/regression/ports/z80/spec.mk: use include and lib files from
4486           built version of sdcc instead of installed version
4487         * doc/sdccman.lyx: fixed typo in --nostdinc
4488
4489 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4490
4491         * src/pic/pcode.c,
4492         * src/pic/device.c,
4493         * src/pic/ralloc.c,
4494         * src/pic/gen.c : added support to generate code for struct bit fields.
4495
4496 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4497
4498         * as/xa51/xa_version.h,
4499         * device/include/errno.h,
4500         * device/include/regc515c.h,
4501         * device/lib/_itoa.c,
4502         * device/lib/_ltoa.c,
4503         * device/lib/ser_ir_cts_rts.c,
4504         * sim/ucsim/xa.src/glob.cc,
4505         * sim/ucsim/xa.src/inst_gen.cc,
4506         * sim/ucsim/xa.src/xa_bit.cc,
4507         * sim/ucsim/xa.src/xa_sfr.cc,
4508         * sim/ucsim/z80.src/inst_dd.cc,
4509         * sim/ucsim/z80.src/inst_fdcb.cc,
4510         * support/scripts/keil2sdcc.pl,
4511         * src/pic16/pic16.dsp,
4512         * src/pic16/pic16a.dsp: corrected cvs line endings
4513         * device/lib/printf_large.c: fixed bug 1057979
4514         * src/pic16/gen.c: fixed non-C standard code
4515         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4516         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4517         * support/regression/ports/mcs51/support.c: reload T1 asap
4518         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4519           pdata use and clear idata startup behaviour
4520         * support/regression/tests/bug1057979.c: added
4521
4522 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4523
4524         * device/examples/ds390/ow390/ad26.h,
4525         * device/examples/ds390/ow390/cnt1d.h,
4526         * device/examples/ds390/ow390/crcutil.c,
4527         * device/examples/ds390/ow390/ownet.h,
4528         * device/examples/ds390/ow390/owsesu.c,
4529         * device/examples/ds390/ow390/swt12.h,
4530         * device/examples/ds390/ow390/swtoper.c,
4531         * device/examples/ds390/ow390/temp10.h,
4532         * device/examples/ds390/ow390/thermodl.c,
4533         * device/examples/ds390/tinitalk/tinitalk.dsp,
4534         * device/examples/ds390/tinitalk/tinitalk.dsw,
4535         * device/examples/mcs51/clock/hw.h,
4536         * device/examples/mcs51/simple2/go.bat,
4537         * device/examples/serialcomm/windows/serial.h,
4538         * device/examples/xa51/dummy.c,
4539         * device/examples/xa51/hello.c,
4540         * device/include/80c51xa.h,
4541         * device/include/at89x051.h: corrected cvs line endings
4542
4543 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4544
4545         * src/pic16/main.c (options): added command line --gstack, to trace
4546         stack over/under flows,
4547         * added pragma 'wparam' to allow passing first byte of function
4548         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4549         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4550         call to __gstack_test function and sets up the symbol as extern,
4551         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4552         * popaop): added call to pic16_testStackOverflow,
4553         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4554         wparamList list,
4555         * (genCall, genPcall): now all parameters are passed via stack
4556         except in functions that are pass to wparam pragma in which WREG is
4557         used too,
4558         * (genPcall): REENTRANT flag is checked to see if variable prototype
4559         contains reentrant keyword, don't call a non-reentrant function, via
4560         a reentrant function pointer or vice versa, functions are never
4561         passed via WREG,
4562         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4563         D.Winkler,
4564         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4565         SIGSEGV when accessing a NULL register stucture,
4566         * (pic16_printGPointerType): modified to handle UPPER modifier for
4567         function initializers, changed prototype of function to simpler one,
4568         * (pic16_printIvalFuncPtr): check to see if function is already
4569         added in externs list,
4570         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4571         optimized a move from W to SFR with a move to the same register
4572         later after a CALL,
4573         * device/lib/pic16/debug: NEW directory, contains debug features
4574         which are enabled when linking with libdebug.lib, currently command
4575         line option --gstack enables stack pointer tracing for over/under
4576         flow, corresponding sources are in debug/gstack
4577
4578 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4579
4580         * doc/sdccman.lyx: updated SDCC version,
4581         * (PIC16 port): update list of command line options,
4582         * src/pic16/device.h (structure pic16_options_t): added field gstack
4583         to enable stack overflow tracing on push/pops,
4584         * src/pic16/device.c (statistics structure): added statistics
4585         structure,
4586         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4587         pic16_dump_int_registers): increase statistics counters for each
4588         * variable which is encountered
4589         * (pic16_dump_usection): emit each .udata variable to its own udata
4590         section,
4591         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4592         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4593         parameters via stack, otherwise use old scheme,
4594         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4595         assembler output file,
4596         * src/pic16/main.c: added command line options --gstack to enable
4597         push/pop tracing for stack overflow,
4598         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4599         instructions): added size of each instruction,
4600         * (pic16_countInstruction): estimate size of instructions in
4601         the_pFile list, inline assembly blocks are not counted,
4602         * (pic16_FixRegisterBanking): trace previous register usage, when
4603         banksel optimizations is greater than 0, don't emit a redudant
4604         banksel directive,
4605
4606 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4607
4608         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4609         * src/pic16/ralloc.c : applied same fix for pic16.
4610         * src/pic/gen.c : tidied it up a little.
4611
4612 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4613
4614         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4615         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4616
4617 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4618
4619         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4620
4621 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4622
4623         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4624         non-reentrant function __modsint in the interrupt function (thus
4625         corrupting math operations during serial I/O)
4626         * device/lib/ser_ir.c: as above, changed buffersize
4627         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4628         256.c,d for zeroing
4629         * doc/Makefile: added option -t for rsync
4630
4631 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4632
4633         * src/SDCCast.h (struct ast),
4634         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4635
4636 2004-10-20 Borut Razem <borut.razem AT siol.net>
4637
4638         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4639         package
4640
4641 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4642
4643         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4644         makefile targets,
4645         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4646         support functions to replace long sequences of MOVFF's from access
4647         bank registers to stack and vice versa,
4648         * src/pic16/device.h: added new field opt_flags, where optimization
4649         flags can be set to enable certain features,
4650         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4651         * pBlock, (genFunction, genEndFunction): surroung loop for
4652         saving/loading used registers in stack with PC_INFO pCodes,
4653         INF_LREGS. Code in between can then be optimized by pCode optimizer
4654         to support function calls,
4655         * (genDataPointerSet): fixed bug which loaded float fields in
4656         structures with corrupt data,
4657         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4658         in a standard way debug info on stderr. Feature used for developing
4659         and debugging only,
4660         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4661         obsolete chunks of code,
4662         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4663         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4664         * pic16/src/pcode.c (pic16_newpCodeInfo,
4665         * (pic16_newpCodeOpLocalRegs),
4666         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4667         feature,
4668         * (pic16_pCodeConstString): printing of the initial value of a
4669         symbol as a comment is inhibited since parsing was already done by
4670         copyStr and output is corrupt,
4671         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4672
4673 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4674
4675         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4676
4677 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4678
4679         * as/mcs51/lkarea.c: removed old K&R style,
4680           (lnksect): changed check on boundary error,
4681           (lnksect2): changed check on boundary error,
4682           (lnksect2): extend XSTK to end of page if size = 1
4683         * as/mcs51/lkmain.c: removed old K&R style,
4684           (Areas51): create l_IRAM symbol
4685         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4686         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4687           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4688         * device/lib/_mullong.c: added version to be compiled with xstack
4689         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4690         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4691         * device/lib/mcs51/crtxstack.asm: fixed comment
4692         * src/SDCCglue.c: maxInterrupts defaults to 0,
4693           (emitMaps): added pdata,
4694           (createInterruptVect): (re)moved default,
4695           (glue): added pdata,
4696           (glue): moved __start__xstack to XSTK with default size 1
4697         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4698           and options.float_rent when options.stackAuto is set,
4699           (linkEdit): only write XDATA_NAME if provided on command line
4700         * src/SDCCmem.h,
4701         * src/SDCCmem.c: added pdata
4702         * src/port.h: added pdata_name to PORT
4703         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4704           (saveRegisters, unsaveRegisters): removed usage of B,
4705           (genMinus): fixed accumulator clash,
4706           (genJumpTab): added comment, this needs another look
4707         * src/mcs51/gen.c: added check for "B in use" paranoia,
4708           added pushB() and popB()
4709         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4710           chance
4711         * src/avr/main.c,
4712         * src/ds390/main.c,
4713         * src/hc08/main.c,
4714         * src/mcs51/main.c,
4715         * src/pic/main.c,
4716         * src/pic16/main.c,
4717         * src/xa51/main.c,
4718         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4719           added PSEG (PAG,XDATA) or NULL to port specifier
4720         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4721         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4722           (_mcs51_genInitStartup): removed __start__xstack equ,
4723           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4724         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4725         * src/z80/gen.c (_rleAppend): fixed warnings
4726         * support/regression/tests/zeropad.c: added pdata test
4727         * .version: bumped to 2.4.6
4728
4729 2004-10-17 Borut Razem <borut.razem AT siol.net>
4730
4731         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4732         as a part of nightly build
4733
4734 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4735
4736         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4737         WREG holds the first byte function parameters,
4738         * (aopForSym): take special case for symbols which are in FARSPACE
4739         but in CODESPACE too,
4740         * (assignResultValue): modified to take into account _G.useWreg,
4741         * (genCall): don't use wreg for parameter passing when function is
4742         declared as reentrant, too, added optimization INCF to stack
4743         pointer when stack parameter count is 1,
4744         * (genFunction, genEndFunction): refurnished and fixed to not using
4745         wreg for passing parameters when function has varargs or is
4746         reentrant, fixed bug with symbol name compare for generating
4747         functions in absolute address,
4748         * (pic16_storeForReturn): refurnished,
4749         * (genCmp): began writing a new version of the function, not ready
4750         yet, therefore it is disabled,
4751         * (genAssign): do not read code memory when assigning a function to
4752         a pointer function,
4753         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4754         array of characters, not pointer,
4755         * (pic16initialComments): in debug mode emit an .ident directive for
4756         the assembler,
4757         * (_process_pragma): emit a new warning type (internal to pic16)
4758         when setting stack to default length, emit a similar warning when
4759         placing a function at absolute address and address is not word aligned
4760         * (_pic16_parseOptions): added 'return TRUE' statement,
4761         * (_pic16_linkEdit): if compiling a source, then add the source's
4762         file object, first in the list of objects to link,
4763
4764 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4765
4766         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4767         * src/pic/main.c : removed VC warning.
4768         * src/pic/gen.c : changed comment.
4769
4770 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4771
4772         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4773         reference to a deprecated symbol _GPTRREG was causing failure to
4774         link. Thanks G. M. Gallant for the info.
4775
4776 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4777
4778         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4779         comments for Bugs item #954788.
4780
4781 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4782
4783         * src/pic16/device.c (pic16_dump_gsection,
4784         * pic16_groupRegistersInSection): handle symbols declared to be in
4785         access bank differently,
4786         * src/pic16/gen.c (struct _G): added field resDirect,
4787         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4788         send values read from stack directly to result and don't allocate
4789         temporary values,
4790         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4791         same registers,
4792         * (pic16_sameRegsOfs): NEW,
4793         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4794         free because they were not allocated from temporary pool,
4795         * pic16_popRegFromString): workaround to fix a problem with
4796         allocating variables twice or never,
4797         * (genGenPointerGet): using PRODL instead of FSR0H,
4798         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4799         instead of FSR0H,
4800         * (genAssign): take advantage of the _G.resDirect flag,
4801         * (genCast): around line 11844, use mov2f instead of directly
4802         MOVFF'ing between operands to account for literal values,
4803         * src/pic16/genutils.c: some new debug functions for gpsim have been
4804         added,
4805         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4806         float with integer part only,
4807         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4808         place variables in access bank
4809         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4810         updated sources to reflect recent changes in gen.c
4811
4812 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4813
4814         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4815         sources that searched for headers in installation path, now the
4816         device/include/pic16 is used,
4817         * src/pic16/glue.c (pic16glue),
4818         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4819         .line directives if not in debug mode, this suppresses assembler's
4820         warnings for ignored directives
4821
4822 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4823
4824         * src/port.h: made reset_regparms prototype void parameter explicit.
4825         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4826         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4827         * doc/sdccman.lyx: documented warning disabling and how to use
4828           printf_large to make it print floats.
4829         * device/include/stdbool.h: NEW
4830         * device/lib/_atof.c,
4831         * device/lib/_divuint.c,
4832         * device/lib/_divulong.c,
4833         * device/lib/expf.c,
4834         * device/lib/printf_large.c,
4835         * device/lib/sincosf.c,
4836         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4837         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4838           a completely reentrant lib.
4839
4840 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4841
4842         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4843         * device/include/pic16/stdio.h: fixed bug with colon
4844
4845 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4846
4847         * device/include/pic16/stdio.h,
4848         * device/include/pic16/stdlib.h,
4849         * device/include/pic16/math.h: NEW
4850         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4851         declared as _naked to reduce overhead
4852         * device/lib/Makefile.in (target port-specific-objects-pic16):
4853         changed * to *.* so to ignore the CVS directory,
4854         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4855         stacked variables back in stack,
4856         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4857         corruption
4858
4859 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4860
4861         * .version: bumped version number to 2.4.5
4862         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4863         * support/Util/SDCCerr.c (messages structure): added entry for
4864         W_POSSBUG2
4865
4866         Large cumulative patch for pic16 port and libraries.
4867         * device/include/pic16/sdcc-lib.h,
4868         * device/include/pic16/stdarg.h,
4869         * device/include/asm/pic16/features.h,
4870         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4871         * device/include/pic16/float.h: changes reentrant keyword with
4872         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4873         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4874         updated target build-libraries to include objects from gptr,
4875         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4876         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4877         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4878         all function headings,
4879         * src/SDCCmain.c: added global parameter userIncDirsSet,
4880         * (parseCmdLine): when option -I is encountered add directory to
4881         userIncDirsSet too,
4882         * src/version.awk: added space between control and long,
4883         * src/pic16/NOTES: added some notes for the port,
4884         * src/pic16/gen.c: added prototype for mov2fp function,
4885         * (fReturnpic16[]): properly named return value registers,
4886         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4887         * (aopForSym): added code to handle symbols with onStack flag set,
4888         symbols onStack are allocated PTRSIZE bytes,
4889         * (aopFreeAsmop): handles special case where asmops are stack objects,
4890         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4891         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4892         added argument lock to trace flaws in allocating temporary registers
4893         when developing port,
4894         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4895         * (pic16_popRegFromString): reenabled allocating a direct register
4896         from string,
4897         * (assignResultValue): various beautifications,
4898         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4899         referenced function argument,
4900         * (genIpush): reenabled to allow stacked arguments, handles only
4901         ic->parmPush iCodes,
4902         * (genCall, genPcall): major changes to allow for variable argument
4903         functions, fixed a bug with falsely restoring stack pointer after
4904         returning from call,
4905         * (genFunction): pending code for critical function,
4906         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4907         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4908         * (genNearPointerGet): fixed bug with indirect reading, was always
4909         reading from INDF0
4910         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4911         pointers,
4912         * (genAddrOf): rewrote code to take address of a stacked function parameter
4913         * (genCast): fixed casting to generic pointer type,
4914         * src/pic16/gen.h: added AOP_STA,
4915         * (struct asmop): added field stk,
4916         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4917         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4918         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4919         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4920         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4921         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4922         generic pointers,
4923         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4924         and library paths,
4925         * (pic16_port structure): generic pointer size is set to 3,
4926         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4927         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4928         compiler warning,
4929         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4930         operand is an iTemp,
4931
4932 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4933
4934         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4935         * debugger/mcs51/simi.c: addapt new syntax of s51
4936
4937 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4938
4939         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4940         * src/pic16/pcode.c: commented out some calls to free() in order to
4941         fix bug #989576,
4942
4943 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4944
4945         * src/SDCCicode.h,
4946         * src/SDCCicode.c (isiCodeInFunctionCall),
4947         * src/avr/ralloc.c (selectSpil),
4948         * src/pic/ralloc.c (selectSpil),
4949         * src/pic16/ralloc.c (selectSpil),
4950         * src/ds390/ralloc.c (selectSpil),
4951         * src/hc08/ralloc.c (selectSpil),
4952         * src/xa51/ralloc.c (selectSpil),
4953         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4954         stack in the middle of a function call sequence (fixes bug #1020268)
4955         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4956         costs associated with the minimum switch case.
4957
4958 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4959
4960         * src/SDCC.lex: fixed bug #1030549
4961
4962 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4963
4964         * src/SDCCcse.h (struct cseDef),
4965         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4966         over a function call if the CSE is derived from a symbol whose
4967         address has been taken (fixes bug #1029883)
4968         * support/regression/tests/bug-1029883: a new regression test for
4969         this bug
4970
4971 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4972
4973         * src/hc08/gen.c (emitinline): fixed bug #1029778
4974         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4975         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4976         and starts toward RFE #905167)
4977
4978 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4979
4980         * src/pic16/gen.c (mov2f): New function to move an operand to
4981         another without considering if it is a literal or a register,
4982         * (pic16_sameRegs): don't check if they are both AOP_REG,
4983         * (AccRsh): removed andmask=0 lines,
4984         * (genLeftShift): duplicated to be improved in future versions,
4985         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4986         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4987         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4988         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4989         * (insertBankSwitch): fixed inserting banksel directives algorithm
4990         for instructions that follow a skip instruction, this fixes a report
4991         for broken subtraction code generation,
4992         * src/pic16/ralloc.c (deassignLRs): do not free register if current
4993         iCode is a left op, just in case result and right share the same
4994         registers
4995
4996 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4997
4998         * src/hc08/main.c,
4999         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
5000         preservation of HX
5001         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
5002         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
5003         on 2004-09-12; it was buggy
5004
5005 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
5006
5007         * src/SDCCsymt.h: removed RESULT_CHECK
5008         * src/SDCCast.c,
5009         * src/SDCCglue.c,
5010         * src/SDCCval.c,
5011         * src/pic/glue.c,
5012         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
5013
5014 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
5015
5016         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
5017         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
5018         configuration values no more rejected by compiler, they are assigned
5019         to configuration registers with a warning message instead,
5020         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
5021         the for-loop so last conf register is emitted too,
5022         * (_pic16_initPaths): link library libsdcc.lib by default,
5023         * (_hasNativeMulFor): modified test for multiplication according to
5024         Raphael Neider's remarks. Integer multiplication is also done with
5025         support functions,
5026         * device/include/pic16/pic18fregs.h: corrected type error in while
5027         testing and including 18f6720 header file
5028
5029 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
5030
5031         * src/pic16/device.h (pic16_options): removed field use_crt,
5032         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
5033         until an optimization to handle single bits is added,
5034         * (pic16_loadFSR0): moved before genUnpackBits,
5035         * (genAnd): some white lines removed,
5036         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
5037         leave_reset flags in pic16_options when using crt modules,
5038
5039 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
5040
5041         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
5042           for bugs 898889 & 979599. Also used some safer print instructions.
5043
5044 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
5045
5046         * src/pic16/device.h (pic16_options_t): added field use_crt,
5047         crt_name, no_crt,
5048         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
5049         catch a probable future bug,
5050         * src/pic16/gen.c: aopIdx function commented out,
5051         * (genAssign): commented out old code which used aopIdx,
5052         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
5053         code, added if conditionals to take into account the --use-crt
5054         command line options,
5055         * src/pic16/main.c (pic16_optionsTable): added new command line
5056         options, --use-crt= and --no-crt,
5057         * (_pic16_linkEdit): now the proper crt object is added in the
5058         linker command line except than when --no-crt is specified,
5059         * src/pic16/pcode.c,
5060         * src/pic16/pcode.h: added some structures and functions for a new
5061         optimization scheme to compansate for instruction overhead between
5062         same iCodes, this scheme is currently under development and is not
5063         working in any way,
5064         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
5065         to && operator,
5066         * device/lib/pic16/startup/crt0i.c,
5067         * device/lib/pic16/startup/crt0iz.c: added global char variable
5068         __uflags to force the generation of an idata section
5069
5070 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
5071
5072         * doc/Makefile,
5073         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
5074         * doc/sdccman.lyx: updated sdcc version to 2.4.4
5075
5076 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5077
5078         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
5079         Frieder) and clarified the default code optimization mode
5080
5081 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5082
5083         * src/SDCC.lex (doPragma, process_pragma),
5084         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
5085         "opt_code_size", and "opt_code_balanced"
5086         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
5087         regrouped options by category, added support for category headers
5088         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
5089         and "--opt-code-size"
5090         * doc/sdccman.lyx: documented these new options and pragmas
5091         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
5092         preference into account
5093
5094 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5095
5096         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
5097           geniCodePreDec): Fixed bug 904237 by generating a warning
5098         * src/SDCCerr.h,
5099         * src/SDCCerr.c: added warning W_SIZEOF_VOID
5100
5101 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
5102
5103         * src/pic/device.c : When no max ram set validate full memory range.
5104         * src/pic/pcode.c,
5105         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
5106
5107 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5108
5109         * device/lib/_gptrget.c,
5110         * device/lib/_gptrput.c: updated comment
5111         * device/lib/calloc.c,
5112         * device/lib/free.c,
5113         * device/lib/malloc.c,
5114         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5115         * src/SDCCcse.c (cseBBlock),
5116         * src/SDCCicode.c (printOperand, geniCodeArray),
5117         * src/SDCCicode.h (struct operand): fixed bug 868103
5118         * support/regression/tests/bug-868103.c: added
5119         * src/SDCCast.c (searchLitOp),
5120         * src/SDCCcse.h (struct cseDef),
5121         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5122         * src/SDCCicode.h (struct operand),
5123         * src/SDCCsymt.h (struct sym_link),
5124         * src/avr/gen.c (hasInc),
5125         * src/ds390/gen.c (hasInc),
5126         * src/hc08/gen.c (genPlusIncr, hasInc),
5127         * src/mcs51/gen.c (hasInc),
5128         * src/pic16/glue.c (pic16_printIvalChar),
5129         * src/pic16/ralloc.c (regWithIdx),
5130         * src/xa51/gen.c (hasInc) : removed warnings
5131         * src/SDCCast.c (createBlock): added comment ???
5132         * src/hc08/ralloc.c: updated comments
5133
5134 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5135
5136         * doc/sdccman.lyx: updated section on switch statements, added
5137         section about semaphore locking
5138         * doc/Makefile: added option -info for latex2html
5139         * device/lib/_gptrget.c,
5140         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5141
5142 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5143
5144         * src/pic/device.h,
5145         * src/pic/device.c,
5146         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5147          maxram is less than 0x100.
5148
5149 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5150
5151         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5152
5153 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5154
5155         * src/port.h,
5156         * src/mcs51/main.c,
5157         * src/ds390/main.c,
5158         * src/z80/main.c,
5159         * src/hc08/main.c,
5160         * src/pic/main.c,
5161         * src/pic16/main.c,
5162         * src/avr/main.c,
5163         * src/xa51/main.c
5164         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5165         a jump table is the best form for a switch statement, including
5166         automatic insertion of missing cases to make the case range
5167         continuous. Developed in collaboration with Frieder Ferlemann.
5168
5169 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5170
5171         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5172         accumulator result if it needs sign extension
5173
5174 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5175
5176         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5177
5178 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5179
5180         * device/lib/gbz80/printf.c,
5181         * device/lib/z80/printf.c: removed define for NULL
5182
5183 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5184
5185         * as/xa51/xa_link.c,
5186         * device/examples/ds390/ow390/ad26.c,
5187         * device/examples/ds390/ow390/cnt1d.c,
5188         * device/examples/ds390/ow390/counter.c,
5189         * device/examples/ds390/ow390/ds2480.h,
5190         * device/examples/ds390/ow390/ds2480ut.c,
5191         * device/examples/ds390/ow390/findtype.c,
5192         * device/examples/ds390/ow390/gethumd.c,
5193         * device/examples/ds390/ow390/owllu.c,
5194         * device/examples/ds390/ow390/ownetu.c,
5195         * device/examples/ds390/ow390/swt12.c,
5196         * device/examples/ds390/ow390/swtloop.c,
5197         * device/examples/ds390/ow390/temp.c,
5198         * device/examples/ds390/ow390/temp10.c,
5199         * device/examples/ds390/ow390/thermo21.c,
5200         * device/examples/ds390/ow390/tinilnk.c,
5201         * device/examples/ds390/ow390/tstfind.c,
5202         * device/examples/serialcomm/windows/serial.cpp,
5203         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5204         * device/include/reg51.h: fixed line endings for cvs
5205
5206 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5209         packRegsForAccUse, packRegisters): new accumulator register
5210         packing algorithm
5211         * support/regression/ports/hc08/support.c (_putchar): suppress
5212         warning of unused variable
5213         * src/SDCCicode.c: added SWAP entry to codeTable
5214
5215 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5216
5217         * device/lib/sprintf.c: forgot to add this file before previous commit
5218
5219 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5220
5221         * src/pic16/gen.c (genPackBits): added operand right in function
5222         parameters, load result directly if p_type is POINTER (that is
5223         called by genNearPointerSet)
5224         * (genUnPackBits): added operand left in function parameters,
5225         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5226         FSR0 if accessing bitfields,
5227
5228 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5229
5230         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5231           _print_format; updated printf, sprintf, vsprintf
5232         * device/include/asm/default/features.h: corrected comment/define
5233         * device/lib/Makefile.in: added sprintf.c
5234         * device/lib/libsdcc.lib: added sprintf module
5235         * device/lib/printf_large.c,
5236         * device/lib/vprintf.c,
5237         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5238           into these 3 files
5239         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5240         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5241         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5242           hc08 test
5243         * support/regression/tests/zeropad.c: define idata as data for hc08
5244
5245 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5246
5247         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5248         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5249         labels are referenced at least once (even if a reference is not found)
5250         * src/hc08/gen.c (emitcode): set isComment flag for comments
5251         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5252         loads), rules 6a..6b (optimize jumps to return)
5253
5254 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5255
5256         * device/lib/acosf.c (acosf),
5257         * device/lib/asinf.c (asinf),
5258         * device/lib/atanf.c (atanf),
5259         * device/lib/ceilf.c (ceilf),
5260         * device/lib/cosf.c (cosf),
5261         * device/lib/coshf.c (coshf),
5262         * device/lib/cotf.c (cotf),
5263         * device/lib/fabsf.c (fabsf),
5264         * device/lib/floorf.c (floorf),
5265         * device/lib/log10f.c (log10f),
5266         * device/lib/logf.c (logf),
5267         * device/lib/sinf.c (sinf),
5268         * device/lib/sinhf.c (sinhf),
5269         * device/lib/sqrtf.c (sqrtf),
5270         * device/lib/tanf.c (tanf),
5271         * device/lib/tanhf.c (tanhf),
5272         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5273         replaced all instances of "reentrant" in the library functions
5274         defined in math.h with this macro.
5275         * support/regression/tests/float_trans.c: reenabled test for hc08
5276
5277 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5278
5279         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5280         erroneously deleted
5281
5282 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5283
5284         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5285         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5286         multi-byte volatile operands are used
5287         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5288         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5289         initialization to area GSINIT0 so that it would always precede
5290         any static initializers in GSINIT
5291         * support/regression/tests/zeropad.c: fixed idata define for hc08
5292         * support/regression/tests/bug-927659.c,
5293         * support/regression/tests/float_trans.c: disabled tests for hc08
5294         pending missing library routines
5295         * .version: increased version number to 2.4.4 - hc08 port now passes
5296         regression tests
5297
5298
5299 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5300
5301         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5302         * Makefile.common.in,
5303         * as/Makefile,
5304         * as/hc08/Makefile.in,
5305         * as/mcs51/Makefile.in,
5306         * as/z80/Makefile.in,
5307         * debugger/mcs51/Makefile.in,
5308         * device/include/Makefile.in,
5309         * device/lib/Makefile.in,
5310         * doc/Makefile,
5311         * link/Makefile,
5312         * link/z80/Makefile.in,
5313         * packihx/Makefile.in,
5314         * sim/ucsim/main_in.mk,
5315         * sim/ucsim/avr.src/Makefile.in,
5316         * sim/ucsim/doc/Makefile.in,
5317         * sim/ucsim/gui.src/serio.src/Makefile.in,
5318         * sim/ucsim/hc08.src/Makefile.in,
5319         * sim/ucsim/s51.src/Makefile.in,
5320         * sim/ucsim/xa.src/Makefile.in,
5321         * sim/ucsim/z80.src/Makefile.in,
5322         * src/Makefile.in,
5323         * support/cpp2/Makefile.in,
5324         * support/librarian/Makefile,
5325         * support/makebin/Makefile: added DESTDIR to the install path proposed
5326         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5327         * doc/sdccman.lyx: added DESTDIR documentation
5328
5329 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5330
5331         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5332         instruction for interrupt handlers, use fast returns when returning
5333         from high priority interrupts
5334
5335 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5336
5337         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5338         code generation
5339         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5340         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5341         bugs, ported much of Bernhard's code from mcs51
5342         * src/mcs51/gen.c (genSend),
5343         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5344         than one when calling a reentrant function
5345         * device/lib/_mullong.c: defined an alternate struct layout for big
5346         endian ports (hc08)
5347
5348 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5349
5350         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5351         test
5352
5353 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5354
5355         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5356         are sane and complete before asking the port its prefered parameter
5357         passing method (fixes bug #1017633)
5358         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5359         and _ret3
5360
5361 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5362
5363         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5364         problem in bitfields >= 8 bits.
5365
5366 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5367
5368         * src/SDCCsymt.c: undid changes that were not meant to be committed
5369
5370 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5371
5372         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5373
5374 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5375
5376         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5377           copied and wrong bit got inverted
5378
5379 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5380
5381         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5382         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5383         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5384         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5385         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5386         assignments to bitfields at known addresses
5387         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5388         reads from bitfields at known addresses
5389         * src/hc08/ralloc.c (packRegisters),
5390         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5391         genhc08Code): optimize pointer get values used as conditionals
5392         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5393         and branch
5394
5395 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5396
5397         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5398         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5399         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5400         as conditionals
5401
5402 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5403
5404         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5405
5406 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5407
5408         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5409         related problems
5410
5411 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5412
5413         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5414
5415 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5416
5417         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5418         mcs51 port
5419
5420 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5421
5422         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5423
5424 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5425
5426         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5427         cases use more compact code.
5428
5429 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5430
5431         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5432
5433 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5434
5435         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5436
5437 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5438
5439         * src/SDCCsymt.h,
5440         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5441         parameter of changePointer() from symbol* to sym_link*
5442         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5443         * src/SDCCsymt.c (compareType): void* type is castable to other
5444         pointers, but not necesarily an exact match.
5445         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5446         is no longer blindly treated as an exact match.
5447         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5448
5449 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5450
5451         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5452
5453 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5454
5455         * src/pic/gen.c,
5456         * src/pic/pcode.c,
5457         * src/pic/ralloc.h,
5458         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5459
5460 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5461
5462         * src/pic/device.c,
5463         * src/pic/device.h,
5464         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5465
5466 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * src/mcs51/gen.c (emitcode): fixed bug #992819
5469
5470 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5471
5472         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5473           there's no need to make it worse
5474
5475 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5476
5477         * src/mcs51/ralloc.c (deassignLR),
5478         * src/ds390/ralloc.c (deassignLR),
5479         * src/hc08/ralloc.c (deassignLR),
5480         * src/z80/ralloc.c (deassignLR),
5481         * src/pic/ralloc.c (deassignLR),
5482         * src/pic16/ralloc.c (deassignLR),
5483         * src/avr/ralloc.c (deassignLR),
5484         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5485         rlivePoint): fixed another part of bug #971834
5486
5487 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5488
5489         * src/z80/main.c: enabled "critical" keyword
5490         * src/z80/mappings.i,
5491         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5492         functions (fixes bug #979646)
5493         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5494
5495 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5496
5497         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5498           such as c:\mydir.
5499
5500 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5501
5502         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5503           doesn't disable too much optimizations
5504
5505 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5506
5507         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5508
5509 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5510
5511         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5512
5513 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5514
5515         * src/pic/gen.c tidied up tabs
5516         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5517         * src/pic/main.c tidied up tabs
5518         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5519         * src/pic/pcoderegs.c tidied up tabs
5520         * src/pic/ralloc.c tidied up tabs
5521
5522 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5523
5524         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5525         to S_FIXED for pic16 port and when symbol is not in level 0,
5526         allocate for S_REGISTER storage class and pic16 port, too,
5527         * src/pic16/device.h: prototype for checkSym,
5528         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5529         * (pic16_assignConfigWordValue): test the value and the mask to
5530         validate that the value is suitable for the configuration word,
5531         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5532         collect extern declared symbols, don't emit symbol twice, check
5533         first if symbol is in publics set first,
5534         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5535         * added command line '--fstack' which enables an experimental
5536         feature for stack access, too buggy to be used yet...
5537         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5538         * (pic16_allocDirReg): when register has storage class S_REGISTER
5539         allocate in pic16_dynAccessRegs,
5540         * device/include/pic16/pic18f????.h: modified configuration word
5541         naming convention, words started as CONFIG0H but should be CONFIG1H
5542
5543 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5544
5545         * device/include/mcs51reg.h: fixed bug 970993
5546
5547 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5548
5549         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5550         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5551         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5552         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5553         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5554         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5555           error/warning numbers,
5556           added function setWarningDisabled()
5557         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5558         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5559           _memcmp.c _memmove.c calloc.c realloc.c free.c
5560         * support/regression/tests/malloc.c: added tests for new functionality
5561         * support/regression/tests/zeropad.c: added tests for truncated initializers
5562           and initialized char arrays starting with '\x0'
5563         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5564
5565 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5566
5567         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5568
5569 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5570
5571         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5572         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5573         peephole 177.e. Thanks to anonymous
5574
5575 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5576
5577         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5578         function isn't used in the source but referenced as a
5579         variable initializer then declare it as extern in .asm file
5580
5581 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5582
5583         * .version: increased version number to 2.4.3
5584
5585         Adding version extension according to ChangeLog CVS revision
5586         * src/Makefile.in (target all): added dependency 'version.h'
5587         * (rule version.h): added rule to create version.h from ChangeLog,
5588         * (rule dep): added dependency version.h,
5589         * src/version.awk: AWK script to create version.h
5590         * src/SDCCdwarf2.c (dwWriteModule),
5591         * src/SDCCglue.c (initialComments),
5592         * src/SDCCmain.c (printVersionInfo): modified to write after
5593         version string the version extension number,
5594         * src/SDCCutil.c: included "version.h"
5595         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5596         number,
5597         * src/SDCCutil.h: added prototype for getBuildNumber
5598
5599         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5600         includeDirsSet, too,
5601         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5602         const char [] is found in function prototype...
5603
5604         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5605         moving to WREG with source is already in WREG,
5606         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5607         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5608         * (aopForSym): stack'ed symbols are partially supported, added
5609         if-clause to support symbols in FARSPACE,
5610         * (sameRegs): added test for AOP_ACC to see if registers are same,
5611         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5612         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5613         * (pic16_popRegFromString): will not allocate a new register if it
5614         doesn't find one by name, bug may have introduced...
5615         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5616         * (genIpush): revived to use pic16 port's stack,
5617         * (genAddrOf): added incomplete case for stack'ed operand,
5618         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5619         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5620         can handle multibyte operands,
5621         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5622         * (pic16initialComments): added message for MPLAB compatibility
5623         mode enabled,
5624         * src/pic16/main.h: prototype for pic16_mplab_comp,
5625         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5626         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5627         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5628         because of increased complexity of procedure,
5629         * (_process_pragma): stack pragma changed to format 'stack pos len',
5630         emit symbol '_stack_end' to conform with gplink,
5631         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5632         to search for register,
5633         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5634         PO_GPR_REGISTER,
5635         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5636         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5637         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5638         case for PO_GPR_REGISTER,
5639         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5640         dies, the new era is ahead !...
5641         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5642         pic16_dynInternalRegs,
5643         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5644         * (pic16_allocDirReg): minor optimizations and bug fixes,
5645         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5646
5647         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5648         load stack and frame pointer with address of 'stack_end' symbol
5649
5650 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5651
5652         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5653         without source code but only variable initializers
5654
5655 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5656
5657         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5658         external are not declared as extern to reduce overhead while linking
5659
5660 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5661
5662         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5663
5664 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5665
5666         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5667           Yee Keat for the patch
5668         * src/SDCCast.c (decorateType): fixed bug #979599
5669         * src/ds390/gen.h: removed local fReturnSizeDS390
5670         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5671         * src/ds390/gen.c (genAnd, genOr, genXor),
5672         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5673
5674 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5675
5676         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5677         add relFilesSet to $3, manipulate $2 to handle linking of object
5678         files without source files in command line,
5679         * device/include/pic16 (all headers): added ID location macros,
5680         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5681         entries for ID location bytes,
5682         * (pic16_assignIdByteValue): NEW,
5683         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5684         added field dumpcalltree to pic16_options_t,
5685         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5686         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5687         emitting rFalseIfx label after check_carry label,
5688         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5689         pic16_emitDIRegs), NEW
5690         * (pic16glue): dump .calltree file when option --calltree found,
5691         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5692         * (_pic16_genAssemblerPreamble): emit ID locations after
5693         configuration registers,
5694         * (pic16_linkCmd): modifications of the link command,
5695         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5696         * (pic16_pCodeInitRegisters): don't init stack registers,
5697         * (pic16_findPrevInstruction): fixed bug,
5698         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5699         bug with immediate registers,
5700         * (buildCallTree): traces stack push and pop,
5701         * (pct2): dump also stack usage for each function,
5702         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5703         * (pic16_allocDirReg): various modifications,
5704         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5705         fixed to 1,
5706
5707 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5708
5709         * src/pic16/pcode.c: removed buggy double colon
5710
5711 2004-07-01 Borut Razem <borut.razem AT siol.net>
5712
5713         * support/scripts/sdcc.nsi: added include/pic16 to setup
5714
5715 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5716
5717         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5718         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5719         target 'clean',
5720         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5721         specific command line arguments. Also added sample lkr script
5722         for placing a variable at a specific memory bank.
5723         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5724         at a specific memory bank,
5725         * (pic16_dump_isection): fixed bug which caused string literals to
5726         be omitted when dumping idata section,
5727         * (pic16_groupRegistersInSection): added code to handle registers
5728         in specific memory banks,
5729         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5730         public, all references are renamed too,
5731         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5732         AOP_DPTR2,
5733         * (pic16_storeForReturn): added case to handle when dest is WREG,
5734         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5735         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5736         pic16_rel_udata, check to see if that register is marked as being
5737         a member of a specific memory bank,
5738         * (pic16_printIvalCharPtr): added code to add string literals either
5739         to code or the idata sections,
5740         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5741         also accept the 'udata' pragma,
5742         * src/pic16/main.h: new structure types sectName and sectSym
5743         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5744         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5745         * (pic16_findPrevInstruction): fixed, it returned nothing,
5746         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5747         instruction combinations,
5748         * (pic16_FixRegisterBanking): heavily reorganised,
5749         * (pic16_AnalyzeBanking): if generating banksel directives is
5750         disabled, then don't call FixRegisterBanking at all,
5751         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5752         completely removed,
5753         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5754
5755 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5756
5757         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5758         Phuah Yee Keat <yk.phuah AT nestac.com>
5759
5760 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5761
5762         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5763         correctly the IVT even if it is relocated to some other location
5764
5765 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5766
5767         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5768         * device/include/pic16/pic18f2220.h: NEW,
5769         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5770         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5771         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5772         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5773         nodefaultlibs, ivt_loc is the location of the interrupt vector
5774         table, and nodefaultlibs signs that default libraries should not be
5775         linked in link stage,
5776         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5777         according to --ivt-loc argument,
5778         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5779         when pragma stack is found,
5780
5781 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5782
5783         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5784         256 (range check), 257 (do while), 258.a-f (bit banging
5785         f.e. on 3-wire SPI bus)
5786
5787 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5788
5789         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5790         variables used exclusively within a loop
5791
5792 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5793
5794         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5795
5796 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5797
5798         * src/SDCClrange.c (computeClash): fixed bug #971834
5799
5800 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5801
5802         * src/mcs51/gen.c (genCmp): fixed bug #975903
5803         * src/hc08/gen.c (operandsEqu),
5804         * src/ds390/gen.c (operandsEqu),
5805         * src/z80/gen.c (operandsEqu),
5806         * src/pic/gen.c (operandsEqu),
5807         * src/pic16/gen.c (operandsEqu),
5808         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5809         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5810
5811 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5812
5813         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5814
5815 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5816
5817         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5818         default case in switch statement,
5819         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5820         to eliminate problem with initialisation of pointers, but problem
5821         still exists,
5822         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5823         * (emitStaticSegment): removed various lines emitting debug info,
5824         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5825         added processor registers for utilizing EEPROM,
5826         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5827         configurable and set 8
5828
5829 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5830
5831         * .version: increased version number to 2.4.2,
5832
5833         Cumulative patch for pic16 port
5834         * src/pic16/device.c: changed scheme to dump initial values for
5835         variables in idata segment, all print_idata* functions were removed,
5836         now the pic16_printIval* will be called,
5837         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5838         * _pic16_printPointerType, pic16_printPointerType,
5839         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5840         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5841         NEW, similar to the respective functions in SDCCglue.c,
5842         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5843         way, emitting hex bytes,
5844         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5845
5846 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5847
5848         * src/avr/ralloc.c (serialRegAssign),
5849         * src/xa51/ralloc.c (serialRegAssign),
5850         * src/pic/ralloc.c (serialRegAssign),
5851         * src/pic16/ralloc.c (serialRegAssign),
5852         * src/hc08/ralloc.c (serialRegAssign),
5853         * src/z80/ralloc.c (serialRegAssign),
5854         * src/ds390/ralloc.c (serialRegAssign),
5855         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5856
5857 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5858
5859         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5860         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5861
5862 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5863
5864         Cumulative patch for pic16 port:
5865         * src/pic16/device.h (typedef PIC16_device) modified fields for
5866         defining microcontrollers,
5867         * src/pic16/device.c: added new info for all devices in Pics16 array,
5868         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5869         to be optimised out by the pCode optimiser,
5870         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5871         specially, bug reported by G.M. Gallant,
5872         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5873         as force'd so that cannot be optimised out by pCode optimiser,
5874         * src/pic16/pcode.c,
5875         * src/pic16/pcodepeeph.c,
5876         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5877         they are disabled by default, but can be enabled explicit with
5878         command argument --denable-peeps, for testing,
5879         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5880         --pomit-ivt in COMPILE_FLAGS
5881
5882 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5883
5884         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5885           compilation on MSVC
5886
5887 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5888
5889         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5890
5891 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5892
5893         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5894         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5895
5896 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5897
5898         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5899         would only assign 0x300001 register.
5900
5901 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5902
5903         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5904         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5905
5906 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5907
5908         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5909         for ds80c400
5910         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5911         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5912         added peephole 254 (left shift), 255 (jump table)
5913
5914 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5915
5916         * device/lib/Makefile.in: removed comment line with model-pic16,
5917         * (target port-specific-objects-pic16): the libraries and objects
5918         are copied to the build directory form the device/lib/pic16/bin
5919         directory
5920
5921         Cumulative patch concerning pic16 port:
5922         * library directory has been re-organized,
5923         * added support for PIC18F1220,
5924         * added headers and library sources for chips 18f1220,18f6520,
5925         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5926
5927         * configuration registers setting has changed, now each supported
5928         device has a complete description of the registers it uses,
5929         * all initialisations are moved to idata sections, these section
5930         can be absolute or relocatable,
5931         * fixed initialisation of codespace variables,
5932         * fixed warning about PCLATU and gpsim,
5933         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5934         * (genAssign): use table reads when assigning from variables in codespace,
5935         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5936         char/int variables placed in codespace,
5937         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5938         registers set in .asm file, no need for --pomit-config-words anymore,
5939         * (pic16glue): some 8051 legacy segments are commented out
5940         (to be removed completely),
5941         * added support for alternative assembler and linker with --asm=
5942         and --link= command line arguments,
5943         * peepholes are disabled automatically in the port, no need to
5944         specify on command line,
5945         * port supports natively char/int/long multiplication, but converts
5946         all divisions to support functions,
5947         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5948         to the file set in variable $2,
5949         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5950         strings in ASCII format and not in hex,
5951         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5952         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5953         allocate proper register if iCodes aren't temporary,
5954
5955 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5956
5957         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5958
5959 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5960
5961         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5962         is commented out
5963
5964 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5965
5966         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5967         computed address is reused
5968         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5969         multi-byte bitfields
5970
5971 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5972
5973         * src/z80/gen.c: (genArrayInit): must check for pointers too
5974
5975 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5976
5977         * support/regression/tests/zeropad.c: never meant to commit the
5978           nestedstruct test: removed, added check for GCC version
5979
5980 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5981
5982         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5983         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5984         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5985           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5986           bugs 928906 and 954082 half-empty initializers
5987         * src/SDCCsymt.h,
5988         * src/SDCCsymt.c (getAllocSize): added for above fix
5989         * src/z80/gen.c (genArrayInit): fixed bug 741044
5990         * support/regression/tests/zeropad.c: added tests
5991
5992 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
5993
5994         * src/pic16/device.c (pic16_dump_section): corrected bug which
5995         caused some symbols of the libraries to be misplaced
5996
5997 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
5998
5999         * src/pic16/glue.c,
6000         * src/pic16/ralloc.h,
6001         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
6002         to fix conflict with pic port
6003
6004 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6005
6006         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
6007         externs configuration variables,
6008         * src/pic16/ralloc.h,
6009         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
6010         prototype in header, commented out some debug messages
6011
6012 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
6013
6014         * src/pic16/glue.c,
6015         * src/pic16/main.c,
6016         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
6017         for gpasm COFF object generation. Thanks to D. Hawkins for
6018         his patch info
6019
6020 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6021
6022         * src/ds390/main.c,
6023         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
6024         Brock for spotting this)
6025         * src/ds390/gen.c (genEndFunction),
6026         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
6027         interrupt handler and critical. Disable push/pop optimizations when
6028         peephole optimizations disabled.
6029
6030 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6031
6032         Updated pic16 library sources and headers.
6033         * device/lib/pic16/pic18f*/ ,
6034         * device/include/pic16/*.h: modified to handle structured SFR
6035         definitions
6036
6037 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6038
6039         * src/port.h (PORT structure): added hook initPaths, now each
6040         port can declare its own default search paths,
6041         which can been seen with the --print-search-dirs option,
6042         see pic16 port for example,
6043         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
6044         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
6045         * (doPrintSearchDirs): NEW, replaces in a central manner the
6046         printing of search dirs which was split in set*Paths functions,
6047         * (main): added call to port->initPaths and doPrintSearchDirs,
6048         * src/avr/main.c,
6049         * src/ds390/main.c,
6050         * src/hc08/main.c,
6051         * src/izt/i186.c,
6052         * src/izt/tlcs900h.c,
6053         * src/mcs51/main.c,
6054         * src/pic/main.c,
6055         * src/pic16/main.c: modified port structures to reflect addition of
6056         initPaths hook,
6057
6058         * src/pic16/device.c (regCompare): registers are finally sorted by name,
6059         * (pic16_dump_section): for registers in same address reserve memory once,
6060         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
6061         to no_banksel,
6062         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
6063         result is greater in size than right or left,
6064         * (pic16_genUMult8X8_8): there are some cases where the result can
6065         be 16 bits size, so handle these,
6066         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
6067         * (pic16_outBitC): modified to emit pcodes,
6068         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
6069         or not,
6070         * (genDivOneByte): implemented algorithm to divide 8-bits,
6071         * (genCmp): uncommented goto, but issues still exist,
6072         * (genAnd): fixed a bug with variables >8bits,
6073         * (genPackBits): optimization added that uses BCF/BSF to change a
6074         single bit,
6075         * (genAssign): fixed bug when assigning floating point literals,
6076         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
6077         __sdcc_gsinit_startup label,
6078         * src/pic16/main.c (_pic16_init): removed search directory
6079         initialisations,
6080         * (_pic16_initPaths): NEW, used to initialise search directories,
6081         * (_hasNativeMulFor): support functions for all except char/int
6082         multiplication, and char division,
6083         * (PIC16_port struct): modified entry for native mul support,
6084         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
6085         no_banksel option,
6086         * (buildCallTree): call to register_usage is ifdef'ed out,
6087
6088 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6089
6090         * device/include/string.h: applied Stas Sergeev's patch to make this
6091         header file compatible with the preprocessor -Wundef option
6092         * src/SDCCmain.c (main): abort compilation if preprocessor reports
6093         failure (fixes bug #941458)
6094
6095 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6096
6097         * src/SDCCopt.c (killDeadCode): fixed bug #907733
6098         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
6099         that the variable, not the function, should be static
6100         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
6101         to be consistent with non-literal case
6102
6103 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6104
6105         * src/SDCCast.c (isConformingBody): fixed bug #949967
6106         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
6107         convilong): fixed bug #952086
6108
6109 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6110
6111         * src/SDCCmem.c (allocVariables): fixed bug #955321
6112
6113 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6114
6115         * src/hc08/main.c (_hc08_genAssemblerEnd),
6116         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6117         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6118         completely eliminated the use of a temporary file
6119         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6120         when more than one file linked
6121         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6122
6123 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6126         which fixes bug #543481
6127         * support/regression/tests/bug-751703.c: fixed comments left from a
6128         cut and paste error
6129         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6130         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6131         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6132         scopes
6133         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6134         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6135         are now changed to underscores in moduleName
6136
6137 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6138
6139         * as/mcs51/lkmem.c: better fix for bug #954173
6140
6141 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6142         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6143
6144         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6145         * device/include/c8051f000.h,
6146         * device/include/c8051f120.h,
6147         * device/include/c8051f300.h,
6148         * device/include/c8051f310.h,
6149         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6150         PWM16) and detab'ed
6151
6152 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6153
6154         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6155         and mailing lists, doc'ed --no-peep-comments, removed reference
6156         to knoppix (newest version has no LyX/LaTeX), other minor changes
6157         * src/SDCCglue.c (glue): save 2 bytes stack space with
6158         option --main-return. The ljmp could probably be avoided too
6159
6160 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6161
6162         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6163
6164 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6165
6166         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6167         * src/SDCCopt.c (isLocalWithoutDef),
6168         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6169         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6170         (credit to Maarten Brock for patch #949363, on which this is based)
6171         * support/regression/tests/bug-751703.c: some test cases of extern used
6172         within inner scopes.
6173
6174 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6175
6176         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6177         SPEC_STRUCT
6178         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6179         struct definitions
6180         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6181         dwWriteLabel): fix to create valid debugger symbols even when
6182         the module name has non-alphanumeric symbols in it
6183         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6184         when a variable's allocation has been optimized away
6185
6186
6187 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6188
6189         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6190         * src/hc08/main.c,
6191         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6192         * src/mcs51/main.c,
6193         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6194         * src/ds390/main.c,
6195         * src/z80/gen.c (z80_emitDebuggerSymbol),
6196         * src/z80/main.c,
6197         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6198         * src/pic/main.c,
6199         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6200         * src/pic16/main.c,
6201         * src/avr/gen.c (avr_emitDebuggerSymbol),
6202         * src/avr/main.c,
6203         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6204         * src/xa51/main.c,
6205         * src/SDCCdebug.c (emitDebuggerSymbol),
6206         * src/SDCCdebug.h,
6207         * src/port.h: added a debugger struct to the port struct. Added a
6208         callback for defining debugger symbols
6209
6210         * src/SDCCast.c (createLabel),
6211         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6212         with isitmp = 1
6213         * src/SDCCicode.h,
6214         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6215         iCode back to the ast for the function
6216
6217         * src/hc08/ralloc.c (hc08_assignRegisters),
6218         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6219         unneeded fields from the regs struct.
6220         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6221         pushReg() & pullReg() functions instead of emitcode()
6222
6223         * src/hc08/gen.c (genLabel, genhc08Code),
6224         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6225
6226         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6227         debugger hooks
6228
6229         * src/hc08/gen.c (genEndFunction, genhc08Code),
6230         * src/hc08/gen.h,
6231         * src/mcs51/gen.c (genEndFunction, gen51Code),
6232         * src/mcs51/gen.h,
6233         * src/ds390/gen.c (genEndFunction, gen390Code),
6234         * src/ds390/gen.h,
6235         * src/z80/gen.c (genEndFunction, genZ80Code),
6236         * src/z80/gen.h,
6237         * src/z80/z80.h,
6238         * src/pic/gen.c (genEndFunction, genpic14Code),
6239         * src/pic/gen.h,
6240         * src/pic16/gen.c (genEndFunction, genpic16Code),
6241         * src/pic16/gen.h,
6242         * src/avr/gen.c (genEndFunction, genAVRCode),
6243         * src/avr/gen.h,
6244         * src/xa51/gen.c (genEndFunction, genXA51Code),
6245         * src/xa51/gen.h,
6246         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6247         specific code to cdbFile.c and out of the backend code generators
6248
6249         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6250         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6251         starting address is now 0
6252
6253         * as/hc08/asm.h,
6254         * as/hc08/m08pst.c,
6255         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6256         assembler directive for DWARF support
6257         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6258
6259         * src/src.dsp,
6260         * src/Makefile.in,
6261         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6262
6263 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6264
6265         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6266         and inappropriate peephole optimization in jump tables
6267
6268 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6269
6270         * as/hc08/m08pst.c,
6271         * src/SDCCglue.c: sdccopt works for the hc08 port now
6272
6273 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6274
6275         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6276
6277 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6278
6279         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6280
6281 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6282
6283         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6284         rules
6285         * src/SDCCmain.c,
6286         * src/SDCCglobl.h,
6287         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6288         comments from the peephole optimizer replacement rules
6289         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6290         symbols
6291         * src/SDCCcse.c (updateSpillLocation),
6292         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6293         equivalents
6294         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6295         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6296         objects far pointers
6297
6298 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6299
6300         * src/SDCCsymt.h: a missing part of my last change
6301         * src/pic/ralloc.c (regTypeNum),
6302         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6303
6304 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6305
6306         * src/SDCCicode.h,
6307         * src/SDCCicode.c (aggrToPtrDclType),
6308         * src/SDCCptropt.h,
6309         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6310         ptrPseudoSymConvert),
6311         * src/pic/ralloc.c (regTypeNum),
6312         * src/pic16/ralloc.c (regTypeNum),
6313         * src/hc08/ralloc.c (regTypeNum),
6314         * src/ds390/ralloc.c (regTypeNum),
6315         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6316         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6317
6318 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6319
6320         * link/z80/lkmain.c (afile),
6321         * as/hc08/lkmain.c (afile),
6322         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6323         prevent a pointer problem when a filename has no directory and
6324         no extension specified.
6325
6326 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6327
6328         * link/z80/lkmain.c (afile): allow periods in directory names
6329         * link/z80/lkmain.c (afile),
6330         * as/mcs51/lkmain.c (afile),
6331         * as/hc08/lkmain.c (afile): allow linker script file to have an
6332         extension other than ".lnk"
6333         * link/z80/lklex.c (getfid),
6334         * link/z80/lkmain.c (parse),
6335         * as/mcs51/lklex.c (getfid),
6336         * as/mcs51/lkmain.c (parse),
6337         * as/hc08/lklex.c (getfid),
6338         * as/hc08/lkmain.c (parse): Support comments in the linker script
6339         file on lines by themselves and after filenames
6340
6341 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6342
6343         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6344
6345 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6346
6347         * src/z80/peeph-z80.def: removed some peephole rules that don't
6348         work with multibyte arithmetic (fixed bug #937126)
6349         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6350         to registers and not global variables
6351         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6352         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6353         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6354         checking for assignments not internally generated (fixed bug #931895)
6355         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6356         structure member (fixed bug #930072)
6357
6358 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6359
6360         * src/SDCCmain.c (linkEdit),
6361         * src/hc08/main.c (_hc08_parseOptions),
6362         * as/hc08/Makefile.in,
6363         * as/hc08/aslink.h,
6364         * as/hc08/asm.h,
6365         * as/hc08/m08pst.c,
6366         * as/hc08/lkrloc.c (relr, rele),
6367         * as/hc08/lkarea.c (lnkarea)
6368         * as/hc08/lkmain.c (afile, parse),
6369         * as/hc08/lkelf.c: support for ELF output
6370         * as/hc08/lks19.c (s19),
6371         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6372
6373 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6374
6375         * as/mcs51/lkihx.c: Fixed bug #899105.
6376
6377 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6378
6379         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6380         .dsp files from Unix to DOS.
6381
6382 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6383
6384         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6385         function pointers; we have been compliant for several months now.
6386         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6387         change that was accidently commented out
6388         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6389         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6390         bug #922319
6391
6392 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6393
6394         * src/hc08/gen.c: output of all of the internal debugging information
6395         is now controlled by the D() macro; it is disabled by default
6396
6397 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6398
6399         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6400         harder to keep the same registers during a CAST iCode
6401         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6402         long via int can be done in a single cast, if the signedness is
6403         correct.
6404         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6405         putchar() in tinibios.c in ds390's library
6406
6407 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6408
6409         * src/SDCCast.c (decorateType): fixed bug #898889,
6410         cast result of a literal complement too
6411         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6412         fixed check for bitfields
6413
6414 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6415
6416         * src/SDCCicode.c (geniCodeLogic): made it static,
6417         (geniCodeLogicAndOr): added in order to fix bug #905492,
6418         (ast2iCode): fixed bug #905492
6419         * support/regression/tests/bug-905492.c: added
6420         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6421         (processParms): fixed bug #927659: don't copy parms, this will clear
6422         decorated flag
6423         * support/regression/tests/bug-927659.c: added
6424
6425 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6426
6427         * src/SDCCast.c (addCast): don't cast float to char
6428         * device/lib/libsdcc.lib: added _memmove
6429
6430 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6431
6432         * device/lib/large/Makefile: fixed parallel execution by
6433         replacing `make` by `$(MAKE)`
6434
6435 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6436
6437         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6438         offsets (fixes bug #923936)
6439
6440 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6441
6442         * device/lib/small/Makefile: fixed parallel execution by
6443         replacing `make` by `$(MAKE)`
6444
6445 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6446
6447         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6448
6449 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6450
6451         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6452         * src/regression/Makefile: Regression test was not running.
6453
6454 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6455
6456         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6457         complement if possible
6458         * src/SDCCval.c (valComplement),
6459         * src/SDCCicode.c (operandOperation): fixed complement of literal
6460         * support/regression/tests/onebyte.c (testComplement): added
6461
6462 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6463
6464         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6465         return an optimized tree; actually replace actParm with the new tree
6466         * src/SDCCast.h: added some parantheses to remove side effects
6467         * support/regression/tests/bug-920866.c
6468
6469 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6470         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6471         Bit operands were not being handled properly in the pic14 port.
6472         (now src/regression/add.c passes again).
6473
6474 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6475
6476         * src/SDCC.y (labeled_statement): case and default no longer require
6477         a following statement (RFE #893037)
6478
6479 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6480
6481         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6482         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6483         disabled (fixes bug #916294)
6484         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6485         "mov a,acc"; patch provided by Lenny Story
6486         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6487
6488 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6489
6490         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6491         functions
6492         * src/ds390/gen.c (genFunction, genEndFunction),
6493         * src/ds390/ralloc.c (ds390_assignRegisters),
6494         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6495         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6496         pushed if there are parameters passed on the stack. Also, a cleaner
6497         way to decide if r0/r1 should be pushed/popped. (Together they fix
6498         bug #918693)
6499
6500 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6501
6502         * doc/sdccman.lyx,
6503         * device/lib/mcs51/crtpagesfr.asm,
6504         * device/lib/mcs51/crtxinit.asm,
6505         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6506         to avoid confusion with Si Lab's SFRPAGE register.
6507
6508 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6509
6510         * src/SDCCglue.c (emitMaps): allow public sfr variables
6511         * src/SDCCglue.c (initialComments): include compiler build date
6512         with compiler version and put the timestamp of the generated
6513         assembly file on a serperate line to be less confusing.
6514         * src/port.h: added genInitStartup hook
6515         * src/avr/main.c,
6516         * src/ds390/main.c,
6517         * src/hc08/main.c,
6518         * src/pic/main.c,
6519         * src/pic16/main.c,
6520         * src/xa51/main.c,
6521         * src/z80/main.c: genInitStartup initialize as NULL (default to
6522         historical behaviour)
6523         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6524         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6525         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6526         library instead of hard coding it into the compiler.
6527         * support/regression/ports/mcs51-stack-auto/spec.mk,
6528         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6529         * device/lib/mcs51/Makefile,
6530         * device/lib/small/Makefile,
6531         * device/lib/large/Makefile,
6532         * device/lib/mcs51/crtpagesfr.asm,
6533         * device/lib/mcs51/crtstart.asm,
6534         * device/lib/mcs51/crtxclear.asm,
6535         * device/lib/mcs51/crtxinit.asm,
6536         * device/lib/mcs51/crtclear.asm,
6537         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6538         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6539         and into user configurable files.
6540         * device/lib/clean.mk: clean mcs51 directory too
6541         * support/regression/tests/longlit.c: added static to T1 declaration
6542         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6543         accesses in the initialization code
6544
6545 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6546
6547         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6548         OSCTRIMVAL as noted in bug #916008
6549
6550 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6551
6552         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6553         in loops with multiple exits (reported as incorrect registers
6554         used by Martin Helmling in Sdcc-user list)
6555
6556 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6557
6558         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6559         made ds390 register extensions look less like error messages
6560
6561 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6562
6563         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6564         reported by Adam Wozniak in Sdcc-user list
6565
6566 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6567
6568         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6569         arithmetic optimizations, added debug output
6570
6571 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6572
6573         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6574         * sdcc.spec: updated and split sdcc into 3 rpms
6575         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6576         needed for literals of LEFT_OP and '+'
6577         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6578         introduced RESULT_TYPE_NOPROM
6579         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6580         left shift
6581         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6582         limited promotion to int only for '*'
6583         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6584
6585 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6586
6587         * src/pic16/gen.c (genSkip),
6588         (genc16bit2lit), (gencjneshort): commented out
6589         (is_LitOp): new helper function, checks operand type
6590         (genCmpEq): rewritten
6591
6592 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6593
6594         * support/regression/tests/bug-908454.c: added
6595
6596 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6597
6598         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6599         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6600         (geniCodeCast): cosmetic, don't preserve bit storage class
6601         (geniCodeLeftShift): added promotion
6602         (geniCodeLogic): fixed regression
6603         * src/SDCCsymt.c (computeTypeOr): accept bits too
6604         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6605
6606 2004-03-07  Borut Razem <borut.razem AT siol.net>
6607
6608         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6609
6610 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6611
6612         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6613         version of pic16_genPackRegisters which does not check if ic is a
6614         CAST operator,
6615         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6616         function cause string1.c regression test fails
6617
6618 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6619
6620         * sim/ucsim/configure.in,
6621         * sim/ucsim/configure,
6622         * sim/ucsim/doc/Makefile.in: use docdir
6623         * src/SDCC.y: fixed sbit atrributes
6624         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6625         * src/SDCCast.c (decorateType): |^& need special promotion handling
6626         * src/SDCCast.h,
6627         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6628         * src/SDCCsymt.h (computeType),
6629         * src/SDCCicode.c: computeType() needs op
6630         * src/SDCCsymt.c (checkTypeSanity),
6631         * doc/sddman.lyx: "plain" bitfields are unsigned
6632         * src/SDCCsymt.c (computeTypeOr): added
6633         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6634         |^& ops
6635         * src/SDCCval.c (val*): computeType() needs op
6636         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6637         * support/regression/tests/onebyte.c: added tests for |^&
6638
6639 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6640
6641         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6642         for writing icode into asm output.
6643
6644 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6645
6646         * src/pic16/device.c: added some debug lines enabled
6647         with macro DEBUG_CHECK,
6648         * src/pic16/genarith.c: more debug in genPlus,
6649         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6650         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6651         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6652         * (aopForSym): onStack symbols are re-placed in data memspace,
6653         and onStack flag is cleared,
6654         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6655         copy temporary pcodeop,
6656         * (genPcall): added warning for not updating PCLATU,
6657         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6658         always true for pic16 port,
6659         * (genMultOneWord): NEW, supports integer multiplication,
6660         * (genMult): modified to call genMultOneWord,
6661         * (ifxForOp): added warning when return NULL,
6662         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6663         flag is set before call to operandFromSymbol for implicit
6664         added structures,
6665         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6666         options.intlong_rent are set by default,
6667         * (_hasNativeMulFor): modified to allow port generation of integer
6668         multiplication,
6669         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6670         set regtype to REG_SFR for all registers, restricting seting the
6671         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6672
6673 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6674
6675         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6676         more than 500 times in the regression tests
6677
6678 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6679
6680         * support/Util/SDCCerr.h,
6681         * support/Util/SDCCerr.c,
6682         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6683         enumerator_list),
6684         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6685         for symbol conflicts.
6686         * support/valdiags/tests/enum.c,
6687         * support/valdiags/tests/tentdecl.c,
6688         * support/valdiags/tests/struct.c: expect possible error messages
6689         referring to original symbol definitions.
6690         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6691         * src/SDCCsymt.h,
6692         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6693
6694 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6695
6696         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6697
6698 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6699
6700         * src/pic16/ralloc.c (newReg): fixed bug #908929
6701
6702 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6703
6704         * src/ds390/gen.c: added missing #include "main.h"
6705
6706 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6707
6708         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6709         checking if symbol is already in set,
6710         * src/pic16/device.h: prototype for checkAddSym,
6711         * src/pic16/gen.c: (_G): added entry interruptvector,
6712         * (assignResultValue): removed some commented out lines,
6713         * (genFunction): check for ISR via sym->type, absolute section for
6714         interrupt code is created via a new pBlock, the goto instruction is
6715         placed now correctly at the interrupt vector position, changed all
6716         references from ivec to _G.interruptvector,
6717         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6718         is the interrupt is a high priority one, same for return from ISR,
6719         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6720         externs to calls of checkAddSym,
6721         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6722         pic16_pcode_verbose flag is set,
6723         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6724         * src/pic16/pcoderegs.c: message about how many registers are saved
6725         will only be emitted if pic16_pcode_verbose flag is set,
6726
6727 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6728
6729         * src/ds390/ralloc.h,
6730         * src/ds390/ralloc.c (ds390_regWithIdx),
6731         * src/ds390/gen.c (emitcode),
6732         * src/ds390/main.h,
6733         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6734         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6735         ds390operandCompare, getRegsRead, getRegsWritten,
6736         initializeAsmLineNode): customized instruction size calculation for
6737         ds390, started basis for some register optimizations
6738         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6739         corresponding assembly output
6740         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6741         missing push/pop of r0/r1. Optimized push/pops
6742
6743 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6744
6745         * src/mcs51/main.c (instructionSize): fixed ACALL size
6746         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6747
6748 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6749
6750         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6751         the sorting of rlist with NULL elements
6752         * (print_idataType, print_idata): NEW to create idata sections
6753         * src/pic16/device.h: idataSymSet new variable
6754         * src/pic16/gen.c (genFunction): fixed some bugs in string
6755         comparing, improved the absolute section creation for ISRs,
6756         added FSR0L/FSR0H in registers that are saved in an ISR,
6757         * (genInline): fixed the processing of inline snippets,
6758         now they undergo no process by the peephole optimizer
6759         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6760         are placed in idataSymSet,
6761         * (pic16emitStaticSeg): extern symbols are added in externs,
6762         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6763         switching when aboslute variables are placed in access bank memory
6764         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6765         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6766         commented out with #if,
6767         * (pic16_packRegisters): reintroduce the check for CAST because some
6768         symbols are not correctly handled,
6769         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6770         pCodeInstruction instead of pCode,
6771         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6772         pCodeAsmDir definition,
6773         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6774         directive, then the argument directive is emitted without the leading
6775         tab, hack for inline labels which must be in the first column,
6776         * (compareLabel,pic16_findNextInstruction),
6777         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6778         * (insertBankSwitch): modified for the new pCodeAsmDir,
6779
6780 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6781         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6782
6783         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6784         instance,
6785         * (pushSide): commented out with #if,
6786         * (assignResultValue): fixed some typos in saving
6787         registers,
6788         * (genPcall): FIXED and sync'ed with genCall,
6789         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6790         * (genNearPointerGet): fixed to handle some more cases,
6791         implementation scheme via table reads,
6792         * (genConstPointerGet): modified to access code memory correct,
6793         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6794         and improved to handle some cases
6795         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6796         instead of "RETLW" for init data
6797         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6798         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6799         variables are placed in access bank memory (<0x80 and >=0xf80),
6800         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6801         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6802         TBLWT_POSTDEC,TBLWT_PREINC
6803         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6804         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6805         directives
6806         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6807         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6808         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6809         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6810
6811 2004-02-29  Borut Razem <borut.razem AT siol.net>
6812
6813         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6814         support/Util/findme.h, support/Util/system.h: enhance binary relative
6815         search for lib and include by using findProgramPath()
6816
6817 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6818
6819         * src/SDCCpeeph.h,
6820         * src/SDCCpeeph.c (pcDistance),
6821         * src/port.h,
6822         * src/mcs51/ralloc.h,
6823         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6824         * src/mcs51/main.h,
6825         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6826         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6827         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6828         size calculation port specific, started basis for some register
6829         optimizations
6830         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6831         missing push/pop of r0/r1. Optimized push/pops
6832         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6833         * device/lib/_modsint.c (_modsint),
6834         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6835         and stack version so regression tests pass
6836
6837 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6838
6839         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6840         * src/SDCCast.c (decorateType): catch another small optimization
6841         with '?' operator
6842         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6843         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6844         modified to finally use computeType() all over SDCC,
6845         see Feature Request #877103
6846         * src/SDCCval.h: cosmetic
6847         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6848         valCompare(); regression tested in muldiv.c
6849         * support/regression/tests/muldiv.c (testMod): mod sign follows
6850         dividend only
6851
6852 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6853
6854         * src/SDCCast.c (decorateType): fixed bug #902362
6855         * doc/INSTALL.txt: fixed install instructions for win32
6856
6857 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6858
6859         * device/include/Makefile.in (install): fixed by replacing spaces
6860         by tabs
6861         * doc/README.txt,
6862         * doc/INSTALL.txt: updated for release
6863         * doc/sdccman.lyx: added warning for --xstack being buggy
6864
6865 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6866
6867         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6868         to eliminate build warnings.
6869         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6870
6871 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6872            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6873
6874         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6875         removed -penable-stack, added comment for stack pragma, added
6876         warning for not initializing the stack/frame registers, removed
6877         comment at interrupts section
6878
6879         Stack is made permanent, there is no ability to disable stack usage.
6880         * src/pic16/device.h,
6881         * src/pic16/device.c: removed all references to USE_STACK macro,
6882         * src/pic16/device.c (pic16_dump_section): when no elements in
6883         rlist, free rlist before return,
6884         * (pic16_dump_int_registers): NEW, internal registers are a new set
6885         of general purpose registers reused by each function,
6886         * (checkAddReg): returns 1 if registers is added to set,
6887         * (pic16_groupRegistersInSection): when a registers is of type
6888         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6889         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6890         SRCASECMP macro is moved here from device.c
6891         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6892         PO_PCLATU, PO_PRODL, PO_PRODH,
6893         * (pic16_pCodeOpType, genMinus,
6894         changed compares to "a" register, with AOP_ACC,
6895         * (pic16_genPlus): fixed some bugs and indented properly,
6896         * (pic16_addSign): changed size to size+offset in the MOVWF
6897         instruction,
6898         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6899         multiply 8-bit operand by literal, result is 8-bit,
6900         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6901         multiply 2 8-bit operand, result is 8-bit,
6902         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6903         genUMult8X*_16,
6904         * src/pic16/gen.c: changed accUse to contain WREG only,
6905         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6906         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6907         true, do not use immediate addressing any more unless sym is a
6908         pointer in codespace,
6909         * (aopForRemat): do not use immediate addressing when symbol not in
6910         codespace and when symbol's address is requested,
6911         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6912         accUse size (= 1),
6913         * (aopGet): added case for AOP_ACC and don't return "accumulator
6914         bug" but WREG instead,
6915         * (popGetTempReg): pushes contents of temporary register in stack,
6916         * (popReleaseTempReg): pops contents of temporary register from
6917         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6918         * (pic16_popGet): separated case AOP_ACC to return register WREG
6919         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6920         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6921         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6922         the use of immediate pointers to certain cases only.
6923
6924         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6925         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6926         * (assignResultValue, genCall, genRet): modified to use the new
6927         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6928         genPcall is still broken,
6929         * (genFunction): added code to create 'A' type pBlocks when
6930         interrupt functions are generated, code not extensively tested yet,
6931         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6932         * (genEndFunction): modified so ISRs pop stored registers from stack,
6933         * (genMultOneByte): cleanup,
6934         * (AccRsh): added flag andmask, to and result with appropriate mask,
6935         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6936         * (genDataPointerGet): fixed and reenabled its use,
6937         * (genNearDataPointerGet): bugs fixed,
6938         * (genDataPointerSet): bugs fixed,
6939         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6940         pic16_DumpSymbol, pic16_DumpOp,
6941         * src/pic16/genutils.h: function prototypes for the above functions,
6942         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6943         pointers,
6944         * (pic16emitRegularMap): many many many improvements, but needs a
6945         major cleanup,
6946         * src/pic16/main.c: enable_stack in pic16_options is removed,
6947         * (_pic16_parseOptions): removed command line options -penable-stack,
6948         * (_process_pragma): emit stack symbol only when stack pragma is
6949         processed,
6950         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6951         redirected to FSR0L/FSR0H pair,
6952         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6953         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6954         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6955         for immediates,
6956         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6957         * (dumpPicOptype): NEW,
6958         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6959         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6960         with movff instruction,
6961         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6962         added pic16_int_regs, some packRegsFor* functions are commented out,
6963         because produce errors,
6964         * src/pic16/NOTES: minor modifications
6965
6966 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6967
6968         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6969         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6970         --pack-iram.
6971         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6972         * as/mcs51/lkaomf51.c: fixed bug #895763
6973
6974 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6975
6976         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6977
6978 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6979
6980         * doc/sdccman.lyx: added details about the HC08 storage classes and
6981         interrupts, fixed the register usage info for z80 & gbz80
6982
6983 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6984
6985         * doc/sdccman.lyx: added more pic16 port documentation
6986         * device/include/pic16/: added header pic18fregs.h
6987
6988 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6989
6990         * doc/sdccman.lyx: added Vangelis' contribution
6991
6992 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6993
6994         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
6995         extend to the next CALL or PCALL, not just to the next CALL.
6996
6997 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
6998
6999         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
7000
7001 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7002
7003         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
7004         bug #895752 and a better fix for bug #716790
7005
7006 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7007
7008         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
7009
7010 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7011
7012         * doc/sdccman.lyx: minor changes, minor changed
7013
7014 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
7015
7016         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
7017         which can't handle SDCC_NEWONEBYTEOPS,
7018         (geniCodeMultiply): removed conversion from mult to shift for pic14
7019         and pic16
7020
7021 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7022
7023         * src/hc08/gen.h,
7024         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
7025         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
7026         thus fixing bug #895406
7027
7028 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
7029
7030         * device/lib/_modsint.c,
7031         * device/lib/_modslong.c: sign follows divisor only
7032         * src/hc08/gen.c (genMultOneByte): if result size is 1,
7033         signs or signedness can be ignored
7034         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
7035         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
7036         added optimization for IFX,
7037         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
7038         arguments;
7039         reenabled optimization for IFX, which was removed on 2004-01-11
7040         * src/SDCCast.h: added return type IFX
7041         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
7042         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
7043         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
7044         SDCC_OLDONEBYTEOPS selects the old behaviour
7045         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
7046         changed again and commented promotion rule
7047         * src/SDCCval.c (valDiv): promotion no longer necessary
7048         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
7049         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
7050         rewritten
7051         * support/regression/tests/onebyte.c: added
7052
7053 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
7054
7055         * gen.c (genInline): reverted to old code for assemnling inline
7056         code because of bug reported James Chadd
7057
7058 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
7059
7060         * ralloc.h: missing declarations from previous patch,
7061         seems that patch for ralloc.h was never applied, fixed
7062
7063 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7064            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7065
7066         * pcode.c,
7067         * pcode.h,
7068         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
7069         indirect addressing. Marked FSR0 as deprecated
7070         * gen.c (pointerCode): commented out, not needed now
7071         (pic16_popGet2p): new MOVFF helper function
7072         (genGenPointerGet),
7073         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
7074         (shiftRLong): removed duplicate debugging info
7075
7076 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7077
7078         * src/ds390/gen.c (genNearPointerGet),
7079         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
7080         optimization with bits, but not bitfields.
7081         * src/ds390/ralloc.c (packRegisters),
7082         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
7083
7084 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
7085
7086         * src/SDCCcse.c (algebraicOpts): copy operands before modification
7087
7088 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7089
7090         * src/SDCCsymt.h,
7091         * src/SDCCicode.c (operandFromSymbol),
7092         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
7093         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
7094         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
7095         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
7096         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
7097         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
7098         bug #892038
7099         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
7100         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
7101         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
7102         * src/SDCCsymt.c (newSymbol),
7103         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
7104         enumerator_list),
7105         * src/SDCCval.h,
7106         * src/SDCCval.c (newiList): fixed bug #885705
7107
7108 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7109
7110         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7111         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7112
7113 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7114
7115         * device/include/c8051f120.h,
7116         * device/include/c8051f300.h,
7117         * device/include/c8051f310.h: added/updated header files for Silicon
7118         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7119         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7120         in new section Submitting patches
7121
7122 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7123
7124         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7125         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7126         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7127         genGenPointerSet),
7128         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7129         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7130         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7131         genGenPointerSet),
7132         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7133         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7134         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7135         genGenPointerSet),
7136         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7137         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7138         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7139         genGenPointerSet): fixed bug #892400
7140         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7141         to eliminate build warnings.
7142         * src/SDCCast.c (processParms),
7143         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7144         fixed bug 751859
7145         * support/valdiag/valdiag.py: added GCC to the list of defines active
7146         when compiling with gcc
7147
7148 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7149
7150         * support/Util/SDCCerr.h,
7151         * support/Util/SDCCerr.c,
7152         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7153         with an incomplete type (fixed bug #883734)
7154         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7155
7156 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7159
7160 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7161
7162         * src/SDCCast.c (decorateType),
7163         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7164         function pointer implementation
7165         * support/regression/tests/funptrs.c: added tests to verify both forms
7166         of function pointers work correctly. Added tests to verify parameters
7167         are passed in the correct order.
7168
7169 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7170
7171         * device.c (regCompare): registers are sorted by ascending
7172         address and increasing size,
7173         * main.c (_pic16_finaliseOptions): removed the declaration
7174         of compiler macro MCU. Now a macro of the format pic18fxxxx
7175         will be defined from the command line
7176
7177 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7178             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7179
7180         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7181         PCOP_RLCF was overwritten!
7182         * gen.c (genSkip): commented out calls to pic16_emitcode,
7183         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7184         * (genlshTwo),
7185         * (genRRC): added debugging info,
7186         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7187         overwritten while shifting,
7188         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7189         overwritten while shifting,
7190         * (AccLsh),
7191         * (AccRsh),
7192         * (shiftLLeftOrResult),
7193         * (shiftRLeftOrResult),
7194         * (shiftRLong),
7195         * (shiftLLong): Implemented with pic16_emitpcode
7196         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7197         * (genLeftShift): Fixed bug, operand for shift by variable always
7198         was "and"ed with 0x0f,
7199         * (genLeftShiftLiteral),
7200         * (genrshTwo),
7201         * (genRightShiftLiteral): added debugging info,
7202         * (genrshFour): added comment,
7203         * (genRightShift): determined signedness from operand "left"
7204         instead of "result"
7205
7206 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7207
7208         * src/SDCCicode.c (geniCodeParms),
7209         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7210         function pointers, fixed function pointer bugs #861242 and #861896
7211
7212 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7213
7214         * device/include/c8051f000.h,
7215         * device/include/c8051f120.h,
7216         * device/include/c8051f300.h: added header files for Silicon
7217         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7218
7219 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7220
7221         * src/SDCCast.c (processParams): added new type flow and restructured
7222         (gatherAutoInit): added new type flow
7223         (addCast): cosmetic changes
7224         (getLeftResultType): added new type flow for array indices, patch
7225         provided by Stas, see FR #877103
7226         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7227         array index patch by Stas
7228         * src/SDCCast.h: added prototype getResultTypeFromType()
7229         * src/SDCCval.h,
7230         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7231         * src/pic/glue.c (pic14emitStaticSeg),
7232         * src/pic16/glue.c (pic16emitStaticSeg),
7233         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7234         for initialization of symbols
7235         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7236         * support/Util/SDCCerr.h:
7237         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7238         * .version: bumped version number to 2.3.8
7239         * device/include/Makefile.in (install),
7240         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7241         avoid warnings
7242
7243 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7244
7245         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7246         Slade Rich fixed an optimization bug
7247         * src/pic/pcodepeep.c,
7248         * src/pic/pcoderegs.c
7249         * doc/Makefile (install): added test for directory
7250
7251 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7252
7253         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7254         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7255         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7256         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7257         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7258         * as/mcs51/asexpr.c (term),
7259         * as/hc08/asexpr.c (term): fixed bug #887146
7260
7261 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7262
7263         * src/z80/gen.c (genMult): handle single byte result product
7264         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7265         DUMMY_READ_VOLATILE (fixed bug #886367)
7266
7267 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7268
7269         * support/regression/tests/libmullong.c: fixed logic, on little endian
7270         hosts we ended without a mullong_wrapper()
7271
7272 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7273
7274         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7275         virus/worm forged address usage.
7276
7277 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7278
7279         Fixed promotion, it should be done on AST level:
7280         * src/SDCCast.c (addCast): added promotion to int
7281         (decorateType): updated call to upCast()
7282         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7283         usualUnaryConversions()
7284
7285 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7286
7287         * support/regression/tests/literalop.c (mulWrapper): Added a
7288         wrapper to remove integer overflow warnings.
7289
7290         * support/regression/tests/float_trans.c: Made work on host.
7291
7292         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7293         location of sz80.
7294
7295         * support/regression/generate-cases.py (main): Changed from inline
7296         to a main method.
7297
7298         * doc/Makefile (install): Changed to depth first to get rid of
7299         missing directory install warning.
7300
7301         * as/Makefile (install-doc): Made work on Mac.
7302
7303 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7304
7305         * src/SDCCast.c: added an additional type flow in decorateType() of
7306         opposite direction, see feature request #860006; it's enabled at runtime
7307         by setting the environment variable SDCC_NEWTYPEFLOW
7308         * src/SDCCast.h: changed prototype of decorateType()
7309         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7310         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7311         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7312         see feature request #877103
7313         * src/SDCCval.c: updated call of decorateType()
7314         (valBitwise): fixed bug #882876
7315         (valMinus): added promotion
7316         (valLogicAndOr): result is unsigned
7317         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7318         * src/SDCCsymt.c (computeType),
7319         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7320         must not cause an unsigned operation
7321         * src/pic/glue (pic14emitRegularMap),
7322         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7323
7324 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7325
7326         * src/pic/pcode.c (PCodeID): commented out left over debug code
7327
7328 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7329
7330         * support/valdiag/tests/overflow.c: added shift tests
7331         * src/pic/device.c,
7332         * src/pic/gen.c,
7333         * src/pic/gen.h,
7334         * src/pic/glue.c,
7335         * src/pic/main.c,
7336         * src/pic/pcode.c,
7337         * src/pic/pcode.h,
7338         * src/pic/pcodepeep.c,
7339         * src/pic/pcoderegs.c,
7340         * src/pic/ralloc.c,
7341         * src/pic/ralloc.h: applied patch from Slade Rich;
7342         added support for multiple code pages and multiple RAM banks on the
7343         PIC 14 port. The ASM files now no longer simply assume all the
7344         code / RAM are in the same page / bank. This means the linker can
7345         safely allocate code/RAM of separate ASM files to different pages/banks.
7346         * doc/sdccman.lyx: added Slade's tips
7347         * src/mcs51/peeph.def: fixed bug #880768
7348
7349 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7350
7351         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7352         * src/SDCCast.c (decorateType): fixed bug #880197
7353
7354 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7355
7356         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7357         getopt.h.
7358
7359         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7360         strtof is not part of C89 and isn't included with Mac OS X.
7361
7362 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7363
7364         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7365         shiftL2Left2Result): fixed bug #879326
7366         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7367         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7368         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7369         address fetch for clr instruction
7370         * device/lib/hc08/_mulint.c: created optimized assembly version
7371         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7372
7373 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7374
7375         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7376         proposed in FR #877103
7377
7378 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7379
7380         * src/SDCCval.c (cheapestVal): added missing checks
7381         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7382         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7383
7384 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7385
7386         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7387         equal operands
7388
7389 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7390
7391         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7392         loaded with the linker search paths (-L arguments) and the libraries
7393         to be linked with the current source (-l arguments). Changes
7394         currently will affect only the pic16 port.
7395         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7396         include path the port specific paths and port specific libraries,
7397         * gplink command now contains the $3 argument,
7398         * src/pic16/device.h,
7399         * src/pic16/device.c,: structure PIC_device is made public and
7400         renamed to PIC16_device, the same for variable Pics which is renamed
7401         to Pics16. Updated all references to them.
7402         * src/pic16/glue.c (pic16glue): corrected bug with code
7403         initialization which bypassed the variable initializations block.
7404
7405         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7406         COMPILE_FLAGS and added the --nostdinc option
7407
7408 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7409
7410         * device/include/mc68hc908jb8.h: Register defs for another member
7411         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7412
7413 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7414
7415         Documenting changes from previous commits.
7416         * configure.in (version 1.56),
7417         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7418         when generating output files to configure the pic16 library,
7419         but now I've commented it out, since gputils aren't installed in the
7420         SF compile farm, so library won't compile
7421
7422         * device/lib/Makefile.in (version 1.56): initially I've added in
7423         target 'all' the prerequestive 'model-pic16' so it compiled the
7424         pic16 library, but now I've commented it out for the same reasons
7425         above,
7426         * added targets 'model-pic16' and 'objects-pic16' to compile the
7427         library
7428         * added target 'port-specific-objects-pic16' to handle the
7429         generated libraries and copy them into the build/ directory
7430         * added target 'clean-intermediate-pic16' to clean intermediate
7431         files into pic16 directory
7432         * in target 'installdirs' added line to create directory pic16 in
7433         the installation path
7434
7435         * device/include/Makefile.in (version 1.11): in target 'install'
7436         added lines to copy all header files to installation path,
7437         * in target 'installdirs' added line create directory for pic16
7438         headers in the installation path
7439
7440 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7441
7442         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7443          a function call
7444
7445 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7446
7447         * configure,
7448         * device/lib/configure.in,
7449         * device/lib/configure: fixed for autoconf 2.57
7450
7451 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7452
7453         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7454         option so that it actually works. Made it specific to the z80, since
7455         the gbz80 doesn't have these kinds of I/O ports.
7456
7457 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7458
7459         * device/include/z180.h,
7460         * device/lib/_memcpy.c,
7461         * device/lib/_memmove.c,
7462         * device/lib/_mulint.c,
7463         * device/lib/ser_ir.c,
7464         * device/lib/ser_ir_cts_rts.c,
7465         * device/lib/_strcmp.c,
7466         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7467         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7468         portmode; added deprecation warning for bank= and protmode= forms.
7469         Also, guard against buffer overflow.
7470         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7471
7472 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7473
7474         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7475         changed interrupt vector table generation to only emit declared vectors.
7476         * device/include/Makefile.in: added missing backslash
7477         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7478
7479 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7480
7481         Mainly changes to support compilation of the device libraries
7482         * src/pic16/device.c: stack is allocated via symbol and not
7483         via literal number. The symbol is placed in the corresponding
7484         position of the data ram
7485         * (pic16_dump_section): relocatable and absolute uninitialized
7486         data are now emitted in sorted order to reduce section naming,
7487         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7488         weren't marked as being in the access bank,
7489
7490 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7491
7492         Added portion of GNU PIC Library under the directory
7493         device/include/pic16 and device/lib/pic16. These files
7494         contain the declarations of SFRs for the PIC18Fxx2 devices.
7495         The directory is initialized via configure from toplevel.
7496
7497 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7498
7499         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7500         the spilllocations to be compared correctly
7501
7502 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7503
7504         * src/SDCCast.c (decorateType): fixed bug introduced today
7505
7506 2004-01-12  Borut Razem <borut.razem AT siol.net>
7507
7508         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7509         doc/sdccman.lyx: upper case pragmas are deprecated
7510
7511 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7512
7513         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7514         in simpler and even better code
7515
7516 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7517
7518         * src/SDCCicode.c (operandOperation): fixed bug #874819
7519         * src/SDCCast.c (decorateType): fixed
7520         char foo (unsigned long ul) { return ul > 0; }
7521
7522 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7523
7524         * doc/sdccman.lyx: Moved and added some sections, small changes
7525         all over. Telling LaTeX to be less strict with word spacing
7526         to better keep the right margin. Changed some notes about
7527         maintainance of the ports in section 3.2.1 - is it OK like this?
7528
7529 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7530
7531         SDCC source changes:
7532         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7533         convilong): modified to inform the pic16 port that builtin functions
7534         are external
7535
7536         PIC16 PORT specific changes:
7537         * src/pic16/device.c pic16_dump_equates() added,
7538         processor registers declared internally by the port are emitted in
7539         the translation as equates,
7540         * src/pic16/gen.c: inline code is passed unprocessed to the
7541         translation,
7542         * (pic16_popGetLit2): fnuction modified to take second operand as
7543         pCodeOp pointer and not as literal,
7544         * (popRegFromIdx): prefixed with pic16_,
7545         * (pic16_popCombine2): modified to receive already allocated pCode
7546         operands,
7547         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7548         * (genFunction): initializes local stack frame and pushes on stack
7549         all the registers used by this function,
7550         * (genEndFunction): restores all registers from stack and restores
7551         stack frame,
7552         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7553         improvements,
7554         * (pic16glue): changed the program startup sequence,
7555         * added new dbName code 'A' for functions placed in absolute section
7556         * src/pic16/main.c: added function attribute _naked,
7557         * added pragma 'code' to place a fnuction at an absolute address,
7558         * added command line arguments --debug-ralloc and --pcode-verbose,
7559         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7560         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7561         * (pic16_newpCodeOpLit2): modified to take the second operand as
7562         pCodeOp pointer,
7563         * (pic16_printpBlock): modified to emit each function in a separate
7564         section,
7565         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7566         UPPER for immediate operands,
7567         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7568         instruction,
7569         * src/pic16/peeph.def: all peepholes with movff are commented out,
7570         because there is a problem in the pcode peep optimizer,
7571         * src/pic16/ralloc.c: the register allocator can now reuse local
7572         function symbols for another function. This saves register usage.
7573         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7574
7575         Added file src/pic16/NOTES with information about program writing on
7576         the current port version.
7577
7578 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7579
7580         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7581         and peephole 252 (array access)
7582
7583 2004-01-09  Borut Razem <borut.razem AT siol.net>
7584
7585         * src/SDCCmain.c : fixed #872250: -l command line defined library
7586           files are scanned before standard library files
7587
7588 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7589
7590         * src/SDCCast.c (decorateType): fixed bug #874046
7591
7592 2004-01-09  Borut Razem <borut.razem AT siol.net>
7593
7594         * support/scripts/sdcc.nsi: remove previous installation
7595
7596 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7597
7598         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7599         bytes for last interrupt vector (mcs51)
7600         * sdcc.spec: fixed typo
7601
7602 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7603
7604         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7605         gen51Code): more efficient parameter receive for --model-large
7606         ("bug" #845294)
7607
7608 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7609
7610         * src/ds390/main.c,
7611         * src/z80/main.c: added missed needLinkerScript flags (more than
7612         one port structure defined in these file)
7613         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7614         bug #795325
7615
7616 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7617
7618         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7619         * src/port.h: added flag needLinkerScript in port->linker
7620         structure to inform whether to create a .lnk file or not,
7621         * src/avr/main.c,
7622         * src/ds390/main.c,
7623         * src/hc08/main.c,
7624         * src/mcs51/main.c,
7625         * src/pic/main.c,
7626         * src/pic16/main.c,
7627         * src/xa51/main.c,
7628         * src/z80/main.c: changed appropriately to configure
7629         needLinkerScript flag
7630         * src/pic/gen.c,
7631         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7632         * src/pic/glue.c: added variable udata_section_name to
7633         override default uninitialized data segment definition for
7634         devices only with SHAREBANK memory (reported from Erik Epetrich)
7635         * (pic14emitOverlay): modified to emit a commented overlay segment
7636         directive when no overlay data exist
7637         * (picglue): modified to emit uninitialized data segment
7638         according to udata_section_name
7639         * src/pic/main.c (_pic14_parseOptions): added command line
7640         options --udata-section-name=[name] to override default
7641         udata definition name
7642         * modified _linkCmd and _asmCmd to include compiler passed
7643         arguments via -W option
7644         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7645         object file from '.rel' to '.o' in port->linker structure,
7646         changed size of fptr from 2 to 3 in port structure
7647
7648 2004-01-07  Borut Razem <borut.razem AT siol.net>
7649
7650         * support/scripts/sdcc.nsi: update PATH
7651         * support/scripts/sdcc.ico: craeted
7652
7653 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7654
7655         * device/include/Makefile.in: fix install
7656         * doc/Makefile: fix install
7657
7658 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7659
7660         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7661         in bug #860505
7662         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7663         how the function variable allocation summary is displayed; also
7664         include information about variables allocated to the overlay
7665         segment
7666
7667 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7668
7669         * as/mcs51/lkmain.c: Help about -Y option
7670         * as/mcs51/lkarea.c: Fixed gcc warnings
7671
7672 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7673
7674         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7675         fixed warning
7676         * support/valdiag/tests/overflow.c: added
7677         * src/SDCCast.c (decorateType),
7678         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7679         LEFT_OP (left shift)
7680
7681 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7682
7683         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7684         (default behaviour).
7685
7686 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7687
7688         A python script to validate compiler diagnostic messages. It can be
7689         used to verify that sdcc complains about bad c source code and
7690         gives a good location of the error.
7691         * support/valdiag/Makefile,
7692         * support/valdiag/valdiag.py,
7693         * support/valdiag/tests/*
7694
7695 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7696
7697         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7698         * src/SDCCsymt.c (newEnumType),
7699         * src/SDCCsymt.h
7700         * support/Util/SDCCerr.c,
7701         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7702         enum related bugs.
7703         * support/regression/tests/enum.c: added test for enum values that
7704         require at least 2 bytes of storage.
7705
7706 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7707
7708         * src/common.h: added ifndef/define/endif macros
7709         around the header file.
7710         Bug reported from Jesus Calvino-Fraga
7711
7712 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7713
7714         * sdcc.spec: updated
7715         * device/include/Makefile.in: don't install CVS directories
7716         * device/lib/Makefile.in: added removal of CVS directories after install
7717         * doc/Makefile: fixed install, added local_icons
7718         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7719         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7720         * src/ds390/gen.c (genRightShift): fixed bug #870788
7721         * src/SDCCast.c (decorateType): fixed bug #870781
7722
7723 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7724
7725         PIC16 port related changes:
7726         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7727         added variable stackPos,
7728
7729         * gen.c: genCall, assignResultValue: added support for
7730         pushing/retrieving function parameters to/from stack,
7731         genFunction,genEndFunction: setup stack frame for the
7732         generated function,
7733         genAddrOf: will be changed according to bug 863624
7734
7735         * added files genutils.c and genutils.h which contain gen*
7736         debugged and optimised functions extracted from gen.c
7737
7738         * glue.c: added variable 'externs' which holds extern symbols,
7739         pic16emitRegularMap: is modified to properly handle relocatable
7740          symbols under the new scheme,
7741         pic16createInterruptVect: is modified
7742         pic16printPublics: is modified to emit 'global' assembler directives,
7743         added pic16_printExterns to print extern symbols,
7744         pic16glue: initializes stack/frame pointer in the beginning of
7745         the assembly output. Temporary hack, will be corrected later,
7746         because gplink yet does not support stack and SDCC does not
7747         yet support a type of crt0.o object to create the final binary.
7748
7749         * Removed many lines that contain 8051 legacy code.
7750         * The code is finally placed under a 'code' directive.
7751         * Added port specific options.
7752
7753         * _process_pragma: simplified since now we do not need *special*
7754         include file to define SFR registers. But a separate header
7755         will be needed. This will be developed later.
7756         * _pic16_parseOptions: added, parses port specific options:
7757         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7758         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7759         --preplace-udata-with=
7760
7761         * _pic16_setDefaultOptions: modified to initialize section names,
7762         but hack is temporarly out of order since it needs improvement.
7763         * _pic16_genAssemblerPreamble: configuration words are emitted by
7764         their address instead of their name. This part is incomplete and
7765         supports only the 18Fxx2 devices. Other devices will emit an error
7766         during assembly since they do not contain the same set of config
7767         registers
7768         * _pic16_genIVT: is modified,
7769
7770         * pcode.c: added definitions for some hardware registers that are needed
7771         for stack support
7772         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7773         All PCI entries are updated. Now LFSR is supported.
7774         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7775         * added pic16_newpCodeOpLit2 to support instructions with
7776         two literal arguments
7777         * pic16_pCode2str: corrected code that emits assembler instructions
7778         with two literal operands and those that have an access bit modifier
7779         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7780         this fixes a bug which caused some labels to be lost, when an
7781         assembler directive was added, i.e. banksel,
7782         * pic16_FixRegisterBanking: improved logic that causes the insertion
7783         of bank switching,
7784         * InlineFunction: functions that are called once, are not any more
7785         inlined. This can be a port option in the future,
7786
7787         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7788
7789         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7790         hold the corresponding uninitialized symbols,
7791         * pic16_allocProcessorRegister: registers have explicit marked the
7792         accessBank field,
7793         * pic16_allocInternalRegister: registers are explicit marked as
7794         not used,
7795         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7796         processing list, so bit registers were lost,
7797         *
7798
7799         * ralloc.h: added field 'accessBank' and original symbol operand
7800         in register definition,
7801         * removed the field isMapped from register definition,
7802
7803         ** Several functions have been removed from various sources:
7804         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7805         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7806         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7807         pic16_assignRelocatableRegisters
7808
7809         ** others have been introduced:
7810         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7811         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7812
7813 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7814
7815         * support/scripts/inc2h.pl: changed definition of BIT_AT
7816         to emit 'sbit at' instead of 'bit at'. This was a request.
7817
7818         PIC16 port related preliminary changes:
7819         * gen.c: prefixed function popRegFromString with
7820         pic16_ and all references to it corrected
7821         * pcode.c: all pic16_pc_* hardware registers prefixed
7822         with underscore (_),
7823         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7824         * ralloc.c: newReg(): when register is REG_SFR then
7825         set address to rIdx,
7826         pic16_allocProcessorRegister(): marks register wasUsed=0
7827         pic16_writeUsedRegs(): added a call to assign processor
7828         registers via pic16_assignFixedRegisters
7829
7830 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7831
7832         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7833         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7834         variables in unused register banks.  Also the SSEG is placed
7835         wherever there is enough space for it, and IDATA can be anywhere
7836         in internal RAM.  For now compile using -Wl-Y[stack_size].
7837         The mem file is different for this option as well, since it
7838         makes no sense of talking about DSEG lenght.
7839
7840 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7841
7842         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7843         in certain cases, e.g. when ROM assignment, patch provided
7844         from Albert den Haan.
7845
7846 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7847
7848         Many signedness and type propagation fixes:
7849         * src/SDCCicode.c: made geniCodeCast() static
7850         replaced SPEC_ by IS_ (cosmetic)
7851         (operandOperation): fixed div and mod operation
7852         (usualBinaryConversions): added support for promotion of char
7853         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7854         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7855         (geniCodeAdd): an array index will stay unsigned, even if promoted
7856         from char to int
7857         (geniCodeArray): ditto
7858         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7859         * src/SDCCsymt.c (computeType): added more support for char;
7860         promotion of char is selectable by promoteCharToInt, fixed signedness
7861         for all cases
7862         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7863         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7864         * src/SDCCval (val*): replaced signedness calculation by
7865         computeType()
7866         rearranged if-branches (cosmetic)
7867         (valShift): added warning W_SHIFT_CHANGED
7868         (valCompare): fixed problem with different types
7869         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7870         * support/regression/tests/literalop.c: added many cases
7871         * support/regression/tests/ast_constant_folding.c: changed finally to
7872         'unsigned int'
7873         * .version: new year, new version: 2.3.7
7874         * src/SDCCmain.c (main): applied patch #866468
7875         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7876         provided by Scott Bronson
7877         * doc/sdccman.lyx: updated documentation for sdcdb
7878         updated and added chapter tips
7879
7880 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7881
7882         * src/SDCCsymt.h: missing from yesterday's commits
7883
7884 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7885
7886         * src/SDCC.y (struct_or_union_specifier),
7887         * support/Util/SDCCerr.c,
7888         * support/Util/SDCCerr.h: verify that struct & union tags are used
7889         as declared.
7890
7891 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7892
7893         * src/SDCCglobl.h: missing from yesterday's commits
7894
7895 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7896
7897         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7898         sft_attributes, struct_declaration, parameter_declaration,
7899         type_name, start_block, declaration_list),
7900         * src/SDCC.lex (check_type): support redefinition of typedef names
7901
7902 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7903
7904         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7905         aligned xdata arrays. Erik helped me with the if clause.
7906
7907 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7908
7909         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7910         warning
7911
7912 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7913
7914         * src/SDCCast.h,
7915         * src/SDCCast.c (newAst_),
7916         * src/SDCCicode.h,
7917         * src/SDCCicode.c (ast2iCode, newiCode),
7918         * src/SDCCglobl.h,
7919         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7920         expr, statement, expression_statement, selection_statement,
7921         iteration_statement, expr_opt, jump_statement): foundation for tracking
7922         sequence points
7923         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7924         point code too)
7925
7926 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7927
7928         * support/Util/SDCCerr.c,
7929         * src/SDCCast.h,
7930         * src/SDCCast.c (createCase, createDefault, decorateType),
7931         * src/SDCClabel.c (labelUnreach),
7932         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7933         to error messages.
7934         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7935         (with thanks to Stas Sergeev)
7936         * device/include/time.h,
7937         * device/lib/time.c (CheckTime): suppress unreachable code warning
7938
7939 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7940
7941         * src/SDCCast.c (createIvalCharPtr),
7942         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7943         bug #753752)
7944         * support/regression/tests/nullstring.c: tests for these two bugs
7945
7946 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7947
7948         * support/Util/SDCCerr.h,
7949         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7950         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7951         about storage class and 'at' used inside struct or union
7952         * src/SDCCBBlock.c (iCodeFromeBBlock),
7953         * src/SDCCcse.c (ifxOptimize),
7954         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7955         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7956         printIval, emitStaticSeg, emitOverlay),
7957         * src/SDCClabel.c (deleteIfx),
7958         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7959         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7960         gatherAutoInit, processParms),
7961         * support/Util/SDCCerr.h,
7962         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7963         reporting for post-parse errors.
7964
7965 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7966
7967         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7968         implicit casts via union; they don't work on big endian systems
7969         (possible fix for bug #861138)
7970
7971 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7972
7973         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7974         * src/mcs51/main.c: fixed the fix for bug #737001
7975
7976 2003-12-15  Borut Razem <borut.razem AT siol.net>
7977
7978         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7979
7980 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7981
7982         * support/makebin/makebin.c: put output in binary mode
7983
7984 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7985
7986         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7987         xdata and data memory on startup. Set the environment variable
7988         SDCC_NOGENRAMCLEAR to disable this.
7989         * src/mcs51/peephole.def,
7990         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7991         (allows non-interrupt and interrupt code to safely compete for a resource
7992         without the non-interrupt code having to disable interrupts)
7993
7994 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7995
7996         * src/SDCCicode.c (geniCodeAdd),
7997         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
7998         with valFromType if type might be a pointer and host is big endian).
7999         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
8000         types, not just integer types.
8001         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
8002         multiply defined with mismatching "at" address.
8003
8004 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8005
8006         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
8007         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
8008         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
8009         with embedded nulls (fixed bug #753752)
8010
8011 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8012
8013         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
8014         Apparently this did not see much testing (endless loop)
8015
8016 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8017
8018         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
8019
8020 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8021
8022         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
8023         gracefully handle NULL memmap pointers
8024
8025 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8026
8027         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
8028         instead of deleting the iCode when an operand is volatile
8029         * src/z80/gen.c (genDummyRead),
8030         * src/mcs51/gen.c (genDummyRead),
8031         * src/ds390/gen.c (genDummyRead),
8032         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
8033         not just IC_RIGHT
8034         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
8035         * src/SDCC.y: fixed bug #850420
8036
8037 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8038
8039         Applied z80 i/o port patch from Peter Townson and fixed some operators
8040         to better handle operands in A register.
8041         * device/include/z180.h
8042         * src/SDCC.y
8043         * src/SDCCglue.c
8044         * src/z80/gen.c
8045         * src/z80/gen.h
8046         * src/z80/main.c
8047         * src/z80/peeph-z80.def
8048         * src/z80/peeph.def
8049         * src/z80/z80.h
8050
8051 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8052
8053         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
8054
8055 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8056
8057         * device/lib/hc08/_mullong.c: Removed extra #endif
8058
8059 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8060
8061         * sim/ucsim/hc08.src/inst.cc,
8062         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
8063         carries from x to h
8064         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
8065         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
8066         * device/include/stdarg.h: fixed varargs for hc08
8067         * device/lib/Makefile.in,
8068         * device/lib/hc08/Makefile,
8069         * device/lib/hc08/_mulint.c,
8070         * device/lib/hc08/_mullong.c: fixed some endian problems
8071
8072 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8073
8074         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
8075         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
8076         * device/lib/_gptrget.c,
8077         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
8078
8079 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8080
8081         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
8082         * src/SDCCast.c (astErrors): fixed bug #846007
8083         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
8084
8085 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8086
8087         * src/SDCCast.c (decorateType): disabled a transformation I added in
8088         revision 1.188 (access to fields of a structure at an absolute address);
8089         it breaks with bitfields, extern declarations, and gcse analysis.
8090         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
8091         could be assigned through a pointer, so don't complain.
8092         * src/SDCCast.c (astErrors),
8093         * src/SDCCast.h,
8094         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
8095
8096 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
8097
8098         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
8099         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
8100         output of __config directives, since gpasm now supports them
8101         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
8102         pre-processor macro, i.e. -DMCU=p18f452
8103         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
8104         and modified to handle 'cast' icode similarly to '=' icode
8105         * src/pic16/device.h (typedef struct PIC_device): added field
8106         'extMIface' to indicate that chip has external memory interface
8107         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
8108         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8109         18F8720
8110
8111 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8112
8113         * src/SDCC.y (pointer): fixed bug #846006
8114         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8115         * src/SDCCast.c (decorateType): fixed bug #846009
8116         * src/ds390/peeph.def,
8117         * src/ds390/gen.c (genAnd, genOr),
8118         * src/mcs51/peeph.def,
8119         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8120
8121 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8122
8123         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8124         * src/SDCCdflow.c
8125         * src/SDCCcse.c
8126         * src/SDCCcse.h
8127         * src/SDCCBBlock.h
8128         * src/SDCCBBlock.c
8129
8130 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8131
8132         fixed bug #845089
8133         * src/SDCCbitv.h,
8134         * src/SDCCbitv.c: added function to free a bitvector
8135         * src/SDCClrange.h,
8136         * src/SDCClrange.c: added function to recompute the liveranges
8137         * src/avr/ralloc.c,
8138         * src/ds390/ralloc.c,
8139         * src/hc08/ralloc.c,
8140         * src/mcs51/ralloc.c,
8141         * src/pic/ralloc.c,
8142         * src/pic16/ralloc.c,
8143         * src/xa51/ralloc.c,
8144         * src/z80/ralloc.c: recompute the liveranges after register packing
8145
8146 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8147
8148         * src/SDCCloop.c (newInduction): fixed bug #845630
8149
8150 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8151
8152         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8153         inadvertantly left behind from my 2003-11-12 change
8154
8155 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8156
8157         Updated headers I neglected to commit yesterday.
8158         * src/SDCClrange.h,
8159         * src/SDCCicode.h
8160
8161 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8162
8163         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8164         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8165         * src/SDCCopt.c (eBBlockFromiCode),
8166         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8167         the creation of the key hash table from the sequencing so it can be used
8168         earlier (for some GCSE bug fixes still pending)
8169
8170 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8171
8172         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8173         * support/regression/tests/addsub.c: testing genPlus shortcut
8174
8175 2003-11-15  Borut Razem <borut.razem AT siol.net>
8176
8177         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8178
8179 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8180
8181         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8182         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8183         ordering is immaterial.
8184         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8185
8186 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8187
8188         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8189         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8190         (SIGSEV) of bug #840381
8191         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8192         unlink new file before rename if new and old filenames are the same)
8193
8194 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8195
8196         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8197         uninitialized variables) for the mcs51. Set environment variable
8198         SDCC_GENRAMCLEAR to test.
8199         xdata initialization slightly shorter
8200
8201 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8202
8203         * src/SDCCsymt.h,
8204         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8205         #838241 & 780691 (basicly the same bug)
8206         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8207         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8208
8209 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8210
8211         * src/SDCCmain.c (linkEdit): "fix" #834252
8212
8213 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8214
8215         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8216         * src/SDCCast.h,
8217         * src/SDCC.y: fixed bug #819403
8218
8219 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8220
8221         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8222         the reentrant attribute.
8223         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8224         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8225         simulation
8226         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8227         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8228         erroneously reduced to a literal.
8229         * src/hc08/ralloc.c (packRegisters, rematStr),
8230         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8231         some cases
8232
8233 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8234
8235         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8236         * doc/sdccman.lyx: changed from 'article' to 'book'
8237         * doc/Makefile: readded test_suite_spec and cdbfileformat
8238
8239 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8240
8241         * device/include/stdlib.h: include malloc.h to comply with ANSI
8242         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8243
8244 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8245
8246         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8247         * doc/clean.mk: also remove *.out files
8248         * doc/sdccman.lyx: some additions, larger top/bottom margins
8249
8250 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8251
8252         * src/SDCC.y: fixed bug #837365
8253         * support/regression/tests/bitopcse.c
8254         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8255         a symbol (might be valop instead)
8256         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8257         * device/lib/clean.mk: added hc08 to the cleaning list
8258
8259 2003-11-04  Borut Razem <borut.razem AT siol.net>
8260
8261         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8262           made 2003-11-04
8263         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8264           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8265           malloc is declared in standard stdlib.h
8266
8267 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8268
8269         * device/lib/hc08/Makefile: need to clean .rel not .o files
8270         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8271
8272 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8273
8274         * src/port.h,
8275         * src/hc08/main.c,
8276         * src/mcs51/main.c,
8277         * src/ds390/main.c,
8278         * src/z80/main.c,
8279         * src/avr/main.c,
8280         * src/pic/main.c,
8281         * src/pic16/main.c,
8282         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8283         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8284         tests (which uses the port's oclsExpense function)
8285         * src/SDCC.y,
8286         * src/SDCCast.c,
8287         * src/SDCCicode.c,
8288         * src/hc08/gen.c,
8289         * src/ds390/gen.c,
8290         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8291
8292 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8293
8294         * src/SDCCcse.c (ifxOptimize),
8295         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8296         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8297         deleting the IFX iCode.
8298         * src/hc08/ralloc.c: reduced unneeded slocs
8299         * src/hc08/gen.c: fixed bug in asmopToBoolean
8300
8301 2003-11-04  Borut Razem <borut.razem AT siol.net>
8302
8303         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8304           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8305           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8306           transferred to configure
8307
8308 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8309
8310         Use headers defined in the C[++] standards:
8311         * sim/ucsim/gui.src/serio.src/fileio.cc
8312         * sim/ucsim/gui.src/serio.src/frontend.cc
8313         * sim/ucsim/gui.src/serio.src/main.cc
8314         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8315         * support/Util/NewAlloc.c
8316         * as/hc08/lklibr.c
8317         * as/mcs51/lklibr.c
8318         * as/z80/aslist.c
8319         * as/z80/assym.c
8320
8321 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8322
8323         * Added MSVC projects for hc08 assembler and linker:
8324         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8325         /as/hc08/link_hc08.dsp
8326
8327 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8328
8329         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8330
8331 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8332
8333         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8334
8335 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8336
8337         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8338
8339 2003-10-31  Borut Razem <borut.razem AT siol.net>
8340
8341         * support/cpp2/cpplib.h,
8342           support/cpp2/cpplib.c,
8343           support/cpp2/cpplex.c,
8344           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8345           to switch _asm block preprocessing on / off. Default is
8346           #pragma preproc_asm +
8347
8348 2003-10-31  Borut Razem <borut.razem AT siol.net>
8349
8350         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8351           when outputting comment blocks (when executed with -C option) and
8352           _asm (SDCPP specific) blocks
8353
8354 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8355
8356         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8357
8358 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8359
8360         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8361
8362 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8363
8364         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8365         * src/SDCCast.c (decorateType): fixed bug #832664
8366
8367 2003-10-31  Borut Razem <borut.razem AT siol.net>
8368
8369         * support\cpp2\cpplex.c: fixed for SDCPP:
8370           comments(when executed with -C option) and _asm blocks
8371           were included even if they where in skipped #if block.
8372           Applied solution from GCC cpp 3.3.2
8373
8374 2003-10-31  Borut Razem <borut.razem AT siol.net>
8375
8376         * src/SDCC.lex: sdcc now understands both formats:
8377           '# <line_number> <file_name>' and
8378           '#line <line_number> <file_name>'
8379         * support/cpp2/cppmain.c: sdcpp now generates the standard
8380           '# <line_number> <file_name>' instead of former
8381           '#line <line_number> <file_name>'
8382
8383 2003-10-30  Borut Razem <borut.razem AT siol.net>
8384
8385         * support/cpp2/cpphash.h,
8386         * support/cpp2/cpplib.h
8387         * support/cpp2/cpplex.c,
8388         * support/cpp2/cppmain.c,
8389         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8390
8391 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8392
8393         Fixed a number of problems revealed by bug #827883.
8394         * src/SDCCloop.c (loopInvariants): Spill location of the
8395         result operand should be recomputed if extracted from
8396         a loop. Also, don't extract assignments of an iTemp
8397         from a literal.
8398         * src/SDCCast.c (isConformingBody): loop reversal should
8399         not occur if the control variable is involved with a
8400         relational operator.
8401
8402 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8403
8404         * .version: bumped to 2.3.6 to reflect the big improvements
8405         made by Erik and Klaus. Thanks!
8406
8407 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8408
8409         Replaced the livrange code.
8410         * src/SDCClrange.c: added new LR code
8411         * src/SDCCloop.c,
8412         * src/SDCCBBlock.h: removed remainig parts from old LR code
8413         * src/ds390/ralloc.c,
8414         * src/ds390/gen.c: minor fixes to make it work with new code
8415
8416 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8417
8418         * as/hc08/asm.h,
8419         * as/hc08/lkrloc.c,
8420         * src/hc08/gen.c,
8421         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8422         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8423         (tweaked fix for bug #818696)
8424
8425 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8426
8427         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8428
8429 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8430
8431         * src/SDCCmain.c,
8432         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8433         * src/mcs51/gen.c (gencjneshort),
8434         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8435         more efficient (per Scott Bronson's suggestion)
8436
8437 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8438
8439         Extended the semantics of the critical keyword to include
8440         individual statements. See RFE #827755 and #799831
8441         * src/SDCC.y
8442         * src/SDCCicode.c
8443         * src/SDCCopt.c
8444         * src/SDCCast.c
8445         * support/Util/SDCCerr.c
8446         * support/Util/SDCCerr.h
8447         * src/mcs51/gen.c
8448         * src/ds390/gen.c
8449         * src/hc08/gen.c
8450
8451 2003-10-19  Borut Razem <borut.razem AT siol.net>
8452
8453         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8454
8455 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8456
8457         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8458         Fixed bug #818696
8459         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8460         and predecrement operand is displayed
8461
8462 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8463
8464         * src/SDCCval.c (valMinus): fixed bug #826041
8465
8466 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8467
8468         Some hc08 related updates that I missed earlier
8469         * sim/ucsim/stypes.h
8470         * support/regression/ports/hc08/spec.mk
8471
8472 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8473
8474         New target "hc08" for the Motorola 68hc08 family of micros
8475
8476         * configure
8477         * configure.in
8478         * Makefile
8479         * src/hc08/*
8480         * src/SDCCmain.c
8481         * src/port.h
8482         * sim/ucsim/hc08.src/*
8483         * sim/ucsim/configure.in
8484         * src/ucsim/configure
8485         * sim/ucsim/packages_in.mk
8486         * as/hc08/*
8487         * as/Makefile
8488         * device/include/mc68hc908qy.h
8489         * device/lib/hc08/*
8490         * device/lib/Makefile.in
8491         * support/regression/ports/hc08/*
8492         * support/regression/Makefile
8493
8494 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8495
8496         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8497         regression test
8498         * src/ds390/gen.c (genCast): fixed bug #821957
8499
8500 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8501
8502         * device/lib/logf.c: "fixed" overlay bug
8503         * support/regression/ports/host/spec.mk: added m library
8504         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8505         * support/regression/tests/float_trans: added (for Eric)
8506
8507 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8508
8509         * src/mcs51/gen.c (genCpl): fixed bug
8510         http://sf.net/mailarchive/message.php?msg_id=6263915
8511
8512 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8513
8514         * src/SDCCast.c (decorateType): added extended constant folding
8515         * src/SDCCsymt.c (computeType): cleanup
8516         * src/SDCCval.c (valShift): minor optimization
8517         * support/regression/tests/ast_constant_folding.c: added
8518
8519 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8520
8521         * src/SDCCmain.c: removed some unintended changes
8522
8523 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8524
8525         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8526         * src/z80/gen.c: fixed part of bug #817589
8527         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8528
8529 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8530
8531         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8532         * src/SDCCcflow.c
8533         * src/SDCCcse.c
8534         * src/SDCCdflow.c
8535         * src/SDCClabel.c
8536         * src/SDCClrange.c
8537         * src/SDCCmem.c
8538         * src/SDCCopt.c
8539         * src/SDCCpeeph.c
8540         * src/SDCCset.c
8541         * src/avr/ralloc.c
8542         * src/ds390/ralloc.c
8543         * src/izt/ralloc.c
8544         * src/mcs51/ralloc.c
8545         * src/pic/ralloc.c
8546         * src/pic16/ralloc.c
8547         * src/xa51/ralloc.c
8548         * src/z80/ralloc.c
8549         * src/z80/gen.c: removed unused label "release:"
8550
8551 2003-10-06  Borut Razem <borut.razem AT siol.net>
8552
8553         * src/SDCC.lex: removed definition of unused variables
8554           save_optimize and save_options
8555
8556 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8557
8558         * clean.mk: removed '=' in "-maxdepth=1"
8559         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8560         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8561
8562 2003-10-06  Borut Razem <borut.razem AT siol.net>
8563
8564         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8565           my_unput() replaced by unput()
8566
8567 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8568
8569         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8570         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8571         type-punned pointer will break strict-aliasing rules"
8572         Old LR behaviour is again default; Klaus' LR can be choosen by
8573         defining the environment variable LRKLAUS
8574         * src/SDCCBBlock.h
8575         * src/SDCCloop.c
8576         * src/SDCClrange.c
8577         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8578         * clean.mk: fixed removal of files in bin/CVS/
8579         * device/lib/clean.mk: fixed removal of directories small and large
8580         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8581         * src/SDCCicode.c,
8582         * src/SDCCval.c: removed superflous test for pedantic
8583
8584 2003-10-05  Borut Razem <borut.razem AT siol.net>
8585
8586         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8587           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8588           message "unmatched #pragma SAVE and #pragma RESTORE"
8589
8590 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8591
8592         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8593           assembly, critical functions, atomic, nojtbound)
8594
8595 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8596
8597         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8598         * src/SDCCBBlock.h
8599         * src/SDCCloop.c
8600         * src/SDCCloop.h
8601         * src/SDCClrange.c
8602
8603 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8604
8605         * src/z80/gen.h,
8606         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8607         * src/mcs51/gen.h
8608         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8609         * src/ds390/gen.h
8610         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8611         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8612         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8613
8614 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8615
8616         * src/z80/gen.c (genRet): fixed bug #524753
8617         * src/z80/gen.c (genCast): fixed internal error on cast from
8618         pointer to long
8619         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8620         fix for bug #477835 to the z80
8621         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8622         for tracking iCodes in the peephole optimizer for z80
8623
8624 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8625
8626         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8627         the other part of bug #814548
8628         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8629
8630 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8631
8632         * src/SDCCcse.c: fixed part of bug #814548
8633
8634 2003-09-28  Borut Razem <borut.razem AT siol.net>
8635
8636         * src/asm.c: rewrite of printILine() to use temporary file instead
8637           a pipe
8638         * src/xa51/main.c: commented out declaration of int rewinds
8639
8640 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8641
8642         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8643
8644 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8645
8646         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8647         * src/asm.c (printILine): Fixed bug #811015
8648
8649 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8650
8651         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8652         freeing.
8653
8654 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8655
8656         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8657         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8658         to correctly handle general case of AOP_PAIRPTR
8659         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8660
8661 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8662
8663         * src/mcs51/ralloc.c (fillGaps),
8664         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8665         register positioning bug)
8666
8667 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8668
8669         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8670
8671 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8672
8673         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8674         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8675         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8676         (ralloc doesn't intentionally do this now, but perhaps later)
8677         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8678         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8679         register positioning bugs (Fixed bug #762602 and #795325)
8680         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8681         (Fixed bug #808779)
8682         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8683         lines that --i-code-in-asm generates
8684
8685 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8686
8687         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8688         trying to fclose a FILE* that was already closed.
8689
8690 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8691
8692         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8693         of const struct should be treated as if const themselves)
8694
8695 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8696
8697         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8698
8699 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8700
8701         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8702         Unix (/n) and DOS (/r/n) line terminations.
8703
8704 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8705
8706         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8707         bug #613775
8708
8709 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8710
8711         * src/mcs51/gen.c (genFunction, genEndFunction),
8712         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8713         and restore of EA so that stack offsets to parameters are
8714         correct when using both critical and reentrant/stack-auto.
8715         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8716         size (can be triggered in error if sloc is shared between
8717         different sized objects)
8718         * device/include/float.h: fixed macros to explicitly use
8719         unsigned long where needed
8720
8721 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8722
8723         Feature req. 799831: added code to allow nesting of critical functions
8724         * src/mcs51/gen.c (genFunction, genEndFunction)
8725         * src/ds390/gen.c (genFunction, genEndFunction)
8726
8727 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8728
8729         * src/SDCCsymt.c (sclsFromPtr),
8730         * src/SDCCsymt.h,
8731         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8732         support for standard C idiom of memory mapped variables; for
8733         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8734         to xdata int at 0x1234 tempvar = 1.
8735         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8736         provided by Akiya ISHIDA
8737
8738 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8739
8740         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8741         * src/SDCCval.c (constVal): added reduction from int to char
8742         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8743         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8744         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8745         to ignore the sign
8746         * support/regression/tests/shifts.c: fixed
8747
8748 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8749
8750         * src/z80/gen.c (genXor): Fixed bug #805445
8751
8752 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8753
8754         Fixed bug #621531 (const & volatile confusion in the type chain).
8755         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8756         refer to the const or volatile state of the pointer itself.
8757
8758         * src/SDCCast.c
8759         * src/SDCCglue.c
8760         * src/SDCCicode.c
8761         * src/SDCCsymt.c
8762         * src/SDCCval.c
8763         * src/SDCC.y
8764         * src/SDCCsymt.h
8765         * src/pic/gen.c
8766         * src/pic/ralloc.c
8767         * src/pic16/gen.c
8768         * src/pic16/ralloc.c
8769         * support/regression/tests/const.c
8770
8771 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8772
8773         When checking for duplicated modules, use absolute paths
8774         instead of relative paths.  Files changed:
8775
8776         * as/mcs51/lklib.c
8777         * link/z80/lklib.c
8778
8779 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8780
8781         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8782
8783 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8784
8785         * device/include/string.h: added size_t typedef, changed
8786         prototypes to use size_t, eliminated separate reentrant and
8787         non-reentrant declarations, added _memmove declaration
8788         * device/lib/_memcpy.c: changed to use size_t instead of int,
8789         changed /4 to >>2 to avoid division library call
8790         * device/lib/_memcmp.c,
8791         * device/lib/_memset.c,
8792         * device/lib/_strncat.c,
8793         * device/lib/_strncpy.c,
8794         * device/lib/_strncmp.c: changed to use size_t instead of int
8795         * device/lib/_memmove.c: new file (fixed bug #772294)
8796         * device/lib/Makefile.in: added _memmove.c
8797         * device/lib/z80/asm_strings.s: fixed bug #772290
8798         * support/regression/tests/bitfields.c: attempt to fix host assertion
8799         failure on amd64-unknown-linux2.2
8800
8801 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8802
8803         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8804         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8805         * as/z80/asmain.c (main): fixed bug #801766
8806
8807 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8808
8809         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8810         compilers
8811
8812 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8813
8814         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8815         reported in bug #800609
8816
8817 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8818
8819         * Top header beautifications in src/pic16 directory:
8820           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8821           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8822           pcoderegs.h, ralloc.c, ralloc.h
8823         * main.c: added top header and GPL license notice
8824         * pcode.c: fixed the if-conditional warning
8825
8826 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8827
8828         * device/lib/_mullong.c: replaced int by short for gcc
8829
8830 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8831
8832         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8833         and JUMPTABLE iCodes properly now (worked by accident before)
8834         * src/mcs51/gen.c (leftRightUseAcc),
8835         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8836         iCode properly now. Use getSize instead of nRegs since a & b
8837         aren't part of the nRegs tally.
8838
8839 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8840
8841         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8842         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8843           before instructions that use the _STATUS register
8844
8845 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8846
8847         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8848         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8849         fetching of the pointer
8850         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8851         copied from genNearPointerSet()
8852         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8853         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8854         If they pop r0/r1 they must be called in the opposite order than aopOp().
8855         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8856         (resp. --stack-auto), prepared for --xstack
8857
8858 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8859
8860         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8861
8862 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8863
8864         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8865         these ports have their own __sdcc_external_start()
8866
8867 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8868
8869         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8870         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8871         type for bits was changed. It resulted in bit variables becoming
8872         global, which is not permitted in PIC 14 assembly output.
8873
8874 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8875
8876         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8877
8878 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8879
8880         Z80 and MCS51 linkers complaint if a public symbol is defined
8881         in more than one library module:
8882
8883         * as/mcs51/lklib.c
8884         * link/z80/lklib.c
8885         * as/mcs51/Makefile.in
8886
8887 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8888
8889         A few small changes that speed up the peephole optimizer.
8890
8891         * src/SDCCpeeph.c
8892
8893 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8894
8895         Try to make the peephole optimizer smarter by maintaining
8896         an association between the assembly source code and the
8897         iCodes that originated them. Put this information to use
8898         with a new peephole rule condition "notVolatile" so that
8899         the rules can be aggressive yet still safe.
8900
8901         * src/SDCCpeeph.c
8902         * src/SDCCpeeph.h
8903         * src/mcs51/gen.c
8904         * src/mcs51/peeph.def
8905
8906 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8907
8908         Fixed bug #741761
8909
8910         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8911         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8912         if the left or right operand symbols have the accuse flag set.
8913
8914 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8915
8916         Changed the type of the result of the ! (NOT) operator to char;
8917         previously it returned the same type as the source. This allows
8918         us to eliminate all the genFloatNot functions (all of its target
8919         implementations were very buggy) since !float can use the same
8920         code as !long now.
8921
8922         * src/SDCCicode.c (ast2iCode): ! returns char
8923         * src/mcs51/gen.c (genNot, genNotFloat),
8924         * src/ds390/gen.c (genNot, genNotFloat),
8925         * src/z80/gen.c (genNot, genNotFloat),
8926         * src/pic/gen.c (genNot, genNotFloat),
8927         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8928
8929 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8930
8931         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8932         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8933            during interrupts. Ensure WSAVE is located at a shared bank address.
8934         2. Fixed page selection in some places
8935         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8936            the registers name strings.
8937         4. Fixed "signed / unsigned compare" compiler warnings.
8938         5. The PIC port manages its own allocation of the general purpose
8939            registers, but makes no attempt to reuse them. As a result when
8940            compiling it soon runs out of general purpose registers. Some
8941            additional code was added to the files pcode.c and device.c to walk
8942            through the function call tree and rename the registers so that they
8943            get reused.
8944
8945         * src/pic/device.c
8946         * src/pic/gen.c
8947         * src/pic/glue.c
8948         * src/pic/pcode.c
8949         * src/pic/pcode.h
8950         * src/pic/ralloc.c
8951         * src/pic/ralloc.h
8952         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8953         genPlus() & genMinus() when the result is the same as left or right
8954
8955 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8956
8957         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8958
8959 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8960
8961         Made bitfield a distinct type from bit so that bitfields
8962         convert as per ANSI C and bits retain their traditional
8963         boolean style behaviour. Implemented bitfield support in
8964         the z80 port.
8965
8966         * src/SDCCsymt.h,
8967         * src/SDCCsymt.c,
8968         * src/SDCCast.c,
8969         * src/cdbFile.c,
8970         * src/mcs51/gen.c,
8971         * src/ds390/gen.c: bit v bitfield split
8972         * src/z80/gen.c: New support for bitfields
8973         * support/regression/tests/bitfields.c: reenabled z80,
8974         added more tests
8975
8976 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8977
8978         Rules 246.x, 247.x relate to bitfields, the others speed up
8979         access to xdata mapped I/O devices.
8980
8981         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8982
8983 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8984
8985         Cleaned up genPackBits and genUnpackBits and added two helper
8986         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8987         for literal assignments in genPackBits (thanks to Frieder for
8988         reminding me).
8989
8990         * src/mcs51/gen.c
8991         * src/ds390/gen.c
8992
8993 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8994
8995         Fixed bug #748310 (pointer to function type mishandled when the
8996         function name is omitted). Also fixed a SIGSEGV when a function
8997         attribute (reentrant, etc) is used on a non-function or on a
8998         function but misplaced before the parameter list.
8999
9000         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
9001         bug #748310
9002         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
9003         * support/Util/SDCCerr.h,
9004         * support/Util/SDCCerr.c: Added func attr misuse error msg
9005
9006 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9007
9008         Fixed bug #787649 by anonymous
9009         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
9010         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
9011
9012 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9013
9014         Fixed numerous bitfield problems.
9015
9016         * src/SDCC.y: More bitfield related error checking
9017         * src/SDCCsymt.h,
9018         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
9019         * support/Util/SDCCerr.h,
9020         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
9021         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9022         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9023         * support/regression/tests/bitfields.c: tests added
9024
9025 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9026
9027         Made the constant following the "interrupt" keyword optional. If
9028         omitted, the function will not automatically be given an entry
9029         in the interrupt vector table (similar to #pragma NOIV, but
9030         less syntacticly kludgy). The interrupt number is also now
9031         range checked. Also fixed a bug in the high order bit example
9032         in the manual.
9033
9034         * src/SDCC.y
9035         * src/SDCCmem.c
9036         * src/SDCCglue.c
9037         * src/SDCCsymt.h
9038         * support/Util/SDCCerr.c
9039         * support/Util/SDCCerr.h
9040         * doc/sdccman.lyx
9041
9042 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9043
9044         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
9045         * src/SDCCicode.c (operandOperation): rewritten some ops
9046         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
9047         * src/SDCCsymt.c (computeType): literals are handled the same way as any
9048         other type
9049         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
9050         be re-activated by defining REDUCE_LITERALS)
9051         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
9052         unsigned, but are signed by default
9053         * src/SDCCval.c (constVal): rearranged
9054         * src/SDCCval.c (valMod): preliminary fix
9055         * src/SDCCval.c (valCastLiteral): use TYPE_* types
9056         * support/regression/literalop.c: added, work in progress
9057
9058 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9059
9060         Generate warnings for useless declarations like "char data;"
9061         that don't do what new users expect.
9062
9063         * src/SDCC.y
9064         * support/Util/SDCCerr.h
9065         * support/Util/SDCCerr.c
9066
9067 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
9068
9069         * src/SDCCval.c (valMult): fix overflow detection of negative int
9070
9071 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9072
9073         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
9074
9075         Changes to support big endian targets:
9076
9077         * src/ports.h
9078         * src/SDCCglue.c
9079         * src/avr/main.c
9080         * src/ds390/main.c
9081         * src/izt/i186.c
9082         * src/mcs51/main.c
9083         * src/pic/main.c
9084         * src/pic16/main.c
9085         * src/xa51/main.c
9086         * src/z80/main.c
9087
9088 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
9089
9090         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
9091         * device/lib/time.c: fixed warning "integer overflow in expression"
9092
9093 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
9094
9095         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
9096         * src/SDCCval.c (constVal): changed default to signed; hex and octal
9097         constants are unsigned; added recognition of "u" flag for unsigned
9098         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
9099         * src/SDCCval.c (valDiv, valMod): fixed signdness
9100         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
9101         signedness of modulo, left and right shift
9102         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
9103         * support/Util/SDCCerr.h: added warning W_INT_OVL
9104         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
9105         * src/SDCCast.c (ast_print): improved output of constants
9106
9107 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9108
9109         Fixed some warnings when building with MSVC:
9110
9111         * as\mcs51\asdata.c
9112         * as\z80\asdata.c
9113         * as\mcs51\asm.h
9114         * as\z80\asm.h
9115         * link\z80\aslink.h
9116         * link\z80\lkdata.c
9117         * link\z80\lkeval.c
9118         * link\z80\lkgb.c
9119         * link\z80\lkihx.c
9120         * link\z80\lks19.c
9121         * link\z80\lksym.c
9122         * support\cpp2\cpplib.c
9123         * src\ds390\gen.c
9124         * src\mcs51\gen.c
9125
9126 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9127
9128         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9129
9130 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9131
9132         * support\librarian\clean.mk: Do not remove Makefile.
9133         * support\librarian\Makefile: added.
9134
9135 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9136
9137         Added librarian to MSVC build:
9138         * all.dsp
9139         * sdcc.dsw
9140         * support\librarian\librarian.dsp
9141
9142         'configure' not needed for librarian, removed:
9143         * support\librarian\configure
9144         * support\librarian\configure.in
9145         * support\librarian\config_in.h
9146         * support\librarian\Makefile.in
9147
9148         Hopefully these ones built the librarian and the rest of sdcc properly:
9149         * Makefile
9150         * Makefile.common.in
9151
9152         Messed up 'configure', so revert to previous version:
9153         * configure
9154         * configure.in
9155
9156 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9157
9158         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9159         there, while the mantissa of a double is "only" 53 bits wide.
9160
9161 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9162
9163         Adding sdcclib to the build.  MSVC project coming soon.
9164         Files added/changed:
9165
9166         * support\librarian\clean.mk
9167         * support\librarian\configure
9168         * support\librarian\configure.in
9169         * support\librarian\config_in.h
9170         * support\librarian\Makefile.bcc
9171         * support\librarian\Makefile.in
9172         * support\librarian\sdcclib.c
9173         * Makefile.bcc
9174         * Makefile
9175         * Makefile.common.in
9176         * configure
9177         * configure.in
9178
9179 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9180
9181         Linker now complaints if linked modules have conflicting options, for
9182         example, one compiled using --model-large and another one compiled with
9183         --model-small.  The following files were modified:
9184
9185         * as\mcs51\asdata.c
9186         * as\mcs51\aslink.h
9187         * as\mcs51\asm.h
9188         * as\mcs51\asmain.c
9189         * as\mcs51\asout.c
9190         * as\mcs51\i51pst.c
9191         * as\mcs51\lkdata.c
9192         * as\mcs51\lklibr.c
9193         * as\mcs51\lkmain.c
9194         * as\z80\asdata.c
9195         * as\z80\asm.h
9196         * as\z80\asmain.c
9197         * as\z80\asout.c
9198         * as\z80\z80pst.c
9199         * link\z80\aslink.h
9200         * link\z80\lkdata.c
9201         * link\z80\lklibr.c
9202         * link\z80\lkmain.c
9203         * src\SDCCglue.c
9204
9205 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9206
9207         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9208         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9209
9210 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9211
9212         * src/z80/mappings.i: fix _mul[us][int,long] entries
9213
9214 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9215
9216         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9217
9218 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9219
9220         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9221         * support/regression/tests/bitopcse.c: added
9222         fixed warning:
9223         * src/avr/gen.c:
9224         * src/pic/gen.c:
9225         * src/pic16/gen.c:
9226         * src/z80/gen.c:
9227         * src/xa51/gen.c:
9228
9229 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9230
9231         added support for new library format to z80, gbz80 linkers:
9232         *link/z80/aslink.h
9233         *link/z80/lklex.c
9234         *link/z80/lklib.c
9235         *link/z80/lklist.c
9236
9237 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9238
9239         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9240         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9241
9242 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9243
9244         added DUMMY_READ_VOLATILE:
9245         * src/SDCC.y:
9246         * src/avr/gen.c:
9247         * src/xa51/gen.c:
9248         * src/z80/gen.c:
9249         * src/pic/gen.c:
9250         * src/pic16/gen.c:
9251         * src/mcs51/gen.c:
9252         * src/ds390/gen.c:
9253         * src/SDCCcse.c (algebraicOpts): many improvements
9254         * src/SDCCcse.h: removed algebraicOpts()
9255         * src/SDCCicode.c (picDummyRead): added
9256
9257 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9258
9259         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9260         "Insufficient space in data memory".
9261
9262 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9263
9264         * src/mcs51/gen.c: fixed bug #771358
9265         * src/z80/gen.c: fixed bug #759087
9266
9267 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9268
9269         * src/pic16/glue.c: minor cleanup by Vangelis
9270
9271 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9272
9273         * device/include/regc515c.h: fixed #758477
9274         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9275         * device/lib/_gptrput.c: saved a few bytes
9276         * my tab spacing is 8, yours too?)
9277         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9278         * device/lib/serial.c: process RX bytes earlier than TX bytes
9279         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9280
9281 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9282
9283         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9284
9285 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9286
9287     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9288
9289 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9290
9291         * device/lib/Makefile.in: bad fix, reverted to 1.43
9292
9293 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9294
9295         * device/lib/Makefile.in: added missing z80 object files
9296
9297 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9298
9299         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9300         pic16 progress by Vangelis:
9301         * src/SDCCglobl.h:
9302         * src/SDCCmain.c:
9303         * src/pic/Makefile:
9304         * src/pic:
9305         * pic/Makefile:
9306         * pic16/device.c:
9307         * pic16/device.h:
9308         * pic16/gen.c:
9309         * pic16/gen.h:
9310         * pic16/genarith.c:
9311         * pic16/glue.c:
9312         * pic16/main.c:
9313         * pic16/pcode.c:
9314         * pic16/pcode.h:
9315         * pic16/pcodepeep.c:
9316         * pic16/peeph.def:
9317
9318 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9319
9320     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9321
9322 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9323
9324     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9325     added gbz80 build to MSVC project.
9326     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9327     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9328     from 8051 stuff and setup so it links using a .lnk file.
9329
9330 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9331
9332     * support/librarian/sdcclib.c: sdcc librarian.
9333     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9334     with sdcclib.
9335
9336 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9337
9338     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9339
9340 2003-07-02  Borut Razem <borut.razem AT siol.net>
9341
9342         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9343         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9344         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9345         src/xa51/main.c, src/z80/main.c:
9346         virtualization of glue() function: each port has it's own glue function,
9347         which is accessed by do_glue function pointer in PORT.general structure
9348
9349 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9350
9351         * DS800C400 fun, improved ROM interface and tinibios.
9352
9353 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9354
9355         * More support for DS80C400. Now includes beginning of interface to ROM.
9356
9357 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9358
9359         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9360
9361 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9362
9363         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9364
9365 2003-06-19  Borut Razem <borut.razem AT siol.net>
9366
9367         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9368
9369 2003-06-19  Borut Razem <borut.razem AT siol.net>
9370
9371         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9372         fixed Z80 port - crt0.o: cannot open.
9373
9374 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9375
9376         * support/Util/MySystem.c (merge_command): revert bad fix
9377
9378 2003-06-18  Borut Razem <borut.razem AT siol.net>
9379
9380         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9381
9382 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9383
9384         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9385         option --use-stdout sends errors to stdout instead of stderr.
9386
9387 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9388
9389         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9390
9391 2003-06-15  Borut Razem <borut.razem AT siol.net>
9392
9393         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9394         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9395         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9396         fixed width array of pointers replaced with sets;
9397         multiple include and lib paths ared transferred to preprocessor and linker
9398         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9399         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9400         fixed width array of pointers
9401         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9402         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9403         fixupPath(), getPathDifference()
9404         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9405         fixed width array of pointers
9406
9407 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9408
9409         * src/pic16/ralloc.c: fix warnings
9410         * src/pic16/pcode.c: fix warning
9411
9412 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9413
9414          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9415         know all the details, but essentially this set of changes enable
9416         the pic16 port to generate movff instructions and generate assembler
9417         directives,
9418         * src/SDCCmain.c:
9419         * src/pic16/gen.c:
9420         * src/pic16/glue.c:
9421         * src/pic16/pcode.c:
9422         * src/pic16/device.c:
9423         * src/pic16/main.c:
9424         * src/pic16/pcode.h:
9425         * src/pic16/pcoderegs.c:
9426         * src/pic16/ralloc.c:
9427         * src/pic16/ralloc.h:
9428
9429 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9430
9431         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9432         added option --vc, so sdcc errors and warnings are compatible with
9433         Microsoft Visual Studio.
9434
9435 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9436
9437         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9438           device/lib/libfloat.lib: added atof function.
9439
9440 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9441
9442         * doc/sdccman.lyx: updated to Lyx 1.3
9443         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9444         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9445         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9446
9447 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9448
9449         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9450
9451 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9452
9453         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9454           additions to the "related tools/documentation" section
9455
9456 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9457
9458         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9459
9460 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9461
9462         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9463         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9464
9465 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9466
9467         * doc/sdccman.lyx: fix double dash and other minor things
9468         * doc/Makefile: fix double dash
9469
9470 2003-05-28  Karl Bongers(patches from Martin Helmling)
9471         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9472           condition and ignore commands.
9473
9474 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9475
9476         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9477           is in parts still quite out of date, I did changes as far as I felt makes sense
9478           for a non-native english speaker.
9479           Please feel free to add to the manual or to correct my changes.
9480         * doc/Makefile: undid touching the date of intermediate tex files.
9481
9482 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9483
9484         * doc/sdccman.lyx: Manual has an index now
9485
9486 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9487
9488         Finalize muluint/mulsint and mululong/mulslong merging:
9489         * device/lib/_mulint.c
9490         * device/lib/_mullong.c
9491         * device/lib/gbz80/mul.s
9492         * device/lib/gbz80/stubs.s
9493         * device/lib/z80/mul.s
9494         * device/lib/z80/stubs.s
9495         * src/SDCCsymt.c (initCSupport)
9496
9497 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9498
9499         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9500         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9501           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9502           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9503           instead of /Zm500.
9504
9505 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9506
9507         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9508           the regression tests I'm not brave enough to enable 245.b, 245.c
9509         * doc/sdccman.lyx: added latex preamble for hyperref package.
9510           Using pdflatex this will give you a hyperlinked pdf file with
9511           bookmarks. (prepend '%' before /usepackage if this breaks something)
9512
9513 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9514
9515          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9516
9517 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9518
9519         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9520
9521 2003-05-21    <johan AT balder>
9522
9523         * src/SDCCglue.c (printIval): fixed bug #739934
9524
9525 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9526
9527         Applied patch from bug 737905 (renamed yylineo to mylineno):
9528         * src/altlex.c
9529         * src/SDCCast.c
9530         * src/SDCglobl.h
9531         * src/SDCC.lex
9532         * src/SDCCsymt.c
9533         * src/SDCCval.c
9534         * src/pic16/pcode.c: Cleaned warnings
9535         * src/pic16/pcodeflow.c: Cleaned warnings
9536         * src/pic16/pcoderegs.c: Cleaned warnings
9537
9538 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9539
9540         * src/pic16/pcode.c: Cleaned warnings
9541         * src/pic16/pcodepeep.c: Cleaned warnings
9542         * src/pic16/ralloc.c: Cleaned warnings
9543
9544 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9545
9546         * doc/sdccman.lyx: fixed bug 739745
9547         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9548
9549 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9550
9551         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9552         it can be defined with CFLAGS when running configure
9553         * src/SDCCmain.c: fixed compiling + linking with object files
9554
9555 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9556
9557         * configure.in: configure for pic16 port,
9558             added --disable-pic16-port
9559         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9560         * src/SDCCmain.c: linkOptions is changed to set *,
9561             added if/endif conditional macros to remove options help
9562             messages from optionsTable when a port is not configured, added
9563             support for the PIc16 port in the ports table, when executing
9564             the compiler with no port specified on command line, a default
9565             port is selected with the new macro DEFAULT_PORT which is
9566             defined in port.h, in setDefaultOptions() linkOptions is removed
9567             from initialization assignment, since now it is a set,
9568             parseCmdLine uses setParseWithComma for linkOptions, in
9569             linkEdit() linkOptions are accessed with new function indexSet()
9570             which returns the i'th item of a set variable. See SDCCset.c, in
9571             linkEdit() when calling buildCmdLine(), added linkOptions as
9572             last argument. Now users can pass arguments to gplink via the
9573             -Wl option, main() uses pic16glue() to glue up pic16 programs
9574         * src/SDCCpeeph.c: various changes to support pic16
9575         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9576             return the i'th item of the set
9577         * src/SDCCset.h: added function prototype for indexSet()
9578         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9579         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9580         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9581             added macro DEFAULT_PORT
9582         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9583         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9584             generated
9585         * src/pic16/glue.c: commented out some error producing lines
9586         * src/pic16/main.c: __config directives are commented out to stop
9587             gpasm complaining and test the linkage with gplink, _linkCmd and
9588             _asmCmd changed to be more gplink and gpasm friendly
9589         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9590             produced an error when parsed, peep rule 12 is added to utilize
9591             movff, but it is commented out since the pCode does not support
9592             yet a command with 2 address arguments
9593
9594 2003-05-18    <johan AT balder>
9595
9596         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9597         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9598 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9599
9600         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9601   Added feature to script commands from file.
9602
9603 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9604
9605         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9606         * src/SDCCutil.c: include ctype.h for win32
9607
9608 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9609
9610         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9611
9612 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9613
9614         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9615   Fixed so you can set breakpoints prior to run, run does not stop
9616   on entry now.  Add tbreak.  Other enhancements and fixes for use
9617   with ddd.
9618
9619 2003-05-12  Borut Razem <borut.razem AT siol.net>
9620
9621         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9622
9623 2003-05-11  Borut Razem <borut.razem AT siol.net>
9624
9625         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9626         the path of bin directory, so that PATH is the only env. variable, which has to be set
9627         in case of standard installation.
9628         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9629         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9630         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9631
9632 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9633
9634         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9635         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9636         temp files are in the port dir; clean the gen/test directory when
9637         generating new test.c
9638         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9639         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9640         * support/regression/tests/zeropad.c: added
9641
9642 2003-05-09    <johan AT balder>
9643
9644         * src/SDCCglue.c: fixed bug #597940
9645
9646 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9647
9648         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9649   cache sfr, optimize next,step, fix off by one sourceline,
9650   support ddd list function.
9651         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9652
9653 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9654
9655         * support/regression/HTMLgen.py: added compare_s2f()
9656         * support/regression/Makefile: redo 1.27
9657         * support/regression/generate-cases.py: redo 1.5
9658
9659 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9660
9661         * support/regression/tests/float.c: workaround 33 bit hex constant
9662         * support/regression/tests/simplefloat.c: fix division for host
9663
9664 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9665
9666         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9667         that tame's the PIC's over-aggressive optimizer.
9668
9669 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9670
9671          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9672          support for MSVC.
9673
9674 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9675
9676         Initial support for DS80C400. "Hello world" runs on TINIm400
9677         (with polled I/O).
9678
9679 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9680
9681          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9682          * Some notes on ddd usage added in debugger/README
9683          Martin Helmling adding more features and fixes for ddd GUI debugger.
9684          Code added for nexti, stepi, up, down, and other adjustments.
9685
9686 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9687
9688         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9689         * src/pic/peeph.def Added two rules to optimize carry manipulation
9690         * src/pic/* removed debug printfs
9691
9692 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9693
9694         * debugger/mcs51/cmd.c: added header newalloc.h
9695
9696 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9697
9698         * as/Makefile: new EXEEXT
9699         * as/z80/Makefile: remove trailing slash of BUILDIR
9700         * as/z80/clean.mk: new EXEEXT
9701         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9702         * support/cpp2/Makefile.in: new EXEEXT
9703         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9704
9705 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9706
9707         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9708         EXEEXT was introduced to fix all related problems with targets
9709         "clean", "install" and "uninstall"; a couple of further flaws
9710         especially with "clean" have been fixed too
9711         * as/mcs51/Makefile.in
9712         * as/mcs51/clean.mk
9713         * as/z80/Makefile
9714         * Makefile
9715         * clean.mk
9716         * debugger/mcs51/Makefile.in
9717         * debugger/mcs51/clean.mk
9718         * link/z80/Makefile
9719         * link/z80/Makefile.in
9720         * link/z80/clean.mk
9721         * link/Makefile
9722         * packihx/Makefile.in
9723         * packihx/clean.mk
9724         * sim/ucsim/Makefile
9725         * sim/ucsim/clean.mk
9726         * sim/ucsim/avr.src/Makefile.in
9727         * sim/ucsim/avr.src/clean.mk
9728         * sim/ucsim/s51.src/Makefile.in
9729         * sim/ucsim/s51.src/clean.mk
9730         * sim/ucsim/xa.src/Makefile.in
9731         * sim/ucsim/xa.src/clean.mk
9732         * sim/ucsim/z80.src/Makefile.in
9733         * sim/ucsim/z80.src/clean.mk
9734         * sim/ucsim/main_in.mk
9735         * sim/ucsim/packages_in.mk
9736         * sim/ucsim/gui.src/Makefile.in
9737         * sim/ucsim/gui.src/serio.src/Makefile.in
9738         * sim/ucsim/gui.src/serio.src/clean.mk
9739         * src/Makefile.in
9740         * src/clean.mk
9741         * support/cpp2/Makefile.in
9742         * support/cpp2/clean.mk
9743         * support/makebin/Makefile
9744         * support/makebin/clean.mk
9745         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9746         * doc/sdccman.lyx: --program-suffix no longer needed
9747
9748 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9749
9750          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9751          Martin Helmling added support for ddd GUI debugger.
9752          Code added to display assembly, set variables, and other commands
9753          to interface to ddd.
9754
9755 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9756
9757         * as/Makefile: fix target clean
9758         * as/clean.mk: fix target clean
9759         * as/z80/clean.mk: fix target clean
9760
9761 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9762
9763         * Makefile.common.in: added  AT EXEEXT AT
9764         * configure.in: removed all mingw32 stuff
9765         * configure: rebuilt from configure.in
9766         * doc/sdccman.lyx: updated section "installation"
9767         * support/scripts/sdcc_mingw32: adapted to configure
9768         * support/scripts/sdcc_cygwin_mingw32: added
9769
9770 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9771
9772         * src/pic Added object file support for the PIC port
9773         * src/pic Applied patch from Craig Franklin (this started the object file support)
9774         * src/regression Updated the PIC regression tests for object files
9775
9776 2003-04-20  Borut Razem <borut.razem AT siol.net>
9777
9778         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9779           lklex.c: In function `getfid':
9780           lklex.c:203: warning: array subscript has type `char'
9781         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9782           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9783         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9784           stack handling macros
9785
9786 2003-04-19  Borut Razem <borut.razem AT siol.net>
9787
9788         * "handling space characters in file path" task:
9789         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9790         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9791         * support/Util/MySystem.h: make it self-sufficient
9792         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9793           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9794           handling space characters in file path
9795         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9796           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9797         * support/Util/MySystem.c: handling space characters in executable's path
9798
9799 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9800
9801         * as/z80/Makefile: fix permanent rebuild of z80
9802         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9803         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9804
9805 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9806
9807         * src/SDCCopt.c: add special case optimization to replace modulo by
9808           a power of two with a bitwise AND.
9809
9810 2003-04-18    <johan AT balder>
9811
9812         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9813
9814 2003-04-17    <johan AT balder>
9815
9816         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9817         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9818
9819 2003-04-13  Borut Razem <borut.razem AT siol.net>
9820
9821         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9822         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9823           fixed mingw problem in adl_NORMALIZE_PATH
9824
9825 2003-04-12  Borut Razem <borut.razem AT siol.net>
9826
9827         * fixed "#pragma SAVE/RESTORE can not be nested":
9828         * src/SDCC.lex: reworked pragma handling functions
9829         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9830         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9831
9832 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9833
9834         * src/SDCCutil.c (pathEquivalent): defined but not used
9835         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9836         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9837         * configure: rebuilt from configure.in
9838         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9839         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9840         * device/include/Makefile.in: replace sdcc_datadir
9841         * device/lib/Makefile.in: replace sdcc_datadir
9842         * Makefile.common.in: add LDFLAGS from configure
9843         * packihx/Makefile.in: use LDFLAGS
9844         * src/Makefile.in: use LDFLAGS
9845         * support/cpp2/Makefile.in: add LDFLAGS from configure
9846         * support/makebin/Makefile: use LDFLAGS
9847         * .version: bumped version number to 2.3.5
9848
9849 2003-04-12  Borut Razem <borut.razem AT siol.net>
9850
9851         * completed "different paths" task:
9852         * src/SDCCmacro.c: fixed bug in handling quotes
9853         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9854         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9855
9856 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9857
9858         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9859
9860 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9861
9862         * ds390/gen.c ds390/peeph.def: fix bug 706781
9863
9864 2003-04-11  Borut Razem <borut.razem AT siol.net>
9865
9866         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9867
9868 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9869
9870         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9871         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9872          set - this bit used to not be set...).
9873         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9874           bad code in PIC Port
9875         * src/regression/and2.c added to test bug 609268
9876         * src/regression/Makefile added and2.c to regression test
9877
9878
9879 2003-04-08    <johan AT CP255758-A>
9880
9881         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9882         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9883         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9884
9885 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9886
9887         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9888         fix bug #487815
9889         * support/cpp2/Makefile.in: fix bug #487815
9890         * configure: rebuilt from configure.in
9891         * Makefile.common.in: docdir changed, new path suffixes
9892         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9893         * sdcc_vc_in.h: reflect changes from sdccconf.h
9894         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9895         * src/SDCCutil.h: remove BINDIR hack
9896         * doc/sdccman.lyx: update new path hierarchy
9897
9898 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9899
9900         * src/SDCCpeeph.c: added okToRemoveSLOC test
9901
9902 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9903
9904         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9905
9906 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9907
9908         * src/SDCCpeeph.c: added labelIsReturnOnly test
9909         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9910
9911 2003-04-05    <johan AT balder>
9912
9913         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9914         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9915         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9916         * src/SDCCast.c: fixed a warning
9917         * src/SDCCast.h: fixed a warning
9918         * src/SDCCicode.c (operandFromAst): fixed a warning
9919
9920 2003-04-04    <johan AT balder>
9921
9922         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9923         * src/SDCCast.c (decorateType): fixed bug #715076
9924         * src/SDCC.y: fixed bug #702907
9925
9926 2003-04-03    <johan AT balder>
9927
9928         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9929         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9930         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9931         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9932         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9933
9934 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9935
9936         * _decdptr.c: fix return values
9937         * _gptrget.c: fix return values
9938         * _gptrgetc.c: fix return values
9939         * _gptrput.c: fix return values
9940         * _mulint.c: fix return values
9941         * as/z80/Makefile: fix 'make -j' problem
9942
9943 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9944
9945         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9946         * configure.in: big cleanup, updated to autoconf 2.5x
9947         * configure: rebuilt from configure.in
9948         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9949         * sdcc_vc_in.h: reflect changes from sdccconf.h
9950         * doc/Makefile: fixed a flaw in "make install"
9951
9952 2003-04-02    <johan AT balder>
9953
9954         * src/ds390/gen.c (genCmp): no comments
9955         * src/mcs51/gen.c (genCmp): no comments
9956         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9957         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9958
9959 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9960
9961         * support/regression/generate-cases.py: place generated file in given sub directory
9962         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9963         * support/regression/Makefile: improvements for 'make -j';
9964         side effect: it's simpler and faster now
9965
9966 2003-03-31  Borut Razem <borut.razem AT siol.net>
9967
9968         * src/z80/main.c: link-{port} and as-{port} defined without path
9969         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9970
9971 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9972
9973         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9974
9975 2003-03-30  Borut Razem <borut.razem AT siol.net>
9976
9977         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9978           changed type of list parameter to set
9979         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9980         * src/port.h: changed type of do_assemble() parameter to set
9981         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9982           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9983           definition of "cppoutfilename" macro with NULL value in preProcess()
9984         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9985         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9986         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9987           replaced with set *binPathSet
9988         * shash_add() deallocates the item, if allready exsists, before adding the new one
9989         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9990
9991 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
9992
9993         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
9994           a nested for loop bug in the PIC port
9995         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
9996           for loops
9997
9998 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
9999
10000         * support/Util/dbuf.h: remove C++ stuff to make it portable
10001
10002 2003-03-28  Borut Razem <borut.razem AT siol.net>
10003
10004         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
10005           literal strings in stringLiteral()
10006         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
10007         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
10008           to the project
10009
10010 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
10011
10012         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
10013
10014 2003-03-26    <johan AT balder>
10015
10016         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
10017         * src/ds390/gen.c (saveRegisters): catched symbol abuse
10018         * src/SDCCast.c (decorateType): fixed " -v < 3"
10019
10020 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
10021
10022         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
10023         Added Lenny Story's debug infrastructure changes:
10024         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
10025         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
10026         * src/cdbFile.c: added
10027         * src/SDCCdebug.c: added
10028         * src/SDCCdebug.h: added
10029         * src/SDCCast.c (createFunction)
10030         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
10031         * src/SDCCmain.c (parseCmdLine, main)
10032         * src/SDCCmem.c (redoStackOffsets)
10033         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
10034         * src/SDCCsymt.h
10035         * src/common.h
10036         * src/avr/gen.c (genAVRCode)
10037         * src/ds390/gen.c (gen390Code)
10038         * src/mcs51/gen.c (gen51Code)
10039         * src/pic/gen.c (genpic14Code)
10040         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
10041         * src/xa51/gen.c (genXA51Code)
10042         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
10043
10044 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10045
10046         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
10047         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
10048
10049 2003-03-22    <johan AT balder>
10050
10051         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
10052
10053 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
10054
10055         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
10056         * doc/cdbfileformat.lyx: added, written by Lenny Story
10057         * doc/Makefile: added cdbfileformat.lyx
10058         * doc/clean.mk: added cdbfileformat.lyx
10059
10060 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
10061
10062         * src/mcs51/peeph.def: fix bug #705773
10063
10064 2003-03-20    <johan AT balder>
10065
10066         An sfr/sbit can have an "at #" AND an initializer
10067         * src/SDCCsymt.c (checkSClass):
10068         * src/SDCCmem.c (allocGlobal):
10069         * src/SDCCmem.c (allocLocal):
10070         * src/SDCCast.c (createBlock):
10071
10072 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
10073
10074         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
10075
10076 2003-03-16    <johan AT balder>
10077
10078         Undid the hackup of const and volatile, the problem is much bigger
10079         * src/SDCC.y:1.65
10080         * src/SDCCast.c:1.171
10081         * src/SDCCglue.c:1.138
10082         * src/SDCCicode.c:1.146
10083         * src/SDCCsymt.c:1.150
10084         * src/SDCCval.c:1.65
10085
10086 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
10087
10088         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
10089         * src/ds390/gen.c (genAddrOf): fixed bug #704087
10090
10091 2003-03-13    <johan AT balder>
10092
10093         Hackup const and volatile modifiers in type chains a bit:
10094         * src/SDCC.y:1.63
10095         * src/SDCCast.c:1.169
10096         * src/SDCCglue.c:1.136
10097         * src/SDCCicode.c:1.143
10098         * src/SDCCsymt.c1.146
10099         * src/SDCCsymt.h1.59
10100         * src/SDCCval.c:1.63
10101
10102 2003-03-12    <johan AT balder>
10103
10104         * src/SDCCBBlock.h: more LRH debugging junk
10105         * src/SDCCcflow.h: more LRH debugging junk
10106         * src/SDCCloop.c: more LRH debugging junk
10107         * src/SDCC.y (struct_declaration): fixed bug #697590
10108         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10109         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10110         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10111
10112 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10113         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10114         test function names must now match exactly).
10115         * src/SDCCcse.c: added special case in findCheaperOp to allow
10116         extending a short integer. Makes less awful code for bug 700121 test case.
10117
10118 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10119
10120         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10121         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10122
10123 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10124
10125         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10126         actually called (operandsNotEqual() was called for all
10127         operandsNotEqualX tests).
10128
10129 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10130
10131         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10132         with shorter literals. Fixes bug 700121.
10133
10134 2003-03-11    <johan AT balder>
10135
10136         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10137
10138 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10139
10140         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10141         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10142
10143 2003-03-10  Borut Razem <borut.razem AT siol.net>
10144
10145         * src/SDCCmain.c: pipe preprocessor's output
10146         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10147         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10148         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10149         which closes all pipes in pipeSet set
10150         * src/SDCCset.c: free deleted item in function deleteSetItem()
10151         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10152         moved from z80 to src subproject
10153         * .version: increased version number to 2.3.4
10154
10155 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10156
10157         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10158         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10159         * support/regression/ports/xa51/spec.mk: fix typo
10160
10161 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10162
10163         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10164
10165 2003-03-09  Borut Razem <borut.razem AT siol.net>
10166
10167         * src/SDCCmain.c: pipe preprocessor's output
10168         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10169         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10170         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10171         which closes all pipes in pipeSet set
10172         * src/SDCCset.c: free deleted item in function deleteSetItem()
10173         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10174         moved from z80 to src subproject
10175
10176 2003-03-09  Borut Razem <borut.razem AT siol.net>
10177
10178         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10179         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10180         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10181         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10182         * src/SDCCglobl.h: unification of WIN32 native definitions
10183
10184 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10185
10186         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10187
10188 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10189
10190         * src/configure.in:   check for endianess (even while cross-compiling)
10191         * src/configure:      check for endianess (even while cross-compiling)
10192         * src/configure_in.h: check for endianess (even while cross-compiling)
10193         * src/avr/gen.c:        remove old endianess stuff
10194         * src/mcs51/gen.c:      remove old endianess stuff
10195         * src/ds390/gen.c:      remove old endianess stuff
10196         * src/pic/gen.c:        remove old endianess stuff
10197         * src/pic/genarith.c:   remove old endianess stuff
10198         * src/pic/glue.c:       fix endianess check
10199         * src/pic16/gen.c:      remove old endianess stuff
10200         * src/pic16/genarith.c: remove old endianess stuff
10201         * src/pic16/glue.c:     fix endianess check
10202         * src/xa51/gen.c:       remove old endianess stuff
10203         * src/z80/gen.c:        fix endianess check
10204         * src/SDCCglue.c:       fix endianess check
10205         * src/ds390/peeph.def: fix bug 700036
10206
10207 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10208
10209         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10210         * src/configure: find appropriate data-types on host for SDCC's int and long
10211         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10212         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10213         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10214
10215 2003-03-07    <johan AT balder>
10216
10217         Just a big NOOP:
10218                 some minor cleanups before the big shot
10219                 OP_DEFS and OP_USES now use Kevin's protection
10220                 new option --nolabelopt
10221
10222         * src/SDCCBBlock.c:
10223         * src/SDCCast.c,:
10224         * src/SDCCcflow.c:
10225         * src/SDCCcse.c:
10226         * src/SDCCicode.c:
10227         * src/SDCCicode.h:
10228         * src/SDCClabel.c:
10229         * src/SDCCloop.c:
10230         * src/SDCCmain.c:
10231         * src/ds390/ralloc.c:
10232         * src/mcs51/ralloc.c:
10233         * src/pic/ralloc.c:
10234         * src/xa51/ralloc.c:
10235         * src/z80/ralloc.c:
10236
10237 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10238
10239         * src/pic/pcode.c (get_op): fix 64 bit warnings
10240         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10241         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10242         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10243         * support/regression/tests/malloc.c: fix 64 bit warnings
10244
10245 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10246
10247         * src/mcs51/gen.c (genMinus): fixed bug 696436
10248
10249 2003-03-02  Borut Razem <borut.razem AT siol.net>
10250
10251         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10252
10253 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10254
10255         * configure.in: test for mkstemp
10256         * sdccconf_in.h: add HAVE_MKSTEMP
10257
10258 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10259
10260         * device/include/ctype.h: removed warning while using --stack-auto
10261         * device/include/malloc.h: removed warning while using --stack-auto
10262         * device/include/string.h: removed warning while using --stack-auto
10263
10264 2003-02-23  Borut Razem <borut.razem AT siol.net>
10265
10266         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10267         because NDEBUG is defined (see man assert)
10268         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10269
10270 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10271
10272         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10273         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10274
10275 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10276
10277         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10278         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10279
10280 2003-02-18    <johan AT balder>
10281
10282         * as/mcs51/asmain.c (asmbl): module can start with a digit
10283         * as/z80/asmain.c (asmbl): module can start with a digit
10284
10285 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10286
10287         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10288         * src/asm.c: fix pipe() for Mingw32
10289
10290 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10291
10292         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10293         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10294         make -V work again; --c1mode reads now from stdin
10295         * doc/sdccman.lyx: added --c1mode
10296         * support/Util/SDCCerr.c: new messages for c1 mode
10297         * support/Util/SDCCerr.h: new messages for c1 mode
10298         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10299
10300 2003-02-15    <johan AT balder>
10301
10302         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10303
10304 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10305
10306         * doc/sdccman.lyx: Environment variables, -o and other minor things
10307
10308 2003-02-14    <johan AT balder>
10309
10310         * src/xa51/main.c: before anyone really tries to use it :)
10311
10312         * Install doc's in share/sdcc/doc
10313         * removed some obsolete files
10314         * Do a proper make distclean and uninstall
10315         M Makefile.common.in
10316         R sdccbuild.sh
10317         M as/Makefile
10318         M device/include/Makefile.in
10319         M device/lib/Makefile.in
10320         M doc/sdccman.lyx
10321         M link/Makefile
10322         M sim/ucsim/doc/Makefile.in
10323         M src/clean.mk
10324         R src/avr/peeph.rul
10325         R src/xa51/peeph.rul
10326         M support/cpp2/Makefile.in
10327         M support/makebin/Makefile
10328
10329
10330 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10331
10332         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10333
10334 2003-02-10  Borut Razem <borut.razem AT siol.net>
10335
10336         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10337         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10338         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10339         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10340         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10341         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10342         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10343         src/z80/Makefile.bcc: Borland Makefile cleanup
10344         * as/z80/Makefile.bcc: Added Borland Makefile
10345         * support/cpp2/borland.h: Removed
10346
10347 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10348
10349         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10350         * src/SDCC.lex: new pragma NOIV
10351         * src/SDCCglobl.h: new pragma NOIV
10352         * src/SDCCmem.c: new pragma NOIV
10353
10354 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10355
10356         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10357
10358 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10359
10360         * src/SDCCmain.c: signal handling is switched off by --debug
10361         * doc/Makefile: small fix for install; use clean.mk again
10362         * doc/clean.mk: clean *.pdf and *.html too
10363
10364 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10365
10366         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10367         * device/lib/printfl.c: fix a ds390 bug by making it portable
10368         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10369         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10370         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10371         * debugger/mcs51/cmd.c: converted multi-line string literals
10372         * sim/ucsim/globals.cc: converted multi-line string literals
10373         * src/SDCCmain.c: introduced signal handler to remove temp files
10374         * doc/Makefile: small tweaks, implement clean
10375         * doc: removed generated files
10376
10377 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10378
10379         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10380         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10381         Address Record is not correctly generated for DS390."
10382
10383 2003-02-02  Borut Razem <borut.razem AT siol.net>
10384
10385         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10386         * as/mcs51/asm.h: fixed compilation with Borland C
10387         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10388         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10389         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10390         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10391         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10392         src/z80/Makefile.bcc: delete $(LIB) only if exist
10393         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10394
10395 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10396
10397         * device/include/malloc.h: introduced NULL
10398         * device/include/string.h: introduced NULL
10399         * device/include/stdlib.h: introduced NULL
10400         * device/lib/_memcpy.c: removed NULL
10401         * device/lib/_strcat.c: removed NULL
10402         * device/lib/_strchr.c: removed NULL
10403         * device/lib/_strcmp.c: removed NULL
10404         * device/lib/_strcpy.c: removed NULL
10405         * device/lib/_strcspn.c: removed NULL
10406         * device/lib/_strlen.c: removed NULL
10407         * device/lib/_strncat.c: removed NULL
10408         * device/lib/_strncmp.c: removed NULL
10409         * device/lib/_strncpy.c: removed NULL
10410         * device/lib/_strpbrk.c: removed NULL
10411         * device/lib/_strrchr.c: removed NULL
10412         * device/lib/_strspn.c: removed NULL
10413         * device/lib/_strstr.c: removed NULL
10414         * device/lib/_strtok.c: removed NULL
10415         * device/lib/malloc.c: removed NULL, include own header
10416
10417 2003-02-02    <johan AT balder>
10418
10419         * 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
10420         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10421         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10422         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10423         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10424         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10425
10426 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10427
10428         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10429         area 'DATA'"
10430
10431 2003-02-01    <johan AT balder>
10432
10433         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10434
10435 2003-01-31    <johan AT CP255758-A>
10436
10437         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10438
10439 2003-01-30    <johan AT balder>
10440
10441         * src/SDCCBBlock.c: automatic bug detection
10442         * src/SDCCicode.c: automatic bug detection
10443
10444 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10445
10446         * src/SDCCglobl.h:   now --xram-size 0 works
10447         * src/SDCCmain.c:    now --xram-size 0 works
10448
10449 2003-01-29    <johan AT balder>
10450
10451         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10452
10453 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10454
10455         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10456         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10457         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10458         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10459         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10460         * src/SDCCmain.c:    Added options --xram-size and --code-size
10461
10462 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10463
10464         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10465         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10466
10467 2003-01-27    <johan AT balder>
10468
10469         * src/SDCC.y: fixed bug #613764
10470
10471 2003-01-26    <johan AT balder>
10472
10473         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10474         * src/SDCCsymt.h: fixed bug #673374
10475         * src/SDCCglue.c: fixed bug #661910
10476         * src/SDCCast.c: fixed bug #458099 and 673374
10477
10478 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10479
10480         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10481         * as/mcs51/strcmpi.h: added
10482         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10483         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10484         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10485         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10486         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10487         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10488         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10489         * as/mcs51/Makefile.aslink: new module strcmpi
10490         * as/mcs51/Makefile.asx8051: new module strcmpi
10491         * as/mcs51/Makefil.bcc: new module strcmpi
10492         * as/mcs51/Makefile.in: new module strcmpi
10493         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10494
10495 2003-01-26    <johan AT balder>
10496
10497         * src/SDCCglue.c: reverted back to 1.124
10498         * src/SDCCast.c: reverted back to 1.156
10499         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10500
10501 2003-01-25    <johan AT balder>
10502
10503         * src/SDCCglue.c: A better fix for bug #661910
10504         * src/SDCCast.c: A better fix for bug #661910
10505         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10506
10507 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10508
10509         * src/Makefile.in: remove spawn.o
10510         * src/SDCCmain.c: remove spawn.h
10511         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10512         * src/spawn.c: removed
10513         * src/spawn.h: removed
10514         * support/regression/ports/ds390/spec.mk: link with -r
10515
10516 2003-01-24    <johan AT CP255758-A>
10517
10518         * src/ds390/gen.c (aopOp): fixed bug #667458
10519         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10520         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10521         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10522
10523 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10524
10525         * src/mcs51/peeph.def: better assembler identation by Frieder
10526         * src/mcs51/gen.c: better assembler identation by Frieder
10527
10528 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10529
10530         * as/z80/string.h: removed for gcc 3.2
10531         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10532         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10533
10534 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10535
10536         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10537         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10538         * support/regression/Makefile: separate temp files for ports
10539         * support/regression/generate-cases.py: separate temp files for ports
10540         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10541         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10542
10543 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10544
10545         * moved tinitalk to device/examples/ds390
10546
10547 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10548
10549         * as/mcs51/lkmem.c: rflag is for DS390
10550         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10551         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10552                          (linkEdit): move mem- and map-files the same way as ihx-files
10553         * src/z80/main.c (_setDefaultOptions): removed --generic
10554         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10555         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10556         * src/pic/glue.c (picglue): --c1mode works again
10557         * src/pic16/glue.c (pic16glue): --c1mode works again
10558         * src/asm.c (printCLine): fix #660034
10559
10560 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10561
10562         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10563         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10564         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10565         * as/mcs51/lkmem (summary): better fix for sp problem
10566         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10567         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10568         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10569                                               remove --stack-after-data
10570
10571 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10572
10573         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10574         * src/SDCCutil.c (join): ugly bug: missing '\0'
10575         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10576
10577 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10578
10579         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10580         * src/port.h: typo
10581         * src/pic/main.c (_asmCmd): gpasm supports -o
10582         * src/z80/main.c: more general macros
10583         * device/lib/Makefile.in: remove intermediate files
10584
10585 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10586
10587         * .version: Bumped version number to 2.3.3
10588         * src/SDCCBBlock.c: new option -o
10589         * src/SDCCglobl.h: new option -o
10590         * src/SDCCglue.c: new option -o
10591         * src/SDCCmain.c: new option -o
10592         * src/asm.c: new option -o
10593         * src/ds390/main.c: new option -o
10594         * src/pic/glue.c: new option -o
10595         * src/pic/pcode.c: new option -o
10596         * src/pic/ralloc.c: new option -o
10597         * src/pic16/glue.c: new option -o
10598         * src/pic16/pcode.c: new option -o
10599         * src/pic16/ralloc.c: new option -o
10600         * src/z80/main.c: new option -o
10601         * device/lib/Makefile.in: use -o
10602         * support/regression/ports/ds390/spec.mk: use -o
10603         * support/regression/ports/gbz80/spec.mk: use -o
10604         * support/regression/ports/mcs51/spec.mk: use -o
10605         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10606         * support/regression/ports/z80/spec.mk: use -o
10607         * support/regression/ports/ucz80/spec.mk: use -o
10608         * support/regression/ports/xa51/spec.mk: use -o
10609         * support/regression/fwk/lib/timeout.c: fix usage string
10610
10611 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10612         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10613
10614 2003-01-07    <johan AT balder>
10615
10616         * src/SDCCast.c (decorateType): fixed bug #600035
10617
10618 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10619         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10620         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10621         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10622         * src/pic/pcode.c: outcommented unused variable to remove warnings
10623         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10624
10625 2003-01-06    <karl AT turbobit.com>
10626         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10627    regression tests.
10628
10629 2003-01-06    <johan AT balder>
10630
10631         * src/SDCCicode.c: fixed array add
10632
10633 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10634         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10635         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10636
10637 2003-01-04    <johan AT balder>
10638
10639         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10640
10641 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10642         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10643
10644 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10645         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10646         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10647
10648 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10649         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10650
10651 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10652         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10653
10654 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10655         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10656
10657 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10658
10659     * in \sdcc\as\mcs51\ changed these files in order to create an
10660     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10661     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10662     following files to include the previous two files: aslink.dsp,
10663     Makefile.aslink, Makefile.bcc, and Makefile.in.
10664
10665     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10666     .adb instead of .cdb
10667
10668 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10669
10670         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10671         value from option --iram-size.
10672
10673 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10674
10675         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10676         dram[] array.
10677
10678 2002-09-18    <wiml AT hhhh.org>
10679
10680         * SDCClrange.h: exposed setFromRange() and setToRange()
10681         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10682           packRegsForAccUse() (bug 542397)
10683         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10684           multiple times and emitting the fetch operations more than once
10685           added aopGetUsesAcc() function to allow binary operators to
10686           fetch their operands in the correct order; made genMinus() emit
10687           compact code for X = LITERAL - Y
10688
10689 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10690         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10691         sprintf() in line 1267.
10692
10693 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10694         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10695         like ports.
10696
10697 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10698         Changes to aslink (All the changes are marked with 'JCF'):
10699
10700         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10701         summary().
10702
10703         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10704         area BSEG.  Also moves, if possible, the DATA area down into the internal
10705         ram so more space is available.
10706
10707         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10708         sflag.
10709
10710         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10711         not bytes.  Function summary() which creates a memory usage summary
10712         file with extension .mem.  Reports of overlaping stack and small stack
10713         size.  If the space for the stack is less than 16 bytes aslink trows a
10714         warning.
10715
10716         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10717         the 8051.  Option 'y' for memory summary output file.
10718
10719         Changes to sdcc (All the changes are marked with 'JCF'):
10720
10721         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10722
10723         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10724         overlaying area for it (uses RegBankUsed[4]).
10725
10726         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10727         bank zero as used by default.  By default aslink locates the stack
10728         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10729         the creation of the .mem file.  Delegates the allocation of data area
10730         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10731         the begining of the stack area to aslink.
10732
10733         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10734         glue() in SDCCglue.c creates an area for it.
10735
10736 2002-09-03  Borut Razem <borut.razem AT siol.net>
10737         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10738         sdcc/src/pic/glue.c:
10739         introduced atexit() handler for teporay files removal in case of
10740         errors, assertions, ...
10741
10742 2002-08-29  Borut Razem <borut.razem AT siol.net>
10743         * sdcc/support/cpp2/auto-host_vc_in.h:
10744         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10745         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10746         Maybe there is a similar problem with BORLANDC? It should be checked!
10747
10748         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10749         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10750         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10751         was not executed, and the compiler (cl) launched a warning:
10752         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10753
10754 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10755         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10756
10757 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10758         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10759
10760         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10761           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10762           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10763           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10764           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10765           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10766           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10767         - added Release configuration in VS projects
10768         - review of compiler an linker options
10769         - VC .exe files are generated in bin_vc directory, not to interfere
10770           with binaries generated from other projects (cygwin, mingw, bcc ...)
10771
10772         * sdcc/src/yacc.dsp: added
10773
10774         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10775         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10776         and insert the version number definitions from .version
10777
10778         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10779
10780         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10781         added - genarate auto-host.h using auto-host_vc_in.h as template
10782
10783         * sdcc/sdcc_vc.h,
10784         removed from CVS, generated automatically
10785
10786 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10787         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10788
10789 2002-08-11  Borut Razem <borut.razem AT siol.net>
10790         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10791
10792 2002-08-10  Borut Razem <borut.razem AT siol.net>
10793         * src/SDCCmain.c (main):
10794         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10795         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10796         The consequence was that some temporary files were not removed.
10797
10798         * src/SDCCglue.c:
10799         unification of code in functions tempfilename() and tempfile():
10800         function tempnam() is defined in Visual Studio 6.0 and .NET
10801
10802         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10803
10804         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10805           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10806         - removed compiler command line option /WX: Treats all warnings as errors
10807         - update a list of source files, included into the project
10808
10809         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10810           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10811         changed project type to Generic Project so that can be correcly converted to VS.NET project
10812
10813         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10814
10815         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10816
10817         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10818
10819         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10820         added return 0 statements after assert() to make compiler happy
10821
10822         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10823         added newline in the def file to keep MSC compiler satisfied
10824
10825         * sdcc/src/z80/gen.c:
10826         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10827           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10828         - solved MSC error in function aopDump()
10829
10830         * sdcc_vc.h: define PREFIX as "\\sdcc"
10831
10832 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10833         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10834
10835 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10836         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10837         - Rewrote the register banking algorithm.
10838         - Added pCode live-range analysis to registers (for now, only non-used and
10839         singly-used registers optimized away)
10840
10841         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10842
10843         * 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.
10844
10845 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10846         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10847
10848 2002-04-22  Michael Hope  <michaelh AT vroom>
10849
10850         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10851
10852         * configure.in (DD_COPT): Added include support required for gbdk.
10853
10854         * .version: Bumped version number just to increase it.
10855
10856         * src/SDCCmain.c: Added -nostdinc to the default options.
10857
10858 2002-04-15  Michael Hope  <michaelh AT vroom>
10859
10860         * device/lib/z80/printf.c (sprintf): Added.
10861
10862         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10863
10864         * src/z80/peeph.def: Added transpose redundent load rule.
10865
10866         * src/z80/main.c: Added force callee saves for jaune.
10867
10868         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10869
10870         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10871
10872 2002-03-28  Johan Knol  <johan AT balder>
10873
10874         * src/SDCCval.c: fixed bug #532436
10875
10876 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10877         * /src/port.h:
10878         Added "char *Processor" field to the port structure.
10879
10880         * /src/SDCCmain.c:
10881         Added -p option. Allows port dependent processor to be specified.
10882
10883         * all ports:
10884         Initialized the new field char *Processor field to NULL in all ports
10885
10886         * /src/pic/*:
10887         Compiler generated registers for interrupt context saving
10888         were not getting allocated.
10889
10890 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10891
10892         * /src/SDCCast.c:
10893         Fixed left shift. Will promote the left side of a left shift
10894         if a) left shifting more than size of operand or b) when assigned
10895         to something size > size of left side
10896
10897 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10898         * src/pic/*
10899         tons of changes. Register allocation has been
10900         rewritten. Added customization for the various PICs. Flow
10901         analysis is restructured. ...
10902
10903         * src/pic/device.h:
10904         Added
10905
10906         * src/pic/device.c:
10907         Added. device.c is a PIC port hack to accomodate variations
10908         in PIC devices.
10909
10910 2002-03-13  Michael Hope  <michaelh AT vroom>
10911
10912         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10913
10914 2002-03-04  johanknol  <johanknol AT manik>
10915
10916         * /src/SDCCval.c: fixed
10917
10918         const unsigned char arr[][2] = { { 0, 1 } };
10919         t18.c:1: error: Initializer element is not constant
10920
10921 2002-03-04  bela  <bela AT manik>
10922
10923         * /device/include/mcs51reg.h:
10924         ds89c420 register definition update
10925
10926 2002-03-03    <johan AT FRIJA>
10927
10928         * support/Util/SDCCerr.c: did something, but don't no why anymore
10929
10930         * support/regression/tests/bug-524691.c: made it a little less shy
10931
10932         * src/SDCCast.c (decorateType): fixed bug #524697
10933
10934         * src/SDCCast.c: made some lineno improvements
10935
10936         * src/SDCCval.c (getNelements): changed warning to error
10937
10938         * src/SDCCglue.c (printIvalArray): changed warning to error
10939
10940         * src/SDCCicode.c: fixed a warning for mingw
10941
10942         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10943
10944         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10945
10946 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10947
10948         * src/ds390/peeph.def:
10949         Added some more peephole rules
10950
10951         * src/ds390/gen.c: Various fixes & enhancements
10952
10953         * src/SDCClrange.c, src/SDCClrange.h:
10954         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10955
10956         * src/ds390/ralloc.c:
10957         various fixes & enhancements (ds390) specific
10958
10959         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10960         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10961         from rallocs.
10962
10963         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10964
10965 2002-03-02    <johan AT FRIJA>
10966
10967         * src/SDCCast.c (decorateType): fixed bug #524708
10968
10969         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10970
10971         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10972
10973 2002-03-01  Michael Hope  <michaelh AT vroom>
10974
10975         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10976
10977         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10978
10979 2002-03-01    <johan AT FRIJA>
10980
10981         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10982
10983         * src/SDCCast.c (decorateType): fixed bug #524209
10984
10985         * src/SDCCval.c (valNot): fixed bug #524195
10986
10987 2002-02-26    <johan AT balder>
10988
10989         * src/xa51/gen.c: fixed a warning
10990
10991         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
10992
10993         * src/SDCCast.c (decorateType): fixed bug #522534
10994
10995 2002-02-23    <johan AT balder>
10996
10997         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
10998
10999 2002-02-22    <johan AT balder>
11000
11001         * src/SDCCast.c: fixed bug #514865
11002
11003         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
11004
11005 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
11006
11007         * sdcc/src/SDCCloop.c:
11008         Previous fix was not good. basic blocks that have "break" or "return" are
11009         not really partof a loop , but live ranges used in these blocks should
11010         be live thru the entire loop, so set partOfLoop but don't add them to
11011         loop region
11012
11013 2002-02-21    <johan AT FRIJA>
11014
11015         * src/SDCCcse.c: fixed bug #514308
11016
11017 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
11018
11019         * src/SDCCloop.c:
11020         Fixed BUG #519583. If a conditional block ended in a return/break
11021         statement inside a loop, it was not being considered part of the loop.
11022
11023         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
11024
11025 2002-02-10  Karl Bongers <karl AT turbobit.com>
11026
11027         * debugger/*:
11028         Fixed up SDCDB debugger somewhat.  Updated debugger/README
11029         with lots of comments and notes.
11030
11031         * device/examples/test2.c:
11032         Fix bug, "red" variable not being initialized(compiler complained).
11033
11034         * device/examples/Makefile, examples/test3.c:
11035         Add Makefile in device/examples folder, compiles test3.c
11036         for use as a multiple module SDCDB test case.
11037
11038         * sim/ucsim/cmd.src/cmdset.cc:
11039         Took out debug printfs in ucsim "next" command.
11040
11041         * sim/ucsim/xa.src:
11042         Karl and Johan start ucsim XA support.  Most dissassembly working,
11043         about 75% emulation done(plenty of work remaining).
11044
11045         * sim/ucsim/z80.src:
11046         Add Z80 support to ucsim, add test-ucz80 regression test,
11047         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
11048         Notice z80 compiler fails on examples/test3.c/crc code.
11049
11050 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
11051
11052         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
11053         Added support for --parms-in-bank1
11054
11055         * src/ds390/peeph.def:
11056         added a few more peephole optimzations
11057
11058         * src/ds390/main.c:
11059         1) added __builtin_inp & __builtin_outp used to read in data of given length
11060            from a memory mapped port
11061         2) added __builtin_memcmp
11062         3) added __builtin_swapw swap bytes of a short
11063
11064         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
11065         1) handle multiple send & receives from register bank1
11066         2) ralloc can now allocate DPTR1 to some liveRanges
11067
11068         * src/SDCCsymt.c, src/SDCCsymt.h:
11069         changes to handle multiple sends & receives
11070
11071         * src/SDCCptropt.h:
11072         added some pointer arithmetic optimization
11073
11074         * src/SDCCptropt.c:
11075         added some pointer arithmetic optimizations but not stable yet so not
11076         called from anywhere (will get this working shortly)
11077
11078         * src/SDCCopt.c: fixed for multiple sends & receives
11079
11080         * src/SDCCmain.c:
11081         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
11082         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
11083            set preprocessor defines (depending on options)
11084
11085         * src/SDCCicode.c, src/SDCCicode.h:
11086         changes made to handle multiple sends & receives
11087
11088         * src/SDCCglobl.h:
11089         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
11090
11091         * src/SDCCcse.c, src/SDCCcse.h:
11092         added function findbackward def (to be used in upcoming optimization)
11093
11094         * src/SDCCcflow.c, src/SDCCcflow.h:
11095         added function returnAtEnd - to determine if a basic block terminates with
11096         a RETURN iCode
11097
11098         * src/SDCCast.c, src/SDCCast.h:
11099         added option parms-in-bank1
11100
11101         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
11102         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
11103         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
11104         adjusted for --parms-in-bank1 option
11105
11106         * device/include/string.h:
11107         donot redefine "reentrant" keyword
11108
11109         * device/include/ds80c390.h: Added some more SFRs
11110
11111 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11112
11113         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11114
11115 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11116
11117         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11118
11119 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11120
11121         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11122
11123 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11124
11125         * Added --xram-movc option
11126
11127 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11128
11129         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11130
11131 2002-01-11  Johan Knol
11132
11133         * Added math lib of Jesus Calvino-Fraga
11134
11135 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11136
11137         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11138         * support/regression/Makefile: new target test-mcs51-stack-auto
11139         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11140
11141 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11142
11143         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11144
11145 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11146
11147         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11148
11149 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11150
11151         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11152
11153         * src/SDCCglue.h: add definition for printIvalChar()
11154
11155 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11156
11157         * src/SDCCast.c: fix #498138 by Johan
11158
11159         * src/SDCCglue.c: fix #498138 by Johan
11160
11161 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11162
11163         * support/regression/Makefile: fix clean
11164
11165         * support/regression/ports/ds390/support.c: fix transmission of last character
11166
11167 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11168
11169         * /sdcc/src/ds390/gen.c:
11170         a) improved computing address of stack variable
11171         b) took out some #if 0 code
11172         c) improved parmBytes adjustment
11173         d) improved genPlusIncr & genMinusIncr
11174         e) genCmp could generate bad code (when left assigned to DPTR)
11175         f) Fixed bug in hasInc
11176
11177         * /sdcc/src/ds390/ralloc.c:
11178         a) packRegsForSupport could mess up live information (Fixed)
11179         b) packRegsDPTRuse could be incorrect for left & right shift
11180
11181         * /sdcc/src/mcs51/ralloc.c:
11182         packRegsForSupport could mess up the live information (Fixed)
11183
11184         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11185
11186         * /sdcc/src/SDCCast.c:
11187         can reverse a loop even if function call is present as long
11188         as the loop control variable is local & is not passed as parameter
11189
11190 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11191
11192         * /sdcc/ChangeLog: *** empty log message ***
11193
11194         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11195         More builtin function additions for TININative
11196
11197         * /sdcc/src/ds390/ralloc.c:
11198         Had broken the regression testsuite
11199
11200         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11201
11202         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11203         Added funcattr hasStackParms will be set for reentrant functions when there
11204         are paramteres on the stack, this helps in minimizing frame pointer generation
11205         typeFromStr can handle function pointers now
11206
11207         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11208         *** empty log message ***
11209
11210 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11211
11212         * /src/ds390/gen.c, /src/ds390/main.c:
11213         More builtin function additions for TININative
11214
11215         * /src/ds390/ralloc.c:
11216         Had broken the regression testsuite
11217
11218         * /src/SDCCast.c: Fixed a bug in dumptree
11219
11220         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11221         Added funcattr hasStackParms will be set for reentrant functions when there
11222         are paramteres on the stack, this helps in minimizing frame pointer generation
11223         typeFromStr can handle function pointers now
11224
11225         * /doc/builtins.txt, /doc/TININative.txt:
11226         *** empty log message ***
11227
11228
11229 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11230
11231         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11232         ALPHA version for -mTININative
11233
11234         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11235         updated to reflect changes in the port structure
11236
11237         * /src/port.h:
11238         added function do_assemble (similar to do_link) if non-null this function
11239         will be called to do assembly (-mTININative) requires a multi command
11240         assembly
11241         added function genAssemblerEnd will be called to generate assembler Epilogue
11242
11243         * /src/SDCCsymt.c:
11244         added _JavaNative to debug info printing
11245
11246         * /src/SDCCmain.c: added option --tini-libid
11247         added port->do_assemble function (-mTININative) has a multi command assemble
11248
11249         * /src/SDCCglue.c: Disabled "constExpr" check
11250         added port->genAssemblerEnd function
11251
11252         * /src/SDCCglobl.h: Added option --tini-libid value
11253
11254         * /src/SDCCast.h:
11255         tookout optimizeCompare from the header (has no external references)
11256
11257         * /src/SDCCast.c: made one more function "static"
11258
11259 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11260
11261         * src/z80/mappings.i: Added z80asm support.
11262
11263         * src/z80/main.c: Added z80asm support on --asm=z80asm
11264
11265         * src/z80/gen.c: Fixed asm portability issues.
11266
11267         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11268
11269         * src/SDCCglue.c (printExterns): Added global/extern split.
11270
11271 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11272
11273         * support/regression/Makefile: added test for mcs51 model large
11274
11275         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11276
11277         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11278
11279 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11280
11281         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11282
11283 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11284
11285         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11286
11287         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11288
11289 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11290
11291         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11292
11293         * support/regression/tests/simplefloat.c: Port to mcs51.
11294
11295 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11296         * support/regression/tests/bug-485362.c: Added.
11297
11298         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11299
11300         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11301
11302         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11303
11304         * src/z80/gen.c (aopDump): Added a dump function.
11305
11306 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11307         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11308
11309         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11310
11311         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11312
11313         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11314
11315         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11316
11317         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11318
11319         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11320
11321         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11322
11323         * support/regression/ports/ds390/support.c: Use tinibios.
11324
11325         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11326
11327 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11328
11329         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11330         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11331
11332         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11333
11334         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11335
11336 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11337
11338         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11339
11340         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11341         (packRegsForIYUse): Created and optimised.
11342
11343 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11344
11345         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11346 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11347
11348         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11349
11350         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11351
11352         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11353
11354 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11355
11356         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11357
11358         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11359
11360 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11361
11362         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11363
11364         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11365
11366         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11367
11368 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11369
11370         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11371         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11372         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11373
11374         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11375
11376         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11377         (genNotFloat): Added.
11378         (genUminusFloat): Added.
11379
11380         * device/lib/z80/Makefile: Added floating pt stubs.
11381
11382         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11383
11384         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11385
11386         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11387
11388 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11389
11390         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11391
11392         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11393
11394         * sdcc/support/regression/Makefile: Add port ds390.
11395
11396         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11397
11398         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11399
11400         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11401
11402         * sdcc/support/regression/ports/ds390/support.c: Added.
11403
11404         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11405
11406         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11407
11408         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11409
11410 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11411
11412         * device/include/malloc.h: Added z80 and gbz80 support.
11413
11414         * device/lib/gbz80/heap.s: Added.
11415
11416         * device/lib/z80/heap.s: Added.
11417
11418         * device/lib/malloc.c: Added z80 and gbz80 support.
11419
11420         * support/regression/tests/malloc.c (testMalloc): Added.
11421
11422         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11423
11424         * support/regression/tests/bug-478094.c: Added.
11425
11426         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11427
11428 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11429
11430         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11431
11432         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11433
11434         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11435
11436         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11437
11438         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11439
11440 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11441
11442         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11443
11444 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11445
11446         * support/regression/tests/bug-477927.c: Added.
11447
11448         * src/z80/peeph.def: Added minor rules.
11449
11450         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11451
11452         * src/z80/peeph.def: Added jump optimisation modification.
11453
11454 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11455
11456         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11457
11458 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11459
11460         * support/regression/tests/funptrs.c: Added.
11461
11462 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11463
11464         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11465
11466 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11467
11468         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11469
11470         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11471
11472         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11473         (movLeft2ResultLong): Created.
11474
11475         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11476         (joinPushes): Added.  Joins two char pushes into a word push.
11477
11478 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11479
11480         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11481
11482         * support/makebin/Makefile (install): Added creation of dest dir.
11483
11484 2001-10-24 Karl Bongers <karl AT turbobit.com>
11485
11486         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11487
11488 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11489
11490         * src/z80/ralloc.c: Turned off faulty pack for one use.
11491
11492         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11493
11494         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11495
11496 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11497
11498         * support/regression/Makefile: Improved clean
11499
11500         * support/regression/ports/gbz80/spec.mk: Added clean
11501
11502         * support/regression/ports/host/spec.mk: Added clean
11503
11504         * support/regression/ports/z80/spec.mk: Added clean
11505
11506         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11507
11508         * support/regression/ports/mcs51/timeout.c: little improvements
11509
11510 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11511
11512         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11513
11514         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11515
11516         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11517
11518 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11519
11520         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11521
11522         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11523
11524 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11525         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11526
11527         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11528
11529         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11530
11531         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11532
11533         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11534
11535         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11536
11537         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11538
11539         * support/regression/tests/longor.c: Added.
11540
11541 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11542
11543         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11544
11545         * as/mcs51/aslink.h: define PATH_MAX
11546
11547         * as/mcs51/asm.h: define PATH_MAX
11548
11549         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11550
11551         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11552
11553         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11554
11555         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11556
11557         * src/SDCCglobl.h: define PATH_MAX
11558
11559         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11560
11561         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11562
11563 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11564
11565         * src/z80/gen.c (gencjneshort): Fixed
11566
11567         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11568
11569 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11570
11571         * support/regression/tests/bug-469671.c: Added.
11572
11573         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11574
11575 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11576
11577         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11578
11579         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11580
11581 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11582
11583         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11584
11585         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11586
11587         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11588
11589         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11590
11591         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11592
11593         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11594
11595         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11596
11597 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11598
11599         * 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.
11600
11601         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11602
11603         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11604
11605 2001-10-07    <johan AT FRIJA>
11606
11607         * device/lib/gets.c (gets): fixed the return value.
11608
11609 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11610         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11611
11612         * 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.
11613
11614         * 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.
11615
11616         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11617
11618         * src/pic/gen.c: Removed Safe_strdup.
11619
11620         * configure.in: Added option to enable libgc support.
11621
11622         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11623         (bitVectUnion): Optimised.
11624         (bitVectIntersect): Optimised.
11625         (bitVectBitsInCommon): Optimised.
11626         (bitVectCplAnd): Optimised.
11627
11628         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11629
11630 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11631
11632         * src/SDCCmain.c: distinguish between assembler debug and plain options
11633
11634         * src/avr/main.c:   remove standard assembler options
11635
11636         * src/ds390/main.c: remove standard assembler options
11637
11638         * src/mcs51/main.c: remove standard assembler options
11639
11640         * src/port.h: removed "PENDING" comment
11641
11642 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11643
11644         * src/device/lib/_mulint.c  : new, with assember functions
11645
11646         * src/device/lib/_mullong.c : new, with assember functions
11647
11648         * src/device/lib/_divuint.c : with assember functions
11649
11650         * src/device/lib/_divsint.c : with assember functions
11651
11652         * src/device/lib/_divulong.c: with assember functions
11653
11654         * src/device/lib/_divslong.c: with assember functions
11655
11656         * src/device/lib/_moduint.c : with assember functions
11657
11658         * src/device/lib/_modsint.c : with assember functions
11659
11660         * src/device/lib/_modulong.c: with assember functions
11661
11662         * src/device/lib/_modslong.c: with assember functions
11663
11664         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11665
11666         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11667
11668         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11669                                       replaced _mululong.c and _mulslong.c by _mullong.c
11670
11671 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11672
11673         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11674
11675 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11676
11677         * src/SDCCglue.c: test, if win32api is available for MINGW
11678
11679 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11680
11681         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11682         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11683         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11684         * support/regression/ports/host/spec.mk: removed GENERIC
11685         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11686         * support/regression/ports/z80/spec.mk: removed GENERIC
11687
11688 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11689
11690         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11691
11692         * support/regression/tests/bug-467035.c: Created.
11693
11694 2001-10-01    <johan AT FRIJA>
11695
11696         * src/SDCC.y: fixed bug #466586 part 1
11697
11698 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11699
11700         * SDCCicode.c: z80 has no generic pointers
11701         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11702
11703 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11704
11705         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11706
11707 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11708
11709         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11710
11711         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11712
11713 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11714
11715         * configure.in: Fixed up so that ucsim is only configured once.
11716
11717         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11718
11719         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11720         (getPathDifference): As above.
11721
11722         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11723
11724         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11725
11726 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11727         * .version: Updated to 2.3.1
11728
11729         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11730         Added copyright header.
11731
11732         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11733         (assemble): Added support for macro based assembler commands.
11734         (linkEdit): Added support for macro based linker commands.
11735         (preProcess): Changed the pre-processor to use macros.
11736         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11737         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11738
11739         * device/lib/z80/crt0.s: Added module name for debugging.
11740
11741 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11742
11743         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11744
11745         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11746
11747         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11748
11749         * src/Makefile.in: Added SDCCmacro and SDCCutil
11750
11751 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11752
11753         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11754
11755 2001-09-16    <johan AT FRIJA>
11756
11757         * 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.
11758
11759 2001-09-15    <johan AT FRIJA>
11760
11761         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11762         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11763
11764 2001-09-11    <johan AT FRIJA>
11765
11766         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11767
11768 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11769
11770         * support/regression/tests/bug-460444.c: Added test case.
11771
11772         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11773         (genCast): Added justification for all of the asserts.
11774
11775 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11776
11777         * support/regression/support.c: _xdata replaced by xdata
11778
11779         * support/regression/spec.mk: removed _generic
11780
11781 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11782
11783         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11784
11785         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11786         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11787
11788         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11789
11790         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11791
11792         * support/regression/tests/bug-460010.c: Added test case.
11793
11794         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11795
11796 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11797
11798         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11799
11800         * support/regression/testfwk.c: removed workaround for bug #436344
11801
11802         * support/regression/tests/bp.c: use less memory with mcs51
11803
11804         * support/regression/tests/bug-441448.c: use less memory
11805
11806         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11807
11808         * support/regression/collate-results.py: typo
11809
11810 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11811
11812         * support/regression/tests/fetchoverlap.c: Added new test case.
11813
11814         * support/regression/tests/bp.c: Added new test case.
11815
11816         * support/regression/tests/bug-448984.c: Added new test case.
11817
11818         * support/regression/tests/pow2shifts.c: Added new test case.
11819
11820         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11821         (genlshTwo): Fixed right shift for count > 8.
11822
11823         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11824
11825 2001-09-08    <johan AT FRIJA>
11826
11827         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11828
11829 2001-09-07    <johan AT FRIJA>
11830
11831         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11832
11833         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11834
11835 2001-09-06    <johan AT FRIJA>
11836
11837         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11838         * bernhard noted me at this: "() equals to (void)" (1.38)
11839
11840 2001-09-05    <johan AT FRIJA>
11841
11842         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11843
11844 2001-09-04    <johan AT FRIJA>
11845
11846         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11847
11848
11849 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11850
11851         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11852
11853 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11854
11855         * link/z80/aslink.h: Fixed path for PATH_MAX
11856
11857 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11858
11859         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11860
11861         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11862
11863         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11864
11865         * 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.
11866
11867 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11868
11869         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11870         (genCmp): Fixed up genCmp for the GB with longs.
11871
11872         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11873
11874         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11875
11876         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11877
11878         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11879
11880 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11881
11882         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11883
11884 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11885
11886         * 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.
11887
11888         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11889
11890 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11891
11892         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11893
11894         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11895
11896 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11897
11898   * sim/ucsim/configure:    little improvement of Cygwin-detection
11899   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11900   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11901   * support/regression/tests/bug-221100.c: small changes for mcs51
11902   * support/regression/tests/bug-221168.c: small changes for mcs51
11903   * support/regression/tests/bug-227710.c: small changes for mcs51
11904   * support/regression/tests/staticinit.c: small changes for mcs51
11905   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11906   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11907   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11908
11909 $Revision$